/* Premium Touch Inc — Design System
   Visual thesis: Obsidian editorial luxury — cinematic photography,
   champagne gold accents, architectural serif typography. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --obsidian: #030303;
  --charcoal: #0A0A0A;
  --slate: #141414;
  --slate-mid: #1E1E1E;
  --ivory: #F7F4EF;
  --ivory-muted: #EBE6DC;
  --champagne: #C9A962;
  --champagne-light: #E2CF9A;
  --champagne-dark: #8A6F35;
  --champagne-glow: rgba(201, 169, 98, 0.35);
  --ruby: #6B2838;
  --white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.52);
  --text-dim: rgba(255, 255, 255, 0.32);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --nav-h: 80px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Legacy aliases for service pages */
  --black: var(--obsidian);
  --dark: var(--charcoal);
  --dark-2: var(--slate);
  --orange: var(--champagne);
  --orange-mid: var(--champagne-light);
  --orange-light: var(--champagne-light);
  --orange-pale: #F3EBD4;
  --off-white: var(--ivory);
  --warm-50: #FAFAF8;
  --warm-100: var(--ivory-muted);
  --warm-200: #D9D2C6;
  --warm-400: #8A8278;
  --warm-600: #5C564E;
  --warm-800: #2A2620;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--obsidian);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection {
  background: var(--champagne);
  color: var(--obsidian);
}

:focus-visible {
  outline: 1px solid var(--champagne);
  outline-offset: 3px;
}

/* Gold reading-progress hairline */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 300;
  background: linear-gradient(90deg, var(--champagne-dark), var(--champagne), var(--champagne-light));
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  transition: background 0.55s var(--ease-out), border-color 0.55s, backdrop-filter 0.55s, padding 0.45s var(--ease-out);
  border-bottom: 1px solid transparent;
}

nav:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(3, 3, 3, 0.55) 0%, transparent 100%);
}

nav.scrolled {
  background: rgba(3, 3, 3, 0.94);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom-color: rgba(201, 169, 98, 0.15);
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--champagne);
  letter-spacing: 0.05em;
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.05; }

.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-tag {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--champagne-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--champagne-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--champagne) !important;
  color: var(--champagne) !important;
  padding: 11px 26px !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--champagne) !important;
  color: var(--obsidian) !important;
}

.nav-viz {
  color: var(--champagne-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.35);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 210;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--champagne);
  transition: all 0.28s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO (Homepage — editorial full-bleed) ─── */
.hero-editorial {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  background: var(--obsidian);
}

.hero-editorial--fable {
  min-height: 100svh;
  align-items: stretch;
}

.hero-editorial--fable .hero-editorial__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  max-width: none;
  width: 100%;
  padding: calc(var(--nav-h) + 32px) clamp(24px, 6vw, 96px) clamp(56px, 7vw, 100px);
}

.hero-editorial__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(3, 3, 3, 0.6) 0%, transparent 60%);
}

.hero-editorial__ghost {
  position: absolute;
  right: -0.04em;
  top: 50%;
  transform: translateY(-52%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 98, 0.07);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  animation: ghostFade 1.4s var(--ease-out) 0.5s forwards;
}

@keyframes ghostFade {
  to { opacity: 1; }
}

.hero-editorial__frame {
  position: absolute;
  inset: clamp(20px, 4vw, 48px);
  z-index: 3;
  pointer-events: none;
}

.hero-frame-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: rgba(201, 169, 98, 0.22);
  border-style: solid;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.9s forwards;
}

.hero-frame-corner--tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.hero-frame-corner--br {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.hero-editorial__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 48px);
  opacity: 0;
  animation: riseIn 0.9s var(--ease-out) 0.2s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(201, 169, 98, 0.2);
  padding: 10px 18px;
  backdrop-filter: blur(8px);
  background: rgba(3, 3, 3, 0.35);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 12px var(--champagne-glow);
  animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-editorial--fable h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 132px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: clamp(24px, 3.5vw, 40px);
  max-width: 14ch;
}

.hero-line {
  display: block;
  opacity: 0;
  animation: lineReveal 0.85s var(--ease-out) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.35s; }
.hero-line:nth-child(2) { animation-delay: 0.45s; }
.hero-line:nth-child(3) { animation-delay: 0.55s; }
.hero-line:nth-child(4) { animation-delay: 0.65s; }

.hero-line--gold { color: var(--champagne-light); }
.hero-line--italic em { font-style: italic; font-weight: 500; }

@keyframes lineReveal {
  from { opacity: 0; transform: translateY(40px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-editorial h1 em {
  font-style: italic;
  color: var(--champagne-light);
  font-weight: 500;
}

.hero-meta-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 98, 0.35), transparent);
  flex-shrink: 0;
}

.hero-meta-figure {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.hero-meta-suffix {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--champagne);
  line-height: 1;
}

.hero-meta-num--text {
  font-size: clamp(20px, 2.5vw, 28px) !important;
  letter-spacing: 0.06em;
}

/* Manifesto strip */
.manifesto-strip {
  background: var(--obsidian);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 6vw, 96px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  position: relative;
}

.manifesto-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(24px, 6vw, 96px);
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), transparent);
}

.manifesto-text {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  letter-spacing: -0.01em;
}

.manifesto-text em {
  font-style: italic;
  color: var(--champagne-light);
}

.hero-editorial__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.12) translateY(-1.5%); }
}

.hero-editorial__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.78) 38%, rgba(3, 3, 3, 0.42) 62%, rgba(3, 3, 3, 0.72) 100%),
    linear-gradient(to top, rgba(3, 3, 3, 0.92) 0%, transparent 50%);
  z-index: 1;
}

.hero-editorial__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-editorial__content {
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-h) + 48px) clamp(24px, 5vw, 80px) clamp(64px, 8vw, 120px);
  max-width: 920px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0;
}

.hero-editorial:not(.hero-editorial--fable) .hero-brand {
  margin-bottom: clamp(20px, 3vw, 36px);
  opacity: 0;
  animation: riseIn 0.9s var(--ease-out) 0.15s forwards;
}

.hero-editorial:not(.hero-editorial--fable) h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: clamp(20px, 3vw, 32px);
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.3s forwards;
}

.hero-editorial:not(.hero-editorial--fable) h1 em {
  font-style: italic;
  color: var(--champagne-light);
  font-weight: 500;
}

.hero-editorial--fable .hero-lead {
  max-width: 580px;
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: clamp(32px, 4vw, 48px);
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.45s forwards;
}

.hero-lead strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.6s forwards;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.75s forwards;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-meta-num span { color: var(--champagne); }

.hero-meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  right: clamp(24px, 5vw, 64px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 1s forwards;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--champagne);
  color: var(--obsidian);
  padding: 17px 38px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.25s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.btn-primary--lux::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
}

.btn-primary--lux:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  background: var(--champagne-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--champagne-glow), 0 0 0 1px rgba(201, 169, 98, 0.3);
}

.btn-secondary--lux {
  border-color: rgba(201, 169, 98, 0.35);
  backdrop-filter: blur(6px);
  background: rgba(3, 3, 3, 0.25);
}

.btn-secondary--lux:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--champagne);
  color: var(--champagne-light);
}

.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-secondary:hover {
  border-color: rgba(201, 169, 98, 0.5);
  color: var(--champagne-light);
  background: rgba(201, 169, 98, 0.06);
}

/* Legacy button aliases */
.btn-gold, .btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--champagne);
  color: var(--obsidian);
  padding: 17px 38px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.btn-gold:hover, .btn-orange:hover {
  background: var(--champagne-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--champagne-glow);
}

.btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  padding: 16px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-ghost:hover, .btn-outline:hover {
  border-color: rgba(201, 169, 98, 0.45);
  color: var(--champagne-light);
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--champagne);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  font-style: italic;
  color: var(--obsidian);
  white-space: nowrap;
  padding: 0 clamp(32px, 5vw, 64px);
  letter-spacing: 0.02em;
}

.marquee-track span::after {
  content: '◆';
  margin-left: clamp(32px, 5vw, 64px);
  font-size: 8px;
  vertical-align: middle;
  opacity: 0.45;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Legacy strip */
.intro-strip, .orange-strip {
  background: var(--champagne);
  padding: 20px clamp(20px, 4vw, 56px);
}

.intro-strip-inner, .strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.intro-strip-text, .strip-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--obsidian);
  font-style: italic;
}

.intro-strip-badges, .strip-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.intro-badge, .strip-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
}

/* ─── SECTIONS ─── */
section { padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px); }

.section-inner { max-width: 1240px; margin: 0 auto; position: relative; }

/* Ghost editorial words behind section headers */
.section-ghost {
  position: absolute;
  top: clamp(-36px, -4vw, -72px);
  right: 0;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(3, 3, 3, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.section-ghost--gold {
  -webkit-text-stroke: 1px rgba(201, 169, 98, 0.12);
}

.section-header-row, .services-list, .process-timeline, .gallery-filters, #gallery-grid, .testi-grid, .testimonials-header {
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  color: var(--obsidian);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--champagne-dark);
}

.section-body {
  font-size: 17px;
  color: var(--warm-600);
  line-height: 1.8;
  max-width: 540px;
  font-weight: 300;
}

.section-header-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.fade { opacity: 1; }
.fade.visible { opacity: 1; }

/* ─── CREDENTIALS ─── */
#cred-section, .cred-section {
  background: var(--ivory);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
  border-top: none;
  border-bottom: 1px solid var(--warm-200);
  position: relative;
}

#cred-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.4;
}

.cred-header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-200);
  max-width: 1240px;
  margin: 0 auto;
}

.cred-card {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
  text-align: center;
  transition: background 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.cred-card:hover {
  background: var(--ivory);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
}

.cred-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: 10px;
  line-height: 1.15;
}

.cred-card p {
  font-size: 13px;
  color: var(--warm-600);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── SERVICES (editorial list) ─── */
#services { background: var(--white); }

.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--warm-200);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(36px, 4.5vw, 56px) 0;
  border-bottom: 1px solid var(--warm-200);
  text-decoration: none;
  color: inherit;
  transition: background 0.4s var(--ease-out), padding-left 0.4s var(--ease-out);
  position: relative;
}

.service-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(480px circle at var(--hover-x, 30%) 50%, rgba(201, 169, 98, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-row:hover::after { opacity: 1; }

.service-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--champagne);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease-out);
}

.service-row:hover {
  background: var(--ivory);
  padding-left: 12px;
}

.service-row:hover::before { transform: scaleY(1); }

.service-row-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--champagne);
  opacity: 0.65;
  line-height: 1;
}

.service-row-body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.service-row:hover .service-row-body h3 {
  color: var(--champagne-dark);
}

.service-row-body p {
  font-size: 15px;
  color: var(--warm-600);
  font-weight: 300;
  line-height: 1.7;
  max-width: 640px;
}

.service-row-arrow {
  font-size: 24px;
  color: var(--champagne);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.service-row:hover .service-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ruby);
  border: 1px solid rgba(107, 40, 56, 0.35);
  padding: 3px 10px;
  margin-left: 12px;
  vertical-align: middle;
}

/* Legacy service grid */
.services-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--warm-200); }
.service-tile { background: var(--white); padding: 44px 36px; position: relative; overflow: hidden; transition: background 0.3s; }
.service-tile::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--champagne); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-out); }
.service-tile:hover { background: var(--ivory); }
.service-tile:hover::after { transform: scaleX(1); }
.service-num { font-family: var(--font-display); font-size: 13px; color: var(--champagne); letter-spacing: 0.15em; margin-bottom: 28px; opacity: 0.7; }
.service-tile h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.service-tile p { font-size: 14px; color: var(--warm-600); line-height: 1.75; margin-bottom: 24px; font-weight: 300; }
.service-link { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--champagne-dark); text-decoration: none; }
.service-link::after { content: ' →'; }
.service-tile.wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-tile.wide .service-right { border-left: 1px solid var(--warm-200); padding-left: 40px; }
.service-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-checklist li { font-size: 13px; color: var(--warm-600); display: flex; align-items: center; gap: 10px; }
.check-mark { width: 16px; height: 16px; border: 1px solid var(--champagne); display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--champagne); }

/* ─── ABOUT ─── */
.about-section {
  background: var(--charcoal);
  padding: clamp(96px, 12vw, 160px) clamp(24px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.about-visual {
  position: relative;
  height: clamp(420px, 50vw, 620px);
}

.about-photo-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 82%;
  overflow: hidden;
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  border: 3px solid var(--charcoal);
  overflow: hidden;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.4);
}

.about-photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gold-frame {
  position: absolute;
  top: 12%;
  right: 18%;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
}

.about-section .section-label { color: var(--champagne-light); }
.about-section .section-label::before { background: var(--champagne-light); }
.about-section .section-title { color: var(--white); }
.about-section .section-title em { color: var(--champagne-light); }

.about-quote {
  border-left: 2px solid var(--champagne);
  padding-left: 28px;
  margin: 32px 0;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.about-section .section-body { color: rgba(255, 255, 255, 0.48); }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.pillar {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 22px;
  transition: border-color 0.3s, background 0.3s;
}

.pillar:hover {
  border-color: rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.04);
}

.pillar h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--champagne-light);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  font-weight: 300;
}

/* Legacy about image stack */
.about-image-stack { position: relative; height: 560px; }
.about-img-main, .about-img-accent { background-size: cover; background-position: center; }

/* ─── STATS ─── */
.stats-row {
  background: var(--obsidian);
  padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  position: relative;
  overflow: hidden;
}

.stats-row--fable::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
}

.stat-val {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.stat-val em { font-style: normal; color: var(--champagne); }

.stat-sym {
  font-size: 0.45em;
  color: var(--champagne);
  vertical-align: 0.5em;
  margin-left: 4px;
}

.stats-row-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover {
  background: rgba(255, 255, 255, 0.025);
  transform: translateY(-2px);
}

.stat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

/* ─── PROCESS ─── */
#process { background: var(--ivory); }

.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.4;
}

.process-step {
  padding: 0 clamp(12px, 2vw, 24px) clamp(32px, 4vw, 48px);
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  color: var(--warm-200);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.35s;
}

.process-step:hover .step-number { color: var(--champagne); }

.process-step h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 13px;
  color: var(--warm-600);
  line-height: 1.7;
  font-weight: 300;
}

/* Legacy process grid */
.process-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--warm-200); }
.process-steps .process-step { padding: 48px 40px; border-right: 1px solid var(--warm-200); border-bottom: 1px solid var(--warm-200); text-align: left; }
.process-steps .process-step:nth-child(2n) { border-right: none; }
.process-steps .process-step:nth-child(3), .process-steps .process-step:nth-child(4) { border-bottom: none; }
.process-steps .step-number { font-size: 72px; margin-bottom: 16px; }

/* ─── GALLERY ─── */
#gallery { background: var(--white); padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px); }

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.g-filter {
  background: transparent;
  border: 1px solid var(--warm-200);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-600);
  cursor: pointer;
  transition: all 0.25s;
}

.g-filter:hover { border-color: var(--champagne); color: var(--champagne-dark); }
.g-filter.active { background: var(--obsidian); border-color: var(--obsidian); color: var(--white); }

#gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

.gallery-grid--editorial .g-item {
  grid-column: span 4;
}

.gallery-grid--editorial .g-item--feature {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-grid--editorial .g-item--feature .g-photo {
  aspect-ratio: 16/10;
  min-height: 100%;
}

.g-item {
  cursor: pointer;
  transition: transform 0.45s var(--ease-out);
  position: relative;
}

.g-item:hover { transform: translateY(-6px); }
.g-item.hidden { display: none; }

.g-photo {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}

.g-item:hover .g-photo {
  transform: scale(1.04);
}

.g-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 3, 0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.g-item:hover .g-photo::after { opacity: 1; }

.g-photo::before {
  content: 'View';
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}

.g-item:hover .g-photo::before {
  opacity: 1;
  transform: translateY(0);
}

.g-caption { display: none; }

.g-cat-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne-dark);
}

.g-loc {
  font-size: 12px;
  color: var(--warm-400);
  font-weight: 300;
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 3, 3, 0.94);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

#lightbox.open { display: flex; }

#lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

#lightbox-close:hover { border-color: var(--champagne); color: var(--champagne); }

#lightbox-img {
  max-width: min(960px, 92vw);
  max-height: 82vh;
  border: 1px solid rgba(201, 169, 98, 0.25);
  object-fit: contain;
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--ivory); }

.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.testi-card {
  background: var(--white);
  padding: clamp(40px, 4.5vw, 56px) clamp(28px, 3vw, 40px);
  border: 1px solid var(--warm-200);
  position: relative;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 169, 98, 0.25);
}

.testi-card.dark {
  background: linear-gradient(145deg, var(--charcoal) 0%, #0f0f0f 100%);
  border-color: rgba(201, 169, 98, 0.25);
  transform: scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.testi-card.dark:hover {
  transform: scale(1.02) translateY(-6px);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.5;
  color: var(--champagne);
  opacity: 0.25;
  margin-bottom: 20px;
  display: block;
}

.testi-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  line-height: 1.65;
  color: var(--warm-800);
  margin-bottom: 28px;
}

.testi-card.dark .testi-text { color: rgba(255, 255, 255, 0.78); }

.testi-divider { width: 32px; height: 1px; background: var(--champagne); opacity: 0.5; margin-bottom: 20px; }

.testi-author-name { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 4px; }
.testi-card.dark .testi-author-name { color: var(--white); }
.testi-author-role { font-size: 11px; color: var(--warm-400); font-weight: 300; }
.testi-card.dark .testi-author-role { color: var(--champagne-light); }

.testi-stars {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  gap: 3px;
}

.testi-star {
  width: 10px;
  height: 10px;
  background: var(--champagne);
  opacity: 0.65;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--charcoal);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
}

.contact-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.contact-section .section-label { color: var(--champagne-light); }
.contact-section .section-label::before { background: var(--champagne-light); }
.contact-section .section-title { color: var(--white); }

.contact-perks { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
.contact-perks li { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(255, 255, 255, 0.52); font-weight: 300; }
.perk-dash { width: 20px; height: 1px; background: var(--champagne); flex-shrink: 0; }

.contact-direct { display: flex; flex-direction: column; gap: 14px; }
.contact-direct-item { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(255, 255, 255, 0.48); }
.contact-direct-item strong { color: var(--champagne-light); font-weight: 500; min-width: 56px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-direct-item a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: color 0.25s; }
.contact-direct-item a:hover { color: var(--champagne-light); }

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3vw, 48px);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.7;
}

.form-heading { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 600; color: var(--white); margin-bottom: 8px; }
.form-sub { font-size: 13px; color: rgba(255, 255, 255, 0.35); margin-bottom: 36px; font-weight: 300; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.f-field label { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); }

.f-field input, .f-field select, .f-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}

.f-field input::placeholder, .f-field textarea::placeholder { color: rgba(255, 255, 255, 0.22); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--champagne); background: rgba(255, 255, 255, 0.06); }
.f-field select { color: rgba(255, 255, 255, 0.6); }
.f-field select option { background: var(--charcoal); }
.f-field textarea { resize: vertical; min-height: 100px; }

.f-submit {
  width: 100%;
  padding: 17px;
  background: var(--champagne);
  color: var(--obsidian);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.f-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease-out);
}

.f-submit:hover::before { transform: translateX(120%); }

.f-submit:hover {
  background: var(--champagne-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--champagne-glow);
}
.f-note { font-size: 10px; color: rgba(255, 255, 255, 0.22); text-align: center; margin-top: 14px; }

/* ─── VIZ CTA ─── */
.viz-cta {
  background: var(--obsidian);
  padding: clamp(64px, 8vw, 100px) clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(201, 169, 98, 0.12);
}

.viz-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.viz-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}

.viz-cta h2 em { font-style: italic; color: var(--champagne-light); }

.viz-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.viz-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.02) 100%);
  border: 1px solid rgba(201, 169, 98, 0.18);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 48px);
  text-align: center;
  overflow: hidden;
}

.viz-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.5;
}

.viz-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.3;
  color: var(--champagne);
  opacity: 0.15;
  display: block;
  margin-bottom: 24px;
}

.viz-quote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-style: italic;
  color: var(--champagne-light);
  line-height: 1.35;
  margin: 0;
}

.viz-quote p em {
  font-style: normal;
  color: var(--white);
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: var(--obsidian);
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 64px) clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

/* Footer statement moment */
.footer-cta {
  max-width: 1240px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-cta-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}

.footer-cta-line {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.35s;
}

.footer-cta-line em {
  font-style: italic;
  color: var(--champagne-light);
}

.footer-cta-arrow {
  display: inline-block;
  margin-left: 0.3em;
  color: var(--champagne);
  transition: transform 0.35s var(--ease-out);
}

.footer-cta-line:hover .footer-cta-arrow { transform: translateX(12px); }
.footer-cta-line:hover { color: var(--champagne-light); }
.footer-cta-line:hover em { color: var(--white); }

.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
  font-weight: 300;
}

.footer-col h5 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne-light);
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 13px; color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: color 0.25s; font-weight: 300; }
.footer-col ul a:hover { color: var(--champagne-light); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 11px; color: rgba(255, 255, 255, 0.22); font-weight: 300; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 11px; color: rgba(255, 255, 255, 0.22); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--champagne-light); }

/* Toast */
.toast {
  position: fixed;
  bottom: 36px;
  right: 36px;
  background: var(--charcoal);
  border: 1px solid var(--champagne);
  padding: 20px 28px;
  font-size: 13px;
  color: var(--white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: translateY(140%);
  transition: transform 0.4s var(--ease-spring);
  z-index: 500;
  max-width: 320px;
}

.toast.show { transform: translateY(0); }
.toast-title { color: var(--champagne-light); font-weight: 600; margin-bottom: 6px; font-size: 12px; letter-spacing: 0.04em; }
.toast p { color: rgba(255, 255, 255, 0.58); font-weight: 300; font-size: 12px; line-height: 1.55; }

/* ─── SERVICE PAGE HERO ─── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.7) 50%, rgba(3, 3, 3, 0.85) 100%),
    url('../assets/gallery/hero.jpg') center/cover no-repeat;
}

.hero-grid { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 clamp(24px, 4vw, 48px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 7px 20px;
  margin-bottom: 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero h1 em { font-style: italic; color: var(--champagne-light); }

.hero-sub, .hero-subhead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 44px;
}

.hero-btns, .hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.25s;
  margin-bottom: 36px;
}

.back-link:hover { color: var(--champagne-light); }
.back-link::before { content: '←'; font-size: 14px; }

/* ─── SERVICE PAGE SECTIONS ─── */
.sec-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
}

.sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sec-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--champagne);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--obsidian);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.sec-title em { font-style: italic; color: var(--champagne-dark); }

.sec-body {
  font-size: 16px;
  color: var(--warm-600);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-200);
}

.scope-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.3s, transform 0.35s var(--ease-out);
}

.scope-card:hover {
  background: var(--ivory);
  transform: translateY(-3px);
}

.scope-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--champagne);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.scope-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: 12px;
}

.scope-card p {
  font-size: 14px;
  color: var(--warm-600);
  line-height: 1.75;
  font-weight: 300;
}

.process-sec {
  background: var(--charcoal);
}

.process-sec .sec-inner { padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px); }

.process-sec .sec-label { color: var(--champagne-light); }
.process-sec .sec-label::before { background: var(--champagne-light); }
.process-sec .sec-title { color: var(--white); }
.process-sec .sec-title em { color: var(--champagne-light); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.process-sec .process-step {
  background: var(--charcoal);
  padding: 40px 32px;
  border: none;
  transition: background 0.3s;
}

.process-sec .process-step:hover { background: rgba(255, 255, 255, 0.03); }

.process-sec .step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: rgba(201, 169, 98, 0.18);
  line-height: 1;
  margin-bottom: 16px;
}

.process-sec .process-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.process-sec .process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  font-weight: 300;
}

.faq-sec {
  background: var(--ivory);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
}

.faq-wrap {
  max-width: 760px;
  margin: 48px auto 0;
  border: 1px solid var(--warm-200);
}

.faq-item { border-bottom: 1px solid var(--warm-200); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--obsidian);
  text-align: left;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--ivory); }

.faq-icon {
  font-size: 22px;
  color: var(--champagne);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
  background: var(--ivory);
}

.faq-item.open .faq-a { max-height: 220px; }

.faq-a p {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--warm-600);
  line-height: 1.75;
  font-weight: 300;
}

.contact-sec {
  background: var(--obsidian);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
}

.contact-sec .contact-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
}

.contact-info .sec-title { color: var(--white); }
.contact-info .sec-title em { color: var(--champagne-light); }

.c-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 12px;
  font-weight: 300;
}

.c-item strong {
  color: var(--champagne-light);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-width: 52px;
}

.c-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.c-item a:hover { color: var(--champagne-light); }

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px clamp(24px, 5vw, 64px) 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo { text-decoration: none; }

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
  font-weight: 300;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--champagne);
  color: var(--champagne-light);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .about-inner, .contact-wrap, .viz-cta-inner { grid-template-columns: 1fr; }
  .about-visual { height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-timeline::before { display: none; }
  .section-header-row, .services-top, .process-header { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex !important;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 3, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 190;
    padding: 32px 0 48px;
    border-top: 1px solid rgba(201, 169, 98, 0.12);
  }

  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block !important; font-size: 13px; padding: 18px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.75) !important; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { margin: 24px auto 0; width: calc(100% - 48px); }

  .services-grid { grid-template-columns: 1fr; }
  .service-tile.wide { grid-column: span 1; display: block; }
  .service-tile.wide .service-right { border-left: none; padding-left: 0; border-top: 1px solid var(--warm-200); padding-top: 24px; margin-top: 24px; }

  .stats-row-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2n) { border-right: none; }

  .testi-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  #gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-grid--editorial .g-item { grid-column: span 3; }
  .gallery-grid--editorial .g-item--feature { grid-column: span 6; grid-row: span 1; }

  .service-row { grid-template-columns: 56px 1fr; }
  .service-row-arrow { display: none; }

  .scope-grid { grid-template-columns: 1fr; }
  .contact-sec .contact-wrap { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; }

  .process-steps { grid-template-columns: 1fr; }
  .process-steps .process-step { border-right: 1px solid var(--warm-200) !important; }
  .f-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .hero-scroll-hint { display: none; }
}

@media (max-width: 900px) {
  .section-ghost { display: none; }
}

@media (max-width: 640px) {
  .cred-grid, .process-timeline { grid-template-columns: 1fr; }
  #gallery-grid, .gallery-grid--editorial { grid-template-columns: 1fr; }
  .gallery-grid--editorial .g-item,
  .gallery-grid--editorial .g-item--feature { grid-column: span 1; grid-row: span 1; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-meta-divider { display: none; }
  .hero-editorial__ghost { display: none; }
  .hero-editorial__frame { display: none; }
  .testi-card.dark { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-editorial__media img { animation: none; transform: scale(1.06); }
  .marquee-track { animation: none; }
}
