/* =========================================================
   Avenue Aesthetic Clinic — luxury one-page site
   Cormorant Garamond (display) · Jost (sans)
   ========================================================= */

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

:root {
  /* palette — warm neutrals + espresso + a single restrained gold */
  --ivory:     #F5F0E8;
  --porcelain: #FBF8F2;
  --bone:      #ECE3D6;
  --espresso:  #1A140E;
  --espresso2: #221A12;
  --clay:      #B8A488;
  --gold:      #A8884E;
  --gold-lt:   #C9A961;
  --champagne: #E3CE9E;
  --ink:       #2A2018;
  --ink-soft:  #6E6358;
  --cream-txt: #ECE3D4;
  --cream-soft:#A89E8E;

  --line-light: rgba(42,32,24,0.12);
  --line-gold:  rgba(168,136,78,0.28);
  --line-dark:  rgba(236,227,212,0.14);

  --maxw: 1280px;
  --radius: 2px;

  --ease-lux:  cubic-bezier(0.16, 1, 0.30, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);

  /* contextual colors flipped per band via [data-theme] */
  --bg: var(--ivory);
  --fg: var(--ink);
  --fg-soft: var(--ink-soft);
  --rule: var(--line-light);
}

[data-theme="dark"] {
  --bg: var(--espresso);
  --fg: var(--cream-txt);
  --fg-soft: var(--cream-soft);
  --rule: var(--line-dark);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--espresso); }

/* ── GRAIN ─────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ── SHARED TYPE ───────────────────────────────────────── */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: '';
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin-bottom: 1.6rem;
}
.title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
[data-theme="dark"] .title em { color: var(--gold-lt); }

.lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-soft);
  line-height: 1.8;
  max-width: 46ch;
}
.lead strong { color: var(--gold); font-weight: 400; }
.lead + .lead { margin-top: 1.15rem; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3.5rem, 6vw, 6rem);
}
.section-header .eyebrow::after {
  content: '';
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.section-header .lead { margin-left: auto; margin-right: auto; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4.5rem);
}

section { position: relative; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color 0.5s var(--ease-lux), background 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux);
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.55s var(--ease-lux);
}
.btn:hover::before { transform: scaleY(1); }

.btn-primary {
  background: var(--espresso);
  color: var(--cream-txt);
}
.btn-primary:hover { color: var(--espresso); }
[data-theme="dark"] .btn-primary {
  background: transparent;
  color: var(--cream-txt);
  border: 1px solid var(--line-gold);
}
[data-theme="dark"] .btn-primary:hover { color: var(--espresso); border-color: var(--gold); }

.btn-ghost {
  color: var(--fg);
  border: 1px solid var(--rule);
}
.btn-ghost::before { background: var(--fg); }
.btn-ghost:hover { color: var(--bg); border-color: var(--fg); }

.btn-full { width: 100%; }

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; display: none; }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) scale(1);
  transition: width 0.4s var(--ease-lux), height 0.4s var(--ease-lux),
              background 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux);
  display: flex; align-items: center; justify-content: center;
}
.cursor-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--espresso);
  opacity: 0; transition: opacity 0.3s;
}
body.cursor-hover .cursor-ring {
  width: 76px; height: 76px;
  background: rgba(168,136,78,0.12);
}
body.cursor-link .cursor-ring {
  width: 30px; height: 30px;
  background: var(--gold);
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  html.has-cursor, html.has-cursor * { cursor: none !important; }
}

/* ── PRELOADER ─────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--espresso);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s var(--ease-lux);
}
.loader-mark { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; color: var(--gold-lt); }
.loader-mark .monogram { width: 52px; height: auto; }
.loader-word {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--cream-soft);
  padding-left: 0.42em;
}
.loader-foot {
  position: absolute; bottom: clamp(2rem, 6vh, 4rem);
  left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 0 8vw;
}
.loader-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--cream-txt); letter-spacing: 0.1em;
}
.loader-bar { width: min(280px, 60vw); height: 1px; background: var(--line-dark); overflow: hidden; }
.loader-bar-fill { display: block; height: 100%; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.no-js .loader { display: none; }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem clamp(1.4rem, 5vw, 4.5rem);
  transition: background 0.5s var(--ease-lux), padding 0.5s var(--ease-lux),
              box-shadow 0.5s var(--ease-lux), color 0.4s var(--ease-lux);
  color: var(--cream-txt);                 /* over dark hero */
}
.nav.scrolled {
  background: rgba(245,240,232,0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding-top: 1rem; padding-bottom: 1rem;
  box-shadow: 0 1px 0 var(--line-light);
  color: var(--ink);
}

.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo .monogram { width: 30px; height: auto; color: var(--gold-lt); transition: color 0.4s; }
.nav.scrolled .nav-logo .monogram { color: var(--gold); }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem; font-weight: 500; line-height: 1; letter-spacing: 0.02em;
  display: flex; flex-direction: column;
}
.nav-logo-text em {
  font-style: normal; font-family: 'Jost', sans-serif;
  font-size: 0.52rem; font-weight: 400; letter-spacing: 0.32em;
  text-transform: uppercase; opacity: 0.7; margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  position: relative;
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.85;
  padding: 0.3rem 0;
  transition: opacity 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { opacity: 1; color: var(--gold); }

.nav-cta {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: var(--gold-lt);
  transition: background 0.4s var(--ease-lux), color 0.4s var(--ease-lux), border-color 0.4s;
}
.nav.scrolled .nav-cta { color: var(--gold); }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--espresso); }

.nav-hamburger { display: none; flex-direction: column; gap: 6px; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: currentColor; transition: transform 0.4s var(--ease-lux), opacity 0.3s; }
.nav-hamburger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:last-child { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE MENU ───────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--espresso);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.4rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-lux);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 1.7rem; }
.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 300; color: var(--cream-txt); letter-spacing: 0.01em;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux), color 0.3s;
}
.mobile-menu.open .mobile-link { opacity: 1; transform: none; }
.mobile-menu.open .mobile-link:nth-child(1){transition-delay:.08s}
.mobile-menu.open li:nth-child(2) .mobile-link{transition-delay:.14s}
.mobile-menu.open li:nth-child(3) .mobile-link{transition-delay:.20s}
.mobile-menu.open li:nth-child(4) .mobile-link{transition-delay:.26s}
.mobile-menu.open li:nth-child(5) .mobile-link{transition-delay:.32s}
.mobile-menu.open li:nth-child(6) .mobile-link{transition-delay:.38s}
.mobile-link:hover { color: var(--gold-lt); }
.mobile-cta { color: var(--gold-lt) !important; font-style: italic; }
.mobile-menu-foot {
  position: absolute; bottom: 2.6rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 2rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-soft);
}
.mobile-menu-foot a:hover { color: var(--gold-lt); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--espresso);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-img {
  position: absolute; top: -15%; left: 0;
  width: 100%; height: 130%;
  object-fit: cover; object-position: 72% center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,15,10,0.86) 0%, rgba(20,15,10,0.55) 42%, rgba(20,15,10,0.32) 70%, rgba(20,15,10,0.55) 100%),
    linear-gradient(to top, rgba(20,15,10,0.7) 0%, transparent 35%);
}

.hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4.5rem);
  color: var(--cream-txt);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--champagne);
  margin-bottom: 1.8rem;
}
.hero-eyebrow .dot { color: var(--gold); opacity: 0.8; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.6rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-title .line-inner { display: block; }
.hero-title .italic { font-style: italic; color: var(--champagne); padding-left: 0.06em; }

.hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  font-weight: 300; line-height: 1.75;
  color: rgba(236,227,212,0.82);
  max-width: 42ch;
  margin-bottom: 2.6rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-side {
  position: absolute; right: clamp(1.4rem, 5vw, 4.5rem); bottom: clamp(2.4rem, 6vh, 4rem);
  z-index: 3;
}
.hero-side-name {
  writing-mode: vertical-rl;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(236,227,212,0.6);
}
.hero-side-name::before {
  content: ''; display: block; width: 1px; height: 2.6rem;
  background: var(--gold); margin: 0 auto 1rem;
}

.hero-scroll {
  position: absolute; left: 50%; bottom: clamp(1.6rem, 4vh, 2.6rem);
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: rgba(236,227,212,0.65);
}
.hero-scroll span:first-child {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--champagne));
  animation: scrollPulse 2.2s var(--ease-soft) infinite;
}
@keyframes scrollPulse { 0%{transform:translateY(0)} 60%,100%{transform:translateY(300%)} }

/* ── MARQUEE ───────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--espresso2);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: 1.15rem 0;
}
.marquee-track {
  display: flex; gap: 2.2rem; white-space: nowrap; width: max-content;
  will-change: transform;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; font-weight: 400;
  letter-spacing: 0.04em; color: rgba(236,227,212,0.78);
}
.marquee-track .sep { color: var(--gold); font-size: 0.6rem; align-self: center; font-style: normal; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT ─────────────────────────────────────────────── */
.about { background: var(--ivory); padding: clamp(6rem, 12vw, 11rem) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-media { position: relative; padding-bottom: 3rem; }
.about-img-main {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--line-gold); border-radius: var(--radius); pointer-events: none;
}
.about-img-sub {
  position: absolute; right: -1.5rem; bottom: 0;
  width: 46%; aspect-ratio: 4 / 3;
  overflow: hidden; border-radius: var(--radius);
  border: 5px solid var(--ivory);
  box-shadow: 0 24px 60px rgba(26,20,14,0.22);
}
.about-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; left: -1.4rem; top: 8%;
  width: 92px; height: 92px; border-radius: 50%;
  overflow: hidden; background: var(--porcelain);
  border: 1px solid var(--line-gold);
  box-shadow: 0 14px 40px rgba(26,20,14,0.18);
  z-index: 2;
}
.about-badge img { width: 100%; height: 100%; object-fit: cover; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem; padding-top: 2.6rem;
  border-top: 1px solid var(--rule);
}
.stat { display: flex; flex-direction: column; gap: 0.7rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 300; line-height: 1;
  color: var(--gold);
}
.stat-rule { width: 1.8rem; height: 1px; background: var(--gold); transform-origin: left; }
.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); line-height: 1.5; max-width: 16ch;
}

/* ── PHILOSOPHY ────────────────────────────────────────── */
.philosophy { background: var(--espresso); color: var(--cream-txt); padding: clamp(6rem, 12vw, 11rem) 0; }
.philo-grid {
  display: grid; grid-template-columns: 0.9fr 1fr;
  gap: clamp(3rem, 7vw, 7rem); align-items: start;
}
.philo-media { position: sticky; top: 14vh; }
.philo-img { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 5; }
.philo-img img { width: 100%; height: 100%; object-fit: cover; }
.philo-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 1.3rem; line-height: 1.5; color: var(--champagne);
  margin-top: 1.8rem; padding-left: 1.4rem;
  border-left: 1px solid var(--gold);
  max-width: 36ch;
}
.philo-text { padding-top: 1rem; }
.philo-text .lead { margin-bottom: 3rem; }
.steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 1.8rem; align-items: baseline;
  padding: 2rem 0;
  border-top: 1px solid var(--line-dark);
}
.step:last-child { border-bottom: 1px solid var(--line-dark); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold); letter-spacing: 0.08em;
  min-width: 2.4rem;
}
.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.5rem; color: var(--cream-txt);
  margin-bottom: 0.5rem;
}
.step-body p { font-size: 0.92rem; color: var(--cream-soft); line-height: 1.75; max-width: 44ch; }

/* ── SERVICES ──────────────────────────────────────────── */
.services { background: var(--porcelain); padding: clamp(6rem, 12vw, 11rem) 0; }
.services-head {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.services-intro { padding-bottom: 0.5rem; }
.services-feature { overflow: hidden; border-radius: var(--radius); aspect-ratio: 16 / 11; }
.services-feature::after {
  content: ''; position: absolute; inset: 0; border: 1px solid var(--line-gold); pointer-events: none;
}
.services-feature { position: relative; }
.services-feature img { width: 100%; height: 100%; object-fit: cover; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.service {
  position: relative;
  padding: clamp(2rem, 3vw, 2.8rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: background 0.5s var(--ease-lux);
  overflow: hidden;
}
.service::before {
  content: ''; position: absolute; left: 0; top: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-lux);
}
.service:hover { background: var(--bone); }
.service:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em;
  margin-bottom: 2rem; opacity: 0.8;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.55rem; line-height: 1.2; color: var(--ink);
  margin-bottom: 0.9rem;
}
.service-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; flex: 1; margin-bottom: 1.6rem; }
.service-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.5rem;
  align-self: flex-start;
}
.service-link .arr { transition: transform 0.4s var(--ease-lux); }
.service-link:hover .arr { transform: translateX(6px); }

/* ── DIVIDER QUOTE ─────────────────────────────────────── */
.divider {
  position: relative; overflow: hidden;
  min-height: clamp(360px, 56vw, 620px);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-txt);
}
.divider-bg { position: absolute; inset: 0; overflow: hidden; }
.divider-bg img { position: absolute; top: -15%; left: 0; width: 100%; height: 130%; object-fit: cover; will-change: transform; }
.divider-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(20,15,10,0.62), rgba(20,15,10,0.72)); }
.divider-quote {
  position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  line-height: 1.4; text-align: center;
  max-width: 22ch; padding: 0 1.5rem;
}
.divider-quote em { font-style: italic; color: var(--champagne); }
.divider-mark {
  display: block;
  font-size: 4rem; line-height: 0; color: var(--gold);
  margin-bottom: 1.6rem; opacity: 0.7;
}

/* ── PRICING ───────────────────────────────────────────── */
.pricing { background: var(--ivory); padding: clamp(6rem, 12vw, 11rem) 0; }
.accordion { max-width: 880px; margin: 0 auto; }
.price-group { border-bottom: 1px solid var(--rule); }
.price-group:first-child { border-top: 1px solid var(--rule); }
.price-head {
  width: 100%; display: flex; align-items: center; gap: 1.6rem;
  padding: 1.7rem 0.4rem; text-align: left;
  transition: padding-left 0.4s var(--ease-lux);
}
.price-head:hover { padding-left: 1.1rem; }
.price-head-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; opacity: 0.7;
  min-width: 2rem;
}
.price-head-name {
  flex: 1;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.35rem; color: var(--ink);
}
.price-toggle { color: var(--gold); flex-shrink: 0; transition: transform 0.45s var(--ease-lux); }
.price-head[aria-expanded="true"] .price-toggle { transform: rotate(180deg); }
.price-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease-lux); }
.price-body.open { grid-template-rows: 1fr; }
.price-body-inner { overflow: hidden; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
  padding: 0.85rem 0.4rem; font-size: 0.92rem; color: var(--ink-soft);
  border-bottom: 1px solid rgba(42,32,24,0.06);
}
.price-row:last-child { border-bottom: none; padding-bottom: 1.6rem; }
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold); white-space: nowrap; flex-shrink: 0;
}
.pricing-note {
  text-align: center; font-size: 0.8rem; color: var(--ink-soft);
  margin: 3rem auto 0; max-width: 60ch; letter-spacing: 0.02em;
}

/* ── RESULTS ───────────────────────────────────────────── */
.results { background: var(--bone); padding: clamp(6rem, 12vw, 11rem) 0; }
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.4rem); align-items: stretch;
}
.result { display: flex; flex-direction: column; }
.result-img { position: relative; overflow: hidden; border-radius: var(--radius); flex: 1; }
.result-img img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; transition: transform 0.8s var(--ease-lux); }
.result:hover .result-img img { transform: scale(1.05); }
.result-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(26,20,14,0.78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--champagne);
  font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.45rem 0.85rem; border: 1px solid var(--line-gold); border-radius: var(--radius);
}
.result-label {
  margin-top: 1.1rem; font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic; color: var(--ink);
}
.result-cta {
  background: var(--espresso); color: var(--cream-txt);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 3vw, 3rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1.1rem;
}
.result-cta-eyebrow {
  font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt);
}
.result-cta-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1.2;
}
.result-cta-title em { font-style: italic; color: var(--champagne); }
.result-cta-body { font-size: 0.9rem; color: var(--cream-soft); line-height: 1.75; margin-bottom: 0.6rem; }
.result-cta .btn { align-self: flex-start; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials { background: var(--espresso); color: var(--cream-txt); padding: clamp(6rem, 12vw, 11rem) 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.4rem); }
.testi {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(2rem, 3vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1.3rem;
  transition: border-color 0.5s var(--ease-lux), background 0.5s var(--ease-lux);
}
.testi:hover { border-color: var(--line-gold); background: rgba(168,136,78,0.05); }
.testi-stars { color: var(--gold-lt); letter-spacing: 0.2em; font-size: 0.85rem; }
.testi blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem; font-style: italic; font-weight: 300;
  line-height: 1.55; color: rgba(236,227,212,0.92); flex: 1;
}
.testi figcaption { display: flex; flex-direction: column; gap: 0.3rem; padding-top: 0.6rem; border-top: 1px solid var(--line-dark); }
.testi-name { font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; color: var(--cream-txt); }
.testi-meta { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-lt); }

/* ── TRUST ─────────────────────────────────────────────── */
.trust {
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(2rem, 4vw, 3rem); }
.trust-item { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.trust-icon {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.trust-item h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.18rem; color: var(--ink); }
.trust-item p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.7; max-width: 26ch; }

/* ── CONTACT ───────────────────────────────────────────── */
.contact { background: var(--bone); padding: clamp(6rem, 12vw, 11rem) 0; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: stretch; }
.contact-media { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 520px; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-media::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--line-gold); pointer-events: none; }

.contact-content { display: flex; flex-direction: column; }
.contact-content .lead { margin-bottom: 2.4rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none; border-bottom: 1px solid var(--line-light);
  padding: 0.9rem 0 0.7rem;
  font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 300; color: var(--ink);
  outline: none; -webkit-appearance: none; appearance: none;
  transition: border-color 0.4s var(--ease-lux);
}
.field textarea { resize: vertical; min-height: 64px; }
.field label {
  position: absolute; left: 0; top: 0.9rem;
  font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 300; color: var(--ink-soft);
  pointer-events: none;
  transition: transform 0.35s var(--ease-lux), font-size 0.35s var(--ease-lux), color 0.35s var(--ease-lux), letter-spacing 0.35s;
  transform-origin: left;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus ~ .select-label,
.field select:valid ~ .select-label {
  transform: translateY(-1.5rem) scale(0.8);
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase;
}
.select-label { z-index: 1; }
.field select { color: var(--ink); cursor: pointer; padding-right: 2rem; }
.field select:invalid { color: transparent; }
.field select option { color: var(--ink); background: var(--porcelain); }
.select-arrow { position: absolute; right: 0; top: 1rem; color: var(--gold); pointer-events: none; }

.form-note { font-size: 0.74rem; color: var(--ink-soft); letter-spacing: 0.02em; margin-top: 0.2rem; }

.contact-details { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid var(--rule); }
.contact-item { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; color: var(--ink); transition: color 0.3s; }
.contact-item svg { color: var(--gold); flex-shrink: 0; }
.contact-item:not(.no-link):hover { color: var(--gold); }
.contact-ig-note { font-size: 0.8rem; font-style: italic; color: var(--ink-soft); margin-top: 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--espresso); color: var(--cream-txt); padding: clamp(4rem, 8vw, 6rem) 0 2rem; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2.6rem; border-bottom: 1px solid var(--line-dark);
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand .monogram { width: 34px; height: auto; color: var(--gold-lt); }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; letter-spacing: 0.01em; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: var(--cream-soft); line-height: 1.4; text-align: right; }

.footer-mid { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; padding: 2.4rem 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.footer-links a { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-soft); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-social { display: flex; gap: 1.1rem; }
.footer-social a { color: var(--cream-soft); transition: color 0.3s, transform 0.4s var(--ease-lux); display: flex; }
.footer-social a:hover { color: var(--gold-lt); transform: translateY(-3px); }

.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; border-top: 1px solid var(--line-dark); }
.footer-bottom p { font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(236,227,212,0.4); }

/* ── REVEAL STATES (only when JS active) ───────────────── */
.js .reveal { opacity: 0; transform: translateY(34px); }
.js .reveal-clip { opacity: 0; }
.js .reveal-clip img { transform: scale(1.18); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-head { grid-template-columns: 1fr; }
  .services-feature { max-height: 320px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-cta { grid-column: span 2; }
}

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

  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin: 0 auto; width: 100%; }
  .philo-grid { grid-template-columns: 1fr; }
  .philo-media { position: relative; top: 0; max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { min-height: 340px; }

  .footer-top { flex-direction: column; }
  .footer-tagline { text-align: left; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .result-cta { grid-column: auto; }
  .stats { grid-template-columns: 1fr; gap: 1.6rem; }
  .stat { flex-direction: row; align-items: center; gap: 1rem; }
  .stat-rule { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-title { font-size: clamp(3.2rem, 18vw, 5rem); }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
}

/* ── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .reveal-clip { opacity: 1; }
  .js .reveal-clip img { transform: none; }
  .marquee-track { animation: none; }
  .hero-img, .divider-bg img { height: 100%; }
}
