/* =========================================================
   NERVÉ Facial Studio — The Art of Release
   Brand system: dark editorial spa. Cocoa / Cream / Gold.
   Type: Cormorant Garamond (display) · Montserrat (body) · Sacramento (accent script)
   ========================================================= */

:root {
  /* Primary palette (v2 — authoritative) */
  --cocoa:   #1B1410;
  --taupe:   #6B5B4D;
  --cream:   #E9DFD3;
  --olive:   #3F4736;
  --gold:    #B08A5B;

  /* Supporting neutrals */
  --charcoal:#2A241F;
  --stone:   #7F7568;
  --sand:    #B9ADA0;
  --ivory:   #F6F2ED;

  /* Accents */
  --soft-rose: #C69A91;
  --terracotta:#A46A51;
  --sage:      #8E9786;
  --moss:      #2F342A;

  /* Derived */
  --gold-soft: rgba(176, 138, 91, 0.55);
  --gold-line: rgba(176, 138, 91, 0.32);
  --cream-60:  rgba(233, 223, 211, 0.62);
  --cream-40:  rgba(233, 223, 211, 0.40);
  --hairline:  rgba(233, 223, 211, 0.12);

  --bg-deep:   #140F0B;
  --bg-panel:  #211913;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body:    "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --ff-script:  "Sacramento", "Cormorant Garamond", cursive;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  color: var(--cream);
  background: var(--cocoa);
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Subtle film-grain / warmth overlay on the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.container.narrow { max-width: 780px; }
.center { text-align: center; }
.section { padding: clamp(5rem, 11vw, 9rem) 0; position: relative; z-index: 2; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.12; letter-spacing: 0.005em; }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); color: var(--cream); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { font-weight: 300; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-60);
  margin-bottom: 1.5rem;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.center { text-align: center; display: block; }

.script-accent {
  font-family: var(--ff-script);
  color: var(--gold);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.2;
  font-weight: 400;
}

.section-head { max-width: 760px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.section-head h2 { margin-bottom: 1.25rem; }
.section-intro { color: var(--cream-60); font-size: 1.02rem; max-width: 620px; margin: 0 auto; }

.hairline { display: block; height: 1px; background: var(--gold-line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 1.05rem 2.3rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c79c68);
  color: var(--cocoa);
  border-color: var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold-line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0.6rem 0;
}
.site-header.scrolled {
  background: rgba(20, 15, 11, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--cream);
  padding-left: 0.34em;
}
.nav-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.52rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35rem;
  padding-left: 0.5em;
}
.nav-links { display: flex; gap: 2.1rem; }
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-60);
  transition: color 0.35s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 0.8rem 1.6rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--cream); transition: 0.35s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  background: rgba(20, 15, 11, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline);
}
.mobile-menu a {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- Logo badge (primary lockup) ---------- */
.logo-badge {
  width: 168px; height: 168px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 2.2rem;
  position: relative;
}
.logo-badge::before {
  content: "";
  position: absolute; inset: 7px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
}
.logo-badge-name {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--cream);
  padding-left: 0.3em;
}
.logo-badge-sub {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  padding-left: 0.46em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.25rem 5rem;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
  /* Candlelight-simulated backdrop — replace with client's treatment photo/video */
  background:
    radial-gradient(120% 90% at 68% 22%, rgba(176,138,91,0.28), transparent 55%),
    radial-gradient(90% 70% at 20% 85%, rgba(107,91,77,0.35), transparent 60%),
    radial-gradient(60% 50% at 78% 78%, rgba(199,156,104,0.14), transparent 60%),
    linear-gradient(180deg, #211812 0%, #17110c 55%, #100c08 100%);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(16,12,8,0.55) 0%, rgba(16,12,8,0.25) 40%, rgba(16,12,8,0.7) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 760px; }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 6.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0.3rem 0 1.1rem;
}
.hero-hook {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero-lede { color: var(--cream-60); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.6rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 24px; height: 40px;
  border: 1px solid var(--gold-line); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span { width: 3px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* ---------- Manifesto ---------- */
.manifesto { padding: clamp(5rem, 11vw, 9rem) 0; background: var(--bg-deep); position: relative; z-index: 2; }
.manifesto-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  line-height: 1.28;
  color: var(--cream);
  margin-bottom: 1.8rem;
}
.manifesto-lead em { font-style: italic; color: var(--gold); }
.manifesto-body { color: var(--cream-60); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2.2rem; }

/* ---------- The Difference / Pillars ---------- */
.difference { background: var(--cocoa); }
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.pillar {
  text-align: center;
  padding: 2.4rem 1.2rem;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(42,36,31,0.35), rgba(42,36,31,0.08));
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  background: linear-gradient(180deg, rgba(176,138,91,0.10), rgba(42,36,31,0.10));
}
.pillar-icon { display: inline-flex; margin-bottom: 1.3rem; }
.pillar-icon svg { width: 46px; height: 46px; fill: none; stroke: var(--gold); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 1.2rem; margin-bottom: 0.7rem; color: var(--cream); }
.pillar p { font-size: 0.88rem; color: var(--cream-60); line-height: 1.65; }

.difference-quote { text-align: center; margin-top: clamp(3rem, 6vw, 4.5rem); }

/* ---------- Treatments ---------- */
.treatments { background: var(--bg-deep); }
.menu-group { margin-bottom: 3.5rem; }
.menu-group-head { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.8rem; }
.menu-group-head h3 { color: var(--gold); white-space: nowrap; font-style: italic; }
.menu-group-head .hairline { flex: 1; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.service {
  padding: 1.9rem 2rem;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: rgba(42, 36, 31, 0.28);
  transition: border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.service:hover { border-color: var(--gold-line); background: rgba(176,138,91,0.06); }
.service-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.7rem; }
.service-top h4 { color: var(--cream); }
.service-meta { font-family: var(--ff-body); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--cream-60); white-space: nowrap; }
.service-meta strong { color: var(--gold); font-weight: 600; }
.service-desc { font-size: 0.9rem; color: var(--cream-60); line-height: 1.65; }

.service-feature {
  padding: 2.6rem;
  background: linear-gradient(135deg, rgba(176,138,91,0.10), rgba(42,36,31,0.30));
  border-color: var(--gold-line);
}
.service-feature .service-top h4 { font-size: clamp(1.5rem, 3vw, 2rem); }
.service-includes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem 1.5rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
}
.service-includes li {
  font-size: 0.85rem;
  color: var(--cream-60);
  padding-left: 1.1rem;
  position: relative;
}
.service-includes li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.menu-cta { text-align: center; margin-top: 3rem; }
.menu-note { font-size: 0.82rem; color: var(--cream-40); margin-top: 1rem; letter-spacing: 0.05em; }

/* ---------- The Feeling / Testimonials ---------- */
.feeling { background: var(--cocoa); }
.testimonials { max-width: 820px; margin: 0 auto clamp(3.5rem, 7vw, 5rem); overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.7s var(--ease); }
.testimonial {
  min-width: 100%;
  text-align: center;
  padding: 0 1rem;
}
.testimonial p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-dots { display: flex; gap: 0.6rem; justify-content: center; margin-top: 2.4rem; }
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--gold-soft); background: transparent;
  cursor: pointer; padding: 0; transition: all 0.4s var(--ease);
}
.testimonial-dots button.active { background: var(--gold); border-color: var(--gold); transform: scale(1.15); }

.senses { border-top: 1px solid var(--hairline); padding-top: clamp(3rem, 6vw, 4rem); }
.senses-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-top: 2rem; }
.sense { text-align: center; }
.sense-label {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
.sense-note { font-size: 0.82rem; color: var(--cream-60); line-height: 1.55; }

/* ---------- Transformation / Before-After ---------- */
.transformation { background: var(--bg-deep); }
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.ba-col { padding: 2.6rem 2.2rem; border-radius: 3px; border: 1px solid var(--hairline); }
.ba-before { background: rgba(20,15,11,0.6); }
.ba-after {
  background: linear-gradient(160deg, rgba(63,71,54,0.22), rgba(176,138,91,0.08));
  border-color: var(--gold-line);
}
.ba-title { font-family: var(--ff-display); font-size: 1.6rem; color: var(--cream); }
.ba-sub { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.6rem; }
.ba-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.95rem; }
.ba-col li { font-size: 0.92rem; color: var(--cream-60); padding-left: 1.4rem; position: relative; line-height: 1.5; }
.ba-before li::before { content: "—"; position: absolute; left: 0; color: var(--stone); }
.ba-after li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.25em; }
.ba-arrow svg { width: 40px; height: 40px; fill: none; stroke: var(--gold); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Founder ---------- */
.founder { background: var(--cocoa); }
.founder-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.founder-photo {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  border: 1px solid var(--gold-line);
  /* IMAGE SLOT — founder portrait */
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(176,138,91,0.18), transparent 60%),
    linear-gradient(160deg, #2a2019, #171009);
  position: relative;
  overflow: hidden;
}
.founder-photo::after {
  content: "Founder portrait";
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.4rem;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-40);
}
.founder-copy h2 { margin-bottom: 1.5rem; }
.founder-copy p { color: var(--cream-60); margin-bottom: 1.15rem; font-size: 0.98rem; }
.founder-copy .script-accent { margin-top: 1.8rem; color: var(--gold); }

/* ---------- Add-ons ---------- */
.addons { background: var(--bg-deep); }
.addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 940px; margin: 0 auto; }
.addons-card {
  padding: 2.6rem;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: rgba(42,36,31,0.28);
}
.addons-card h3 { color: var(--cream); margin-bottom: 1.6rem; }
.addons-card .from, .price { color: var(--gold); font-family: var(--ff-body); font-size: 0.8rem; letter-spacing: 0.06em; font-weight: 600; }
.addons-card .from { font-style: normal; }
.addons-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.4rem; }
.addons-list li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--hairline); font-size: 0.95rem; color: var(--cream); }
.addons-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.addons-tags li {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--cream-60);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--gold-line);
  border-radius: 40px;
}
.addons-note { font-size: 0.86rem; color: var(--cream-40); font-style: italic; font-family: var(--ff-display); font-size: 1.05rem; }

/* ---------- Booking ---------- */
.booking { background: var(--cocoa); }
.booking-placeholder {
  margin-top: 3rem;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  border: 1px dashed var(--gold-line);
  border-radius: 4px;
  background: rgba(42,36,31,0.25);
}
.booking-icon svg { width: 52px; height: 52px; fill: none; stroke: var(--gold); stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1.4rem; }
.booking-placeholder > p { color: var(--cream); font-size: 1.05rem; }
.booking-sub { color: var(--cream-40); font-size: 0.85rem !important; margin: 0.5rem 0 1.8rem; }

/* ---------- Visit ---------- */
.visit { background: var(--bg-deep); }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.visit-card { text-align: center; padding: 2.6rem 1.8rem; border: 1px solid var(--hairline); border-radius: 3px; }
.visit-card h3 { color: var(--gold); font-style: italic; margin-bottom: 1rem; }
.visit-card p { color: var(--cream); font-size: 0.98rem; line-height: 1.9; }
.visit-card .muted { color: var(--cream-40); font-size: 0.85rem; }
.visit-link { color: var(--cream); transition: color 0.35s var(--ease); }
.visit-link:hover { color: var(--gold); }
.visit-link[data-placeholder] { color: var(--cream-40); }

/* ---------- Footer ---------- */
.site-footer { background: #100c08; padding: clamp(4rem, 8vw, 6rem) 0 3rem; position: relative; z-index: 2; border-top: 1px solid var(--hairline); }
.footer-submark {
  width: 66px; height: 66px; border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
}
.footer-submark span { font-family: var(--ff-display); font-size: 1.9rem; color: var(--cream); }
.footer-name { font-family: var(--ff-display); font-size: 1.7rem; letter-spacing: 0.28em; color: var(--cream); padding-left: 0.28em; }
.footer-name span { display: block; font-family: var(--ff-body); font-size: 0.55rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; }
.footer-tag { margin: 1rem 0 2.4rem; }
.footer-links { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.6rem; }
.footer-links a { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-60); transition: color 0.35s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-closing { font-size: 0.72rem; letter-spacing: 0.34em; color: var(--cream-60); margin-bottom: 1.4rem; }
.footer-legal { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--cream-40); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillars .pillar:last-child { grid-column: 1 / -1; }
  .senses-row { grid-template-columns: repeat(3, 1fr); }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .service-grid, .addons-grid, .visit-grid { grid-template-columns: 1fr; }
  .service-includes { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); margin: -0.5rem auto; }
}
@media (max-width: 560px) {
  .pillars, .senses-row { grid-template-columns: 1fr; }
  .senses-row { max-width: 300px; margin: 2rem auto 0; }
  .service-includes { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
