/* ──────────────────────────────────────────────────────────
   Eden Medspa & Wellness — luxury minimal styling
   ────────────────────────────────────────────────────────── */

:root {
  --charcoal: #2b2d2a;
  --charcoal-soft: #4a4d48;
  --sage: #a8c29a;
  --sage-deep: #7e9a73;
  --sage-mid: #c7d6bd;       /* mid-tone sage for stronger accents */
  --sage-tint: #dde9d2;      /* deepened from #e8efe2 — more visibly green */
  --sage-wash: #ecf1e2;      /* very pale sage for backgrounds */
  --cream: #eef1e4;          /* shifted from #f7f4ed toward sage */
  --ivory: #f4f7ea;          /* shifted from #fffcf7 toward sage-ivory */
  --gold: #b79268;
  --gold-soft: #d8c4a8;
  --line: #d3dcc6;           /* shifted from warm gray to sage-line */
  --shadow: 0 12px 40px -20px rgba(43, 45, 42, 0.25);
  --shadow-lift: 0 24px 60px -30px rgba(43, 45, 42, 0.4);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 6px;
  --radius-lg: 14px;

  /* ── Liquid Glass tokens ──
     Translucent fill + heavy backdrop blur + saturate/brighten boost
     + dual inner highlights (top/bottom) + soft drop shadow. Stack these
     properties on any surface to make it feel like curved, refractive glass. */
  --glass-fill:        rgba(255, 252, 247, 0.42);
  --glass-fill-strong: rgba(255, 252, 247, 0.62);
  --glass-fill-dark:   rgba(43, 45, 42, 0.34);
  --glass-stroke:      rgba(255, 255, 255, 0.55);
  --glass-stroke-dark: rgba(255, 255, 255, 0.14);
  --glass-blur:        saturate(180%) blur(22px);
  --glass-blur-deep:   saturate(200%) blur(34px);
  --glass-highlight:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  --glass-highlight-dark:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 18px 40px -22px rgba(43, 45, 42, 0.45);
}

/* ── Reusable Liquid Glass surface ── */
.glass {
  position: relative;
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-stroke);
  box-shadow: var(--glass-highlight), var(--glass-shadow);
  isolation: isolate;
}
.glass::before {
  /* curved-glass specular highlight */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.05) 32%,
    transparent 58%,
    rgba(255, 255, 255, 0.12) 100%
  );
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.9;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ──────────────────────────────────────────────────────────
   PAGE-WIDE PAINTERLY GRADIENT
   A fixed ambient field that stays put as content scrolls.
   Multiple soft radial gradients stacked create the painterly
   feel — sage concentration upper-left, warm tan lower-right,
   cream blooming through the middle.
   ────────────────────────────────────────────────────────── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  /* Deeper saturation across all the radials — push the painting */
  background:
    radial-gradient(ellipse 90% 75% at 12% 10%, rgba(126, 154, 115, 0.85) 0%, rgba(168, 194, 154, 0.55) 28%, rgba(168, 194, 154, 0) 60%),
    radial-gradient(ellipse 85% 70% at 90% 92%, rgba(183, 146, 104, 0.78) 0%, rgba(216, 196, 168, 0.55) 30%, rgba(216, 196, 168, 0) 62%),
    radial-gradient(ellipse 50% 45% at 75% 30%, rgba(244, 240, 226, 0.7) 0%, rgba(244, 240, 226, 0) 70%),
    radial-gradient(ellipse 55% 50% at 28% 75%, rgba(168, 194, 154, 0.55) 0%, rgba(168, 194, 154, 0) 72%),
    radial-gradient(ellipse 35% 28% at 50% 50%, rgba(255, 252, 247, 0.6) 0%, rgba(255, 252, 247, 0) 70%),
    linear-gradient(135deg, #d6e3c4 0%, #ecead7 50%, #e4cda7 100%);
  background-attachment: fixed;
  filter: saturate(115%);
}
.page-bg::after {
  /* Painterly diffusion — a very-blurred copy adds a soft bloom + extra saturation */
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(70px) saturate(140%);
  opacity: 0.7;
  mix-blend-mode: soft-light;
}
.page-bg::before {
  /* A second pass of color highlights — bright spots that catch like light through stained glass */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 30vw at 20% 18%, rgba(126, 154, 115, 0.45), transparent 70%),
    radial-gradient(circle 25vw at 82% 85%, rgba(183, 146, 104, 0.42), transparent 70%);
  filter: blur(50px);
  mix-blend-mode: multiply;
  opacity: 0.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--charcoal);
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.04; letter-spacing: -0.014em; font-weight: 300; }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.4rem); line-height: 1.04; letter-spacing: -0.026em; font-weight: 300; }
h3 { font-size: 1.7rem; line-height: 1.2; letter-spacing: -0.01em; font-weight: 400; }
h4 { font-size: 1.18rem; line-height: 1.3; font-weight: 400; }
em { font-style: italic; color: var(--sage-deep); }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}
/* The gold thread — a fine animated horizontal line that pairs with each eyebrow */
.thread {
  display: inline-block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold));
  opacity: 0.85;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible .thread,
.is-visible .thread { width: 56px; }
.section-head--center .thread { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.section-head--center .thread + .thread,
.hero__eyebrow .thread:last-child {
  background: linear-gradient(90deg, var(--gold), var(--gold) 70%, transparent);
}

/* ── Buttons ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 2em;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.35s ease,
              color 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
/* Universal shine sweep — a 45° bright streak slides across on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-22deg);
  transition: left 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before { left: 130%; }
.btn > * { position: relative; z-index: 2; }

.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 24px -14px rgba(43, 45, 42, 0.4);
}
.btn--primary:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 22px 40px -18px rgba(126, 154, 115, 0.55),
    0 0 0 6px rgba(168, 194, 154, 0.18);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.25);
  color: var(--charcoal);
  border-color: var(--charcoal);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
  border-color: var(--charcoal);
  box-shadow:
    0 22px 40px -18px rgba(43, 45, 42, 0.45),
    0 0 0 6px rgba(43, 45, 42, 0.06);
}

/* ── NAV — Liquid Glass ── */
.nav {
  --mx: 50%;
  --my: 50%;
  --sheen: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur-deep);
  -webkit-backdrop-filter: var(--glass-blur-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15),
    0 10px 30px -20px rgba(43, 45, 42, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  /* No overflow: hidden here — the dropdown panel below needs to escape the nav box.
     The ::before and ::after sheen pseudo-elements are inset:0, so they stay
     bounded to the nav rect without needing the parent to clip them. */
}
.nav::before {
  /* Top specular highlight — mimics light running across curved glass */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0) 55%
  );
  mix-blend-mode: overlay;
}
.nav::after {
  /* Cursor-tracking specular sheen — a soft bright wedge that follows the pointer */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  background:
    radial-gradient(
      340px 130px at var(--mx) var(--my),
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.45) 18%,
      rgba(255, 255, 255, 0.12) 38%,
      transparent 62%
    ),
    radial-gradient(
      120px 60px at var(--mx) var(--my),
      rgba(168, 194, 154, 0.45) 0%,
      transparent 70%
    );
  opacity: var(--sheen);
  transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
/* Keep nav children above the sheen layer */
.nav > * { position: relative; z-index: 1; }
.nav.is-scrolled {
  background: var(--glass-fill-strong);
  border-bottom-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    0 14px 36px -22px rgba(43, 45, 42, 0.32);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}
/* Override .container's 1200px max-width for the nav specifically — we want
   the logo flush against the left viewport edge on wide desktop displays,
   matching common modern-nav patterns (Apple, Stripe, Linear). Desktop-only
   so the mobile drawer keeps its tighter padding from the @media block below. */
@media (min-width: 881px) {
  .nav__inner.container {
    max-width: none;
    padding: 18px 40px;
  }
}
.nav__brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease, filter 0.3s ease;
  /* mix-blend-mode: multiply belt-and-suspenders — even if the PNG somehow
     re-introduces light pixels, they'll vanish into the cream background */
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}
.nav.is-scrolled .nav__brand img { height: 54px; }
.nav__links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  --ix: 0px;
  --iw: 28px;
  --ind-opacity: 0;
}

/* ── Magic-line thread indicator ──
   --echo (0..1) is driven by JS based on cursor velocity in the nav.
   At echo=0 the thread is pure gold; at echo=1 it picks up a sage bleed,
   echoing the sage halo from the cursor-tracking sheen. color-mix lets
   the gradient interpolate between the two states without crossfading
   stacked layers. */
.nav__indicator {
  --echo: 0;
  --thread: color-mix(in oklab, var(--gold), var(--sage-deep) calc(var(--echo) * 70%));
  --thread-soft: color-mix(in oklab, var(--thread), transparent 65%);
  position: absolute;
  left: 0;
  bottom: -8px;
  width: var(--iw);
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--thread-soft) 18%,
    var(--thread) 50%,
    var(--thread-soft) 82%,
    transparent 100%
  );
  transform: translateX(var(--ix));
  opacity: var(--ind-opacity);
  transition:
    transform 0.55s cubic-bezier(0.32, 0.72, 0.18, 1),
    width    0.55s cubic-bezier(0.32, 0.72, 0.18, 1),
    opacity  0.3s ease;
  pointer-events: none;
  z-index: 2;
  /* Glow halo — color also tracks --thread so the bloom inherits the echo */
  box-shadow:
    0 0 6px color-mix(in oklab, var(--thread), transparent 55%),
    0 1px 0 color-mix(in oklab, var(--thread), transparent 80%);
}
.nav__indicator::after {
  /* Tiny brighter "bead" at the cursor end of the thread for premium definition */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--thread);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px color-mix(in oklab, var(--thread), transparent 30%);
  opacity: 0.78;
}
.nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.65em 1.15em;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.35s ease,
              box-shadow 0.35s ease, transform 0.35s ease;
  /* Pseudo-element pills clip themselves via border-radius:inherit — no need
     for parent overflow:hidden, which would also clip the dropdown below. */
  isolation: isolate;
}
/* Dropdown trigger needs to let the panel below escape the nav box */
.nav__item--dropdown { overflow: visible; }
.nav__item::before {
  /* Liquid-glass selection pill — fades in on hover/focus */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}
.nav__item::after {
  /* Specular sheen on the glass pill */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.1) 35%,
    transparent 60%,
    rgba(168, 194, 154, 0.18) 100%
  );
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.nav__item:hover,
.nav__item:focus-visible,
.nav__item--dropdown:focus-within .nav__btn {
  color: var(--charcoal);
}
.nav__item:hover::before,
.nav__item:focus-visible::before,
.nav__item--dropdown:hover .nav__btn::before,
.nav__item--dropdown:focus-within .nav__btn::before { opacity: 1; transform: scale(1); }
.nav__item:hover::after,
.nav__item:focus-visible::after,
.nav__item--dropdown:hover .nav__btn::after,
.nav__item--dropdown:focus-within .nav__btn::after { opacity: 1; }

.nav__btn {
  position: relative;
  background: none;
  border: 0;
  padding: 0.65em 1.15em;
  margin: 0;
  font: inherit;
  color: inherit;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease;
  isolation: isolate;
}
.nav__btn::before,
.nav__btn::after {
  /* Inherit the same glass-pill treatment as nav__item */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}
.nav__btn::before {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: scale(0.94);
}
.nav__btn::after {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.1) 35%,
    transparent 60%,
    rgba(168, 194, 154, 0.18) 100%
  );
  mix-blend-mode: overlay;
}
.caret {
  transform: rotate(90deg);
  display: inline-block;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.nav__item--dropdown:hover .caret,
.nav__item--dropdown:focus-within .caret,
.nav__item--dropdown.is-open .caret { transform: rotate(-90deg); }
/* ── Glass dropdown panel ── */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  /* Solid ivory panel (was liquid-glass) — backdrop blur + specular highlight removed */
  background: var(--ivory);
  border: 1px solid rgba(168, 194, 154, 0.35);
  border-radius: 14px;
  padding: 8px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.25s;
  box-shadow: 0 24px 60px -22px rgba(43, 45, 42, 0.4);
  isolation: isolate;
  overflow: hidden;
}

/* ── Services mega-dropdown: 2-column grid of all 9 services + meta links ── */
.dropdown--services {
  min-width: 480px;
  padding: 14px;
}
.dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}
.dropdown__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  justify-content: center;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(168, 194, 154, 0.35);
}
.dropdown__meta a {
  font-size: 0.66rem !important;
  letter-spacing: 0.22em !important;
  color: var(--sage-deep) !important;
  padding: 6px 12px !important;
}
.dropdown__meta a::before { display: none !important; }
.dropdown__meta a:hover { color: var(--charcoal) !important; padding-left: 12px !important; }

/* ── Each row pairs a primary detail-page link with a small jump-to-anchor button ── */
.dropdown__row {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: background 0.3s ease;
}
/* Sage-tint hover (was translucent white — invisible against the new solid ivory panel) */
.dropdown__row:hover { background: var(--sage-tint); }

.dropdown__main {
  flex: 1;
  font-family: var(--serif);
  font-size: 0.94rem !important;
  font-weight: 400;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
  color: var(--charcoal) !important;
  padding: 10px 14px 10px 22px !important;
  border-radius: 10px 0 0 10px !important;
}
.dropdown__main:hover {
  background: transparent !important;          /* row already shows the hover bg */
  box-shadow: none !important;
}

/* Small ↓ "jump to section" button — fades in on hover, links to the
   in-page anchor on index.html so the user can browse without leaving */
.dropdown__jump {
  flex: 0 0 auto !important;
  width: 30px;
  height: 30px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  padding: 0 !important;
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--sage-deep) !important;
  background: transparent !important;
  border-radius: 50% !important;
  opacity: 0;
  box-shadow: none !important;
  transition: opacity 0.3s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.dropdown__jump::before { display: none !important; } /* no gold pip on the jump button */
.dropdown__row:hover .dropdown__jump,
.dropdown__row:focus-within .dropdown__jump { opacity: 0.85; }
.dropdown__jump:hover,
.dropdown__jump:focus-visible {
  opacity: 1 !important;
  background: rgba(168, 194, 154, 0.28) !important;
  color: var(--charcoal) !important;
  transform: translateY(2px);
  padding: 0 !important;
}
/* Specular highlight removed — panel is now solid ivory.
   Leaving an empty ::before pseudo so any other rules that might
   reference it don't break, but with no visible effect. */
.dropdown::before { content: none; }
.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:focus-within .dropdown,
.nav__item--dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  position: relative;
  padding: 12px 16px 12px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.3s ease, color 0.3s ease,
              padding 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.3s ease;
}
.dropdown a::before {
  /* Animated gold pip that slides in from the left on hover */
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 6px rgba(183, 146, 104, 0.5);
}
.dropdown a:hover {
  background: rgba(255, 255, 255, 0.65);
  color: var(--charcoal);
  padding-left: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px rgba(168, 194, 154, 0.4);
}
.dropdown a:hover::before { transform: translateY(-50%) scaleX(1); width: 14px; }

/* ── Glass "Book Now" CTA ── */
.nav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.78em 1.8em;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    0 8px 24px -14px rgba(43, 45, 42, 0.3);
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              background 0.35s ease,
              color 0.25s ease;
  margin-left: 14px;
}
.nav__cta::before {
  /* Curved-glass specular */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.05) 38%,
    transparent 60%,
    rgba(168, 194, 154, 0.22) 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.nav__cta:hover {
  background: rgba(43, 45, 42, 0.85);
  color: var(--cream);
  border-color: rgba(43, 45, 42, 0.85);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 14px 30px -16px rgba(43, 45, 42, 0.55);
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s, opacity 0.25s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  padding: clamp(110px, 14vw, 180px) 0 clamp(120px, 14vw, 200px);
  overflow: hidden;
  isolation: isolate;
  /* Hero now sits over the page gradient — no own background */
}

/* Animated drifting blobs */
.hero__atmos {
  position: absolute;
  inset: -10%;
  z-index: -2;
  pointer-events: none;
}
.blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.blob--sage {
  width: 56vw;
  height: 56vw;
  top: -10%;
  right: -10%;
  background: radial-gradient(circle at 30% 30%, rgba(126, 154, 115, 0.55), rgba(168, 194, 154, 0) 70%);
  animation: drift-a 32s ease-in-out infinite alternate;
  opacity: 0.85;
}
.blob--gold {
  width: 44vw;
  height: 44vw;
  bottom: -16%;
  left: -12%;
  background: radial-gradient(circle at 60% 60%, rgba(183, 146, 104, 0.45), rgba(183, 146, 104, 0) 72%);
  animation: drift-b 38s ease-in-out infinite alternate;
}
.blob--ivory {
  width: 50vw;
  height: 50vw;
  top: 35%;
  left: 28%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 252, 247, 0.85), rgba(255, 252, 247, 0) 72%);
  opacity: 0.75;
  animation: drift-c 44s ease-in-out infinite alternate;
}
@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  to   { transform: translate3d(-4vw, 6vw, 0) rotate(28deg) scale(1.08); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  to   { transform: translate3d(8vw, -4vw, 0) rotate(-20deg) scale(1.12); }
}
@keyframes drift-c {
  from { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  to   { transform: translate3d(-6vw, -3vw, 0) rotate(15deg) scale(0.92); }
}

.hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
}

/* Hero eyebrow with gold thread on either side */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 36px;
}
.hero__eyebrow .thread {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.7;
}

/* Massive editorial logo */
.hero__logo {
  width: clamp(280px, 42vw, 520px);
  height: auto;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 14px 32px rgba(43, 45, 42, 0.08));
}

.hero__title {
  margin: 4px 0 28px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.018em;
}
.hero__title em { font-weight: 400; }

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 42px;
  color: var(--charcoal-soft);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero__meta {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  margin: 0;
  font-style: italic;
}

/* Flanking botanical sprigs */
.hero__sprig {
  position: absolute;
  width: 70px;
  height: 95px;
  color: var(--sage);
  opacity: 0.55;
  top: 50%;
  transform: translateY(-50%);
}
.hero__sprig--left { left: -14px; transform: translateY(-50%) rotate(-12deg); }
.hero__sprig--right { right: -14px; transform: translateY(-50%) rotate(12deg) scaleX(-1); }

/* Scroll cue at bottom of hero */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--sage-deep); }
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--cream), transparent);
  animation: scroll-cue 2.4s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(120%); }
}

/* ── VALUES ── */
.values {
  position: relative;
  background: transparent;
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid rgba(168, 194, 154, 0.4);
  border-bottom: 1px solid rgba(168, 194, 154, 0.4);
}
.values::before {
  /* gold-rule "letterhead" divider centered above the values grid */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 56px;
}
.value h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-family: var(--serif);
}
.value p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin: 0;
}

/* ── SECTION HEADER ── */
.section-head {
  max-width: 720px;
  margin: 0 0 60px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 { margin-bottom: 18px; }
.section-lede {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  margin: 0;
}

/* ── SERVICES ── */
.services { padding: clamp(120px, 14vw, 180px) 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.service-card {
  --mx: 50%;
  --my: 50%;
  --sheen: 0;
  position: relative;
  isolation: isolate;
  scroll-margin-top: 120px; /* sticky nav offset so anchor jumps don't hide the card */
  /* Title-only at rest: collapsed to fit just the h3.
     On hover/focus/target, the .service-card__reveal expands and the card
     grows naturally. See @media (hover) block below for the desktop interaction. */
  /* Translucent glass over the page gradient */
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, rgba(221, 233, 210, 0.4) 100%);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(168, 194, 154, 0.55);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease,
              background 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(126, 154, 115, 0.08),
    0 16px 36px -24px rgba(43, 45, 42, 0.18);
}
.service-card::before {
  /* Cursor-tracking specular sheen — same recipe as the tier cards.
     Bright white core for the highlight, sage halo for the brand echo. */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: overlay;
  background:
    radial-gradient(
      220px 220px at var(--mx) var(--my),
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.28) 24%,
      rgba(255, 255, 255, 0.08) 42%,
      transparent 60%
    ),
    radial-gradient(
      120px 120px at var(--mx) var(--my),
      rgba(168, 194, 154, 0.5) 0%,
      transparent 72%
    );
  opacity: var(--sheen);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
/* ── Service card hover: same sage turn as tiers, but a DIFFERENT signal —
   no glow halo. Instead the corner number blooms into a gold flourish,
   text flips to cream, and sub-pills invert. Cleaner, more editorial. */
.service-card:hover,
.service-card:focus,
.service-card:focus-within {
  transform: translateY(-12px) scale(1.018);
  border-color: rgba(255, 255, 255, 0.42);
  outline: none;
  background:
    linear-gradient(160deg, rgba(94, 124, 84, 0.98) 0%, rgba(168, 194, 154, 0.94) 100%);
  /* Single crisp drop shadow — no aura rings, no bloom halo */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 36px 70px -26px rgba(94, 124, 84, 0.55);
}
/* Number blooms — small italic sage corner mark → larger gold flourish */
.service-card:hover .service-card__num,
.service-card:focus .service-card__num,
.service-card:focus-within .service-card__num {
  color: var(--gold);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  transform: translateX(-2px);
  text-shadow: 0 0 14px rgba(183, 146, 104, 0.45);
}
/* Heading + lede flip to cream */
.service-card:hover h3,
.service-card:focus h3,
.service-card:focus-within h3 { color: var(--cream); }
.service-card:hover .service-card__lede,
.service-card:focus .service-card__lede,
.service-card:focus-within .service-card__lede { color: rgba(247, 244, 237, 0.88); }
/* Sub-treatment pills invert: opaque sage → translucent cream pills with white rim */
.service-card:hover .service-card__sub li,
.service-card:focus .service-card__sub li,
.service-card:focus-within .service-card__sub li {
  background: rgba(255, 252, 247, 0.18);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.35);
}
/* Keep card content above the sheen */
.service-card > * { position: relative; z-index: 1; }

/* Anchor wrapping each card's content — makes the whole tile clickable.
   At rest (desktop hover-capable), h3 is centered vertically; on hover the
   layout flows naturally as the reveal expands. */
.service-card__link {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: justify-content 0.4s ease;
}

/* ── Service card head: title on LEFT, icon on RIGHT (row-reverse) ── */
.service-card__head {
  display: flex;
  flex-direction: row-reverse;     /* visually: title | icon  (icon pinned right) */
  align-items: center;
  gap: 16px;
  margin: 0;
}
.service-card__head h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
}

/* The icon — naked SVG (or masked span). 2× bigger, sage at rest → gold on hover. */
.service-card__icon {
  width: 160px;                    /* 2× previous 80px */
  height: 160px;
  padding: 0;
  flex-shrink: 0;
  color: var(--sage-deep);         /* sage green at rest */
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0.18, 1),
              color 0.4s ease;
  transform-origin: center;
}
/* PNG-masked variant — each card supplies its own URL via inline `--icon-mask`.
   The mask reveals the line work; background-color paints it in brand sage-deep,
   matching the SVG icons that use currentColor. */
.service-card__icon--mask {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
          mask: var(--icon-mask) center / contain no-repeat;
}

/* ── Collapse-on-rest, expand-on-hover (mouse / fine-pointer only) ── */
@media (hover: hover) and (pointer: fine) {
  /* Title-only collapsed state */
  .service-card .service-card__link {
    justify-content: center;
    min-height: 110px;
  }

  /* On hover/focus/target the icon stays visible AND shifts from sage → gold/brown */
  .service-card:hover .service-card__icon,
  .service-card:focus-within .service-card__icon,
  .service-card:target .service-card__icon {
    transform: scale(1.04) rotate(-2deg);
    color: var(--gold);             /* sage → gold transition on hover */
  }
  /* The reveal container uses grid-template-rows: 0fr → 1fr for smooth
     expansion of unknown-height content. */
  .service-card__reveal {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .service-card__reveal-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  /* Inner content fades in shortly after the row starts opening */
  .service-card__reveal-inner > * {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  /* Expanded state — fires on hover, keyboard focus, OR :target (anchor jump) */
  .service-card:hover .service-card__reveal,
  .service-card:focus-within .service-card__reveal,
  .service-card:target .service-card__reveal {
    grid-template-rows: 1fr;
  }
  .service-card:hover .service-card__link,
  .service-card:focus-within .service-card__link,
  .service-card:target .service-card__link {
    justify-content: flex-start;
  }
  .service-card:hover .service-card__reveal-inner > *,
  .service-card:focus-within .service-card__reveal-inner > *,
  .service-card:target .service-card__reveal-inner > * {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
  }
  /* Stagger inside the inner — num first, then lede, then sub, then cta */
  .service-card:hover .service-card__reveal-inner > *:nth-child(1),
  .service-card:focus-within .service-card__reveal-inner > *:nth-child(1),
  .service-card:target .service-card__reveal-inner > *:nth-child(1) { transition-delay: 0.12s; }
  .service-card:hover .service-card__reveal-inner > *:nth-child(2),
  .service-card:focus-within .service-card__reveal-inner > *:nth-child(2),
  .service-card:target .service-card__reveal-inner > *:nth-child(2) { transition-delay: 0.20s; }
  .service-card:hover .service-card__reveal-inner > *:nth-child(3),
  .service-card:focus-within .service-card__reveal-inner > *:nth-child(3),
  .service-card:target .service-card__reveal-inner > *:nth-child(3) { transition-delay: 0.28s; }
  .service-card:hover .service-card__reveal-inner > *:nth-child(4),
  .service-card:focus-within .service-card__reveal-inner > *:nth-child(4),
  .service-card:target .service-card__reveal-inner > *:nth-child(4) { transition-delay: 0.34s; }

  /* Visual hint at rest: tiny gold rule under h3 signals "there's more here".
     Anchored to the LEFT of the title (under the icon row) instead of centered. */
  .service-card h3 {
    position: relative;
    padding-bottom: 12px;
  }
  .service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.65;
    transition: opacity 0.4s ease, width 0.4s ease;
  }
  .service-card:hover h3::after,
  .service-card:focus-within h3::after,
  .service-card:target h3::after {
    opacity: 0;
    width: 60px;
  }
}

/* Touch / coarse pointer — same large gold icon */
@media (hover: none), (pointer: coarse) {
  .service-card__icon {
    opacity: 1 !important;
    transform: none !important;
    width: 160px !important;
    padding: 0 !important;
  }
}

/* On touch / coarse-pointer devices, hover doesn't exist — show full content
   immediately so tap users see everything before tapping the card. */
@media (hover: none), (pointer: coarse) {
  .service-card__reveal {
    display: block;
  }
  .service-card__reveal-inner > * {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card__reveal,
  .service-card__reveal-inner > * {
    transition: none !important;
  }
}
.service-card__cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.4s ease, transform 0.4s ease;
}
.service-card:hover .service-card__cta,
.service-card:focus-within .service-card__cta {
  color: var(--cream);
  transform: translateX(4px);
}

.service-card__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sage-deep);
  letter-spacing: 0.08em;
  transition: color 0.4s ease,
              font-size 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
              letter-spacing 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card h3 {
  margin: 14px 0 12px;
  font-size: 1.55rem;
  transition: color 0.4s ease;
}
.service-card__lede {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin-bottom: 18px;
  transition: color 0.4s ease;
}
.service-card__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-card__sub li {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  background: var(--sage-tint);
  color: var(--charcoal);
  border: 1px solid rgba(126, 154, 115, 0.25);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.services__note {
  margin-top: 50px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}
.services__note a {
  color: var(--sage-deep);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.services__note a:hover { color: var(--charcoal); border-color: var(--charcoal); }

/* ── ADD-ONS DROPDOWN ── */
.addons {
  background: transparent;
  padding: clamp(40px, 6vw, 70px) 0;
  border-top: 1px solid rgba(168, 194, 154, 0.4);
  border-bottom: 1px solid rgba(168, 194, 154, 0.4);
}
/* ── Add-Ons: liquid glass dropdown ── */
.addons__dropdown {
  position: relative;
  background:
    linear-gradient(160deg, rgba(221, 233, 210, 0.55), rgba(255, 255, 255, 0.35));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(168, 194, 154, 0.55);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 14px 36px -22px rgba(43, 45, 42, 0.28);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.addons__dropdown::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.05) 35%,
    transparent 62%,
    rgba(168, 194, 154, 0.18) 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}
.addons__dropdown[open] {
  background: var(--glass-fill-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    0 26px 60px -26px rgba(43, 45, 42, 0.4);
}

.addons__dropdown summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.25s ease;
  z-index: 1;
}
.addons__dropdown summary::-webkit-details-marker { display: none; }
.addons__dropdown summary:hover { background: rgba(255, 255, 255, 0.35); }

.addons__label { display: flex; flex-direction: column; gap: 4px; }
.addons__label .eyebrow { margin: 0; }
.addons__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
}
.addons__chev {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--sage-deep);
  transition: transform 0.3s ease;
  line-height: 1;
}
.addons__dropdown[open] .addons__chev { transform: rotate(45deg); }

.addons__body { padding: 0 36px 40px; }
.addons__lede {
  font-size: 1rem;
  color: var(--charcoal-soft);
  max-width: 640px;
  margin: 0 0 30px;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ── Each add-on is a tile with icon + body + pair-with line ── */
.addon {
  --mx: 50%;
  --my: 50%;
  --sheen: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px 20px;
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(221, 233, 210, 0.45));
  border: 1px solid rgba(168, 194, 154, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(126, 154, 115, 0.1);
  /* Cascade reveal animation — each tile starts hidden, fades up when panel opens.
     Hover additions: lift + sage halo + brighter fill — layered into the same transition. */
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.addons__dropdown[open] .addon:hover,
.addons__dropdown[open] .addon:focus-within {
  transform: translateY(-6px) scale(1.015);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(199, 214, 189, 0.6));
  border-color: var(--sage-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(168, 194, 154, 0.45),
    0 30px 60px -26px rgba(126, 154, 115, 0.5),
    0 0 0 3px rgba(168, 194, 154, 0.16),
    0 0 0 8px rgba(168, 194, 154, 0.08);
}
.addons__dropdown[open] .addon {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger each tile's reveal by 70ms */
.addons__dropdown[open] .addon:nth-child(1) { transition-delay: 0.10s; }
.addons__dropdown[open] .addon:nth-child(2) { transition-delay: 0.17s; }
.addons__dropdown[open] .addon:nth-child(3) { transition-delay: 0.24s; }
.addons__dropdown[open] .addon:nth-child(4) { transition-delay: 0.31s; }
.addons__dropdown[open] .addon:nth-child(5) { transition-delay: 0.38s; }
.addons__dropdown[open] .addon:nth-child(6) { transition-delay: 0.45s; }

.addon::before {
  /* Cursor-tracking specular sheen — same recipe as the tier + service cards */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: overlay;
  background:
    radial-gradient(
      200px 200px at var(--mx) var(--my),
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.25) 22%,
      transparent 55%
    ),
    radial-gradient(
      110px 110px at var(--mx) var(--my),
      rgba(168, 194, 154, 0.5) 0%,
      transparent 72%
    );
  opacity: var(--sheen);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.addon > * { position: relative; z-index: 1; }

/* Icon column — circular sage tint, icon stroke shifts to charcoal on hover */
.addon__ico {
  width: 44px;
  height: 44px;
  padding: 9px;
  border-radius: 50%;
  color: var(--sage-deep);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 60%),
    var(--sage-mid);
  border: 1px solid rgba(126, 154, 115, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(126, 154, 115, 0.18);
  transition: color 0.3s ease, background 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}
.addon:hover .addon__ico,
.addon:focus-within .addon__ico {
  color: var(--charcoal);
  transform: rotate(-6deg) scale(1.06);
}

.addon__body { min-width: 0; }
.addons__grid h4 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  margin: 2px 0 6px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.addons__grid p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin: 0;
}

/* Pair-with line — quiet, sage-keyed, italic */
.addon__pair {
  margin-top: 12px !important;
  padding-top: 10px;
  border-top: 1px solid rgba(168, 194, 154, 0.35);
  font-size: 0.78rem !important;
  font-style: italic;
  color: var(--sage-deep) !important;
  letter-spacing: 0.01em;
}
.addon__pair span {
  font-style: normal;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-right: 8px;
  opacity: 0.85;
}

/* Honor reduced motion: skip stagger animation */
@media (prefers-reduced-motion: reduce) {
  .addon {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── MEMBERSHIPS — stationery cards ── */
.memberships { padding: clamp(120px, 14vw, 180px) 0; }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
/* Single-tier variant — used on service detail pages (e.g. lashes.html) where only
   one membership tier is relevant. Center the card and cap its width. */
.tier-grid--single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}
/* Lash-membership block on the lashes service page — keeps section spacing aligned
   with neighboring .svc-section blocks. */
.svc-membership { margin-top: 1.5rem; }
.svc-membership__note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  text-align: center;
}
.tier {
  --mx: 50%;
  --my: 50%;
  --sheen: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(168, 194, 154, 0.4);
  border-radius: var(--radius-lg);
  padding: 56px 36px 44px;
  text-align: center;
  /* Translucent glass over the page gradient + gold "letterhead" rule */
  background:
    linear-gradient(90deg, transparent, rgba(183, 146, 104, 0.7) 50%, transparent) top center / 40px 1px no-repeat,
    linear-gradient(170deg, rgba(255, 255, 255, 0.6) 0%, rgba(221, 233, 210, 0.4) 100%);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 30px 60px -28px rgba(43, 45, 42, 0.12),
    0 60px 120px -60px rgba(43, 45, 42, 0.06);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.45s ease,
              border-color 0.45s ease,
              background 0.45s ease;
}
.tier::after {
  /* Cursor-tracking specular sheen — per-card pickup highlight */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: overlay;
  background:
    radial-gradient(
      240px 240px at var(--mx) var(--my),
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.35) 22%,
      rgba(255, 255, 255, 0.1) 42%,
      transparent 60%
    ),
    radial-gradient(
      130px 130px at var(--mx) var(--my),
      rgba(168, 194, 154, 0.55) 0%,
      transparent 72%
    );
  opacity: var(--sheen);
  transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
/* Keep card content above the sheen layer */
.tier > * { position: relative; z-index: 1; }
/* All tiers turn the same sage-deep on hover — uniform brand behavior */
.tier:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  background:
    linear-gradient(90deg, transparent, var(--gold) 50%, transparent) top center / 80px 1px no-repeat,
    linear-gradient(160deg, rgba(94, 124, 84, 0.98) 0%, rgba(168, 194, 154, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 60px 110px -38px rgba(94, 124, 84, 0.7),
    0 26px 60px -22px rgba(126, 154, 115, 0.5),
    0 0 0 4px rgba(168, 194, 154, 0.28),
    0 0 0 10px rgba(168, 194, 154, 0.15);
}
/* Flip text + CTA colors to read against the sage background */
.tier:hover h3,
.tier:hover .tier__hook,
.tier:hover .tier__desc { color: var(--cream); }
.tier:hover .tier__hook { color: rgba(247, 244, 237, 0.92); }
.tier:hover .tier__desc { color: rgba(247, 244, 237, 0.88); }
.tier:hover .tier__cta {
  background: rgba(255, 252, 247, 0.96);
  color: var(--sage-deep);
  border-color: rgba(255, 252, 247, 0.96);
}
.tier:hover .tier__cta:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
/* The fill animation inside .tier__cta::before needs to be cream-coloured
   when the surrounding card is sage, so it doesn't read as a dark slab */
.tier:hover .tier__cta::before { background: var(--charcoal); }
.tier h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}
.tier__hook {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 18px;
  transition: color 0.4s ease;
}
.tier__desc {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin-bottom: 26px;
  min-height: 75px;
  transition: color 0.4s ease;
}
.tier__cta {
  position: relative;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.8em 1.8em;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  color: var(--charcoal);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s ease, border-color 0.3s ease,
              transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease;
}
.tier__cta::before {
  /* Fill that wipes left→right on hover */
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0.18, 1);
  z-index: -1;
}
.tier__cta:hover {
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(43, 45, 42, 0.35);
}
.tier__cta:hover::before { transform: translateX(0); }
/* ── Featured tier: dark liquid glass ── */
.tier--featured {
  position: relative;
  /* Layer the gold letterhead rule + sage corner glow on top of a dark gradient */
  background:
    linear-gradient(90deg, transparent, rgba(183, 146, 104, 0.7) 50%, transparent) top center / 40px 1px no-repeat,
    linear-gradient(160deg, rgba(43, 45, 42, 0.92), rgba(43, 45, 42, 0.78));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--glass-highlight-dark), 0 24px 60px -28px rgba(43, 45, 42, 0.6);
}
.tier--featured::before {
  /* curved-glass sheen on the dark surface */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    transparent 60%,
    rgba(168, 194, 154, 0.22) 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}
.tier--featured h3,
.tier--featured .tier__hook,
.tier--featured .tier__desc,
.tier--featured .tier__cta { position: relative; z-index: 1; }
.tier--featured h3 { color: var(--cream); }
.tier--featured .tier__hook { color: var(--sage); }
.tier--featured .tier__desc { color: rgba(247, 244, 237, 0.82); }
.tier--featured .tier__cta {
  background: rgba(255, 252, 247, 0.92);
  color: var(--charcoal);
  border-color: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tier--featured .tier__cta:hover {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 252, 247, 0.6);
}

.memberships__note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  font-style: italic;
}

/* ── ABOUT ── */
.about {
  background: transparent;
  padding: clamp(120px, 14vw, 180px) 0;
  border-top: 1px solid rgba(168, 194, 154, 0.4);
  border-bottom: 1px solid rgba(168, 194, 154, 0.4);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy h2 { margin-bottom: 24px; }
.about__copy p {
  font-size: 1.02rem;
  color: var(--charcoal-soft);
  margin-bottom: 1.2em;
  max-width: 560px;
}
.about__copy .btn { margin-top: 14px; }

.about__panel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 25% 20%, rgba(168, 194, 154, 0.6), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(183, 146, 104, 0.35), transparent 60%),
    linear-gradient(160deg, var(--sage-tint), var(--cream) 60%, var(--gold-soft));
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 30px 70px -28px rgba(43, 45, 42, 0.28),
    0 60px 140px -60px rgba(43, 45, 42, 0.12);
  isolation: isolate;
}
.about__mark {
  position: absolute;
  inset: 0;
  background-image: url('assets/logo.png');
  background-repeat: no-repeat;
  background-position: center 38%;
  background-size: 55%;
  opacity: 0.78;
  mix-blend-mode: multiply;
  filter: saturate(0.85);
}
.about__sprig {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 88px;
  color: var(--sage-deep);
  opacity: 0.55;
}

/* ── CONTACT ── */
.contact { padding: clamp(120px, 14vw, 180px) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.contact__info h2 { margin-bottom: 36px; }
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
}
.contact__list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact__list dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding-top: 2px;
}
.contact__list dd {
  margin: 0;
  font-size: 1rem;
  color: var(--charcoal);
}
.contact__list a {
  position: relative;
  display: inline-block;
  color: var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.contact__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--sage-deep));
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact__list a:hover { color: var(--sage-deep); transform: translateY(-1px); }
.contact__list a:hover::after { width: 100%; }
.contact__social { display: flex; flex-wrap: wrap; gap: 18px; }

/* ── Boutique-stationery contact form: line-only inputs ── */
.contact__form {
  background: transparent;
  border: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__form h3 {
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font: inherit;
  font-family: var(--sans);
  font-size: 1.02rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--charcoal);
  padding: 8px 0 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 0.25s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.contact__form textarea {
  resize: vertical;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}
.contact__form button { margin-top: 10px; align-self: flex-start; }
.contact__status {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--sage-deep);
  min-height: 1.2em;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(247, 244, 237, 0.85);
  padding: 60px 0 36px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}
.footer__brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.92);
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 0.85rem;
  margin: 0;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}
.footer__nav a {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 237, 0.78);
  padding-bottom: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer__nav a::after {
  /* Gold-thread underline grows from center on hover */
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 6px rgba(183, 146, 104, 0.4);
}
.footer__nav a:hover { color: var(--cream); transform: translateY(-1px); }
.footer__nav a:hover::after { width: 100%; }
.footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(247, 244, 237, 0.15);
  padding-top: 24px;
  margin: 30px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 237, 0.55);
  text-align: center;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 28px 32px;
    background: var(--glass-fill-strong);
    backdrop-filter: var(--glass-blur-deep);
    -webkit-backdrop-filter: var(--glass-blur-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 24px 50px -22px rgba(43, 45, 42, 0.4);
    transform: translateY(-110%);
    transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav.is-open .nav__links { transform: translateY(0); }

  .nav__item, .nav__btn {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    text-align: left;
    border-radius: 0;
  }
  /* Mobile: dropdown items stack vertically (button on top, panel below) */
  .nav__item--dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .nav__item--dropdown .nav__btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
  }
  .nav__item::before,
  .nav__btn::before { border-radius: 0; }
  /* Indicator only makes sense for the horizontal desktop nav */
  .nav__indicator { display: none; }
  .nav__cta {
    margin-top: 18px;
    align-self: flex-start;
  }
  .nav__toggle { display: flex; }
  /* Mobile drawer: dropdown panels hidden by default, expand only when tapped (.is-open) */
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.32);
    margin: 0;
    border: 0;
    padding: 0;
    min-width: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease, margin 0.25s ease;
  }
  .nav__item--dropdown.is-open > .dropdown,
  .nav__item--dropdown.is-open .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 1200px;
    margin: 6px 0 12px;
    padding: 4px 0 4px 12px;
    transform: none;
  }
  .nav__item--dropdown:hover .dropdown,
  .nav__item--dropdown:focus-within .dropdown {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin: 0;
    padding: 0;
  }
  .nav__item--dropdown.is-open:hover .dropdown,
  .nav__item--dropdown.is-open:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 1200px;
    margin: 6px 0 12px;
    padding: 4px 0 4px 12px;
  }
  .dropdown--services { min-width: 0; padding: 0; }
  .nav__item--dropdown.is-open > .dropdown--services { padding: 4px 0 4px 12px; }
  .dropdown__grid { grid-template-columns: 1fr; gap: 0; }
  .dropdown__jump { display: none !important; }
  .dropdown__main { padding: 10px 14px !important; }

  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__panel { aspect-ratio: 5 / 4; max-width: 480px; }

  .contact__grid { grid-template-columns: 1fr; gap: 50px; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__nav { justify-content: center; }
  .footer__brand img { margin-left: auto; margin-right: auto; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 14px 20px; }
  .nav__brand img { height: 38px; }
  .hero { padding-top: 60px; padding-bottom: 60px; }
  .service-card { padding: 28px 24px 24px; }
  .addons__dropdown summary { padding: 24px 22px; }
  .addons__body { padding: 0 22px 28px; }
  .contact__form { padding: 30px 24px; }
  .contact__list > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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


/* ══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES (diamond-glow.html, etc.)
   ══════════════════════════════════════════════════════════ */

/* ── Hero (centered editorial) ── */
.svc-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
}
.svc-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Crest illustration above the eyebrow — service's "treatment seal" */
.svc-hero__crest {
  width: 200px;
  height: 200px;
  margin: 0 auto 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(216, 196, 168, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(168, 194, 154, 0.4), rgba(221, 233, 210, 0.65));
  border: 1px solid rgba(168, 194, 154, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(126, 154, 115, 0.18),
    0 24px 50px -22px rgba(126, 154, 115, 0.4);
  position: relative;
  isolation: isolate;
  animation: crest-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.svc-hero__crest::before {
  /* fine gold rim around the crest */
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(183, 146, 104, 0.45);
  pointer-events: none;
}
.svc-hero__illus {
  width: 130px;
  height: 130px;
  color: var(--sage-deep);
}
/* Mask variant for hero crest — uses a per-page PNG via inline --icon-mask */
.svc-hero__illus--mask {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
          mask: var(--icon-mask) center / contain no-repeat;
}
@keyframes crest-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .svc-hero__crest { animation: none; }
}
.svc-back {
  display: inline-block;
  margin-bottom: 36px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  transition: color 0.25s ease, transform 0.25s ease;
}
.svc-back:hover {
  color: var(--sage-deep);
  transform: translateX(-4px);
}
.svc-hero .eyebrow { justify-content: center; }
.svc-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  margin: 8px 0 22px;
}
.svc-hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--sage-deep);
  margin: 0 0 24px;
}
.svc-hero__intro {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 300;
  color: var(--charcoal-soft);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── Body sections ── */
.svc-detail {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 130px);
}
.svc-section {
  max-width: 760px;
  margin: 0 auto clamp(56px, 7vw, 96px);
}
.svc-section .eyebrow { margin-bottom: 18px; }
.svc-section h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.svc-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
  margin: 0;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.svc-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── Sub-treatment cards ── */
.svc-treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.svc-treatment {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, rgba(221, 233, 210, 0.42) 100%);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(168, 194, 154, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 32px -22px rgba(43, 45, 42, 0.18);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.svc-treatment::before {
  /* Fine gold rule at the top, like the tier letterhead */
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.svc-treatment h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
.svc-treatment p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.65;
  transition: color 0.4s ease;
}
.svc-treatment:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(160deg, rgba(94, 124, 84, 0.95) 0%, rgba(168, 194, 154, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 28px 50px -22px rgba(94, 124, 84, 0.5);
}
.svc-treatment:hover h3 { color: var(--cream); }
.svc-treatment:hover p { color: rgba(247, 244, 237, 0.88); }
.svc-treatment:hover::before { background: var(--cream); opacity: 0.9; }

/* ── CTA strip at end of detail ── */
.svc-cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(221, 233, 210, 0.4));
  border-radius: 18px;
  border: 1px solid rgba(168, 194, 154, 0.4);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
}
.svc-cta h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.svc-cta p {
  color: var(--charcoal-soft);
  margin: 0 0 24px;
}

/* ── Related services strip ── */
.svc-related {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
  border-top: 1px solid rgba(168, 194, 154, 0.35);
}
.svc-related .eyebrow {
  text-align: center;
  justify-content: center;
  margin-bottom: 36px;
}
.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}
.svc-related__card {
  position: relative;
  display: block;
  padding: 28px 26px 24px;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, rgba(221, 233, 210, 0.42) 100%);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(168, 194, 154, 0.5);
  color: var(--charcoal);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.svc-related__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--sage-deep);
  transition: color 0.4s ease;
}
.svc-related__card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
.svc-related__card p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin: 0 0 18px;
  line-height: 1.55;
  transition: color 0.4s ease;
}
.svc-related__cta {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.4s ease, transform 0.4s ease;
}
.svc-related__card:hover {
  transform: translateY(-8px) scale(1.012);
  background:
    linear-gradient(160deg, rgba(94, 124, 84, 0.96) 0%, rgba(168, 194, 154, 0.92) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 36px 70px -26px rgba(94, 124, 84, 0.55);
}
.svc-related__card:hover .svc-related__num { color: var(--gold); }
.svc-related__card:hover h3 { color: var(--cream); }
.svc-related__card:hover p { color: rgba(247, 244, 237, 0.88); }
.svc-related__card:hover .svc-related__cta { color: var(--cream); transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════
   FINANCING PAGE (financing.html)
   ══════════════════════════════════════════════════════════ */
.finance-hero {
  padding: clamp(90px, 11vw, 150px) 0 clamp(60px, 8vw, 90px);
  text-align: center;
}
.finance-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}
.finance-hero .eyebrow { justify-content: center; }
.finance-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  margin: 8px 0 22px;
}
.finance-hero__lede {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: var(--charcoal-soft);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.finance-hero__meta {
  margin: 28px 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--charcoal-soft);
}

.finance-providers,
.finance-how,
.finance-faq {
  padding: clamp(60px, 8vw, 100px) 0;
}

/* Provider cards — same sage-hover vocabulary as the service grid */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}
.finance-card {
  position: relative;
  isolation: isolate;
  padding: 36px 30px 30px;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, rgba(221, 233, 210, 0.42) 100%);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(168, 194, 154, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(126, 154, 115, 0.08),
    0 16px 36px -24px rgba(43, 45, 42, 0.18);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              color 0.4s ease;
}
.finance-card__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sage-deep);
  letter-spacing: 0.08em;
  transition: color 0.4s ease, font-size 0.4s ease, text-shadow 0.4s ease;
}
.finance-card h3 {
  margin: 12px 0 4px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  transition: color 0.4s ease;
}
.finance-card__tag {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  transition: color 0.4s ease;
}
.finance-card p {
  font-size: 0.96rem;
  color: var(--charcoal-soft);
  margin: 0 0 22px;
  line-height: 1.65;
  transition: color 0.4s ease;
}
.finance-card__cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.finance-card__cta:hover {
  color: var(--cream);
  border-color: var(--cream);
  transform: translateX(4px);
}
.finance-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(160deg, rgba(94, 124, 84, 0.98) 0%, rgba(168, 194, 154, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 36px 70px -26px rgba(94, 124, 84, 0.55);
}
.finance-card:hover .finance-card__num {
  color: var(--gold);
  font-size: 1.4rem;
  text-shadow: 0 0 14px rgba(183, 146, 104, 0.45);
}
.finance-card:hover h3 { color: var(--cream); }
.finance-card:hover .finance-card__tag { color: rgba(247, 244, 237, 0.85); }
.finance-card:hover p { color: rgba(247, 244, 237, 0.88); }

/* Steps ordered list */
.finance-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}
.finance-steps li {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.45), rgba(221, 233, 210, 0.32));
  border: 1px solid rgba(168, 194, 154, 0.4);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
}
.finance-step__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.finance-steps h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.finance-steps p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.6;
}

/* Alt block — pointer to memberships */
.finance-alt {
  padding: clamp(40px, 6vw, 70px) 0;
}
.finance-alt__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(221, 233, 210, 0.4));
  border-radius: 18px;
  border: 1px solid rgba(168, 194, 154, 0.4);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
}
.finance-alt__inner .eyebrow { justify-content: center; }
.finance-alt__inner h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.finance-alt__inner p {
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 auto 24px;
}

/* FAQ — details/summary collapsibles */
.finance-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}
.finance-faq__q {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(221, 233, 210, 0.4));
  border: 1px solid rgba(168, 194, 154, 0.4);
  border-radius: 12px;
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.finance-faq__q[open] {
  box-shadow: 0 14px 36px -22px rgba(43, 45, 42, 0.28);
}
.finance-faq__q summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  position: relative;
  padding-right: 50px;
  transition: background 0.25s ease;
}
.finance-faq__q summary::-webkit-details-marker { display: none; }
.finance-faq__q summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--sage-deep);
  transition: transform 0.3s ease;
  line-height: 1;
}
.finance-faq__q[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.finance-faq__q summary:hover { background: rgba(168, 194, 154, 0.16); }
.finance-faq__q p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

.finance-cta { padding: 0 0 clamp(80px, 10vw, 130px); }


/* ══════════════════════════════════════════════════════════
   SHOP PAGE (shop.html)
   ══════════════════════════════════════════════════════════ */
.shop-hero {
  padding: clamp(90px, 11vw, 150px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
}
.shop-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}
.shop-hero .eyebrow { justify-content: center; }
.shop-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  margin: 8px 0 22px;
}
.shop-hero h1 em {
  font-style: italic;
  color: var(--sage-deep);
}
.shop-hero__lede {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: var(--charcoal-soft);
  max-width: 620px;
  margin: 0 auto 26px;
  line-height: 1.7;
}
.shop-hero__notice {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 252, 247, 0.55);
  border: 1px dashed rgba(183, 146, 104, 0.55);
  border-radius: 999px;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--charcoal-soft);
  margin: 0;
}

/* Category filter chips */
.shop-filter {
  padding: 18px 0 36px;
  border-bottom: 1px solid rgba(168, 194, 154, 0.3);
  margin-bottom: 48px;
}
.shop-filter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0 28px;
}
.shop-filter__chip {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--charcoal);
  border: 1px solid rgba(168, 194, 154, 0.5);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.shop-filter__chip:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--sage-deep);
  transform: translateY(-1px);
}
.shop-filter__chip.is-active {
  background: linear-gradient(160deg, var(--sage-deep) 0%, var(--sage) 100%);
  color: var(--cream);
  border-color: var(--sage-deep);
}

/* Product grid (3-column on desktop) */
.shop { padding: 0 0 clamp(80px, 10vw, 130px); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, rgba(221, 233, 210, 0.42) 100%);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(168, 194, 154, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 16px 32px -22px rgba(43, 45, 42, 0.16);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.45s ease,
              border-color 0.45s ease,
              box-shadow 0.45s ease;
}

/* Media area — currently a soft sage-gold gradient with a bottle icon */
.product__media {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(168, 194, 154, 0.55), transparent 60%),
    radial-gradient(ellipse at 75% 80%, rgba(216, 196, 168, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.45), rgba(221, 233, 210, 0.35));
  border-bottom: 1px solid rgba(168, 194, 154, 0.3);
  position: relative;
}
.product__media svg {
  width: 64px;
  height: 96px;
  color: var(--sage-deep);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.45s ease;
}
.product:hover .product__media svg {
  transform: translateY(-4px) rotate(-3deg) scale(1.05);
  color: var(--gold);
}
.product__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px 18px;
  box-sizing: border-box;
  transition: opacity 0.55s ease,
              transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.product__img--alt {
  opacity: 0;
}
.product:hover .product__img--primary {
  opacity: 0;
  transform: scale(1.02);
}
.product:hover .product__img--alt {
  opacity: 1;
  transform: translateY(-4px) scale(1.04);
}

/* Card-wide affiliate link overlay — keeps existing layout intact */
.product__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
  background: transparent;
}
.product__link:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: -3px;
  border-radius: 16px;
}

/* Product body */
.product__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product__brand {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 4px;
}
.product__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  margin: 0;
}
.product__desc {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin: 2px 0 12px;
  flex: 1;
  line-height: 1.55;
}
.product__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Placeholder treatment — give Phil-side cards a "still being curated" feel */
.product--placeholder {
  border-style: dashed;
  border-color: rgba(168, 194, 154, 0.55);
}
.product--placeholder .product__brand {
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: none;
}
.product--placeholder .product__name {
  color: var(--charcoal-soft);
}

/* Hover lift — works for both placeholders and live products */
.product:hover {
  transform: translateY(-8px);
  border-color: var(--sage-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 32px 60px -26px rgba(126, 154, 115, 0.4);
}

.shop-cta { padding: 0 0 clamp(80px, 10vw, 130px); }


/* ══════════════════════════════════════════════════════════
   BOOKING PAGE (book.html)
   ══════════════════════════════════════════════════════════ */
.book {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0 clamp(80px, 10vw, 130px);
}
.book__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}
.book__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.book__head h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  margin: 8px 0 18px;
}
.book__lede {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 auto;
}
.book__head .eyebrow { justify-content: center; }

/* ── Step indicator (Date · Time · Details) ── */
.book__steps {
  display: flex;
  justify-content: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  flex-wrap: wrap;
}
.book__step {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border: 1px solid rgba(168, 194, 154, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease,
              box-shadow 0.4s ease, transform 0.4s ease;
}
.book__step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--sage-deep);
  text-transform: none;
  transition: color 0.4s ease;
}
.book__step.is-active {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.75), rgba(221, 233, 210, 0.5));
  color: var(--charcoal);
  border-color: var(--sage-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 28px -16px rgba(126, 154, 115, 0.4);
  transform: translateY(-1px);
}
.book__step.is-done {
  background: rgba(126, 154, 115, 0.85);
  color: var(--cream);
  border-color: rgba(126, 154, 115, 0.85);
}
.book__step.is-done .book__step-num { color: var(--cream); }

/* ── Booking panel ── */
.book__panel {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.65) 0%, rgba(221, 233, 210, 0.45) 100%);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border: 1px solid rgba(168, 194, 154, 0.45);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 24px 60px -32px rgba(43, 45, 42, 0.18);
}
.book__panel-head {
  margin-bottom: 32px;
}
.book__panel-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.book__panel-head p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin: 0;
}

/* ── Date rail: horizontal scrolling row of date cards ── */
.date-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 12px;
}
.date-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 10px 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(168, 194, 154, 0.4);
  border-radius: 14px;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              color 0.35s ease;
}
.date-card__dow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  transition: color 0.35s ease;
}
.date-card__num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  transition: color 0.35s ease;
}
.date-card__mon {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  transition: color 0.35s ease;
}
.date-card__tag {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.date-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--sage-deep);
  box-shadow: 0 22px 40px -22px rgba(126, 154, 115, 0.4);
}
.date-card.is-selected {
  background: linear-gradient(160deg, var(--sage-deep) 0%, var(--sage) 100%);
  border-color: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 22px 40px -18px rgba(126, 154, 115, 0.55);
}
.date-card.is-selected .date-card__dow,
.date-card.is-selected .date-card__num,
.date-card.is-selected .date-card__mon,
.date-card.is-selected .date-card__tag { color: var(--cream); }
.date-card.is-closed,
.date-card[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  background: transparent;
}
.date-card.is-closed:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(168, 194, 154, 0.4);
}

/* ── Time grid: pill buttons ── */
.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.time-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(168, 194, 154, 0.4);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--charcoal);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.32s ease,
              border-color 0.32s ease,
              color 0.32s ease,
              box-shadow 0.32s ease;
}
.time-slot small {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 2px;
}
.time-slot:hover:not([disabled]) {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--sage-deep);
  box-shadow: 0 16px 32px -18px rgba(126, 154, 115, 0.4);
}
.time-slot.is-selected {
  background: linear-gradient(160deg, var(--sage-deep) 0%, var(--sage) 100%);
  color: var(--cream);
  border-color: var(--sage-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 16px 32px -16px rgba(126, 154, 115, 0.55);
}
.time-slot.is-taken,
.time-slot[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  background: transparent;
  text-decoration: line-through;
  text-decoration-color: rgba(43, 45, 42, 0.35);
}

/* ── Booking form (Step 3) ── */
.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}
.book-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}
.book-form__full { grid-column: 1 / -1; }
.book-form input,
.book-form select,
.book-form textarea {
  font: inherit;
  font-family: var(--sans);
  font-size: 1.02rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--charcoal);
  padding: 10px 0 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(168, 194, 154, 0.5);
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.book-form textarea {
  resize: vertical;
  min-height: 60px;
}

/* ── Summary strip at the bottom of step 3 ── */
.book__summary {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 194, 154, 0.4);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.book__summary .eyebrow { margin: 0 0 4px; }
#summary-line {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0;
}
.book-form__status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--sage-deep);
  min-height: 1.2em;
}

/* ── Step nav (back buttons) ── */
.book__nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
  justify-content: flex-end;
}

/* ── Confirmation panel ── */
.book__confirm {
  text-align: center;
}
.book__confirm-mark {
  width: 78px;
  height: 78px;
  color: var(--sage-deep);
  margin: 0 auto 22px;
  display: block;
  animation: confirm-pop 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes confirm-pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.book__confirm h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  margin: 0 0 16px;
}
.book__confirm-summary {
  display: inline-block;
  margin: 12px 0 24px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(168, 194, 154, 0.4);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
}
.book__confirm-summary strong { font-weight: 500; }
.book__confirm .book__nav { justify-content: center; }

/* ── Decorative botanical sprig on the booking page ── */
.book__sprig {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 80px;
  color: var(--sage);
  opacity: 0.55;
}

/* ── Booking page mobile ── */
@media (max-width: 720px) {
  .book__steps { gap: 6px; }
  .book__step {
    padding: 10px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
  .book-form { grid-template-columns: 1fr; }
  .book__summary { grid-template-columns: 1fr; }
  .book__nav { justify-content: flex-start; }
  .date-rail { grid-template-columns: repeat(auto-fit, minmax(82px, 1fr)); }
  .time-grid { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
}


/* ──────────────────────────────────────────────────────────
   SVG defs container (offscreen, hidden but accessible to filter refs)
   ────────────────────────────────────────────────────────── */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ──────────────────────────────────────────────────────────
   Paper-grain overlay — adds tactile noise to the whole page
   ────────────────────────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.45;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ──────────────────────────────────────────────────────────
   TRUE LIQUID-GLASS REFRACTION
   Layered on top of the existing backdrop-blur/saturation surfaces
   as a progressive enhancement. Browsers that don't support
   backdrop-filter: url(#…) fall back to the standard glass look.
   ────────────────────────────────────────────────────────── */
@supports (backdrop-filter: url(#liquid-glass)) or (-webkit-backdrop-filter: url(#liquid-glass)) {
  .nav,
  .dropdown,
  .nav__cta,
  .addons__dropdown,
  .nav__item::before,
  .nav__btn::before {
    backdrop-filter: url(#liquid-glass) saturate(180%) blur(22px);
    -webkit-backdrop-filter: url(#liquid-glass) saturate(180%) blur(22px);
  }
  .nav {
    backdrop-filter: url(#liquid-glass) saturate(200%) blur(34px);
    -webkit-backdrop-filter: url(#liquid-glass) saturate(200%) blur(34px);
  }
}

/* Pause heavy blob animation when the user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none !important; }
  .hero__scroll-line::after { animation: none !important; }
}

/* ──────────────────────────────────────────────────────────
   Z-INDEX HOUSEKEEPING
   Make sure the grain overlay sits ABOVE the page content
   but BELOW any modal/dialog — and below the sticky nav so
   the nav reads crisply.
   ────────────────────────────────────────────────────────── */
.nav { z-index: 50; }
.grain-overlay { z-index: 49; }

/* Make sure hero sprig flanks don't blow past the container on narrower viewports */
@media (max-width: 720px) {
  .hero__sprig { display: none; }
  .hero__logo { width: clamp(220px, 60vw, 360px); }
  .hero { padding-top: 90px; padding-bottom: 100px; }
  .hero__scroll { display: none; }
}
