/* ==========================================================================
   Universal Enlightenment LLC — styles.css
   Palette derived directly from the Enlighten Frequency Yoga logo:
   deep cosmic indigo, plum, gold, parchment, and the chakra spectrum.
   Edit the tokens in :root to reskin the whole site.
   ========================================================================== */

/* ----------------------------------------------------------------- tokens */
:root {
  /* Cosmic — the logo's night sky */
  --void:          #0B0820;
  --cosmos:        #1A1038;
  --plum:          #3B1E52;
  --mulberry:      #5C1A3D;

  /* Gold — the logo's mandala rings and banner */
  --gold:          #E3AE55;
  --gold-soft:     #F5D89A;
  --gold-deep:     #8F6220;

  /* Parchment — the logo's cream banner, used as the reading ground */
  --parchment:     #F7F1E4;
  --parchment-deep:#EFE6D3;
  --sand:          #E7DBC1;

  /* Ink on parchment */
  --ink:           #1F1630;
  --ink-soft:      #453B54;
  --ink-mute:      #564B66;

  /* Ink on cosmic */
  --ivory:         #F7F1E4;
  --ivory-mute:    #C3B7D6;

  /* Chakra spectrum — the site's accent system, straight from the logo */
  --ch-root:       #C0392B;
  --ch-sacral:     #E07A2A;
  --ch-solar:      #F2C14E;
  --ch-heart:      #3E9B62;
  --ch-throat:     #2E86C1;
  --ch-third-eye:  #4B3FA8;
  --ch-crown:      #8A4FBF;

  --spectrum: linear-gradient(90deg,
    var(--ch-root) 0 14.28%, var(--ch-sacral) 14.28% 28.56%,
    var(--ch-solar) 28.56% 42.84%, var(--ch-heart) 42.84% 57.12%,
    var(--ch-throat) 57.12% 71.4%, var(--ch-third-eye) 71.4% 85.68%,
    var(--ch-crown) 85.68% 100%);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-hero:   clamp(2.9rem, 8.8vw, 6.2rem);
  --fs-h2:     clamp(2.1rem, 5.4vw, 3.9rem);
  --fs-h3:     clamp(1.35rem, 2.6vw, 1.85rem);
  --fs-lead:   clamp(1.05rem, 1.6vw, 1.28rem);
  --fs-body:   clamp(1rem, 1.15vw, 1.075rem);
  --fs-small:  0.875rem;
  --fs-label:  0.72rem;

  /* Space */
  --space-section: clamp(4.5rem, 11vw, 9.5rem);
  --space-gap:     clamp(1.75rem, 4vw, 3.5rem);
  --gutter:        clamp(1.5rem, 4vw, 3rem);
  --container-max: 1320px;

  /* Shape — the arch echoes the logo's lotus-petal frame */
  --arch: 999px 999px 10px 10px / 44% 44% 3% 3%;
  /* Logo arches use a shallower crown. The 44% dome cuts deep into the top
     corners of a contained square logo; 18% keeps the arch silhouette while
     leaving the whole logo inside the mask. */
  --arch-soft: 999px 999px 10px 10px / 18% 18% 3% 3%;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --line: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  --line-gold: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  --shadow-soft: 0 18px 50px -28px rgba(31, 22, 48, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 82px;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0;
  font-variation-settings: "SOFT" 22, "WONK" 1, "opsz" 120;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

::selection { background: var(--gold); color: var(--void); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--cosmic :focus-visible,
.nl-modal :focus-visible,
.header :focus-visible,
.mobile-nav :focus-visible,
.footer :focus-visible { outline-color: var(--gold-soft); }

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 200;
  background: var(--cosmos);
  color: var(--ivory);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------------- layout */
.container { width: min(100% - (var(--gutter) * 2), var(--container-max)); margin-inline: auto; }

.section {
  padding-block: var(--space-section);
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 8px);
}
.section--parchment-deep { background: var(--parchment-deep); }
.section--sand { background: var(--sand); }

/* Cosmic sections carry a star field built from gradients — no image weight */
.section--cosmic {
  background:
    radial-gradient(1.2px 1.2px at 12% 22%, rgba(255,255,255,.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 78% 14%, rgba(255,255,255,.45) 50%, transparent 100%),
    radial-gradient(1.8px 1.8px at 32% 68%, rgba(245,216,154,.65) 50%, transparent 100%),
    radial-gradient(1px 1px at 62% 82%, rgba(255,255,255,.4) 50%, transparent 100%),
    radial-gradient(1.6px 1.6px at 88% 56%, rgba(245,216,154,.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 6% 74%, rgba(255,255,255,.35) 50%, transparent 100%),
    radial-gradient(1.4px 1.4px at 46% 8%, rgba(255,255,255,.5) 50%, transparent 100%),
    radial-gradient(120% 80% at 50% 0%, var(--plum) 0%, transparent 58%),
    linear-gradient(180deg, var(--cosmos) 0%, var(--void) 100%);
  color: var(--ivory);
}
.section--cosmic h1, .section--cosmic h2, .section--cosmic h3 { color: var(--ivory); }

.split { display: grid; gap: var(--space-gap); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(12, 1fr); gap: clamp(2.5rem, 5vw, 5rem); }
  .split__media { grid-column: span 5; }
  .split__body  { grid-column: span 6 / -1; }
  .split--flip .split__media { grid-column: 8 / -1; grid-row: 1; }
  .split--flip .split__body  { grid-column: 1 / span 6; grid-row: 1; }
}

/* --------------------------------------------------- editorial components */
.eyebrow {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold-deep); flex: none; }
.section--cosmic .eyebrow { color: var(--gold-soft); }
.section--cosmic .eyebrow::before { background: var(--gold); }

/* THE SIGNATURE: a seven-segment chakra rule, taken from the logo */
.spectrum-rule {
  height: 4px;
  width: clamp(180px, 26vw, 300px);
  border-radius: 999px;
  background: var(--spectrum);
  border: 0;
  margin: 0;
}
.spectrum-rule--full { width: 100%; height: 3px; }

.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.62; max-width: 56ch; }
.section--cosmic .lead { color: var(--ivory-mute); }
.body-copy { color: var(--ink-soft); max-width: 62ch; }
.section--cosmic .body-copy { color: var(--ivory-mute); }

/* Arch — with a gold hairline, echoing the logo's ring */
.arch {
  position: relative;
  border-radius: var(--arch);
  overflow: hidden;
  background: var(--sand);
  isolation: isolate;
}
.arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: var(--line-gold);
  pointer-events: none;
  z-index: 2;
}
.arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.arch--portrait { aspect-ratio: 4 / 5; }

.arch-caption {
  font-size: var(--fs-small);
  color: var(--ink-mute);
  margin-top: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.arch-caption::before {
  content: ""; width: 18px; height: 2px;
  background: var(--gold-deep);
  transform: translateY(-4px); flex: none;
}
.section--cosmic .arch-caption { color: var(--ivory-mute); }
.section--cosmic .arch-caption::before { background: var(--gold); }

/* ---------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--void);
  --btn-bd: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--gold-soft); border-color: var(--gold-soft); }

.btn--plum { --btn-bg: var(--cosmos); --btn-fg: var(--ivory); --btn-bd: var(--cosmos); }
.btn--plum:hover { background: var(--plum); border-color: var(--plum); color: var(--ivory); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: color-mix(in srgb, var(--ink) 28%, transparent);
}
.btn--ghost:hover {
  background: color-mix(in srgb, var(--cosmos) 8%, transparent);
  border-color: var(--cosmos);
  color: var(--cosmos);
}

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--gold-soft);
  --btn-bd: color-mix(in srgb, var(--gold) 55%, transparent);
}
.btn--outline-light:hover {
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn--sm { min-height: 44px; padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.1rem; }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--mulberry);
  padding-block: 0.35rem;
}
.link-line span { position: relative; }
.link-line span::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right; transform: scaleX(1);
  transition: transform 0.45s var(--ease);
}
.link-line:hover span::after { transform-origin: left; transform: scaleX(0.25); }
.link-line .arrow { transition: transform 0.35s var(--ease); }
.link-line:hover .arrow { transform: translateX(4px); }
.section--cosmic .link-line { color: var(--gold-soft); }

/* ----------------------------------------------------------------- header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease);
}
.header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--spectrum);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.header.is-stuck {
  background: color-mix(in srgb, var(--void) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header.is-stuck::after { opacity: 1; }

/* Matches .container exactly, so the logo lines up with the headline below it
   and the CTA lines up with the right edge of the content — at every width. */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  width: min(100% - (var(--gutter) * 2), var(--container-max));
  margin-inline: auto;
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; flex: none; }
.brand__mark {
  width: 48px; height: 48px; flex: none;
  border-radius: 50%;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 60%, transparent);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ivory);
  font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 40;
}
.brand__sub {
  font-size: 0.575rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.24rem;
}
@media (max-width: 420px) { .brand__text { display: none; } }

.nav { display: none; }
@media (min-width: 1120px) { .nav { display: flex; align-items: center; gap: clamp(0.85rem, 1.5vw, 1.5rem); } }
.nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--ivory-mute);
  padding-block: 0.4rem;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover, .nav a[aria-current="true"] { color: var(--ivory); }
.nav a:hover::after, .nav a[aria-current="true"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 0.7rem; }
.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent);
  border-radius: var(--radius-pill);
  cursor: pointer;
}
@media (min-width: 1120px) { .menu-toggle { display: none; } }
.menu-toggle__bars { display: block; width: 17px; height: 11px; position: relative; }
.menu-toggle__bars::before, .menu-toggle__bars::after {
  content: "";
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold-soft);
  transition: transform 0.35s var(--ease), top 0.3s var(--ease);
}
.menu-toggle__bars::before { top: 0; }
.menu-toggle__bars::after { top: 9.5px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { top: 5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after { top: 5px; transform: rotate(-45deg); }

/* Mobile panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: linear-gradient(180deg, var(--cosmos), var(--void));
  color: var(--ivory);
  padding: calc(var(--header-h) + 1.25rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav__links { display: flex; flex-direction: column; }
.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6.5vw, 2.15rem);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 24%, transparent);
  font-variation-settings: "SOFT" 22, "WONK" 1, "opsz" 90;
}
.mobile-nav__foot { margin-top: 1.75rem; display: grid; gap: 0.85rem; }
.mobile-nav__foot a { text-decoration: none; }
@media (min-width: 1120px) { .mobile-nav { display: none; } }

/* ------------------------------------------------------------------- hero */
.hero { padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem)); padding-bottom: 0; overflow: hidden; }
.hero__grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: end; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.02fr 0.98fr; gap: clamp(3rem, 5vw, 5rem); } }

.hero__title { font-size: var(--fs-hero); letter-spacing: -0.032em; margin-bottom: 1.4rem; }
.hero__title .line { display: block; }
.hero__title .accent {
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 144;
  color: var(--gold);
}
.hero__spectrum { margin: 0 0 1.5rem; animation: draw 1.1s 0.5s var(--ease) both; transform-origin: left; }
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: var(--gold-soft);
  margin-bottom: 1.3rem;
}
.hero__lead { max-width: 46ch; }

.hero__media {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: end;
  gap: clamp(0.6rem, 1.4vw, 1rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.hero__arch { position: relative; margin: 0; }
.hero__arch--a { aspect-ratio: 5 / 7; }
.hero__arch--b { aspect-ratio: 4 / 5; margin-bottom: clamp(1.5rem, 4vw, 3.2rem); }
.hero__arch .arch { height: 100%; }
.hero__arch figcaption {
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.85rem;
}

/* The breath: the site's one ambient motion */
.hero__arch .arch img { animation: breathe 11s var(--ease) infinite; }
.hero__arch--b .arch img { animation-delay: -5.5s; }
@keyframes breathe {
  0%, 100% { transform: scale(1.005); }
  50%      { transform: scale(1.055); }
}

/* Seam strip */
.seam {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .seam { grid-template-columns: repeat(3, 1fr); } }
.seam__item {
  padding: clamp(1.25rem, 2.6vw, 1.9rem) clamp(0.5rem, 2vw, 1.5rem);
  display: flex; gap: 0.9rem; align-items: baseline;
}
@media (min-width: 700px) {
  .seam__item + .seam__item { border-left: 1px solid color-mix(in srgb, var(--gold) 24%, transparent); }
}
@media (max-width: 699px) {
  .seam__item + .seam__item { border-top: 1px solid color-mix(in srgb, var(--gold) 24%, transparent); }
}
.seam__dot { width: 9px; height: 9px; border-radius: 999px; flex: none; transform: translateY(-2px); }
.seam__item:nth-child(1) .seam__dot { background: var(--ch-root); box-shadow: 0 0 10px var(--ch-root); }
.seam__item:nth-child(2) .seam__dot { background: var(--ch-heart); box-shadow: 0 0 10px var(--ch-heart); }
.seam__item:nth-child(3) .seam__dot { background: var(--ch-crown); box-shadow: 0 0 10px var(--ch-crown); }
.seam__title { font-family: var(--font-display); font-size: 1.05rem; display: block; margin-bottom: 0.15rem; }
.seam__text { font-size: var(--fs-small); color: var(--ivory-mute); line-height: 1.5; }

/* --------------------------------------------------------------- offerings */
.offerings__head { display: grid; gap: 1.5rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) { .offerings__head { grid-template-columns: 1fr 1fr; align-items: end; gap: 3rem; } }

.offer-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .offer-grid { grid-template-columns: repeat(3, 1fr); } }

.offer-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
/* Shallower than 4:5 so the contained logos aren't stranded in a tall frame.
   All three cards share it, so the titles beneath stay on one line. 4:4.2 is
   the shortest that still clears the dome for a square logo at 86%. */
.offer-card .arch { aspect-ratio: 4 / 4.2; }
.offer-card__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, color-mix(in srgb, var(--void) 55%, transparent), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.offer-card:hover .arch img { transform: scale(1.06); }
.offer-card:hover .offer-card__veil { opacity: 1; }
.offer-card__title { font-size: var(--fs-h3); margin: 1.25rem 0 0.5rem; }
.offer-card__text { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1rem; }
.offer-card__cta { margin-top: auto; }

/* --------------------------------------------------------- practice lists */
.practice-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; border-top: var(--line); }
.practice-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: var(--line);
}
.practice-list b { font-family: var(--font-display); font-weight: 400; font-size: 1.08rem; min-width: 7.5rem; }
.practice-list span { color: var(--ink-soft); font-size: 0.96rem; }
.section--cosmic .practice-list, .section--cosmic .practice-list li {
  border-color: color-mix(in srgb, var(--gold) 26%, transparent);
}
.section--cosmic .practice-list span { color: var(--ivory-mute); }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.chip {
  font-size: 0.82rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  background: color-mix(in srgb, #FFFFFF 55%, transparent);
}

/* ----------------------------------------------------------------- booking */
.booking-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); grid-template-columns: 1fr; }
@media (min-width: 980px) { .booking-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }

.booking-steps { list-style: none; margin: 2.25rem 0 0; padding: 0; display: grid; }
.booking-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 26%, transparent);
}
.booking-steps li:first-child { border-top: 1px solid color-mix(in srgb, var(--gold) 26%, transparent); }
.booking-steps .step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 500;
  color: var(--void);
  background: var(--gold);
  flex: none;
  margin-top: 0.15rem;
}
.booking-steps b { font-family: var(--font-display); font-weight: 400; font-size: 1.12rem; display: block; margin-bottom: 0.2rem; }
.booking-steps p { color: var(--ivory-mute); font-size: 0.95rem; margin: 0; }

.booking-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
  background: color-mix(in srgb, #FFFFFF 6%, transparent);
}
.booking-embed iframe { width: 100%; height: 760px; border: 0; display: block; }

.booking-note {
  margin-top: 1.25rem;
  font-size: 0.86rem;
  color: var(--ivory-mute);
  display: flex;
  gap: 0.7rem;
  align-items: stretch;
}
.booking-note::before { content: ""; width: 3px; background: var(--gold); border-radius: 999px; flex: none; }

/* ------------------------------------------------------------------ events */
.events__head { display: grid; gap: 1.5rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
@media (min-width: 900px) { .events__head { grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 3rem; } }

.event-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); grid-template-columns: 1fr; }
@media (min-width: 640px) { .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .event-grid { grid-template-columns: repeat(3, 1fr); } }

.event-card {
  background: color-mix(in srgb, #FFFFFF 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.event-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.event-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--void); }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.event-card:hover .event-card__media img { transform: scale(1.05); }
.event-card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.event-card__cat {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.7rem;
}
.event-card__title { font-size: 1.3rem; margin-bottom: 0.55rem; }
.event-card__meta {
  font-size: var(--fs-small);
  color: var(--ivory-mute);
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: 0.75rem;
}
.event-card__text { font-size: 0.94rem; color: var(--ivory-mute); margin-bottom: 1.2rem; }
.event-card__cta { margin-top: auto; }

.event-empty {
  border: 1px dashed color-mix(in srgb, var(--gold) 50%, transparent);
  border-radius: var(--radius-md);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  display: grid; justify-items: center; gap: 1rem;
}
.event-empty__title { font-size: var(--fs-h2); max-width: 16ch; }
.event-empty__text { max-width: 48ch; color: var(--ivory-mute); }
.event-empty .btn-row { justify-content: center; }

/* ------------------------------------------------------------------ about */
.value-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); grid-template-columns: 1fr; }
@media (min-width: 760px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value { padding-top: 1.4rem; border-top: 3px solid var(--ch-root); }
.value:nth-child(2) { border-top-color: var(--ch-heart); }
.value:nth-child(3) { border-top-color: var(--ch-crown); }
.value h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.value p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------------------------------------------------------------- contact */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }

.contact-details { display: grid; gap: 1.5rem; margin-top: 2.25rem; }
.contact-item { display: grid; gap: 0.2rem; }
.contact-item__label {
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
  min-height: 44px;
  line-height: 1.5;
  transition: color 0.3s var(--ease);
}
a.contact-item__value:hover { color: var(--mulberry); }

/* ------------------------------------------------------------------ forms */
/* A light card can sit inside a dark section (the booking scheduler does).
   Without resetting the colour here, every child inherits the section's ivory
   text and renders cream-on-white — invisible. */
.form-card {
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 4px;
  background: var(--spectrum);
}
.field-grid { display: grid; gap: 1.15rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .field-grid--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  min-height: 50px;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 40%, transparent);
}
.field .hint { font-size: 0.8rem; color: var(--ink-mute); }
.field--error input, .field--error select, .field--error textarea { border-color: var(--ch-root); }
.field__error { font-size: 0.8rem; color: #97271B; }

.form-status {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: color-mix(in srgb, var(--ch-heart) 20%, #FFFFFF); color: #1B5030; }
.form-status--info { background: color-mix(in srgb, var(--gold) 28%, #FFFFFF); color: #46310E; }
.form-status--error { background: color-mix(in srgb, var(--ch-root) 14%, #FFFFFF); color: #87200F; }

/* ------------------------------------------------------------- newsletter */
.nl-overlay {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: var(--gutter);
  background: color-mix(in srgb, var(--void) 80%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nl-overlay.is-open { opacity: 1; visibility: visible; }

.nl-modal {
  position: relative;
  width: min(100%, 940px);
  max-height: calc(100dvh - (var(--gutter) * 2));
  overflow-y: auto;
  background: var(--parchment);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr;
  transform: translateY(14px) scale(0.985);
  transition: transform 0.45s var(--ease);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.7);
}
.nl-modal::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 4px;
  background: var(--spectrum);
  z-index: 4;
}
.nl-overlay.is-open .nl-modal { transform: none; }
@media (min-width: 820px) { .nl-modal { grid-template-columns: 0.72fr 1fr; } }
.nl-modal__media { display: none; background: var(--cosmos); }
@media (min-width: 820px) {
  .nl-modal__media { display: block; }
  .nl-modal__media img { width: 100%; height: 100%; object-fit: cover; }
}
.nl-modal__body { padding: clamp(1.75rem, 4vw, 3rem); }
.nl-modal__title { font-size: clamp(1.85rem, 4vw, 2.6rem); margin-bottom: 0.85rem; }
.nl-modal__text { color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.6rem; }
.nl-form { display: grid; gap: 0.9rem; }
@media (min-width: 520px) {
  .nl-form__row { display: grid; grid-template-columns: 1fr auto; gap: 0.6rem; align-items: start; }
}
.nl-modal__fine { font-size: 0.8rem; color: var(--ink-mute); margin-top: 1.1rem; }
.nl-close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--parchment) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  border-radius: var(--radius-pill);
  cursor: pointer; z-index: 5;
  transition: background 0.3s var(--ease);
}
.nl-close:hover { background: var(--sand); }

/* Inline newsletter strip in the footer */
.nl-strip {
  display: grid; gap: 1.5rem; align-items: center;
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}
@media (min-width: 900px) { .nl-strip { grid-template-columns: 1fr auto; gap: 3rem; } }
.nl-strip h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); margin-bottom: 0.5rem; color: var(--ivory); }
.nl-strip p { color: var(--ivory-mute); max-width: 46ch; }
.nl-strip .field input {
  background: color-mix(in srgb, #FFFFFF 10%, transparent);
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  color: var(--ivory);
}
.nl-strip .field input::placeholder { color: color-mix(in srgb, var(--ivory) 60%, transparent); }
.nl-strip .field label { color: var(--gold-soft); }

/* ----------------------------------------------------------------- footer */
.footer {
  background: linear-gradient(180deg, var(--cosmos) 0%, var(--void) 100%);
  color: var(--ivory);
  position: relative;
}
.footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--spectrum); }
.footer__top { display: grid; gap: clamp(2rem, 5vw, 3.5rem); padding-block: clamp(3rem, 7vw, 5rem); grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer__top { grid-template-columns: 1.3fr 1fr 1fr; } }
/* The complete logo, never cropped — contained at every size. */
.footer__logo {
  width: min(190px, 52vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.footer__brandline { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.footer__tag { font-size: var(--fs-small); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); }
.footer__motto { font-family: var(--font-display); font-style: italic; color: var(--gold); margin-top: 0.7rem; font-size: 1.15rem; }
.footer h3 {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }
.footer a { text-decoration: none; color: var(--ivory-mute); display: inline-block; padding-block: 0.4rem; transition: color 0.3s var(--ease); }
.footer a:hover { color: var(--gold-soft); }
.footer__bottom {
  border-top: 1px solid color-mix(in srgb, var(--gold) 24%, transparent);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ivory-mute);
}

/* ------------------------------------------------------------ scroll cues */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__arch .arch img, .hero__spectrum { animation: none; transform: none; }
}

@media print {
  .header, .mobile-nav, .nl-overlay, .nl-strip, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   BRAND MARKS — the client's real logo artwork
   The logos are illustrations on a night-sky ground, so both sit on a cosmic
   panel and are CONTAINED rather than cropped. Never letterbox them on
   parchment: the dark artboard would read as a mistake.
   ========================================================================== */

/* The seal: primary logo framed in the site's arch silhouette (About section) */
/* Logo in an arch: contained, never cropped. Each variant's ground is sampled
   from that logo's own artboard so its square edge disappears into the arch.
     emblem and eatz are transparent PNGs; yoga is opaque, edge tone #020319 */
.arch--logo {
  border-radius: var(--arch-soft);
  background: radial-gradient(120% 95% at 50% 46%, #0C0E33 0%, #04051C 78%);
  display: grid;
  place-items: center;
  padding: clamp(0.4rem, 1.5vw, 0.9rem);
}

/* 86% is the widest a square logo can sit at and still clear the shallow crown
   in the tallest arch on the site. Measured, not guessed — see README. */
.arch--logo img {
  width: 86%;
  height: auto;
  max-height: 86%;
  object-fit: contain;
}

/* Grounds */
.arch--logo-emblem { background: radial-gradient(120% 95% at 50% 46%, #200A05 0%, #0A0101 78%); }
/* Matched to the new yoga artwork's edge tone (#020319). */
.arch--logo-yoga   { background: radial-gradient(120% 95% at 50% 46%, #070A2E 0%, #020318 78%); }
/* The Eatz artwork is a transparent PNG, so the ground simply shows through it —
   no colour matching needed and no rectangle to hide. */
.arch--logo-eatz   { background: radial-gradient(120% 95% at 50% 46%, #0C0E33 0%, #04051C 78%); }
.hero__arch .arch--logo img,
.offer-card:hover .arch--logo img { animation: none; transform: none; }

.arch--seal {
  /* Close to square so the artwork fills the niche and the arch crown hugs it. */
  aspect-ratio: 1 / 1.1;
  border-radius: var(--arch-soft);
  /* Tuned to the emblem's own artboard (#120101, a warm near-black) so the square
     edge of the JPG dissolves into the panel instead of showing as a visible box. */
  background: radial-gradient(120% 92% at 50% 46%, #1A0505 0%, #100101 76%);
  display: grid;
  place-items: center;
  padding: clamp(0.35rem, 1.2vw, 0.75rem);
}
.arch--seal img {
  width: 86%;
  height: auto;
  max-height: 86%;
  object-fit: contain;
  transform: none;
}
.arch--seal:hover img { transform: none; }

/* Sub-brand panel: Enlightened Frequency Eatz (Plant-Based section) */
/* Full-bleed band: the artwork sits on the page, not inside a card. No border,
   no rounded panel, no padding box — the band runs edge to edge and the logo's
   feathered edges dissolve straight into it.
   Tuned to the Eatz artboard (#090B1C, a cool near-black). */
.subbrand-band {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  width: 100%;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  background: radial-gradient(75% 120% at 32% 50%, #12142C 0%, #07081A 78%);
  color: var(--ivory);
}
.subbrand {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (min-width: 880px) {
  .subbrand { grid-template-columns: 1.15fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
}
@media (min-width: 880px) {
  .subbrand--flip .subbrand__media { order: 2; }
}
.subbrand__media { margin: 0; }
/* Nothing is clipped: full natural width, natural height, square corners, and
   no CSS mask. The Eatz artwork is a WebP whose four edges are feathered to
   transparency in the file itself, so it dissolves into the panel instead of
   sitting in a visible rectangle. Every pixel of the logo is still rendered. */
.subbrand__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}
.subbrand__eyebrow {
  font-size: var(--fs-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.9rem;
}
.subbrand h3 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  color: var(--ivory);
  margin-bottom: 0.85rem;
}
.subbrand p { color: var(--ivory-mute); }
.subbrand .btn-row { margin-top: 1.6rem; }
.subbrand__motto {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

/* Sub-brand name under an offering card title */
.offer-card__kicker {
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: -0.25rem 0 0.65rem;
}

/* ==========================================================================
   BOOKING SCHEDULER — session → date → time → details
   ========================================================================== */

.scheduler__notice {
  background: color-mix(in srgb, var(--ch-solar) 26%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold-deep) 45%, transparent);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.scheduler__progress {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  padding: 0 0 1.4rem;
  margin: 0 0 1.6rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  counter-reset: step;
}
.scheduler__progress li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.scheduler__progress li::before {
  content: counter(step);
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  font-size: 0.7rem;
  flex: none;
}
.scheduler__progress li.is-current { color: var(--ink); font-weight: 500; }
.scheduler__progress li.is-current::before {
  background: var(--gold); border-color: var(--gold); color: var(--void);
}
.scheduler__progress li.is-done::before {
  content: "✓";
  background: color-mix(in srgb, var(--ch-heart) 22%, transparent);
  border-color: color-mix(in srgb, var(--ch-heart) 55%, transparent);
  color: var(--ink);
}

.scheduler__title { font-size: 1.35rem; margin-bottom: 1.2rem; }

.scheduler__back {
  background: none;
  border: 0;
  padding: 0.35rem 0;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
}
.scheduler__back:hover { color: var(--ink); }

.scheduler__fine {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 1rem;
}
.scheduler__alt {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.scheduler__alt a { color: var(--ink); }

/* ------------------------------------------------------- session choices */
.session-options { display: grid; gap: 0.7rem; }
.session-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem 1rem;
  width: 100%;
  min-height: 62px;
  padding: 0.95rem 1.15rem;
  text-align: left;
  background: var(--white, #fff);
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
              transform 0.25s var(--ease);
}
.session-option:hover { border-color: var(--gold-deep); transform: translateY(-1px); }
.session-option.is-selected {
  border-color: var(--gold-deep);
  background: color-mix(in srgb, var(--gold) 14%, transparent);
}
.session-option__name { font-weight: 500; }
.session-option__meta {
  grid-column: 1;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.session-option__arrow { grid-row: 1 / -1; grid-column: 2; color: var(--ink-mute); }

/* ------------------------------------------------------------- calendar */
.cal {
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: var(--radius-sm);
  padding: clamp(0.75rem, 2.5vw, 1.15rem);
}
.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.cal__month {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
  flex: 1;
}
.cal__nav {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: none;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 999px;
  cursor: pointer;
  flex: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cal__nav:hover:not(:disabled) { background: color-mix(in srgb, var(--gold) 18%, transparent); border-color: var(--gold-deep); }
.cal__nav:disabled { opacity: 0.3; cursor: not-allowed; }

.cal__weekdays, .cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal__weekdays {
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}

.cal__cell {
  aspect-ratio: 1;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: none;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--ink-mute);
  cursor: default;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.cal__cell--pad { border: 0; }
.cal__day:disabled { opacity: 0.42; }
.cal__day.is-open {
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  border-color: color-mix(in srgb, var(--gold-deep) 30%, transparent);
}
.cal__day.is-open:hover { background: color-mix(in srgb, var(--gold) 30%, transparent); border-color: var(--gold-deep); }
.cal__day.is-today { box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ink) 30%, transparent); }
.cal__day.is-selected {
  background: var(--cosmos);
  border-color: var(--cosmos);
  color: var(--ivory);
  font-weight: 500;
}

.cal__legend {
  margin: 0.9rem 0 0;
  font-size: 0.76rem;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.cal__key {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--gold) 30%, transparent);
  border: 1px solid var(--gold-deep);
  flex: none;
}

/* ---------------------------------------------------------------- slots */
.slots { margin-top: 1.5rem; }
.slots__title { font-size: 1.02rem; margin-bottom: 0.9rem; }
.slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.6rem;
}
.slot {
  min-height: 50px;
  padding: 0.7rem 0.5rem;
  background: var(--white, #fff);
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.slot:hover { border-color: var(--gold-deep); background: color-mix(in srgb, var(--gold) 16%, transparent); }
.slot.is-selected { background: var(--cosmos); border-color: var(--cosmos); color: var(--ivory); }
.slots__tz { margin: 0.9rem 0 0; font-size: 0.78rem; color: var(--ink-mute); }

/* -------------------------------------------------------------- summary */
.booking-summary {
  background: color-mix(in srgb, var(--gold) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold-deep) 34%, transparent);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.6rem;
}
.booking-summary__label {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 0.5rem;
}
.booking-summary__session {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}
.booking-summary__when { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.booking-summary__when span { display: block; font-size: 0.8rem; color: var(--ink-mute); margin-top: 0.2rem; }

/* ==========================================================================
   FOOD SERVICES + MENU
   ========================================================================== */

.service-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: 1fr;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
@media (min-width: 760px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service {
  padding-top: 1.4rem;
  border-top: 3px solid var(--ch-heart);
  display: flex;
  flex-direction: column;
}
.service:nth-child(2) { border-top-color: var(--ch-solar); }
.service:nth-child(3) { border-top-color: var(--ch-sacral); }
.service h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.service p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1rem; }
.service .link-line { margin-top: auto; align-self: flex-start; }

/* Centred, because what follows is a single narrow portrait graphic. The old
   two-column head left the heading stranded on the left with a wide gap. */
.menu-head {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
  max-width: 640px;
  margin: clamp(3.5rem, 7vw, 5.5rem) auto clamp(1.75rem, 3.5vw, 2.5rem);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.menu-head .eyebrow { justify-content: center; margin-bottom: 0; }
.menu-head .lead { margin-inline: auto; }

/* Rendered menu (populated from the `menu` array in site.config.js) */
.menu-groups { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.menu-group__title {
  font-size: 1.5rem;
  padding-bottom: 0.8rem;
  margin-bottom: 0.4rem;
  border-bottom: 2px solid color-mix(in srgb, var(--gold-deep) 40%, transparent);
}
.menu-group__note { font-size: 0.9rem; color: var(--ink-mute); margin: 0.7rem 0 0; }
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
/* Items with photos put the photo(s) beside the text, not above it. Stacked
   above, a photo reads as belonging to the item on the row above — the dish it
   actually belongs to is underneath it. Side by side removes the ambiguity. */
.menu-item--has-photo {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  column-gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: start;
}
.menu-item--has-photo .menu-item__shots {
  grid-column: 1;
  grid-row: 1 / span 3;
  margin-bottom: 0;
}
.menu-item--has-photo .menu-item__line,
.menu-item--has-photo .menu-item__desc,
.menu-item--has-photo .menu-item__tags { grid-column: 2; }

/* Narrow screens: cap the photo column so a second shot stacks under the first
   instead of squeezing the dish name. */
@media (max-width: 620px) {
  .menu-item__shots { max-width: clamp(96px, 22vw, 148px); }
}

.menu-item__line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-item__line::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted color-mix(in srgb, var(--ink) 26%, transparent);
  transform: translateY(-0.28em);
}
.menu-item__name { font-family: var(--font-display); font-size: 1.12rem; }
.menu-item__price { font-weight: 500; color: var(--ink); white-space: nowrap; order: 3; }
.menu-item__desc {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin: 0.3rem 0 0;
}
.menu-item__shots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
/* Both width AND height are set explicitly. The photos are square files, but
   relying on aspect-ratio alone means that if the stylesheet is stale or the
   property is unsupported, the browser falls back to the intrinsic 700px and
   the row blows out. Belt and braces. */
.menu-item__shots img {
  flex: none;
  width: clamp(96px, 22vw, 148px);
  height: clamp(96px, 22vw, 148px);
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--sand);
  box-shadow: 0 6px 18px -12px rgba(30, 20, 45, 0.55);
}
.menu-item__tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.menu-item__tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ch-heart) 16%, transparent);
  color: var(--ink-soft);
}

.menu-empty {
  border: 1px dashed color-mix(in srgb, var(--ink) 26%, transparent);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  background: color-mix(in srgb, var(--gold) 7%, transparent);
}
.menu-empty__title { font-size: clamp(1.5rem, 3.4vw, 2.2rem); max-width: 20ch; }
.menu-empty p { color: var(--ink-soft); max-width: 54ch; }
.menu-empty .btn-row { justify-content: center; margin-top: 0.6rem; }

/* Scheduler card + step transitions */
.scheduler { padding: clamp(1.25rem, 3.5vw, 2.25rem); }
.scheduler__panel { animation: stepIn 0.35s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .scheduler__panel { animation: none; } }


/* ==========================================================================
   PHOTO LIGHTBOX — menu photos open full size with name, price and details
   ========================================================================== */

.menu-item__shots button {
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  display: block;
  border-radius: var(--radius-sm);
  line-height: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-item__shots button:hover { transform: translateY(-2px); }
.menu-item__shots button:hover img { box-shadow: 0 12px 26px -14px rgba(30, 20, 45, 0.75); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: color-mix(in srgb, #05040F 92%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__figure {
  margin: 0;
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  justify-items: center;
  max-width: min(100%, 720px);
  max-height: 100%;
}
.lightbox__stage {
  display: grid;
  place-items: center;
  max-height: 64svh;
}
.lightbox__img {
  max-width: 100%;
  max-height: 64svh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
  transform: scale(0.97);
  transition: transform 0.35s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: none; }

.lightbox__caption { text-align: center; color: var(--ivory); max-width: 46ch; }
.lightbox__group {
  font-size: var(--fs-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.5rem;
}
.lightbox__line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.lightbox__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  color: var(--ivory);
  margin: 0;
}
.lightbox__price {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}
.lightbox__meta {
  font-size: 0.92rem;
  color: var(--ivory-mute);
  margin: 0.45rem 0 0;
}
.lightbox__count {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--ivory) 52%, transparent);
  margin: 0.9rem 0 0;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--ivory) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ivory) 26%, transparent);
  color: var(--ivory);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: color-mix(in srgb, var(--ivory) 24%, transparent);
  border-color: var(--ivory);
}
.lightbox__close { top: clamp(0.75rem, 2vw, 1.5rem); right: clamp(0.75rem, 2vw, 1.5rem); }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 1.2rem; }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav[hidden] { display: none; }

/* On phones the side arrows would sit over the photo — move them under it. */
@media (max-width: 560px) {
  .lightbox__nav { top: auto; bottom: clamp(0.75rem, 3vw, 1.5rem); transform: none; }
  .lightbox__nav--prev { left: 25%; }
  .lightbox__nav--next { right: 25%; }
  .lightbox__caption { padding-bottom: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox__img { transform: none; }
  .menu-item__shots button:hover { transform: none; }
}


/* ==========================================================================
   PRACTICE GALLERY — Yoga section
   ========================================================================== */

.gallery-head {
  margin: clamp(3rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.gallery-head h3 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }

.gallery {
  display: grid;
  gap: clamp(0.6rem, 1.6vw, 1rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.gallery button {
  padding: 0;
  border: 0;
  background: var(--sand);
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  line-height: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.gallery button:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -18px rgba(30, 20, 45, 0.6); }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery button:hover img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .gallery button:hover { transform: none; }
  .gallery button:hover img { transform: none; }
}


/* ==========================================================================
   PRICING BLOCKS — meal prep plans and catering pan sizes
   ========================================================================== */

.plan-grid,
.pan-grid {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.75rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px)  { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 620px)  { .pan-grid  { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pan-grid  { grid-template-columns: repeat(4, 1fr); } }

/* --- meal prep plan cards ------------------------------------------------ */
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--white, #fff) 62%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: var(--radius-md);
}
.plan--featured {
  border-color: var(--gold-deep);
  box-shadow: 0 18px 44px -26px rgba(70, 45, 15, 0.5);
  background: color-mix(in srgb, var(--gold) 10%, var(--white, #fff));
}
.plan__badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--void);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.plan__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  margin: 0 0 1rem;
}
.plan__includes {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding-top: 1.1rem;
}
.plan__includes li {
  font-size: 0.94rem;
  color: var(--ink-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: baseline;
}
.plan__includes li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--gold-deep);
  transform: translateY(-2px);
}
.plan__price {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.1rem);
  color: var(--ink);
}
.plan__note { font-size: 0.8rem; color: var(--ink-mute); margin: 0.3rem 0 0; }

/* --- catering pan cards -------------------------------------------------- */
.pan {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.25rem, 2.6vw, 1.6rem);
  background: color-mix(in srgb, var(--white, #fff) 55%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold-deep);
}
.pan__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin: 0;
}
.pan__feeds {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.pan__from {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  margin: 0.2rem 0 0;
}
.pan__from small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.1rem;
}
.pan__note { font-size: 0.88rem; color: var(--ink-soft); margin: 0.35rem 0 0; }

.pricing-note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-align: center;
  max-width: 60ch;
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
}
.pricing-note[hidden] { display: none; }


/* ==========================================================================
   FLYERS — the client's own printed graphics, shown under the live pricing
   ========================================================================== */

.flyer {
  margin: clamp(1.75rem, 4vw, 2.75rem) auto 0;
  max-width: 760px;
  text-align: center;
}
.flyer button {
  aspect-ratio: 1200 / 933;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--gold-deep) 40%, transparent);
  border-radius: var(--radius-md);
  background: var(--void);
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  line-height: 0;
  width: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.flyer button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -24px rgba(30, 20, 45, 0.6);
}
/* The flyer is landscape (1200x933). Pinning the ratio and forcing contain
   means it cannot stretch even if a height is inherited from somewhere or an
   older stylesheet is still cached — worst case it letterboxes. */
.flyer img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 933;
  object-fit: contain;
}
.flyer figcaption {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 0.75rem;
}
@media (prefers-reduced-motion: reduce) { .flyer button:hover { transform: none; } }


/* The menu graphic is portrait, so it gets its own ratio and a narrower cap. */
.flyer--menu { max-width: 520px; }
.flyer--menu button { aspect-ratio: 820 / 1450; }
.flyer--menu img { aspect-ratio: 820 / 1450; }

/* Text version of the menu, collapsed by default under the graphic. */
.menu-text {
  max-width: 760px;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}
.menu-text > summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
}
.menu-text > summary::-webkit-details-marker { display: none; }
.menu-text > summary::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border: 1px solid color-mix(in srgb, var(--ink) 26%, transparent);
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  flex: none;
}
.menu-text[open] > summary::before { content: "–"; }
.menu-text > summary:hover { color: var(--gold-deep); }
.menu-text .menu-groups { padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }


/* Actions under the menu graphic — there is no online ordering, so the useful
   next step is a phone call or a message. */
.menu-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}
.menu-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-mute);
  margin: 1rem auto 0;
  max-width: 44ch;
}


/* ==========================================================================
   ORDER FORM — three plain steps, tap-to-add items, no cart
   ========================================================================== */

.order-form { max-width: 760px; margin-inline: auto; }

.order-step {
  border: 0;
  padding: 0;
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
}
.order-step + .order-step {
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding-top: clamp(1.5rem, 3vw, 2rem);
}
.order-step > legend {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  color: var(--ink);
  padding: 0;
  margin-bottom: 0.9rem;
}
.order-step__num {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  flex: none;
}
.order-hint {
  font-size: 0.86rem;
  color: var(--ink-mute);
  margin: 0 0 0.75rem;
}

/* pickup / delivery toggle */
.order-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  max-width: 420px;
}
.order-toggle__opt { position: relative; }
.order-toggle__opt input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.order-toggle__opt span {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--white, #fff) 60%, transparent);
  font-weight: 500;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.order-toggle__opt input:checked + span {
  background: var(--cosmos);
  border-color: var(--cosmos);
  color: var(--ivory);
}
.order-toggle__opt input:focus-visible + span {
  outline: 2px solid var(--clay, var(--gold-deep));
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .stepper__btn, .order-line__controls button { transition: none; }
}


/* ==========================================================================
   LIGHT CARDS INSIDE DARK SECTIONS — text colour reset
   `.section--cosmic` sets ivory text and ivory headings for the section. Any
   light-background card inside it has to opt back out, or its content is
   unreadable.
   ========================================================================== */

.section--cosmic .form-card,
.section--cosmic .form-card p,
.section--cosmic .form-card li,
.section--cosmic .form-card label,
.section--cosmic .form-card legend { color: var(--ink); }

.section--cosmic .form-card h1,
.section--cosmic .form-card h2,
.section--cosmic .form-card h3,
.section--cosmic .form-card h4 { color: var(--ink); }

.section--cosmic .form-card .lead,
.section--cosmic .form-card .body-copy { color: var(--ink-soft); }

/* muted text keeps its muted tone rather than falling back to full ink */
.section--cosmic .form-card .field label,
.section--cosmic .form-card .scheduler__alt,
.section--cosmic .form-card .scheduler__fine,
.section--cosmic .form-card .order-hint,
.section--cosmic .form-card .cal__legend,
.section--cosmic .form-card .slots__tz,
.section--cosmic .form-card .booking-summary__label,
.section--cosmic .form-card .scheduler__progress li { color: var(--ink-mute); }

.section--cosmic .form-card .scheduler__progress li.is-current { color: var(--ink); }
.section--cosmic .form-card .session-option__meta { color: var(--ink-mute); }
.section--cosmic .form-card .link-line { color: var(--gold-deep); }
.section--cosmic .form-card .arch-caption { color: var(--ink-mute); }


/* ==========================================================================
   ORDER PICKER — dropdown + stepper + running order list
   ========================================================================== */

.picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: end;
  margin-bottom: 1.25rem;
}
@media (min-width: 620px) {
  .picker { grid-template-columns: 1fr auto auto; gap: 0.75rem; }
}
.picker__field { display: grid; gap: 0.45rem; min-width: 0; }
.picker__field--qty { justify-self: start; }
.picker__field label {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* select with a drawn chevron, so it looks the same across browsers */
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 2.75rem 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-overflow: ellipsis;
}
.select-wrap select:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.select-wrap select optgroup { font-weight: 600; color: var(--ink); }

/* quantity stepper */
.stepper {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: stretch;
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  overflow: hidden;
  min-height: 54px;
  width: 100%;
}
@media (min-width: 620px) { .stepper { width: 148px; } }
.stepper__btn {
  border: 0;
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.stepper__btn:hover { background: color-mix(in srgb, var(--gold) 26%, transparent); }
.stepper input {
  border: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}
.stepper input:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: -2px; }
.picker__add { min-height: 54px; white-space: nowrap; }

/* the running order */
.order-lines {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.order-line {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.35rem 0.75rem;
  padding: 0.7rem 0.85rem;
  background: color-mix(in srgb, #FFFFFF 70%, transparent);
}
.order-line + .order-line { border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent); }
.order-line__qty { font-weight: 600; color: var(--gold-deep); min-width: 2.2rem; }
.order-line__name { font-size: 0.98rem; color: var(--ink); min-width: 0; }
.order-line__price { font-size: 0.88rem; color: var(--ink-mute); white-space: nowrap; }
.order-line__controls { display: flex; gap: 0.3rem; }
.order-line__controls button {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.order-line__controls button:hover { border-color: var(--gold-deep); background: color-mix(in srgb, var(--gold) 20%, transparent); }
.order-line__controls button[data-remove]:hover { border-color: #A33; color: #A33; background: color-mix(in srgb, #A33 10%, transparent); }

.order-empty {
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin: 0 0 0.5rem;
  padding: 0.9rem 1rem;
  border: 1px dashed color-mix(in srgb, var(--ink) 20%, transparent);
  border-radius: var(--radius-sm);
}
.order-empty[hidden], .order-lines[hidden] { display: none; }


/* Catering picker: two dropdowns, so it needs its own column split. */
@media (min-width: 620px) {
  .picker--catering { grid-template-columns: 1.3fr 1fr auto; }
}

/* Suggested pan size, shown once a guest count is typed. */
.pan-suggest {
  margin: 1.15rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--ink);
  background: color-mix(in srgb, var(--gold) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold-deep) 35%, transparent);
  border-radius: var(--radius-sm);
}
.pan-suggest[hidden] { display: none; }


/* "Other" free-text field — appears inside the picker row when chosen. */
.picker__field--other[hidden] { display: none; }
.picker__field--other input {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-sm);
}
.picker__field--other input:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

/* When shown, the free-text field takes a full row of its own beneath the
   picker controls. Spanning rather than adding a fourth column means the
   layout is identical whether the field is visible or hidden. */
@media (min-width: 620px) {
  .picker__field--other { grid-column: 1 / -1; }
}
