/* ============================================================
   LUXURY HOSPITALITY CONSULTING — style.css
   Designer: Production-grade, cinematic, premium aesthetic
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Palette */
  --c-black:        #070707;
  --c-charcoal:     #111111;
  --c-charcoal-mid: #1a1a1a;
  --c-charcoal-lt:  #242424;
  --c-warm-white:   #f5f0e8;
  --c-cream:        #e8e1d4;
  --c-cream-muted:  #bfb8ac;
  --c-gold:         #c9a84c;
  --c-gold-lt:      #e2c97c;
  --c-gold-dim:     #8a6f30;
  --c-bronze:       #a8834a;
  --c-champagne:    #d4b896;
  --c-text-muted:   #7a7068;

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Sizing */
  --max-w:  1280px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --ease-out:  cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-silk: cubic-bezier(0.4, 0, 0.2, 1);
  --t-med:  0.6s;
  --t-slow: 1.1s;

  /* Z-index scale */
  --z-below:   -1;
  --z-base:     0;
  --z-above:   10;
  --z-nav:    100;
  --z-cursor: 999;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--c-charcoal);
  color: var(--c-warm-white);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Prevent horizontal overflow during animations */
section { overflow-x: hidden; }


/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-gold);
}

em { font-style: italic; }


/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border-radius: 0;
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Primary: filled gold */
.btn--primary {
  background-color: var(--c-gold);
  color: var(--c-black);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold-lt);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
}
.btn--primary:hover::after { opacity: 1; }

/* Ghost: outlined */
.btn--ghost {
  color: var(--c-warm-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
}
.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn--ghost:hover::after { opacity: 1; }

/* Form submit button */
.btn--form {
  width: 100%;
  justify-content: space-between;
  background-color: var(--c-gold);
  color: var(--c-black);
  padding: 1.1rem 2rem;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  transition: background-color var(--t-med) var(--ease-out),
              transform 0.3s var(--ease-out);
}
.btn--form:hover { background-color: var(--c-gold-lt); transform: translateY(-1px); }
.btn--form:active { transform: translateY(0); }
.btn__arrow { font-size: 1rem; }


/* ============================================================
   5. CURSOR GLOW (desktop only)
   ============================================================ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 380px; height: 380px;
  pointer-events: none;
  z-index: var(--z-cursor);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: transform;
}
@media (hover: none) {
  .cursor-glow { display: none; }
}


/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  transition: background var(--t-med) var(--ease-silk),
              box-shadow var(--t-med) var(--ease-silk),
              padding var(--t-med) var(--ease-silk);
  padding: 1.8rem 0;
}

/* Scrolled state — added by JS */
.nav.nav--scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.12);
  padding: 1.1rem 0;
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav__logo-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--c-warm-white);
  line-height: 1;
}
.nav__logo-sub {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 400;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav__link {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(245,240,232,0.75);
  position: relative;
  transition: color var(--t-med) var(--ease-out);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--t-med) var(--ease-out);
}
.nav__link:hover { color: var(--c-warm-white); }
.nav__link:hover::after { width: 100%; }

/* Nav CTA */
.nav__link--cta {
  color: var(--c-gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.55rem 1.4rem;
  transition: all var(--t-med) var(--ease-out);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}
.nav__toggle-bar {
  display: block;
  height: 1px;
  background: var(--c-warm-white);
  transition: all 0.4s var(--ease-out);
  transform-origin: right center;
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(1) {
  transform: rotate(-45deg) translate(0, -0.5px);
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(2) {
  transform: rotate(45deg) translate(0, 0.5px);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.nav__mobile.is-open { max-height: 400px; }

.nav__mobile-link {
  display: block;
  padding: 1.1rem var(--gutter);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--t-med) var(--ease-out),
              padding-left var(--t-med) var(--ease-out);
}
.nav__mobile-link:hover {
  color: var(--c-gold);
  padding-left: calc(var(--gutter) + 0.5rem);
}
.nav__mobile-link:last-child { color: var(--c-gold); }

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Layered atmospheric background */
.hero__layers {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
}

.hero__layer { position: absolute; inset: 0; will-change: transform; }

/* Base: deep rich background with warm amber glow */
.hero__layer--base {
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(160,110,40,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 80%, rgba(120,80,20,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(100,70,15,0.08) 0%, transparent 50%),
    linear-gradient(175deg, #0e0b07 0%, #070707 40%, #0a0806 100%);
  transition: transform 0.08s linear;
}

/* Mid: subtle depth layer that reacts to mouse */
.hero__layer--mid {
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%);
  transition: transform 0.12s linear;
}

/* Dark overlay for legibility */
.hero__layer--overlay {
  background: linear-gradient(
    to bottom,
    rgba(7,7,7,0.55) 0%,
    rgba(7,7,7,0.3) 40%,
    rgba(7,7,7,0.7) 100%
  );
}

/* Noise grain texture */
.hero__layer--grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.032;
  mix-blend-mode: screen;
}

/* Vignette */
.hero__layer--vignette {
  background: radial-gradient(ellipse 110% 90% at 50% 50%, transparent 40%, rgba(0,0,0,0.75) 100%);
}

/* Gold horizontal accent */
.hero__gold-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  opacity: 0.5;
  z-index: 1;
  animation: goldLinePulse 4s ease-in-out infinite;
}
@keyframes goldLinePulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleY(1); }
  50%       { opacity: 0.9; transform: translateX(-50%) scaleY(1.15); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: var(--z-above);
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 860px;
}

.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--c-gold);
  margin-bottom: 2rem;
  display: block;
}

.hero__headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: var(--c-warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--c-champagne);
}

.hero__sub {
  font-family: var(--ff-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--c-cream-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-above);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll-track {
  width: 1.5px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.hero__scroll-pill {
  position: absolute;
  top: -100%;
  width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollPillDrop 2.5s ease-in-out infinite;
}
@keyframes scrollPillDrop {
  0%   { top: -100%; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.hero__scroll-label {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-family: var(--ff-body);
  font-weight: 400;
}

/* Load reveal animation classes (for hero — triggered on page load, not scroll) */
.load-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.load-reveal.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .hero__headline { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .hero__actions  { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__br-desktop { display: none; }
}


/* ============================================================
   8. PAIN SECTIONS — SHARED
   ============================================================ */
.pain {
  position: relative;
  background: var(--c-black);
  padding: clamp(6rem, 14vw, 11rem) var(--gutter);
  overflow: hidden;
}

/* Ambient warm glow */
.pain__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%,   rgba(170,120,40,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 100%,  rgba(201,168,76,0.05) 0%, transparent 60%);
}

/* Large translucent chapter number in background */
.pain__bg-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(12rem, 28vw, 22rem);
  font-weight: 600;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pain__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pain__chapter {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--c-gold);
  margin-bottom: 4rem;
}

/* Pain statement text — populated by JS word-reveal */
.pain__statement {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.25;
  color: var(--c-cream);
  letter-spacing: -0.01em;
  padding: 2rem 0;
  min-height: 2em; /* reserve space during render */
}

/* Word spans injected by JS */
.pain__statement .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  margin-right: 0.28em;
}
.pain__statement.words-visible .word { opacity: 1; transform: translateY(0); }

/* Gold horizontal rule between statements */
.pain__rule {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold-dim), transparent);
  margin: 0.5rem auto;
  transition: width 1.2s var(--ease-out);
}
.pain__rule.is-visible { width: 60%; }

/* Pull quote */
.pain__pullquote {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.3;
  color: var(--c-warm-white);
  letter-spacing: -0.01em;
  padding: 2.5rem 0;
  font-style: normal;
}
.pain__pullquote em { color: var(--c-champagne); }

/* Gold-accented pull quote variant */
.pain__pullquote--gold {
  color: var(--c-gold-lt);
  text-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.pain__pullquote--gold em { color: var(--c-warm-white); }

/* Transition bridge in pain--3 */
.pain__bridge {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  justify-content: center;
}
.pain__bridge-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold-dim));
}
.pain__bridge-rule:last-child {
  background: linear-gradient(to left, transparent, var(--c-gold-dim));
}
.pain__bridge-text {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-gold);
  white-space: nowrap;
  font-weight: 400;
}

/* Pain 2 — review stars decoration */
.pain__stars-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: opacity 0.5s ease;
}
.pain__stars-row {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.2em;
  color: var(--c-gold);
  opacity: 0.06;
  animation: starShimmer 6s ease-in-out infinite;
}
.pain__stars-row--dim    { opacity: 0.035; animation-delay: 1s; color: var(--c-bronze); }
.pain__stars-row--dimmer { opacity: 0.018; animation-delay: 2s; color: var(--c-text-muted); }
@keyframes starShimmer {
  0%, 100% { opacity: 0.06; }
  50%       { opacity: 0.10; }
}
.pain--2 .pain__stars-row--dim    { animation-name: starDim; }
.pain--2 .pain__stars-row--dimmer { animation-name: starDimmer; }
@keyframes starDim    { 0%,100%{opacity:0.035} 50%{opacity:0.05} }
@keyframes starDimmer { 0%,100%{opacity:0.018} 50%{opacity:0.03} }

/* When pain section 2 is active, stars flicker */
.pain--2.pain--stars-active .pain__stars-row {
  animation: starFlicker 3.5s ease-in-out infinite;
}
@keyframes starFlicker {
  0%,100%{opacity:0.09} 30%{opacity:0.04} 60%{opacity:0.08} 80%{opacity:0.03}
}


/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about {
  background: var(--c-charcoal);
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}

.about__container { max-width: var(--max-w); margin: 0 auto; }

.about__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 400;
  margin-bottom: 4rem;
  display: block;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

/* Photo column */
.about__col--image { position: relative; }

.about__frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 440px;
}

.about__frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 440px;
  overflow: hidden;
  border-radius: 24px;
}

.about__real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;

  position: absolute;
  inset: 0;

  display: block;
}

/* Decorative gold accent frame */
.about__frame-accent {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}

/* Text column */
.about__headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  color: var(--c-warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.about__headline em { color: var(--c-champagne); }

.about__body {
  margin-bottom: 2.5rem;
}
.about__body p {
  font-size: 0.95rem;
  color: var(--c-cream-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about__body p:last-child { margin-bottom: 0; }

.about__credentials { display: flex; flex-direction: column; gap: 1rem; }

.about__cred {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--c-cream-muted);
  letter-spacing: 0.02em;
}
.about__cred-icon {
  color: var(--c-gold);
  font-size: 0.6rem;
  margin-top: 0.25em;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__col--image { max-width: 400px; margin: 0 auto; }
  .about__frame { max-width: 100%; }
}


/* ============================================================
   10. SOCIAL PROOF SECTION
   ============================================================ */
.proof {
  background: var(--c-charcoal-mid);
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  position: relative;
}
.proof::before, .proof::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}
.proof::before { top: 0; background: linear-gradient(to right, transparent, rgba(201,168,76,0.15), transparent); }
.proof::after  { bottom: 0; background: linear-gradient(to right, transparent, rgba(201,168,76,0.1), transparent); }

.proof__container { max-width: var(--max-w); margin: 0 auto; }

.proof__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 400;
  margin-bottom: 1.2rem;
  display: block;
}

.proof__headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--c-warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 4rem;
}
.proof__headline em { color: var(--c-champagne); }

/* Review cards grid */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.proof__card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.2rem;
  position: relative;
  transition: transform var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
}
.proof__card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.08);
}

/* Featured (middle) card */
.proof__card--featured {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.18);
}
.proof__card--featured:hover { border-color: rgba(201,168,76,0.35); }

.proof__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.proof__stars {
  color: var(--c-gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.proof__platform {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 400;
}

.proof__quote {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--c-cream);
  font-style: italic;
  margin-bottom: 2rem;
  flex: 1;
}

.proof__guest {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.proof__initial {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: var(--c-gold);
  font-weight: 400;
  flex-shrink: 0;
}

.proof__guest-name {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--c-cream);
  font-weight: 400;
  margin-bottom: 0.1rem;
}
.proof__guest-meta {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* Handwritten letter callout */
.proof__letter {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  position: relative;
}
.proof__letter::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
}

.proof__letter-icon {
  font-size: 2rem;
  color: var(--c-gold);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.proof__letter-label {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 400;
  margin-bottom: 1rem;
}

.proof__letter-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--c-cream);
  margin-bottom: 1.2rem;
}

.proof__letter-sig {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .proof__grid { grid-template-columns: 1fr; }
  .proof__letter { flex-direction: column; gap: 1.5rem; padding: 2rem 1.8rem; }
}


/* ============================================================
   11. SERVICES SECTION
   ============================================================ */
.services {
  background: var(--c-charcoal);
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.18), transparent);
}

.services__container { max-width: var(--max-w); margin: 0 auto; }

.services__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 400;
  margin-bottom: 1.2rem;
  display: block;
}

.services__headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--c-warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.services__headline em { color: var(--c-champagne); }

.services__intro {
  font-size: 0.9rem;
  color: var(--c-cream-muted);
  font-weight: 300;
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 4.5rem;
}

/* Service cards grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.05);
}

.svc-card {
  padding: 2.8rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: background var(--t-med) var(--ease-out);
  cursor: default;
}
.svc-card:hover { background: rgba(201,168,76,0.03); }

/* Remove extra borders */
.svc-card:nth-child(3n)   { border-right: none; }
.svc-card:nth-child(4),
.svc-card:nth-child(5),
.svc-card:nth-child(6)    { border-bottom: none; }

.svc-card__num {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--c-gold-dim);
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.svc-card__icon {
  font-size: 1.1rem;
  color: var(--c-gold);
  opacity: 0.5;
  margin-bottom: 1.2rem;
  transition: opacity var(--t-med) var(--ease-out);
}
.svc-card:hover .svc-card__icon { opacity: 1; }

.svc-card__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--c-warm-white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.svc-card__body {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--c-text-muted);
  font-weight: 300;
}

/* Gold bottom line hover effect */
.svc-card__line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--c-gold);
  transition: width var(--t-med) var(--ease-out);
}
.svc-card:hover .svc-card__line { width: 100%; }

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .svc-card:nth-child(3n)   { border-right: 1px solid rgba(255,255,255,0.05); }
  .svc-card:nth-child(2n)   { border-right: none; }
  .svc-card:nth-child(4),
  .svc-card:nth-child(5),
  .svc-card:nth-child(6)    { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .svc-card:nth-child(5),
  .svc-card:nth-child(6)    { border-bottom: none; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; }
  .svc-card:last-child { border-bottom: none; }
}


/* ============================================================
   12. RESULTS SECTION
   ============================================================ */
.results {
  background: var(--c-charcoal-mid);
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.15), transparent);
}

/* Ambient glow from bottom */
.results::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.results__container { max-width: var(--max-w); margin: 0 auto; }

.results__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 400;
  margin-bottom: 1.2rem;
  display: block;
}

.results__headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--c-warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 4rem;
}
.results__headline em { color: var(--c-champagne); }

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 5rem;
}

.results__metric {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.results__metric::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--c-gold);
  transition: width 0.8s var(--ease-out);
}
.results__metric.is-visible::before { width: 100%; }

.results__figure {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.8rem;
}

.results__num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--c-warm-white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.results__unit {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--c-gold);
  line-height: 1;
}

.results__name {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream-muted);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.results__desc {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* Editorial quote */
.results__editorial {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem 0;
}
.results__editorial-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.25));
}
.results__editorial-rule:last-child {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.25));
}
.results__editorial-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  color: var(--c-cream-muted);
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.results__editorial-text em { color: var(--c-champagne); }

@media (max-width: 900px) {
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .results__editorial { flex-direction: column; text-align: center; }
  .results__editorial-text { white-space: normal; }
  .results__editorial-rule { width: 60%; height: 1px; flex: none; }
}
@media (max-width: 520px) {
  .results__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   13. CONSULTATION SECTION
   ============================================================ */
.consultation {
  position: relative;
  padding: clamp(6rem, 14vw, 11rem) var(--gutter);
  overflow: hidden;
}

.consultation__layers { position: absolute; inset: 0; }

.consultation__bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #0a0807 0%, #0e0c09 50%, #080606 100%);
}

.consultation__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(160,110,40,0.05) 0%, transparent 55%);
}

.consultation__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.025;
}

.consultation__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

/* Left copy */
.consultation__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
  display: block;
}

.consultation__headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--c-warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.consultation__headline em { color: var(--c-champagne); }

.consultation__sub {
  font-size: 0.9rem;
  color: var(--c-cream-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.consultation__details { display: flex; flex-direction: column; gap: 0.9rem; }
.consultation__detail {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.82rem;
  color: var(--c-cream-muted);
  font-weight: 300;
}
.consultation__detail-icon {
  color: var(--c-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Glassmorphism form card */
.consultation__glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 3rem;
  position: relative;
}
.consultation__glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.consultation__form-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--c-warm-white);
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
}

/* Form elements */
.form { display: flex; flex-direction: column; gap: 1.5rem; }

.form__group { display: flex; flex-direction: column; gap: 0.5rem; }

.form__label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 400;
  font-family: var(--ff-body);
}

.form__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 0;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--c-warm-white);
  width: 100%;
  outline: none;
  transition: border-color var(--t-med) var(--ease-out);
  caret-color: var(--c-gold);
}
.form__input::placeholder { color: var(--c-text-muted); font-size: 0.85rem; }
.form__input:focus { border-bottom-color: var(--c-gold); }

.form__textarea {
  resize: none;
  padding-top: 0.75rem;
  line-height: 1.7;
}

/* Form success state */
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
}
.form__success.is-visible { display: block; }

.form__success-check {
  font-size: 1.8rem;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.form__success p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-cream-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .consultation__container { grid-template-columns: 1fr; }
  .consultation__glass { padding: 2rem 1.8rem; }
}


/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background: var(--c-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem var(--gutter) 2.5rem;
}

.footer__container { max-width: var(--max-w); margin: 0 auto; }

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--c-warm-white);
}
.footer__tagline {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 0.3rem;
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__link {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color var(--t-med) var(--ease-out);
}
.footer__link:hover { color: var(--c-gold); }

.footer__social { display: flex; gap: 0.8rem; }
.footer__social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: border-color var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out);
}
.footer__social-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
}
.footer__email {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  letter-spacing: 0.12em;
  transition: color var(--t-med) var(--ease-out);
}
.footer__email:hover { color: var(--c-gold); }

@media (max-width: 640px) {
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__nav  { gap: 1.2rem; }
}


/* ============================================================
   15. SCROLL REVEAL ANIMATIONS
   (Classes applied by JS IntersectionObserver)
   ============================================================ */

/* Default hidden state for all scroll-reveal elements */
.scroll-reveal {
  opacity: 0;
}

/* Fade effect */
.scroll-reveal[data-effect="fade"] {
  transition: opacity 0.8s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.scroll-reveal[data-effect="fade"].is-visible { opacity: 1; }

/* Up effect */
.scroll-reveal[data-effect="up"] {
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.scroll-reveal[data-effect="up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Word reveal — words handle themselves, container just needs visibility check */
.scroll-reveal[data-effect="word"] { opacity: 1; } /* container visible by default */

/* Expand (for horizontal rules) */
.scroll-reveal[data-effect="expand"] { opacity: 1; } /* handled via .pain__rule.is-visible */


/* ============================================================
   16. GENERAL RESPONSIVE REFINEMENTS
   ============================================================ */
@media (max-width: 480px) {
  .pain__statement {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .pain__pullquote {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .proof__letter { padding: 1.5rem; }
  .proof__letter-text { font-size: 1rem; }
  .btn { padding: 0.95rem 1.8rem; font-size: 0.65rem; }
}

/* Safe area on iPhone notch models */
@supports (padding: max(0px)) {
  .nav { padding-top: max(1.1rem, env(safe-area-inset-top)); }
  .hero { padding-top: max(0px, env(safe-area-inset-top)); }
  .footer { padding-bottom: max(2.5rem, env(safe-area-inset-bottom)); }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
/* ============================================================
   MOBILE & TABLET RESPONSIVE FIXES
   ============================================================ */

html, body {
  overflow-x: hidden;
  width: 100%;
}

section {
  width: 100%;
  overflow: hidden;
}

/* ---------- TABLETS ---------- */
@media (max-width: 1024px) {

  .proof__grid,
  .services__grid,
  .results__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__content {
    padding-top: 6rem;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  .proof__grid,
  .services__grid,
  .results__grid,
  .about__grid {
    grid-template-columns: 1fr !important;
  }

  .hero {
    min-height: 100svh;
    padding: 6rem 0 3rem;
  }

  .hero__headline {
    line-height: 1.15;
  }

  .hero__sub {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .btn {
    width: 100%;
  }

  .proof__card,
  .svc-card,
  .results__metric {
    width: 100%;
  }

  .proof__letter {
    flex-direction: column;
    padding: 2rem;
  }

  .pain__statement {
    font-size: 1.7rem;
    line-height: 1.4;
  }

  .pain__pullquote {
    font-size: 1.5rem;
  }

  .about__body p {
    font-size: 0.9rem;
  }
}

/* ---------- SMALL PHONES ---------- */
@media (max-width: 480px) {

  .hero__headline {
    font-size: 2.3rem;
  }

  .hero__sub {
    font-size: 0.82rem;
  }

  .btn {
    padding: 1rem 1.2rem;
    font-size: 0.62rem;
  }

  .nav__logo-name {
    font-size: 1rem;
  }

  .pain__statement {
    font-size: 1.4rem;
  }
}