/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --bg: #0a0d0b;
  --bg2: #111613;
  --bg3: #171c19;
  --surface: rgba(18, 24, 20, 0.92);
  --gold: #c9a44e;
  --gold-light: #e8d5a3;
  --gold-soft: #f0e4c4;
  --gold-glow: rgba(201, 164, 78, 0.08);
  --gold-line: rgba(201, 164, 78, 0.14);
  --gold-line-strong: rgba(201, 164, 78, 0.28);
  --text: #ede3c5;
  --text-dim: #c4b795;
  --text-muted: #9a8e74;
  --white: #fffbf0;
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.4);
  --shadow-card: 0 12px 40px rgba(0,0,0,0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 12px 24px; background: var(--gold); color: #000; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.24s; }
.stagger > *:nth-child(4) { transition-delay: 0.36s; }
.stagger > *:nth-child(5) { transition-delay: 0.48s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }
.stagger > *:nth-child(7) { transition-delay: 0.48s; }
.stagger > *:nth-child(8) { transition-delay: 0.56s; }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  scroll-margin-top: 110px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  height: 100px;
  background: rgba(10, 13, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--gold-line);
  transition: background 0.3s, box-shadow 0.3s;
}
header.scrolled {
  background: rgba(10, 13, 11, 0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.brand { flex: 0 0 200px; display: flex; align-items: center; }
.brand img { height: 88px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }

nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}
nav a {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  border-radius: 8px;
}
nav a:hover, nav a.active {
  color: var(--gold-soft);
  background: var(--gold-glow);
}

.header-right {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  border: 1px solid var(--gold-line-strong);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-soft);
  background: rgba(201, 164, 78, 0.06);
  transition: all 0.3s;
  white-space: nowrap;
}
.header-cta:hover {
  background: rgba(201, 164, 78, 0.14);
  border-color: rgba(201, 164, 78, 0.5);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  appearance: none;
  border: none;
  background: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
  position: absolute;
  left: 5px;
  transition: all 0.3s;
}
.menu-toggle span { top: 15px; }
.menu-toggle span::before { content: ''; top: -7px; }
.menu-toggle span::after { content: ''; top: 7px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO (index.html)
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,13,11,0.92) 0%, rgba(10,13,11,0.6) 50%, rgba(10,13,11,0.75) 100%),
    linear-gradient(to top, rgba(10,13,11,1) 0%, transparent 30%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  width: 100%;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy {}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201, 164, 78, 0.1);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-tag svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8943f 100%);
  color: #0a0d0b;
  box-shadow: 0 4px 20px rgba(201, 164, 78, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201, 164, 78, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(201, 164, 78, 0.06);
  color: var(--gold-soft);
  border: 1px solid var(--gold-line-strong);
}
.btn-outline:hover {
  background: rgba(201, 164, 78, 0.14);
  border-color: rgba(201, 164, 78, 0.5);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 580px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,13,11,0.9), transparent);
}

/* ═══════════════════════════════════════════
   TRUST BAR (index.html)
   ═══════════════════════════════════════════ */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.trust-logo:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   ABOUT / STATS (index.html)
   ═══════════════════════════════════════════ */
.about {
  padding: 120px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.about-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  padding: 32px;
  background: var(--bg2);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: var(--gold-line-strong);
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   SERVICES (index.html)
   ═══════════════════════════════════════════ */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--gold-line);
}
.services-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.services-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.services-head p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--bg2);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.4s;
}
.service-card:hover {
  border-color: var(--gold-line-strong);
  transform: translateY(-6px);
}
.service-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 20px;
  flex: 1;
}
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201, 164, 78, 0.08);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   PROCESS (index.html)
   ═══════════════════════════════════════════ */
.process {
  padding: 120px 0;
  border-top: 1px solid var(--gold-line);
}
.process-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.process-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.process-head p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-line);
  background: var(--bg2);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.process-step:hover {
  border-color: var(--gold-line-strong);
  transform: translateY(-4px);
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(201, 164, 78, 0.1);
  border: 1px solid var(--gold-line-strong);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   PORTFOLIO SECTION (index.html)
   ═══════════════════════════════════════════ */
.portfolio {
  padding: 120px 0;
  border-top: 1px solid var(--gold-line);
}
.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.portfolio-head-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
}
.portfolio-head-text p {
  font-size: 17px;
  color: var(--text-dim);
}
.portfolio-filters {
  display: flex;
  gap: 6px;
}
.filter-btn {
  appearance: none;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: rgba(201, 164, 78, 0.12);
  border-color: var(--gold-line-strong);
  color: var(--gold-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.portfolio-item:hover {
  border-color: var(--gold-line-strong);
  transform: translateY(-4px);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,13,11,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}
.portfolio-item-overlay h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.portfolio-item-overlay span {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}


/* ═══════════════════════════════════════════
   TESTIMONIALS (index.html)
   ═══════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  border-top: 1px solid var(--gold-line);
}
.testimonials-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.testimonials-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
}
.testimonials-head p {
  font-size: 17px;
  color: var(--text-dim);
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-line);
  background: var(--bg2);
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: var(--gold-line-strong);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 164, 78, 0.15);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.testimonial-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CONTACT (index.html)
   ═══════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--gold-line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-info > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-line);
}
.contact-detail:first-of-type {
  border-top: 1px solid var(--gold-line);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 164, 78, 0.08);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail-text {
  font-size: 15px;
  color: var(--text-dim);
}
.contact-detail-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-detail-text a {
  color: var(--gold-soft);
  transition: opacity 0.3s;
}
.contact-detail-text a:hover { opacity: 0.7; }

/* Contact Form */
.contact-form {
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-line);
  background: var(--bg2);
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: rgba(10, 13, 11, 0.6);
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-line-strong);
}
.form-group select {
  cursor: pointer;
}
.form-group select option {
  background: var(--bg2);
  color: var(--text);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-submit {
  margin-top: 24px;
}
.form-submit .btn {
  width: 100%;
}

/* ═══════════════════════════════════════════
   FOOTER (index.html - complex)
   ═══════════════════════════════════════════ */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--gold-line);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 300px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 5px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--gold-line);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--gold-soft);
  transition: opacity 0.3s;
}
.footer-bottom a:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   FOOTER (portfolio.html - simple row)
   ═══════════════════════════════════════════ */
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-row a {
  color: var(--gold-soft);
  transition: opacity 0.3s;
}
.footer-row a:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   PAGE HERO (portfolio.html)
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-line);
}
.page-hero .section-label {
  justify-content: center;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.project-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(201, 164, 78, 0.08);
  border: 1px solid var(--gold-line);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-light);
}
.project-count strong {
  font-size: 18px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   PROJECT GRID (portfolio.html)
   ═══════════════════════════════════════════ */
.projects-section {
  padding: 60px 0 120px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--bg2);
  cursor: pointer;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.project-card:hover {
  border-color: var(--gold-line-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card-img img {
  transform: scale(1.06);
}
/* Photo count badge */
.photo-count {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(10, 13, 11, 0.7);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-soft);
  z-index: 2;
}
.photo-count svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.project-card-body {
  padding: 22px 24px 26px;
}
.project-card-body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.project-card:hover .project-card-body h3 {
  color: var(--gold-light);
}
.project-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   LIGHTBOX GALLERY (portfolio.html)
   ═══════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

/* Top bar */
.lb-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  z-index: 10;
}
.lb-project-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.lb-counter {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.lb-close {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.lb-close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

/* Premium split layout */
.lb-content {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 24px;
  padding: 88px 28px 28px;
}
.lb-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 24px 88px 104px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18,22,19,0.92), rgba(10,13,11,0.96));
  border: 1px solid rgba(255,255,255,0.06);
}
.lb-image-wrap > img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
}
.lb-image-wrap > img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lb-details {
  min-width: 0;
  min-height: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18,22,19,0.94), rgba(10,13,11,0.98));
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.lb-details-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 28px 28px 36px;
}
.lb-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(201, 164, 78, 0.08);
  border: 1px solid var(--gold-line);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lb-description {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
}
.lb-description h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 14px;
}
.lb-description p {
  margin: 0 0 14px;
}
.lb-description ul {
  margin: 0 0 18px 18px;
  color: var(--text);
}
.lb-description li {
  margin-bottom: 8px;
}

/* Navigation arrows */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.lb-arrow:hover {
  background: rgba(201, 164, 78, 0.15);
  border-color: var(--gold-line-strong);
  color: var(--gold-soft);
}
.lb-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.lb-arrow.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Thumbnail strip */
.lb-thumbs {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 2px 2px;
  z-index: 10;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: all 0.3s;
}
.lb-thumb.active {
  border-color: var(--gold);
  opacity: 1;
  box-shadow: 0 0 12px rgba(201, 164, 78, 0.3);
}
.lb-thumb:hover {
  opacity: 0.8;
}
.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Loading spinner */
.lb-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 3px solid rgba(201, 164, 78, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 5;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1180px) {
  .lb-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lb-details {
    max-height: 42vh;
  }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-height: 400px; aspect-ratio: 16/10; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-image-wrap { padding: 24px 72px 96px; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  header { padding: 0 20px; height: 76px; }
  .brand img { height: 62px; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(10, 13, 11, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--gold-line);
    z-index: 999;
  }
  nav.open a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }
  .menu-toggle { display: block; }
  .header-cta { display: none; }

  .hero { min-height: 90vh; }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero-visual { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 40px; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-head { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }

  .page-hero { padding: 120px 0 48px; }
  .projects-grid { grid-template-columns: 1fr; }

  .lb-content { padding: 74px 12px 12px; }
  .lb-image-wrap { padding: 24px 12px 82px; min-height: 44vh; }
  .lb-details { max-height: 38vh; }
  .lb-details-scroll { padding: 20px 18px 26px; }
  .lb-description h3 { font-size: 24px; }
  .lb-arrow { width: 44px; height: 44px; border-radius: 12px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-topbar { padding: 14px 16px; }
  .lb-project-title { font-size: 17px; }
  .lb-thumb { width: 52px; height: 36px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .lb-arrow { width: 40px; height: 40px; }
  .lb-thumb { width: 44px; height: 30px; }
}
