/* ============================================================
   Hiddengemely — Lash Artistry & Mentorship
   Type: Marcellus (display serif) + Hanken Grotesk (body)
   Palette: Blue Mint (primary) · light gray · white · charcoal ink
   ============================================================ */

:root {
  /* Brand — Mint Blue luxury system (matched to the client's mint-blue swatch:
     softer and greener than turquoise) */
  --mint: #8FDFD2;          /* Primary — Mint Blue */
  --primary-hover: #77D2C6; /* Primary hover */
  --primary-light: #D6F6F0; /* Primary light */
  --primary-dark: #4FB6A6;  /* Primary dark */
  --teal: #CDF3EC;          /* light accent (button wipes, glows) */
  --teal-deep: #4FB6A6;     /* accent for links / italic words */
  --teal-ink: #1F1F1F;      /* headings — luxury charcoal */
  --success: #56C596;
  --glow: rgba(143, 223, 210, .28);

  /* Neutrals — warm cream ground so the Tiffany blue reads as the accent */
  --porcelain: #FFFFFF;     /* white — cards */
  --porcelain-2: #F5F2EC;   /* section background */
  --cream: #FAF8F4;         /* page background */
  --vanilla: #FAF8F4;
  --ink: #1F1F1F;           /* luxury charcoal */
  --ink-70: #6F6F6F;        /* secondary text */
  --ink-55: rgba(31, 31, 31, .5);
  --ink-35: rgba(31, 31, 31, .35);
  --line: #E9E5DF;          /* borders */
  --line-soft: rgba(31, 31, 31, .06);

  --maxw: 1200px;

  /* Motion */
  --exp: cubic-bezier(0.16, 1, 0.3, 1);
  --quint: cubic-bezier(0.22, 1, 0.36, 1);
  --quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* z-scale */
  --z-header: 100;
  --z-float: 120;
  --z-nav: 130;
  --z-cursor: 190;
  --z-intro: 200;

  --shadow: 0 24px 60px -30px rgba(0, 0, 0, .12), 0 4px 14px -8px rgba(0, 0, 0, .08);
  --shadow-sm: 0 14px 30px -18px rgba(0, 0, 0, .1);
  --radius: 24px;
}

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

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

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }

/* Decorative vertical edge label */
.edge-label {
  position: fixed; left: 14px; top: 50%; z-index: 40;
  transform: rotate(180deg) translateY(50%);
  writing-mode: vertical-rl;
  font-size: .68rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-35);
  pointer-events: none;
}
@media (max-width: 1120px) { .edge-label { display: none; } }

/* ---------- Type helpers ---------- */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 3vw, 3rem); /* ~48px */
  line-height: 1.06;
  letter-spacing: -0.005em;
  text-wrap: balance;
  color: var(--ink);
}
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.section-sub {
  color: var(--ink-70); margin-top: 1.1rem; max-width: 62ch;
  font-size: 1.125rem; text-wrap: pretty; /* 18px body */
}
.ital { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  --dur: .3s;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Poppins", system-ui, sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: .005em;
  padding: .95rem 1.9rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; overflow: hidden;
  transition: transform .3s var(--exp), box-shadow .3s var(--exp),
              background .3s var(--exp), color .3s var(--exp), border-color .3s var(--exp);
}
.btn:active { transform: scale(.97); }
.btn span { position: relative; z-index: 1; }
/* Primary — Tiffany Blue, white text, soft shadow + glow on hover */
.btn-primary { background: var(--mint); color: #FFFFFF; box-shadow: 0 10px 26px -12px var(--glow), var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 16px 36px -12px var(--glow), 0 8px 22px -12px rgba(0,0,0,.12); }

/* Secondary — transparent, Tiffany border + text; fills on hover */
.btn-ghost { color: var(--primary-dark); border-color: var(--mint); background: transparent; }
.btn-ghost:hover { background: var(--mint); color: #FFFFFF; border-color: var(--mint); transform: translateY(-2px); box-shadow: 0 14px 32px -14px var(--glow); }

/* Solid Tiffany button (same as primary) */
.btn-mint {
  background: var(--mint); color: #FFFFFF;
  box-shadow: 0 10px 26px -12px var(--glow), var(--shadow-sm);
}
.btn-mint:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 16px 36px -12px var(--glow), 0 8px 22px -12px rgba(0,0,0,.12); }

/* Outline on dark sections — white border/text, fills to Tiffany */
.btn-outline { border-color: rgba(255,255,255,.5); color: var(--porcelain); }
.btn-outline:hover { background: var(--mint); border-color: var(--mint); color: #FFFFFF; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  /* No border: the bar dissolves into the page with a soft top-down fade,
     so the header reads as part of the same surface — nothing to divide them. */
  /* Match the cream page background so the bar blends in (no white line/band on top) */
  background: linear-gradient(180deg,
    var(--cream) 0%,
    color-mix(in srgb, var(--cream) 82%, transparent) 62%,
    transparent 100%);
  border-bottom: 0;
  transition: background .5s var(--exp);
}
/* Once scrolled over content, deepen the fade a touch for legibility — still no line */
.site-header.scrolled {
  background: linear-gradient(180deg,
    var(--cream) 0%,
    color-mix(in srgb, var(--cream) 92%, transparent) 60%,
    transparent 100%);
}
/* No backdrop-filter/mask: both repaint every scroll frame (jank on mobile).
   The gradient fade above already gives the "dissolve into the page" look
   at near-zero cost, so scrolling stays smooth on low-end devices. */
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 90px; }
.nav-left { justify-self: start; display: flex; align-items: center; gap: 1rem; min-width: 0; }
.nav-right { justify-self: end; }
.logo-img { height: 58px; width: auto; display: block; }

.logo { justify-self: center; display: inline-flex; align-items: center; gap: .7rem; }
.logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 16px;
  background: var(--ink); color: var(--mint);
  font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: 1rem;
}
.logo-word {
  font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-weight: 500; letter-spacing: .01em;
}

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: .93rem; color: var(--ink-70); transition: color .3s var(--exp); position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px;
  background: var(--teal-deep); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--exp);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  color: var(--ink) !important; border: 1px solid var(--line);
  padding: .5rem 1.15rem; border-radius: 16px; font-weight: 500;
  transition: all .4s var(--exp);
}
.nav-cta:hover { background: var(--ink); color: var(--porcelain) !important; border-color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .4s var(--exp), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
/* ---- Split hero: copy on the left, framed portrait on the right ---- */
.hero-split {
  background:
    radial-gradient(120% 120% at 88% 8%, var(--glow), rgba(132, 216, 204,0) 46%),
    linear-gradient(180deg, var(--cream), var(--porcelain-2));
  padding: clamp(2.4rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5.5rem);
}
.hero-split .hero-inner {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.hero-split .hero-copy { max-width: 34rem; }
.hero-portrait { position: relative; margin: 0; justify-self: end; width: 100%; max-width: 30rem; }
.hero-portrait-frame {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -28px rgba(22,84,74,.42), 0 2px 0 rgba(255,255,255,.6) inset;
  outline: 1px solid var(--line-soft); outline-offset: -1px;
}
.hero-portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
/* subtle mint corner accents on the frame */
.hero-portrait::before, .hero-portrait::after {
  content: ""; position: absolute; width: 44px; height: 44px; z-index: 2; pointer-events: none;
}
.hero-portrait::before { top: -10px; left: -10px; border-top: 2px solid var(--mint); border-left: 2px solid var(--mint); border-top-left-radius: 8px; }
.hero-portrait::after { bottom: -10px; right: -10px; border-bottom: 2px solid var(--mint); border-right: 2px solid var(--mint); border-bottom-right-radius: 8px; }
.hero-portrait-tag {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: rgba(255,255,255,.82); backdrop-filter: blur(4px);
  padding: .38rem .7rem; border-radius: 999px; border: 1px solid var(--line-soft);
}
.hero-kicker {
  display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 1.1rem;
}
.hero-field { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* Radial gradients are already soft; skip filter:blur so the animated layer
   isn't re-rasterized every frame. will-change promotes each orb to its own
   compositor layer, keeping the float animation on the GPU. */
.orb { position: absolute; border-radius: 50%; opacity: .9; will-change: transform; }
.orb-1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -14%; right: -6%;
  background: radial-gradient(circle at 45% 40%, var(--glow), rgba(132, 216, 204,0) 64%);
  animation: float-a 16s ease-in-out infinite;
}
.orb-2 {
  width: 34vw; height: 34vw; max-width: 440px; max-height: 440px; bottom: 4%; left: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(31,114,102,.28), rgba(31,114,102,0) 66%);
  animation: float-b 20s ease-in-out infinite;
}
@keyframes float-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-3%, 4%) scale(1.06); } }
@keyframes float-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4%, -3%) scale(1.08); } }
.grain {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: multiply; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; z-index: 1; }
.hero-copy { max-width: 36rem; }
.hero-title {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(2.375rem, 1rem + 6vw, 4.5rem); /* 38 → 52 → 72px */
  line-height: 1.04; letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero-title .line-in { display: block; }
.hero-title .ital { font-style: italic; font-weight: 600; color: var(--teal-deep); }

.hero-body { padding-top: clamp(1.4rem, 3vw, 2.2rem); max-width: 42ch; }
.hero-lede { font-size: clamp(1.05rem, 1.5vw, 1.18rem); color: var(--ink-70); }
.hero-lede em { font-style: italic; color: var(--ink); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* Hero image plate */
.hero-plate { grid-area: plate; position: relative; align-self: stretch; margin-top: 1rem; will-change: transform; }
.plate-img {
  aspect-ratio: 3 / 4; border-radius: 16px; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 12%, rgba(255,255,255,.55), transparent 45%),
    linear-gradient(150deg, var(--glow) 0%, rgba(22,84,74,.22) 100%),
    var(--porcelain-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.reg { position: absolute; width: 14px; height: 14px; border: 1px solid rgba(255,255,255,.7); }
.reg.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.reg.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.reg.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.reg.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.plate-tab {
  position: absolute; left: -14px; bottom: 26px;
  background: var(--ink); color: var(--porcelain);
  padding: .55rem .9rem; display: flex; flex-direction: column; line-height: 1.2;
  box-shadow: var(--shadow-sm);
}
.plate-tab-k { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mint); }
.plate-tab-v { font-family: "Cormorant Garamond", serif; font-size: 1.05rem; }

.ph-tag {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-ink);
  background: rgba(255,255,255,.62); padding: .4rem .8rem; border-radius: 2px; position: relative; z-index: 1;
}

/* Marquee */
.marquee {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 1rem 0; background: color-mix(in srgb, var(--porcelain-2) 60%, transparent);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap;
  font-family: "Cormorant Garamond", serif; font-size: 1.15rem; font-style: italic; color: var(--ink-70);
  animation: marquee 34s linear infinite;
}
.marquee-track .dot { color: var(--teal); font-style: normal; font-size: .7rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES — editorial ledger
   ============================================================ */
.ledger-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 760px; }
.ledger {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.ledger-group {
  font-family: "Cormorant Garamond", serif; font-weight: 500; font-style: italic;
  font-size: 1.35rem; color: var(--teal-ink);
  padding-bottom: .9rem; margin-bottom: .4rem; border-bottom: 1px solid var(--ink);
}
.price-list { list-style: none; }
.price-list > li {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  column-gap: .5rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line-soft);
}
.pl-name { font-size: 1.08rem; font-weight: 500; color: var(--ink); }
.pl-tm {
  font-family: "Manrope", sans-serif; font-style: normal; font-weight: 600;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep);
  border: 1px solid var(--teal); border-radius: 2px; padding: .12rem .4rem; margin-left: .5rem;
  vertical-align: middle;
}
.pl-lead { border-bottom: 1px dotted var(--line); align-self: center; height: 1px; margin: 0 .2rem; }
.pl-price { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; color: var(--ink); white-space: nowrap; }
.pl-note { grid-column: 1 / -1; color: var(--ink-55); font-size: .92rem; margin-top: .3rem; max-width: 42ch; }
.pl-star .pl-name { color: var(--teal-ink); }

.fills-block { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--ink); }
.fills-title { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.35rem; color: var(--teal-ink); margin-bottom: .6rem; }
.fills-rows { list-style: none; display: grid; gap: .55rem; }
.fills-rows li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .5rem; font-size: 1rem; color: var(--ink-70); }
.fills-rows i { border-bottom: 1px dotted var(--line); height: 1px; }
.fills-rows li span:last-child { font-family: "Cormorant Garamond", serif; color: var(--ink); }
.ledger-cta {
  display: inline-block; margin-top: 1.8rem; font-weight: 600; color: var(--teal-deep);
  transition: transform .4s var(--exp); font-size: .95rem;
}
.ledger-cta:hover { transform: translateX(4px); }

/* ============================================================
   BOOKING — premium two-panel reservation
   ============================================================ */
.booking { position: relative; background: transparent; }
.booking-wrap { max-width: 1080px; }

.booker {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.booker-main {
  background: #fff; border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.step { padding: 1.6rem 0; border-bottom: 1px solid var(--line-soft); }
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: 0; padding-bottom: 0; }
.step-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.3rem; }
.step-num {
  flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif; font-size: .95rem; color: var(--teal-ink);
  border: 1px solid var(--line); border-radius: 50%;
  transition: background .4s var(--exp), color .4s var(--exp), border-color .4s var(--exp);
}
.step-head h3 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 1.3rem; flex: 1; }
.step-tick {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-deep); position: relative;
  opacity: 0; transform: scale(.6); transition: opacity .4s var(--exp), transform .4s var(--exp);
}
.step-tick::after {
  content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.step[data-done="true"] .step-num { background: var(--mint); color: var(--ink); border-color: var(--mint); }
.step[data-done="true"] .step-tick { opacity: 1; transform: scale(1); }

.chip-grid { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  font: inherit; font-size: .92rem; cursor: pointer; background: #FFFFFF; color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px; padding: .72rem 1.2rem; position: relative;
  transition: transform .4s var(--exp), border-color .35s var(--exp), color .35s var(--exp), background .35s var(--exp), box-shadow .35s var(--exp);
}
.chip:hover { border-color: var(--mint); color: var(--teal-deep); background: var(--glow); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chip[aria-selected="true"] {
  background: var(--mint); color: var(--ink); border-color: var(--mint);
  box-shadow: 0 12px 26px -12px rgba(31,114,102,.55);
}
.chip-day { min-width: 72px; text-align: center; font-family: "Cormorant Garamond", serif; letter-spacing: .02em; }

/* Service options: tidy aligned two-column grid */
#serviceGrid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.svc-opt {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  text-align: left; padding: .85rem 1.1rem;
}
.svc-opt-name { font-size: .95rem; line-height: 1.25; }
.svc-opt-price {
  font-family: "Cormorant Garamond", serif; font-size: 1.02rem; color: var(--teal-deep);
  white-space: nowrap; transition: color .35s var(--exp);
}
.svc-opt[aria-selected="true"] .svc-opt-price { color: var(--mint); }
@media (max-width: 520px) { #serviceGrid { grid-template-columns: 1fr; } }
/* Time slots read like a clock line */
.slot-grid .chip { padding-left: 2rem; }
.slot-grid .chip::before {
  content: ""; position: absolute; left: 1rem; top: 50%; width: 7px; height: 7px; margin-top: -3.5px;
  border-radius: 50%; border: 1.5px solid var(--teal); transition: border-color .35s var(--exp), background .35s var(--exp);
}
.slot-grid .chip[aria-selected="true"]::before { background: var(--mint); border-color: var(--mint); }

.slots-hint { color: var(--ink-55); font-size: .92rem; margin-bottom: .9rem; font-style: italic; }
.slots-hint.hidden { display: none; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field > span { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-70); margin-bottom: .45rem; }
.field > span em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--ink-35); }
.field input {
  width: 100%; font: inherit; font-size: 1rem; padding: .9rem 1.1rem; border-radius: 16px;
  border: 1px solid var(--line); background: var(--cream);
  transition: border-color .3s var(--exp), box-shadow .3s var(--exp), background .3s var(--exp);
}
.field input::placeholder { color: var(--ink-35); }
.field input:focus { outline: none; border-color: var(--mint); background: #fff; box-shadow: 0 0 0 4px var(--glow); }

/* Reservation card */
.booker-aside { position: sticky; top: 100px; }
.res-card {
  background: linear-gradient(165deg, #4EB6A9, #237E71); color: #FFFFFF;
  padding: clamp(1.6rem, 2.5vw, 2.1rem); border-radius: 20px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.res-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 120px; pointer-events: none;
  background: radial-gradient(120% 100% at 100% 0%, var(--glow), transparent 60%);
}
.res-top { position: relative; padding-bottom: 1.3rem; margin-bottom: 1.3rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.res-kicker { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.5rem; color: #fff; }
.res-studio { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mint); margin-top: .35rem; }
.res-rows { display: grid; gap: .95rem; }
.res-row { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 1rem; }
.res-row dt { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,247,244,.5); }
.res-row dd {
  text-align: right; font-size: 1rem; color: #fff; font-weight: 500;
  transition: color .3s var(--exp);
}
.res-row dd.is-empty { color: rgba(247,247,244,.32); font-weight: 400; font-style: italic; }
.res-total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 1.4rem 0 1.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.14);
}
.res-total > span:first-child { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,247,244,.5); }
.res-price { font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--mint); line-height: 1; }
/* Deposit */
.res-deposit { margin: -0.6rem 0 1.4rem; padding-top: 1rem; border-top: 1px dashed rgba(255,255,255,.18); }
.res-deposit-row { display: flex; align-items: baseline; justify-content: space-between; }
.res-deposit-row > span:first-child { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,247,244,.5); }
.res-deposit-amt { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; color: #fff; }
.res-deposit-note { margin-top: .35rem; font-size: .8rem; line-height: 1.45; color: rgba(247,247,244,.55); }
/* Deposit payment methods (Venmo link / Zelle copy) */
.res-pay { margin-top: .9rem; }
.res-pay-title { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,247,244,.5); margin-bottom: .55rem; text-align: center; }
.res-pay-methods { display: grid; gap: .5rem; }
.res-pay-btn {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  font: inherit; font-size: .92rem; cursor: pointer; text-align: left;
  padding: .72rem .9rem; border-radius: 16px; color: var(--porcelain);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
  transition: border-color .3s var(--exp), background .3s var(--exp), transform .3s var(--exp);
}
.res-pay-btn:hover { border-color: var(--mint); background: var(--glow); transform: translateY(-1px); }
.res-pay-label { font-weight: 600; }
.res-pay-handle { margin-left: auto; color: rgba(247,247,244,.72); }
.res-pay-copy { margin-left: .6rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mint); }
.res-pay-btn.copied { border-color: var(--mint); }
.res-card .btn-book { width: 100%; }
.res-note { margin-top: 1rem; font-size: .8rem; line-height: 1.5; color: rgba(247,247,244,.5); text-align: center; }
.btn-book:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-book:disabled::after { display: none; }
/* Bright mint CTA that pops on the deep-mint reservation card */
.res-card .btn-book { background: var(--mint); color: var(--ink); }
.res-card .btn-book:not(:disabled):hover { transform: translateY(-3px); }
.res-card .btn-book::after { background: linear-gradient(120deg, var(--teal), #A6E6E1); }
.res-card .btn-book:disabled { background: rgba(255,255,255,.16); color: rgba(255,255,255,.55); }

/* ============================================================
   ACADEMY — a dark, luxury prospectus
   ============================================================ */
/* Full-bleed Blue Mint field — the elevated, separate offering */
.academy {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 60% at 82% 6%, rgba(143, 223, 210,.35), transparent 60%),
    linear-gradient(165deg, #4EB6A9 0%, #237E71 100%);
  color: #FFFFFF;
  padding: clamp(6rem, 11vw, 10rem) 0;
}
.academy-field { position: absolute; inset: 0; z-index: 0; }
.academy .grain { opacity: .05; mix-blend-mode: screen; }
.a-orb {
  position: absolute; width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  top: -22%; right: -14%; border-radius: 50%; will-change: transform;
  background: radial-gradient(circle at 50% 50%, rgba(143, 223, 210,.26), transparent 64%);
  animation: float-a 22s ease-in-out infinite;
}
.academy-inner { position: relative; z-index: 1; }

.a-eyebrow {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-bottom: 1.4rem; margin-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(247,247,244,.55);
}
.a-eyebrow span:first-child { color: var(--mint); font-weight: 600; }

.academy-top {
  display: grid; grid-template-columns: 1.35fr .65fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.a-title {
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.05; letter-spacing: 0;
  margin: 0 0 1.5rem; text-wrap: balance; max-width: 16ch;
}
.a-title .ital { color: var(--mint); font-weight: 400; }
.a-lede { color: rgba(247,247,244,.82); font-size: 1.12rem; line-height: 1.75; max-width: 60ch; }
.a-lede strong { color: #fff; font-weight: 600; }
.a-seal {
  margin-top: 1.8rem; display: inline-flex; align-items: center; gap: .7rem;
  font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.02rem; color: #fff;
}
.a-seal::before {
  content: "✦"; color: var(--mint); font-style: normal; font-size: .85rem;
}

/* Prospectus panel */
.a-prospectus {
  border: 1px solid var(--glow); padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: rgba(255,255,255,.03);
}
.a-prospectus dl { display: grid; }
.a-prospectus dl > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.a-prospectus dl > div:first-child { padding-top: 0; }
.a-prospectus dt { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,247,244,.5); }
.a-prospectus dd { font-family: "Cormorant Garamond", serif; font-size: 1.05rem; color: #fff; text-align: right; }
.a-apply { width: 100%; margin-top: 1.6rem; }
.a-prospectus-note { margin-top: .9rem; text-align: center; font-size: .8rem; font-style: italic; color: rgba(247,247,244,.5); }

/* Curriculum */
.weeks-head {
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.14);
}
.weeks-head span { font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(247,247,244,.55); }
.weeks {
  list-style: none; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: clamp(2rem, 5vw, 4rem);
}
.weeks li {
  display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 1.3rem;
  padding: 1.6rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
  transition: padding-left .5s var(--exp);
}
.weeks li:hover { padding-left: .5rem; }
.weeks .wk {
  font-family: "Cormorant Garamond", serif; font-size: 1.9rem; font-style: italic;
  color: var(--teal); line-height: 1; transition: color .5s var(--exp);
}
.weeks li:hover .wk { color: var(--mint); }
.weeks h4 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 1.24rem; margin-bottom: .3rem; }
.weeks p { color: rgba(247,247,244,.64); font-size: .93rem; max-width: 34ch; }

/* Application form */
.apply-band {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
  padding-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,.14);
  scroll-margin-top: 92px;
}
.apply-title {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(2.375rem, 1rem + 4vw, 3.6rem);
  line-height: 1.03; letter-spacing: -0.01em; text-wrap: balance; color: #FFFFFF;
}
.apply-title .ital { font-style: italic; font-weight: 600; color: var(--primary-light); }
.apply-lede { color: rgba(247,247,244,.78); font-size: 1.02rem; line-height: 1.7; margin-top: 1rem; max-width: 42ch; }
.apply-wa { margin-top: 1.4rem; font-size: .95rem; color: rgba(247,247,244,.6); }
.apply-wa a { color: var(--mint); border-bottom: 1px solid var(--glow); padding-bottom: 1px; transition: border-color .3s var(--exp); }
.apply-wa a:hover { border-color: var(--mint); }

.apply-form { display: grid; gap: 1rem; }
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.af-field { display: block; }
.af-field > span { display: block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(247,247,244,.6); margin-bottom: .45rem; }
.af-field > span em { text-transform: none; letter-spacing: 0; font-style: normal; color: rgba(247,247,244,.4); }
.af-field input, .af-field select, .af-field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--porcelain);
  padding: .8rem .95rem; border-radius: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  transition: border-color .3s var(--exp), box-shadow .3s var(--exp), background .3s var(--exp);
}
.af-field textarea { resize: vertical; min-height: 96px; }
.af-field input::placeholder, .af-field textarea::placeholder { color: rgba(247,247,244,.38); }
.af-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237ADACA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .95rem center; padding-right: 2.4rem;
}
.af-field select option { color: var(--ink); }
.af-field :focus {
  outline: none; border-color: var(--mint); background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px var(--glow);
}
.af-submit { margin-top: .4rem; justify-self: start; }
.af-note { font-size: .82rem; color: rgba(247,247,244,.5); }

.apply-success {
  grid-column: 2; align-self: center;
  border: 1px solid var(--glow); background: var(--glow);
  padding: clamp(1.8rem, 3vw, 2.6rem); text-align: center;
}
.apply-success .as-mark { color: var(--mint); font-size: 1.6rem; margin-bottom: .6rem; }
.apply-success h3 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 1.6rem; margin-bottom: .6rem; }
.apply-success p { color: rgba(247,247,244,.78); font-size: 1rem; line-height: 1.6; max-width: 40ch; margin-inline: auto; }

/* ============================================================
   GALLERY
   ============================================================ */
/* Uniform, structured grid: every tile identical portrait size */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.5rem, 1vw, .85rem); }
.g-item {
  position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 90% at 25% 15%, rgba(255,255,255,.5), transparent 45%),
    linear-gradient(150deg, var(--glow), rgba(22,84,74,.14)), var(--porcelain-2);
  display: grid; place-items: center; cursor: pointer;
  transition: box-shadow .5s var(--exp);
}
.g-item:hover { box-shadow: var(--shadow-sm); }
.g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 2; transition: transform .8s var(--exp); }
.g-item:hover img { transform: scale(1.05); }
/* Subtle darkening on hover for a premium, considered feel */
.g-item::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(to top, rgba(14,21,19,.22), transparent 55%);
  opacity: 0; transition: opacity .5s var(--exp);
}
.g-item:hover::after { opacity: 1; }
.g-item .reg { border-color: rgba(22,84,74,.4); }
/* Home preview: same tiles, four across */
.gallery-preview { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-img {
  aspect-ratio: 4/5; border-radius: 16px; position: relative;
  background: radial-gradient(120% 90% at 20% 12%, rgba(255,255,255,.5), transparent 45%),
    linear-gradient(160deg, rgba(22,84,74,.18), var(--glow)), var(--porcelain-2);
  border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; place-items: center;
  overflow: hidden;
}
/* Real portrait: fills the frame, sits above the placeholder, favours the face */
.about-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; z-index: 2; }
.about-copy p { color: var(--ink-70); margin-top: 1.15rem; max-width: 60ch; text-wrap: pretty; }
.about-copy strong { color: var(--ink); font-weight: 600; }
.about-sign { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--ink) !important; margin-top: 1.8rem; font-size: 1.15rem; }
.about-sign span { color: var(--teal-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: linear-gradient(165deg, #4EB6A9, #237E71); color: #FFFFFF; padding: clamp(4rem, 8vw, 6rem) 0 2.4rem; }
.foot-cta {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.8rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem); margin-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot-headline { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -0.01em; }
.foot-cta-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand .logo-word { font-size: 1.8rem; }
.foot-brand p { color: rgba(247,247,244,.6); font-size: .92rem; margin-top: .5rem; }
.foot-loc { color: rgba(247,247,244,.4) !important; }
.foot-links { display: grid; gap: .7rem; align-content: start; }
.foot-links a { color: rgba(247,247,244,.8); font-size: .95rem; transition: color .3s var(--exp); }
.foot-links a:hover { color: var(--mint); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; font-size: .82rem; color: rgba(247,247,244,.45); }

/* ============================================================
   MULTI-PAGE — nav active state, page heads, home paths
   ============================================================ */
/* Active nav link */
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }

/* Interior page header band */
.page-head {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-head-field { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-head-field .orb-1 { top: -40%; right: -6%; opacity: .8; }
.page-head .container { position: relative; z-index: 1; }
.page-eyebrow {
  font-size: .8rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 600; margin-bottom: 1.1rem;
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--line-soft);
}
.page-title {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(2.375rem, 1rem + 5vw, 4.5rem); line-height: 1.05; letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink);
}
.page-title .ital { font-style: italic; font-weight: 600; color: var(--teal-deep); }
.page-lede { color: var(--ink-70); font-size: 1.1rem; margin-top: 1.2rem; max-width: 58ch; text-wrap: pretty; }
/* When a page-head precedes a section, trim the section's top padding */
.page-head + .section { padding-top: clamp(2rem, 4vw, 3.5rem); }

/* Home: two paths */
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.path-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(1.8rem, 3.5vw, 2.8rem); min-height: 300px;
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--exp), box-shadow .5s var(--exp), border-color .5s var(--exp);
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.path-studio { background: #fff; }
.path-studio:hover { border-color: rgba(143, 223, 210,.45); }
.path-academy { background: linear-gradient(165deg, #4EB6A9, #237E71); color: #FFFFFF; border-color: transparent; }
.path-eyebrow { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-deep); font-weight: 600; }
.path-academy .path-eyebrow { color: var(--mint); }
.path-title { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.05; margin: .8rem 0 .7rem; }
.path-card p { color: var(--ink-70); max-width: 34ch; }
.path-academy p { color: rgba(247,247,244,.72); }
.path-link { margin-top: auto; padding-top: 1.4rem; font-weight: 600; color: var(--teal-deep); transition: transform .4s var(--exp); }
.path-academy .path-link { color: var(--mint); }
.path-card:hover .path-link { transform: translateX(4px); }

/* Menu book button + about CTA + gallery preview cta spacing */
.ledger-book { margin-top: 1.8rem; }
.about-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.gallery-preview-cta { display: inline-block; margin-top: 1.8rem; font-weight: 600; color: var(--teal-deep); transition: transform .4s var(--exp); }
.gallery-preview-cta:hover { transform: translateX(4px); }

/* ============================================================
   SHOP / COMING SOON — a dark "secret" teaser
   ============================================================ */
.soon {
  position: relative; overflow: hidden;
  background:
    radial-gradient(75% 55% at 80% 6%, rgba(143, 223, 210,.30), transparent 60%),
    linear-gradient(165deg, #4EB6A9 0%, #237E71 100%);
  color: #FFFFFF;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  min-height: 78vh; display: flex; align-items: center;
}
.soon-field { position: absolute; inset: 0; z-index: 0; }
.soon .grain { opacity: .05; mix-blend-mode: screen; }
.soon-inner { position: relative; z-index: 1; max-width: 860px; }
.soon-eyebrow {
  font-size: .78rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--mint); font-weight: 600; margin-bottom: 1.3rem;
}
.soon-title {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.04; letter-spacing: 0;
  text-wrap: balance;
}
.soon-title .ital { color: var(--mint); }
.soon-tag { margin-top: 1.2rem; }
.soon-tag span {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--mint);
  border: 1px solid var(--glow); border-radius: 999px; padding: .5rem 1.1rem;
}
.soon-tag span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); animation: soon-pulse 2.4s ease-in-out infinite; }
@keyframes soon-pulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.soon-lede { color: rgba(247,247,244,.8); font-size: 1.12rem; line-height: 1.75; max-width: 56ch; margin-top: 1.6rem; }

.soon-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.soon-card {
  border: 1px solid var(--glow); background: rgba(255,255,255,.03);
  padding: clamp(1.5rem, 2.5vw, 2rem); display: flex; flex-direction: column; align-items: flex-start;
  transition: border-color .5s var(--exp), background .5s var(--exp), transform .5s var(--exp);
}
.soon-card:hover { border-color: var(--glow); background: var(--glow); transform: translateY(-4px); }
.soon-mark { color: var(--mint); font-size: 1.1rem; }
.soon-card h2 { font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: 1.5rem; margin: .7rem 0 .5rem; }
.soon-card p { color: rgba(247,247,244,.66); font-size: .96rem; max-width: 34ch; }
.soon-pill {
  margin-top: 1.2rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mint); border: 1px solid var(--glow); border-radius: 999px; padding: .35rem .85rem;
}

.soon-waitlist { margin-top: clamp(2.8rem, 5vw, 4rem); padding-top: clamp(2.2rem, 4vw, 3rem); border-top: 1px solid rgba(255,255,255,.14); }
.wl-intro h2 { font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.wl-intro p { color: rgba(247,247,244,.72); margin-top: .5rem; max-width: 44ch; }
.waitlist-form { margin-top: 1.5rem; max-width: 540px; }
.wl-row { display: flex; gap: .7rem; }
.wl-row input {
  flex: 1; font: inherit; font-size: 1rem; color: var(--porcelain);
  padding: .9rem 1.1rem; border-radius: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
  transition: border-color .3s var(--exp), box-shadow .3s var(--exp), background .3s var(--exp);
}
.wl-row input::placeholder { color: rgba(247,247,244,.4); }
.wl-row input:focus { outline: none; border-color: var(--mint); background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px var(--glow); }
.wl-row .btn { flex: 0 0 auto; }
.wl-note { margin-top: .9rem; font-size: .88rem; color: rgba(247,247,244,.55); }
.wl-note a { color: var(--mint); border-bottom: 1px solid var(--glow); padding-bottom: 1px; }
.waitlist-success { border: 1px solid var(--glow); background: var(--glow); padding: clamp(1.6rem, 3vw, 2.4rem); text-align: center; max-width: 540px; margin-top: 1.5rem; }
.waitlist-success .as-mark { color: var(--mint); font-size: 1.5rem; margin-bottom: .5rem; }
.waitlist-success h3 { font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: 1.5rem; margin-bottom: .5rem; }
.waitlist-success p { color: rgba(247,247,244,.78); line-height: 1.6; max-width: 40ch; margin-inline: auto; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: var(--z-float);
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--mint), var(--teal-deep));
  box-shadow: 0 18px 36px -14px rgba(31,114,102,.8);
  transition: transform .5s var(--exp), box-shadow .5s var(--exp);
  animation: wa-pulse 3.4s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 18px 36px -14px rgba(31,114,102,.8), 0 0 0 0 var(--glow); }
  50% { box-shadow: 0 18px 36px -14px rgba(31,114,102,.8), 0 0 0 14px rgba(132, 216, 204,0); }
}

/* ============================================================
   MOTION — hero choreography + scroll reveals
   ============================================================ */
/* Hero load: default visible, JS adds .ready to trigger from a set start state */
.anim { opacity: 1; }
.hero-ready .anim { opacity: 0; }
.hero-ready.hero-in .anim { opacity: 1; transition: opacity .9s var(--exp), transform .9s var(--exp); }

.hero-ready .line-in { transform: translateY(105%); }
.hero-ready.hero-in .line-in { transform: translateY(0); }
.hero-ready [data-anim]:not(.line-in) { transform: translateY(18px); }
.hero-ready.hero-in [data-anim]:not(.line-in) { transform: translateY(0); }

.hero-ready.hero-in [data-anim="1"] { transition-delay: .05s; }
.hero-ready.hero-in [data-anim="2"] { transition-delay: .18s; }
.hero-ready.hero-in [data-anim="3"] { transition-delay: .30s; }
.hero-ready.hero-in [data-anim="4"] { transition-delay: .48s; }
.hero-ready.hero-in [data-anim="5"] { transition-delay: .60s; }
.hero-ready.hero-in [data-anim="6"] { transition-delay: .72s; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::after, *::before { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .hero-ready .anim, .hero-ready .line-in, .hero-ready [data-anim],
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* ============================================================
   LUXURY RESTRAINT — strip decorative noise; let type,
   imagery and whitespace carry the premium feel.
   ============================================================ */
/* Remove floating gradient orbs, grain texture, corner ticks, marquee */
.hero-field, .academy-field, .page-head-field, .soon-field,
.orb, .a-orb, .grain, .reg, .marquee { display: none !important; }

/* Remove the small label above each title (the AI "eyebrow" tell) */
.hero-kicker, .page-eyebrow, .a-eyebrow, .soon-eyebrow, .path-eyebrow { display: none !important; }

/* Real hero photo fills the plate */
.plate-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; z-index: 2; }

/* Calm the floating contact button: quiet presence, no pulsing beacon */
.wa-float { animation: none; }

/* Slower, more generous vertical cadence */
.section { padding-block: clamp(5.5rem, 11vw, 11rem); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero-split .hero-inner { grid-template-columns: 1fr; gap: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-split .hero-copy { max-width: 34rem; }
  .hero-body { max-width: none; padding-top: 1.6rem; }
  .hero-portrait { justify-self: start; max-width: 26rem; order: 2; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 400px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .paths-grid { grid-template-columns: 1fr; }
  .soon-cards { grid-template-columns: 1fr; }
  .booker { grid-template-columns: 1fr; }
  .booker-aside { position: static; }
  .academy-top { grid-template-columns: 1fr; }
  .apply-band { grid-template-columns: 1fr; }
  .apply-success { grid-column: 1; }
}
@media (max-width: 560px) {
  .af-row { grid-template-columns: 1fr; }
  .wl-row { flex-direction: column; }
  .wl-row .btn { width: 100%; }
}

/* Header collapses to a hamburger early so the centered logo keeps its space */
@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 90px 0 auto 0; z-index: var(--z-nav);
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--porcelain); border-bottom: 1px solid var(--line);
    padding: .5rem 22px 1.4rem; transform: translateY(-120%);
    transition: transform .5s var(--exp), visibility .5s var(--exp);
    box-shadow: var(--shadow);
    /* Fully hidden when closed so its bottom edge (border + shadow) can't
       peek back into view as a hairline at the top of the page. */
    visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links a:not(.nav-cta)::after { display: none; }
}

@media (max-width: 760px) {
  .field-row { grid-template-columns: 1fr; }
  .booker-footer { flex-direction: column; align-items: stretch; }
  .btn-book { width: 100%; }
  .plate-tab { left: 0; }
  .foot-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .logo-word { font-size: 1.2rem; }
  .weeks .wk, .weeks h4, .weeks p { margin-left: 1rem; }
  .a-facts { gap: 1.4rem; }
  .logo-img { height: 48px; }
}

/* Phone hero: portrait shrinks a touch, tag stays legible */
@media (max-width: 480px) {
  .hero-portrait { max-width: 22rem; }
  .hero-portrait-frame { aspect-ratio: 3 / 4; }
}

/* ============================================================
   INTRO OVERLAY — a soft first-entry fade
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: var(--z-intro);
  display: grid; place-items: center; background: var(--vanilla);
  animation: intro-out .9s var(--exp) 1s forwards;
}
.intro-logo {
  width: clamp(92px, 15vw, 132px); height: auto;
  animation: intro-logo 1s var(--exp) both;
}
@keyframes intro-logo { from { opacity: 0; transform: scale(.92) translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes intro-out { to { opacity: 0; visibility: hidden; } }
.intro.is-skip { display: none; }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } }

/* ============================================================
   EYELASH CURSOR — trails the pointer (fine-pointer devices only)
   ============================================================ */
.cursor-lash { position: fixed; top: 0; left: 0; z-index: var(--z-cursor); pointer-events: none; will-change: transform; }
.lash-inner {
  width: 34px; height: 34px; margin: -18px 0 0 -17px; color: var(--teal-deep);
  opacity: 0; transition: opacity .45s var(--exp), transform .3s var(--exp);
}
.lash-inner svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 2px 5px rgba(31,114,102,.28)); }
/* Logo cursor: her HG mark trails the pointer */
.cursor-logo .lash-inner { width: 40px; height: 40px; margin: -20px 0 0 -20px; }
.cursor-logo .lash-inner img {
  width: 100%; height: 100%; display: block; object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(22,84,74,.35));
}
.cursor-lash.is-on .lash-inner { opacity: .95; }
.cursor-lash.is-hot .lash-inner { transform: scale(1.35) rotate(-4deg); color: var(--teal); }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-lash { display: none !important; }
}

/* ============================================================
   MOVING BACKGROUND — vanilla + Tiffany colour drift behind content.
   Soft radial gradients (no filter:blur) animated on transform only,
   so each blob is a cheap GPU layer (no scroll jank).
   ============================================================ */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; background: #FFFFFF; }
.bg-fx span { position: absolute; border-radius: 50%; will-change: transform; }
.bg-fx .b1 {
  width: 64vw; height: 64vw; top: -18%; left: -12%;
  background: radial-gradient(circle at 50% 50%, var(--glow), transparent 62%);
  animation: drift1 28s ease-in-out infinite alternate;
}
.bg-fx .b2 {
  width: 56vw; height: 56vw; top: 26%; right: -16%;
  background: radial-gradient(circle at 50% 50%, rgba(143, 223, 210,.14), transparent 66%);
  animation: drift2 34s ease-in-out infinite alternate;
}
.bg-fx .b3 {
  width: 52vw; height: 52vw; bottom: -20%; left: 26%;
  background: radial-gradient(circle at 50% 50%, var(--glow), transparent 66%);
  animation: drift3 31s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(9%, 11%) scale(1.14); } }
@keyframes drift2 { to { transform: translate(-11%, 7%) scale(1.16); } }
@keyframes drift3 { to { transform: translate(7%, -9%) scale(1.10); } }
@media (prefers-reduced-motion: reduce) { .bg-fx span { animation: none; } }

/* ============================================================
   On the deep Blue-Mint surfaces, remap the accent to a pale mint
   so accents and mint buttons read with strong contrast.
   ============================================================ */
.academy, .soon, .res-card, .path-academy, .site-footer, .a-prospectus,
.includes-section, .apply-section {
  --mint: #CFF7F3;
  --teal: #B9EFEA;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--porcelain-2); }
.review-featured {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center; background: var(--porcelain);
  border: 1px solid var(--line-soft); border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px -44px rgba(22,84,74,.42);
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}
.review-photo { margin: 0; align-self: stretch; }
.review-photo img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: center 28%; display: block; }
.review-featured-body { padding: clamp(1.6rem, 3.4vw, 3rem) clamp(1.6rem, 3.4vw, 3rem) clamp(1.6rem, 3.4vw, 3rem) 0; }
.stars { color: var(--mint); font-size: 1.15rem; letter-spacing: .18em; margin-bottom: 1.1rem; }
.review-quote {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.45; color: var(--teal-ink);
  letter-spacing: -.005em; text-wrap: pretty;
}
.review-name {
  margin-top: 1.3rem; font-size: .95rem; color: var(--ink); font-weight: 500;
}
.review-name span { color: var(--ink-55); font-weight: 400; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.review-card {
  background: var(--porcelain); border: 1px solid var(--line-soft); border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform .5s var(--exp), box-shadow .5s var(--exp);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -40px rgba(22,84,74,.45); }
.review-card .stars { font-size: 1rem; margin-bottom: .9rem; }
.review-card .review-quote { font-size: 1.12rem; line-height: 1.5; }

@media (max-width: 820px) {
  .review-featured { grid-template-columns: 1fr; }
  .review-photo img { min-height: 300px; max-height: 440px; object-position: center 24%; }
  .review-featured-body { padding: 0 clamp(1.4rem, 5vw, 2rem) clamp(1.8rem, 6vw, 2.4rem); }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MENTORSHIP PROGRAMS
   ============================================================ */
.programs { background: var(--porcelain); }
.program-list { display: grid; gap: clamp(1.4rem, 3vw, 2rem); }
.program {
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.6rem, 3.4vw, 2.8rem);
  box-shadow: 0 24px 50px -40px rgba(22,84,74,.4);
  transition: transform .5s var(--exp), box-shadow .5s var(--exp), border-color .4s var(--exp);
}
.program:hover { transform: translateY(-4px); box-shadow: 0 34px 64px -38px rgba(22,84,74,.5); border-color: var(--line-soft); }
.program-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem 1.5rem; flex-wrap: wrap;
  padding-bottom: 1.3rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line-soft);
}
.program-headline { display: flex; align-items: baseline; gap: .9rem; min-width: 0; }
.program-num { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; color: var(--teal-deep); letter-spacing: .04em; }
.program-name {
  font-family: "Cormorant Garamond", serif; font-weight: 500; color: var(--teal-ink);
  font-size: clamp(1.5rem, 2.7vw, 2.1rem); line-height: 1.05; letter-spacing: -.01em;
}
.program-meta { display: flex; gap: .55rem; flex-shrink: 0; align-items: center; }
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .42rem .95rem; border-radius: 999px; font-size: .92rem; font-weight: 500; white-space: nowrap;
}
.pill-price { background: var(--mint); color: var(--ink); font-weight: 600; }
.pill-dur { border: 1px solid var(--line); color: var(--ink-70); }
.program-for { color: var(--ink-70); font-size: 1.06rem; line-height: 1.65; max-width: 68ch; }
.learn-title {
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep);
  margin: 1.6rem 0 1rem;
}
.learn-list {
  list-style: none; columns: 3; column-gap: 2rem;
}
.learn-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: .62rem;
  color: var(--ink-70); font-size: .98rem; line-height: 1.4; break-inside: avoid;
}
.learn-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--teal-deep); font-size: .82rem; font-weight: 700;
}
.program-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem 1.5rem;
  flex-wrap: wrap; margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft);
}
.program-note { font-size: .88rem; color: var(--ink-55); letter-spacing: .02em; }

/* ---- How it runs ---- */
.runs { background: var(--porcelain-2); }
.runs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.run-card {
  background: var(--porcelain); border: 1px solid var(--line-soft); border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.run-card h3 {
  font-family: "Cormorant Garamond", serif; font-weight: 500; color: var(--teal-ink);
  font-size: 1.32rem; margin-bottom: 1.1rem;
}
.run-card ul { list-style: none; }
.run-card li {
  position: relative; padding-left: 1.5rem; margin-bottom: .7rem;
  color: var(--ink-70); font-size: .98rem; line-height: 1.5;
}
.run-card li::before { content: "✓"; position: absolute; left: 0; top: .05rem; color: var(--teal-deep); font-weight: 700; font-size: .82rem; }

/* ---- Included (dark) ---- */
.includes-section {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(90% 60% at 82% 6%, rgba(143, 223, 210,.32), transparent 60%),
    linear-gradient(165deg, #4EB6A9 0%, #237E71 100%);
}
.includes-inner { position: relative; z-index: 1; }
.includes-title { color: #fff; }
.includes-sub { color: rgba(255,255,255,.72); margin-top: 1rem; font-size: 1.06rem; max-width: 60ch; }
.includes-grid {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .9rem 2rem;
}
.includes-grid li {
  position: relative; padding-left: 1.7rem; color: rgba(255,255,255,.9);
  font-size: 1rem; line-height: 1.4;
}
.includes-grid li::before {
  content: "✦"; position: absolute; left: 0; top: .05rem; color: var(--mint); font-size: .95rem;
}

/* ---- Payment ---- */
.pay { background: var(--porcelain); }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: clamp(1.2rem, 2.5vw, 1.8rem); align-items: start; }
.pay-card {
  background: var(--porcelain-2); border: 1px solid var(--line-soft); border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.2rem); height: 100%;
}
.pay-kicker { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: .9rem; }
.pay-amount {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(3rem, 1.6rem + 5vw, 4.25rem); color: var(--ink);
  line-height: .92; letter-spacing: -0.022em;
  font-variant-numeric: lining-nums tabular-nums;
  display: inline-flex; align-items: flex-start;
}
/* Raised, smaller mint currency mark for an editorial pricing feel */
.pay-amount .cur, .pay-step-amt .cur {
  font-size: .44em; font-weight: 600; color: var(--primary-dark);
  margin-right: .08em; transform: translateY(.14em); font-variant-numeric: normal;
}
.pay-text { color: var(--ink-70); margin-top: 1rem; font-size: .98rem; line-height: 1.6; }
.pay-options { list-style: none; margin: .3rem 0 1.2rem; }
.pay-options li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; color: var(--ink); font-size: 1rem; }
.pay-options li em { color: var(--ink-55); font-style: italic; }
.pay-options li::before { content: "✓"; position: absolute; left: 0; top: .05rem; color: var(--teal-deep); font-weight: 700; font-size: .82rem; }

/* ---- Apply (dark) ---- */
.apply-section {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(90% 60% at 18% 6%, rgba(143, 223, 210,.30), transparent 60%),
    linear-gradient(165deg, #4EB6A9 0%, #237E71 100%);
}
.apply-section .apply-band { margin-top: 0; padding-top: 0; border-top: 0; }
.apply-section .apply-title { color: #fff; }

@media (max-width: 940px) {
  .runs-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .learn-list { columns: 2; }
}
@media (max-width: 560px) {
  .learn-list { columns: 1; }
  .program-head { gap: .8rem; }
}

/* ============================================================
   POPPINS SMALL LABELS (Poppins Medium) — luxury micro-labels
   ============================================================ */
.learn-title, .pay-kicker, .program-note, .res-kicker, .res-pay-title,
.af-field > span, .field > span, .wl-note, .a-eyebrow, .soon-eyebrow,
.page-eyebrow, .hero-portrait-tag, .pill, .nav-links a, .nav-cta,
.res-row dt, .res-total > span:first-child, .res-deposit-row > span:first-child,
.a-prospectus dt, .ph-tag, .program-num, .step-num {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 500;
}
/* Subheadings — 24px */
.run-card h3, .soon-card h2, .wl-intro h2, .about-copy h2 {
  font-size: clamp(1.35rem, 1rem + 1.4vw, 1.5rem);
}

/* Solid buttons on dark/charcoal sections must keep the true Tiffany (the
   paled --mint used for accents there would leave white text unreadable). */
.academy .btn-primary, .academy .btn-mint,
.includes-section .btn-primary, .includes-section .btn-mint,
.apply-section .btn-primary, .apply-section .btn-mint,
.soon .btn-primary, .soon .btn-mint,
.path-academy, .site-footer .btn-mint {
  background: #8FDFD2; color: #FFFFFF;
}
.academy .btn-primary:hover, .academy .btn-mint:hover,
.includes-section .btn-primary:hover, .includes-section .btn-mint:hover,
.apply-section .btn-primary:hover, .apply-section .btn-mint:hover,
.soon .btn-primary:hover, .soon .btn-mint:hover,
.site-footer .btn-mint:hover { background: #77D2C6; }

/* ============================================================
   SERVICES — signature band + editorial menu
   ============================================================ */
.signature-band { padding-top: clamp(2rem, 4vw, 3.5rem); padding-bottom: 0; }
.sig-inner {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: clamp(1.6rem, 5vw, 4rem);
  background: var(--primary-light); border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3.4rem) clamp(1.6rem, 4vw, 3.4rem);
}
.sig-kicker {
  font-family: "Poppins", system-ui, sans-serif; font-weight: 500;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: #0F5A52;
}
.sig-name {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(2rem, 1rem + 3.4vw, 3rem); line-height: 1.02; letter-spacing: -0.01em;
  color: var(--ink); margin-top: .7rem; text-wrap: balance;
}
.sig-name sup { font-size: .4em; vertical-align: super; }
.sig-desc { color: rgba(31,31,31,.76); font-size: 1.08rem; line-height: 1.6; margin-top: 1rem; max-width: 46ch; }
.sig-cta { margin-top: 1.6rem; }
.sig-price { text-align: right; line-height: 1; }
.sig-price-label {
  display: block; font-family: "Poppins", system-ui, sans-serif; font-weight: 500;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(31,31,31,.6); margin-bottom: .4rem;
}
.sig-price-num { font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: clamp(3rem, 6vw, 4.5rem); color: var(--ink); }

.menu .container { display: flex; flex-direction: column; }
.menu-cat {
  display: grid; grid-template-columns: minmax(180px, .82fr) minmax(0, 2fr);
  gap: clamp(1rem, 5vw, 5rem);
  padding-block: clamp(2.2rem, 4.5vw, 3.8rem);
  border-top: 1px solid var(--line);
}
.menu-cat:first-child { border-top: 0; padding-top: 0; }
.menu-cat-label h2 {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(1.6rem, 1rem + 2vw, 2.3rem); line-height: 1.04; letter-spacing: -0.01em; color: var(--ink);
}
.menu-cat-label p { color: var(--ink-70); margin-top: .7rem; font-size: 1rem; line-height: 1.55; max-width: 28ch; }

.menu-items { display: flex; flex-direction: column; }
.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: .6rem 1.5rem; align-items: baseline;
  padding-block: clamp(1rem, 2vw, 1.4rem); border-bottom: 1px solid var(--line-soft);
}
.menu-row:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-row:first-child { padding-top: 0; }
.menu-row-main { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.menu-row-name {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem); line-height: 1.14; letter-spacing: -0.005em; color: var(--ink);
}
.menu-row-note { color: var(--ink-70); font-size: .97rem; line-height: 1.5; max-width: 52ch; }
.menu-row-price {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem); color: var(--ink); white-space: nowrap;
}
.menu-row.is-signature .menu-row-price { color: var(--primary-dark); }
.sig-chip {
  display: inline-block; font-family: "Poppins", system-ui, sans-serif; font-weight: 500;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: #0F5A52;
  border: 1px solid var(--mint); border-radius: 999px; padding: .18rem .55rem;
  margin-left: .55rem; vertical-align: middle;
}
.menu-items-compact .menu-row-name { font-size: clamp(1.05rem, 1rem + .6vw, 1.3rem); }

.menu-close {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem 2rem; margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line);
}
.menu-close p { color: var(--ink-70); font-size: 1rem; max-width: 46ch; }

@media (max-width: 720px) {
  .sig-inner { grid-template-columns: 1fr; }
  .sig-price { text-align: left; }
  .menu-cat { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* Booking add-ons (multi-select toggles) */
.addon-label {
  margin: 1.5rem 0 .7rem; font-family: "Poppins", system-ui, sans-serif; font-weight: 500;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-70);
}
.addon-label em { text-transform: none; letter-spacing: 0; font-style: italic; color: var(--ink-55); font-size: .92em; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
@media (max-width: 520px) { .addon-grid { grid-template-columns: 1fr; } }
.addon-opt[aria-pressed="true"] {
  background: var(--mint); color: var(--ink); border-color: var(--mint);
  box-shadow: 0 12px 26px -12px var(--glow);
}
.addon-opt[aria-pressed="true"] .svc-opt-price { color: var(--ink); }

/* Mentorship — reaching your first $1,000 plan */
.pay-plan {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.6rem, 3.4vw, 2.6rem); background: var(--porcelain);
}
.pay-plan-title {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2rem); line-height: 1.05; color: var(--ink);
}
.pay-plan-title .ital { font-style: italic; color: var(--primary-dark); }
.pay-plan-head p { color: var(--ink-70); margin-top: .8rem; max-width: 62ch; line-height: 1.6; }
.pay-steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.7rem, 1.6vw, 1rem); margin-top: clamp(1.4rem, 3vw, 2rem);
}
.pay-step {
  display: flex; flex-direction: column; gap: .5rem;
  padding: clamp(1rem, 2.2vw, 1.4rem); border-radius: 16px;
  background: var(--porcelain-2); border: 1px solid var(--line-soft);
}
.pay-step-n {
  font-family: "Poppins", system-ui, sans-serif; font-weight: 500;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-70);
}
.pay-step-amt {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(1.9rem, 1rem + 3vw, 2.6rem); color: var(--ink);
  line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  display: inline-flex; align-items: flex-start;
}
.pay-step-total { background: var(--primary-light); border-color: transparent; }
.pay-step-total .pay-step-n { color: #0F5A52; }
@media (max-width: 620px) { .pay-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .pay-steps { grid-template-columns: 1fr; } }

/* ============================================================
   BOOKING — Square Appointments embed
   ============================================================ */
.booking-embed { padding-top: clamp(1rem, 3vw, 2rem); }
.embed-card {
  background: var(--porcelain); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2.2rem); box-shadow: var(--shadow);
  max-width: 860px; margin: 0 auto;
}
.embed-card { text-align: center; }
.embed-intro { color: var(--ink-70); font-size: 1.02rem; line-height: 1.6; margin: 0 auto 1.6rem; max-width: 48ch; }
.square-embed { display: flex; justify-content: center; }
/* Restyle Square's injected button to the brand pill (overrides its inline styles) */
.square-embed a {
  background: var(--mint) !important; color: #FFFFFF !important;
  height: auto !important; line-height: 1.2 !important;
  padding: 1rem 2.2rem !important; border-radius: 999px !important;
  font-family: "Poppins", system-ui, sans-serif !important; font-weight: 600 !important;
  font-size: 1.02rem !important; letter-spacing: .005em; text-decoration: none !important;
  box-shadow: 0 10px 26px -12px var(--glow), var(--shadow-sm);
  transition: background .3s var(--exp), transform .3s var(--exp), box-shadow .3s var(--exp);
}
.square-embed a:hover { background: var(--primary-hover) !important; transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px var(--glow), 0 8px 22px -12px rgba(0,0,0,.12); }
.embed-fallback {
  margin-top: 1.1rem; text-align: center; font-size: .92rem; color: var(--ink-70);
}
.embed-fallback a { color: var(--primary-dark); font-weight: 500; border-bottom: 1px solid var(--mint); padding-bottom: 1px; }
.embed-fallback a:hover { color: var(--ink); }

/* Phones: enlarge footer link tap targets to a comfortable ~44px */
@media (max-width: 640px) {
  .foot-links { gap: .15rem; }
  .foot-links a { padding: .55rem 0; display: inline-block; }
  .apply-wa a, .embed-fallback a { display: inline-block; padding: .25rem 0; }
}

/* ============================================================
   FOOTER column titles
   ============================================================ */
.foot-col-title {
  display: block; font-family: "Poppins", system-ui, sans-serif; font-weight: 500;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247, 247, 244, .5); margin-bottom: .55rem;
}

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */
.legal-narrow { max-width: 800px; }
.legal-updated {
  margin-top: 1.1rem; font-family: "Poppins", system-ui, sans-serif; font-weight: 500;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-55);
}
.legal { padding-top: clamp(1rem, 3vw, 2rem); }
.legal-body { font-size: 1.05rem; line-height: 1.75; color: rgba(31, 31, 31, .86); }
.legal-intro { font-size: 1.14rem; line-height: 1.7; color: rgba(31, 31, 31, .82); margin: 0 0 .2rem; }
.legal-sec { padding-block: clamp(1.6rem, 3.5vw, 2.6rem); border-top: 1px solid var(--line); }
.legal-sec:first-of-type { border-top: 0; padding-top: clamp(.6rem, 2vw, 1rem); }
.legal-sec h2 {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.05rem); line-height: 1.1; letter-spacing: -.01em;
  color: var(--ink); margin: 0 0 1rem; text-wrap: balance;
}
.legal-sec > p { margin: 0 0 1rem; }
.legal-sec > p:last-child { margin-bottom: 0; }
.legal-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin: .3rem 0 0; }
.legal-list li { position: relative; padding-left: 1.7rem; line-height: 1.7; }
.legal-list li::before {
  content: ""; position: absolute; left: .15rem; top: .62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--mint);
}
.legal-body a { color: var(--primary-dark); border-bottom: 1px solid var(--mint); padding-bottom: 1px; transition: color .3s var(--exp); }
.legal-body a:hover { color: var(--ink); }

/* Subtle studio credit in the footer */
.foot-credit .credit-name {
  color: rgba(247, 247, 244, .6);
  letter-spacing: .01em;
  transition: color .3s var(--exp);
}
.foot-credit .credit-name:hover { color: var(--mint); }
