/* Arden Aesthetics,, v2
   Direction: the price is the hero.
   Colour law: GOLD means money. SOLAR means act. ROSE means you and your concern.
   Text law: ink sits on every saturated fill. Ivory sits on ink. Opacity is never
   applied to text, only to decorative layers, so no composite can drop below AA. */

/* ============================================================ tokens */
:root {
  /* surfaces */
  --ink: #17060f;
  --ink-2: #22091a;
  --ink-3: #300e22;
  --ivory: #fff6ef;
  --shell: #ffe9da;

  /* solar duotone */
  --solar: #ff6a00;
  --solar-2: #ff8a2b;
  --gold: #ffb300;
  --gold-2: #ffc940;
  --rose: #ff3b6b;
  --rose-2: #ff6f93;
  --rose-lite: #ffa3ba; /* rose for TEXT and icons on dark: measured on the stage worst case */

  /* text roles, all solid, all measured */
  --on-ink: #fff6ef;
  --on-ink-mute: #eccbbb;
  --on-light: #17060f;
  --on-light-mute: #6b3a28;
  --solar-deep: #a83505;
  --rose-deep: #9e0f42;

  /* hairlines and materials */
  --edge-ink: rgba(255, 246, 239, 0.16);
  --edge-ink-soft: rgba(255, 246, 239, 0.09);
  --edge-gold: rgba(255, 201, 64, 0.3);
  --edge-light: rgba(23, 6, 15, 0.14);
  --edge-light-soft: rgba(23, 6, 15, 0.08);

  --lift-1: 0 1px 2px rgba(74, 14, 0, 0.14), 0 10px 24px -16px rgba(96, 22, 8, 0.44);
  --lift-2: 0 2px 5px rgba(74, 14, 0, 0.16), 0 30px 60px -28px rgba(120, 30, 10, 0.55);
  --lift-dark: 0 2px 6px rgba(0, 0, 0, 0.4), 0 42px 80px -40px rgba(255, 106, 0, 0.35);

  /* deliberately uneven radius language */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 38px;
  --r-pill: 999px;

  --wrap: 1200px;
  --gut: 20px;

  --t-fast: 140ms;
  --t-mid: 220ms;
  --t-slow: 320ms;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-ui: "Figtree", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (min-width: 760px) { :root { --gut: 36px; } }
@media (min-width: 1120px) { :root { --gut: 52px; } }

@property --beam {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.07rem);
  line-height: 1.55;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { max-width: 100%; }
button { font: inherit; color: inherit; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 5px;
}
.sec--light :focus-visible,
.sec--shell :focus-visible,
.member :focus-visible { outline-color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 300;
  transform: translateY(-180%);
  background: var(--gold-2);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease);
}
.skip:focus { transform: translateY(0); }

html.no-js .js-only { display: none !important; }
html.js .nojs-only { display: none !important; }

/* any author display value beats the user agent rule for [hidden], and several
   components here are flex or grid: without this, hiding never takes effect */
[hidden] { display: none !important; }

/* ============================================================ layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.sec { padding-block: clamp(56px, 9vw, 116px); position: relative; }
.sec--light { background: var(--ivory); color: var(--on-light); }
.sec--shell { background: var(--shell); color: var(--on-light); }
.sec--ink { background: var(--ink); color: var(--on-ink); }
.sec--light .eyebrow, .sec--shell .eyebrow { color: var(--solar-deep); }

.sec__head { max-width: 30ch; margin-bottom: clamp(28px, 4.5vw, 52px); }
.sec__head--wide { max-width: 40ch; }

.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

.h-display {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 10.6vw, 4.6rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.035em;
  font-variation-settings: "SOFT" 28, "WONK" 1, "opsz" 120;
}
.h-2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.4vw, 3.05rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-variation-settings: "SOFT" 22, "WONK" 1, "opsz" 72;
}
.h-3 {
  font-size: clamp(1.1rem, 2.1vw, 1.26rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.lede { font-size: clamp(1.04rem, 2.3vw, 1.2rem); line-height: 1.5; }
.tiny { font-size: 0.82rem; line-height: 1.5; }
.mute { color: var(--on-ink-mute); }
.sec--light .mute, .sec--shell .mute { color: var(--on-light-mute); }

.ico { width: 22px; height: 22px; flex: none; fill: currentColor; }
.ico--sm { width: 17px; height: 17px; }
.ico--lg { width: 30px; height: 30px; }

/* ============================================================ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  border: 0;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-mid) var(--ease), background-color var(--t-fast) var(--ease);
}
.btn--sm { padding: 11px 17px; font-size: 0.9rem; }
.btn--wide { width: 100%; justify-content: center; }

.btn--solar {
  background: linear-gradient(103deg, var(--gold) 0%, var(--solar) 94%);
  color: var(--ink);
  box-shadow: var(--lift-1);
}
.btn--solar:hover { transform: translateY(-2px); box-shadow: var(--lift-2); }
.btn--solar:active { transform: translateY(0); }

.btn--gold { background: var(--gold-2); color: var(--ink); box-shadow: var(--lift-1); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--lift-2); }

.btn--ink { background: var(--ink); color: var(--on-ink); }
.btn--ink:hover { background: var(--ink-3); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--on-ink); box-shadow: inset 0 0 0 1.5px var(--edge-gold); }
.btn--ghost:hover { background: rgba(255, 201, 64, 0.11); }
.sec--light .btn--ghost, .sec--shell .btn--ghost { color: var(--on-light); box-shadow: inset 0 0 0 1.5px var(--edge-light); }
.sec--light .btn--ghost:hover, .sec--shell .btn--ghost:hover { background: rgba(23, 6, 15, 0.05); }

.btn.is-idle { background: var(--ink-3); color: var(--on-ink-mute); box-shadow: none; cursor: default; }
.sec--light .btn.is-idle, .sec--shell .btn.is-idle { background: #ecd0bf; color: var(--on-light-mute); }
.btn.is-idle:hover { transform: none; box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.txtlink { font-size: 0.88rem; font-weight: 700; color: var(--solar-deep); text-underline-offset: 3px; }
.sec--ink .txtlink { color: var(--gold-2); }

/* ============================================================ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(23, 6, 15, 0.9);
  border-bottom: 1px solid var(--edge-ink-soft);
}
@supports (backdrop-filter: blur(1px)) {
  .site-header { background: rgba(23, 6, 15, 0.72); backdrop-filter: blur(20px) saturate(1.3); }
}
.site-header__in { display: flex; align-items: center; gap: 16px; min-height: 66px; color: var(--on-ink); }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 30px; height: 30px; fill: var(--gold-2); flex: none; }
.brand__name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; display: block; }
.brand__sub { display: block; font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--on-ink-mute); margin-top: 3px; }

.nav { display: none; gap: 26px; font-size: 0.92rem; font-weight: 600; }
.nav a { text-decoration: none; padding: 6px 0; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold-2); border-radius: 2px;
  transition: right var(--t-mid) var(--ease);
}
.nav a:hover::after { right: 0; }
@media (min-width: 900px) { .nav { display: flex; } }

/* progressive blur under the header: legibility layer, not decoration */
.gradient-blur { position: fixed; z-index: 30; inset: 0 0 auto 0; height: 128px; pointer-events: none; }
.gradient-blur > div, .gradient-blur::before, .gradient-blur::after { position: absolute; inset: 0; }
.gradient-blur::before {
  content: ""; z-index: 1; backdrop-filter: blur(0.6px);
  -webkit-mask: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 22%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 58%);
  mask: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 22%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 58%);
}
.gradient-blur > div:nth-of-type(1) {
  z-index: 2; backdrop-filter: blur(2px);
  -webkit-mask: linear-gradient(to top, rgba(0,0,0,0) 22%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 58%, rgba(0,0,0,0) 76%);
  mask: linear-gradient(to top, rgba(0,0,0,0) 22%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 58%, rgba(0,0,0,0) 76%);
}
.gradient-blur > div:nth-of-type(2) {
  z-index: 3; backdrop-filter: blur(6px);
  -webkit-mask: linear-gradient(to top, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 58%, rgba(0,0,0,1) 76%, rgba(0,0,0,0) 92%);
  mask: linear-gradient(to top, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 58%, rgba(0,0,0,1) 76%, rgba(0,0,0,0) 92%);
}
.gradient-blur > div:nth-of-type(3) {
  z-index: 4; backdrop-filter: blur(14px);
  -webkit-mask: linear-gradient(to top, rgba(0,0,0,0) 58%, rgba(0,0,0,1) 76%, rgba(0,0,0,1) 100%);
  mask: linear-gradient(to top, rgba(0,0,0,0) 58%, rgba(0,0,0,1) 76%, rgba(0,0,0,1) 100%);
}
@media (max-width: 640px) { .gradient-blur { height: 100px; } }

/* ============================================================ the solar light field */
.field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.field span { position: absolute; display: block; border-radius: 50%; }
.field__a {
  width: 126vw; height: 126vw; top: -60vw; right: -44vw;
  background: radial-gradient(circle at 50% 50%, rgba(255, 138, 43, 0.34), rgba(255, 106, 0, 0.13) 42%, rgba(255, 106, 0, 0) 68%);
}
.field__b {
  width: 94vw; height: 94vw; bottom: -48vw; left: -32vw;
  background: radial-gradient(circle at 50% 50%, rgba(255, 59, 107, 0.24), rgba(255, 59, 107, 0.07) 46%, rgba(255, 59, 107, 0) 70%);
}
.field__grain {
  inset: 0; width: 100%; height: 100%; border-radius: 0;
  background-image: var(--grain); background-size: 200px 200px;
  opacity: 0.15; mix-blend-mode: overlay;
}

/* ============================================================ hero */
.hero { position: relative; background: var(--ink); padding-block: clamp(24px, 5vw, 62px) clamp(46px, 7vw, 92px); overflow: hidden; }
.hero__in { position: relative; z-index: 2; }
.hero__grid { display: grid; gap: clamp(24px, 3.6vw, 44px); }
/* on a phone the column dissolves so the price instrument can sit directly under the
   headline and the supporting pills fall below it */
.hero__col { display: contents; }
.hero__intro { order: 1; max-width: 34rem; }
.stage { order: 2; }
.proof { order: 3; display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }

@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); align-items: start; gap: clamp(34px, 4vw, 60px); }
  .hero__col { display: block; }
  .proof { margin-top: clamp(26px, 3vw, 38px); }
}

.h-display .lift { display: block; color: var(--gold-2); }
.hero__sub { max-width: 32ch; margin-top: 18px; color: var(--on-ink-mute); }
.proof li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.79rem; font-weight: 600;
  padding: 8px 14px 8px 11px;
  border-radius: var(--r-pill);
  background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--edge-ink-soft);
  color: var(--on-ink);
}
.proof svg { fill: var(--gold-2); }

/* ---- the price stage: the signature instrument */
.stage {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(168deg, var(--ink-3) 0%, var(--ink-2) 58%, var(--ink) 100%);
  box-shadow: var(--lift-dark), inset 0 1px 0 rgba(255, 201, 64, 0.22);
  padding: clamp(20px, 3.4vw, 30px);
  overflow: hidden;
  isolation: isolate;
}
.stage__lens { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; border-radius: inherit; }
.stage__lens span {
  position: absolute; display: block; border-radius: 50%;
  border: 1px solid rgba(255, 201, 64, 0.14);
  top: 48%; left: 74%; transform: translate(-50%, -50%);
}
.stage__lens span:nth-child(1) { width: 300px; height: 300px; }
.stage__lens span:nth-child(2) { width: 470px; height: 470px; border-color: rgba(255, 201, 64, 0.1); }
.stage__lens span:nth-child(3) { width: 660px; height: 660px; border-color: rgba(255, 59, 107, 0.1); }
.stage__halo {
  position: absolute; z-index: 0; pointer-events: none;
  width: 400px; height: 400px; border-radius: 50%;
  top: 44%; left: 76%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 179, 0, 0.24), rgba(255, 106, 0, 0) 66%);
  filter: blur(8px);
}
.stage > *:not(.stage__lens):not(.stage__halo) { position: relative; z-index: 1; }

.stage__ask { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--rose-lite); margin-bottom: 13px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 15px;
  border-radius: var(--r-pill);
  border: 0;
  background: rgba(255, 246, 239, 0.08);
  box-shadow: inset 0 0 0 1px var(--edge-ink-soft);
  color: var(--on-ink);
  font-size: 0.87rem; font-weight: 600;
  cursor: pointer;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.chip:hover { background: rgba(255, 246, 239, 0.15); }
.chip[aria-checked="true"] { background: var(--gold-2); color: var(--ink); box-shadow: 0 6px 18px -8px rgba(255, 179, 0, 0.8); }
.chip svg { fill: currentColor; }

.chips--light .chip { background: rgba(23, 6, 15, 0.05); box-shadow: inset 0 0 0 1px var(--edge-light-soft); color: var(--on-light); }
.chips--light .chip:hover { background: rgba(23, 6, 15, 0.1); }
.chips--light .chip[aria-checked="true"] { background: var(--ink); color: var(--on-ink); box-shadow: 0 8px 20px -12px rgba(23, 6, 15, 0.9); }

/* one short travelling beam on the control just chosen, then the static style holds */
.is-beam::after {
  content: "";
  position: absolute; inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--beam), rgba(255,255,255,0) 0 58%, var(--gold-2) 74%, var(--solar) 82%, rgba(255,255,255,0) 90% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: beamspin 1s linear 1;
  pointer-events: none;
}
@keyframes beamspin { to { --beam: 360deg; } }

.panels { margin-top: clamp(18px, 3vw, 26px); }
html.no-js .panel + .panel { margin-top: 24px; border-top: 1px solid var(--edge-ink-soft); padding-top: 22px; }

.panel__fam { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-ink-mute); margin-bottom: 8px; }
.panel__name { font-family: var(--font-display); font-size: clamp(1.28rem, 3.4vw, 1.62rem); line-height: 1.1; letter-spacing: -0.024em; }

.bigprice { display: flex; align-items: flex-end; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.bigprice__from { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold-2); padding-bottom: 13px; }
.bigprice__val {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14.5vw, 6rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.045em;
  color: var(--gold-2);
  font-variant-numeric: tabular-nums lining-nums;
  font-variation-settings: "SOFT" 8, "WONK" 0, "opsz" 144;
  text-shadow: 0 0 52px rgba(255, 179, 0, 0.3);
}
.bigprice__unit { font-size: 0.86rem; font-weight: 600; color: var(--on-ink-mute); padding-bottom: 13px; }

.panel__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.panel__meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.81rem; font-weight: 600;
  padding: 7px 12px; border-radius: var(--r-xs);
  background: rgba(255, 246, 239, 0.08);
  color: var(--on-ink);
}
.panel__meta svg { fill: var(--gold-2); }
.panel__meta .is-member { background: rgba(255, 59, 107, 0.18); }
.panel__meta .is-member svg { fill: var(--rose-lite); }

.alts { margin-top: 18px; border-top: 1px solid var(--edge-ink-soft); }
.alts li { display: flex; align-items: baseline; gap: 10px; padding-top: 11px; }
.alts li + li { border-top: 1px solid var(--edge-ink-soft); margin-top: 11px; }
.alts__n { font-size: 0.89rem; font-weight: 600; }
.alts__p { margin-left: auto; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--gold-2); letter-spacing: -0.024em; font-variant-numeric: tabular-nums; }
.alts__u { font-size: 0.72rem; color: var(--on-ink-mute); font-weight: 600; }

.stage__act { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.stage__foot { margin-top: 15px; font-size: 0.79rem; color: var(--on-ink-mute); }

/* ---- tonight strip: the two tap path straight off the first screen */
.tonight { order: 4; }
@media (min-width: 1000px) { .tonight { margin-top: clamp(26px, 3vw, 38px); } }
.tonight__lbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--on-ink-mute); margin-bottom: 11px; }
.tonight__row { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.slotlink {
  display: inline-flex; flex-direction: column; gap: 1px;
  padding: 10px 17px;
  border-radius: var(--r-sm);
  background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--edge-gold);
  text-decoration: none;
  transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.slotlink:hover { background: var(--ink-3); transform: translateY(-2px); }
.slotlink b { font-size: 0.97rem; font-weight: 700; color: var(--gold-2); font-variant-numeric: tabular-nums; }
.slotlink span { font-size: 0.71rem; font-weight: 600; color: var(--on-ink-mute); }

/* ============================================================ booking */
.book-grid { display: grid; gap: clamp(26px, 4vw, 48px); }
@media (min-width: 940px) { .book-grid { grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); align-items: start; } }

.seg { display: inline-flex; padding: 4px; gap: 4px; border-radius: var(--r-pill); background: rgba(23, 6, 15, 0.07); margin-bottom: 18px; }
.seg__btn {
  position: relative; border: 0; background: transparent; cursor: pointer;
  padding: 10px 18px; border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 700; color: var(--on-light);
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.seg__btn[aria-checked="true"] { background: var(--ink); color: var(--on-ink); }

.clinic { border-radius: var(--r-lg); background: #fffdfb; box-shadow: var(--lift-1), inset 0 0 0 1px var(--edge-light-soft); padding: clamp(18px, 3vw, 26px); }
.clinic__hours { font-size: 0.86rem; color: var(--on-light-mute); margin-top: 6px; }
.clinic__lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--solar-deep); margin: 20px 0 11px; }

.times { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
@media (min-width: 560px) { .times { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.time {
  position: relative; border: 0; cursor: pointer;
  padding: 13px 8px; border-radius: var(--r-sm);
  background: var(--shell); color: var(--on-light);
  font-size: 0.88rem; font-weight: 700; font-variant-numeric: tabular-nums;
  box-shadow: inset 0 0 0 1px var(--edge-light-soft);
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.time small { display: block; font-size: 0.69rem; font-weight: 600; color: var(--on-light-mute); margin-top: 2px; }
.time:hover:not([disabled]) { background: #ffdcc4; transform: translateY(-2px); }
.time[aria-pressed="true"] { background: var(--ink); color: var(--on-ink); }
.time[aria-pressed="true"] small { color: var(--on-ink-mute); }
.time[disabled] { cursor: default; }

.book-out { margin-top: 20px; }
.book-out__sel { font-size: 0.92rem; font-weight: 600; margin-bottom: 12px; }
.book-step { margin-top: 14px; padding: 16px 18px; border-radius: var(--r-md); background: var(--ink); color: var(--on-ink); font-size: 0.87rem; }
.book-step b { color: var(--gold-2); }

/* ============================================================ care chain */
.chain { display: grid; gap: 14px; counter-reset: step; }
@media (min-width: 860px) { .chain { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: start; } }
.chain li { counter-increment: step; position: relative; padding: 26px 22px 24px; border-radius: var(--r-md); background: #fffdfb; box-shadow: var(--lift-1); }
.chain li::before {
  content: "0" counter(step);
  display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--solar-deep); letter-spacing: -0.02em; margin-bottom: 14px;
}
.chain li:nth-child(2) { background: var(--ink); color: var(--on-ink); }
.chain li:nth-child(2)::before { color: var(--gold-2); }
.chain li:nth-child(2) .chain__d { color: var(--on-ink-mute); }
@media (min-width: 860px) { .chain li:nth-child(2) { transform: translateY(20px); } }
.chain__t { font-size: 1.08rem; font-weight: 700; margin-bottom: 7px; }
.chain__d { font-size: 0.92rem; color: var(--on-light-mute); }

.claim { margin-top: clamp(30px, 4.6vw, 56px); display: grid; gap: 20px; align-items: center; }
@media (min-width: 860px) { .claim { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; } }
.claim__t { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.1rem); line-height: 1.08; letter-spacing: -0.028em; }
.claim__d { margin-top: 12px; font-size: 0.95rem; color: var(--on-light-mute); max-width: 36ch; }

.plate {
  border-radius: var(--r-lg);
  background: linear-gradient(142deg, #ffd9be 0%, #ffb9a0 44%, #f0949a 100%);
  aspect-ratio: 5 / 3;
  display: grid; place-items: center; padding: 22px;
  box-shadow: var(--lift-1);
  position: relative; overflow: hidden;
}
.plate::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grain); background-size: 200px 200px;
  opacity: 0.2; mix-blend-mode: overlay; pointer-events: none;
}
.plate__in { text-align: center; display: grid; gap: 10px; justify-items: center; position: relative; z-index: 1; }
.plate__ico { width: 40px; height: 40px; fill: var(--ink); }
.plate__label { font-size: 0.79rem; font-weight: 700; color: var(--ink); max-width: 28ch; }

/* ============================================================ house look */
.looks { display: grid; gap: 14px; }
@media (min-width: 860px) { .looks { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } }
.look { border-radius: var(--r-md); overflow: hidden; background: var(--ink-2); box-shadow: inset 0 0 0 1px var(--edge-ink-soft); }
.look__band { height: 116px; position: relative; overflow: hidden; }
.look__band::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grain); background-size: 200px 200px;
  opacity: 0.22; mix-blend-mode: overlay;
}
.look--a .look__band { background: linear-gradient(118deg, var(--gold-2), var(--solar) 78%); }
.look--b .look__band { background: linear-gradient(118deg, var(--solar-2), var(--rose) 82%); }
.look--c .look__band { background: linear-gradient(118deg, var(--rose-2), #6d1560 88%); }
.look__rule { position: absolute; left: 22px; bottom: 20px; width: 54px; height: 4px; border-radius: 3px; background: var(--ink); }
.look--c .look__rule { background: var(--ivory); }
.look__body { padding: 22px; }
.look__t { font-family: var(--font-display); font-size: clamp(1.26rem, 3vw, 1.48rem); letter-spacing: -0.024em; line-height: 1.1; }
.look__d { font-size: 0.92rem; color: var(--on-ink-mute); margin-top: 9px; }

/* ============================================================ price board */
.board { border-radius: var(--r-lg); background: #fffdfb; box-shadow: var(--lift-1); overflow: hidden; }
.board li { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px 18px; padding: 16px clamp(16px, 2.4vw, 24px); }
.board li + li { border-top: 1px solid var(--edge-light-soft); }
.board li:hover { background: var(--ivory); }
.board__n { display: block; font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.board__m { display: block; font-size: 0.78rem; color: var(--on-light-mute); margin-top: 3px; }
.board__p { display: flex; align-items: baseline; gap: 8px; }
.board__from { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--solar-deep); }
.board__v { font-family: var(--font-display); font-size: clamp(1.4rem, 3.4vw, 1.7rem); font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.board__go { grid-column: 1 / -1; }
@media (min-width: 640px) { .board li { grid-template-columns: minmax(0, 1fr) auto auto; } .board__go { grid-column: auto; } }

/* ============================================================ membership */
.member {
  margin-top: clamp(30px, 4.6vw, 56px);
  border-radius: var(--r-xl);
  background: linear-gradient(118deg, var(--gold-2) 0%, var(--gold) 38%, var(--solar) 100%);
  color: var(--ink);
  padding: clamp(24px, 4vw, 44px);
  position: relative; overflow: hidden;
  box-shadow: var(--lift-2);
}
.member::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grain); background-size: 200px 200px;
  opacity: 0.17; mix-blend-mode: overlay; pointer-events: none;
}
.member__grid { position: relative; z-index: 1; display: grid; gap: 26px; }
@media (min-width: 880px) { .member__grid { grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); gap: 42px; align-items: center; } }
.member .eyebrow { color: var(--ink); }
.member__price { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 4.4rem); font-weight: 600; letter-spacing: -0.04em; line-height: 0.9; margin-top: 14px; }
.member__price span { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; font-weight: 600; }
.checks li + li { margin-top: 13px; }
.checks svg { fill: var(--ink); margin-top: 2px; }

/* ============================================================ closing band */
.closer { background: var(--ink); position: relative; overflow: hidden; }
.closer__in { position: relative; z-index: 2; display: grid; gap: 22px; align-items: center; }
@media (min-width: 860px) { .closer__in { grid-template-columns: minmax(0, 1fr) auto; gap: 40px; } }
.closer__t { font-family: var(--font-display); font-size: clamp(1.9rem, 5.4vw, 3rem); line-height: 1.02; letter-spacing: -0.03em; }
.closer__d { color: var(--on-ink-mute); margin-top: 12px; max-width: 44ch; }

/* ============================================================ note strip */
.note { display: flex; gap: 12px; align-items: flex-start; padding: 15px 18px; border-radius: var(--r-md); background: rgba(23, 6, 15, 0.055); font-size: 0.85rem; color: var(--on-light); }
.note svg { fill: var(--solar-deep); margin-top: 1px; }
.sec--ink .note { background: rgba(255, 246, 239, 0.08); color: var(--on-ink); }
.sec--ink .note svg { fill: var(--gold-2); }

/* ============================================================ explorer */
.filters { display: grid; gap: 20px; margin-bottom: 20px; }
.filter__lbl { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--solar-deep); margin-bottom: 11px; }

.tools { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between; }

.switch { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; font-size: 0.9rem; font-weight: 700; }
.switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.switch__track { width: 48px; height: 28px; border-radius: var(--r-pill); background: #e4c6b3; position: relative; flex: none; transition: background-color var(--t-fast) var(--ease); }
.switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fffdfb; box-shadow: 0 1px 3px rgba(60, 10, 0, 0.3); transition: transform var(--t-mid) var(--ease); }
.switch input:checked + .switch__track { background: var(--rose-deep); }
.switch input:checked + .switch__track::after { transform: translateX(20px); }
.switch input:focus-visible + .switch__track { outline: 3px solid var(--ink); outline-offset: 3px; }

.sortwrap { display: inline-flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 700; }
.sortwrap select { font: inherit; font-weight: 700; padding: 9px 13px; border-radius: var(--r-sm); border: 1.5px solid var(--edge-light); background: #fffdfb; color: var(--on-light); cursor: pointer; }

.summary { display: grid; gap: 16px; border-radius: var(--r-lg); background: var(--ink); color: var(--on-ink); padding: clamp(18px, 3vw, 26px); margin-bottom: 20px; position: relative; overflow: hidden; }
@media (min-width: 780px) { .summary { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 26px; } }
.summary__t { font-family: var(--font-display); font-size: clamp(1.3rem, 3.4vw, 1.68rem); letter-spacing: -0.026em; line-height: 1.1; }
.summary__d { font-size: 0.88rem; color: var(--on-ink-mute); margin-top: 7px; }
.summary__d b { color: var(--gold-2); font-variant-numeric: tabular-nums; }

.result-head { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.result-count { font-size: 0.95rem; font-weight: 700; }
.result-count b { color: var(--solar-deep); font-variant-numeric: tabular-nums; }
.result-note { font-size: 0.78rem; color: var(--on-light-mute); }

.tgrid { display: grid; gap: 14px; }
@media (min-width: 680px) { .tgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .tgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }

.tcard { display: flex; flex-direction: column; border-radius: var(--r-md); background: #fffdfb; box-shadow: var(--lift-1); padding: 20px; position: relative; }
.tcard.has-picker { grid-column: 1 / -1; box-shadow: var(--lift-2); }
.tcard__top { display: flex; gap: 13px; align-items: flex-start; }
.tcard__ico { fill: var(--solar-deep); flex: none; margin-top: 2px; }
.tcard__fam { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--solar-deep); }
.tcard__n { margin-top: 5px; }
.tcard__d { font-size: 0.87rem; color: var(--on-light-mute); margin-top: 8px; }

.price { margin-top: 16px; display: grid; gap: 4px; }
.price__line { display: flex; align-items: baseline; gap: 8px; }
.price__lbl { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--solar-deep); }
.price__val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: -0.032em; font-variant-numeric: tabular-nums; }
.price__unit { font-size: 0.75rem; color: var(--on-light-mute); font-weight: 600; }
.price__line--member .price__lbl { color: var(--rose-deep); }
.price__line--member .price__val { font-size: 1.08rem; color: var(--rose-deep); }
html.js .price__line--member { display: none; }

.meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; color: var(--on-light); background: var(--shell); padding: 6px 10px; border-radius: var(--r-xs); }
.meta svg { fill: var(--solar-deep); }

.tcard__foot { margin-top: auto; padding-top: 16px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.tcard__foot > .btn { margin-top: 0; }

/* inline slot picker, relocated into whichever card was tapped */
.picker { margin-top: 18px; border-radius: var(--r-md); background: var(--ink); color: var(--on-ink); padding: clamp(16px, 2.6vw, 24px); }
.picker__h { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); }
.picker__t { font-family: var(--font-display); font-size: 1.24rem; letter-spacing: -0.024em; margin-top: 6px; }
.picker .seg { background: rgba(255, 246, 239, 0.1); margin: 16px 0 14px; }
.picker .seg__btn { color: var(--on-ink); }
.picker .seg__btn[aria-checked="true"] { background: var(--gold-2); color: var(--ink); }
.picker .times { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 620px) { .picker .times { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.picker .time { background: rgba(255, 246, 239, 0.1); color: var(--on-ink); box-shadow: inset 0 0 0 1px var(--edge-ink-soft); }
.picker .time small { color: var(--on-ink-mute); }
.picker .time:hover:not([disabled]) { background: rgba(255, 246, 239, 0.18); }
.picker .time[aria-pressed="true"] { background: var(--gold-2); color: var(--ink); }
.picker .time[aria-pressed="true"] small { color: #5c3b00; }
.picker__out { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.picker__sel { font-size: 0.88rem; font-weight: 600; color: var(--on-ink-mute); }
.picker__close { margin-left: auto; background: transparent; border: 0; cursor: pointer; font-size: 0.84rem; font-weight: 700; color: var(--on-ink-mute); text-decoration: underline; padding: 8px; }
.picker__step { margin-top: 14px; font-size: 0.86rem; background: rgba(255, 201, 64, 0.15); border-radius: var(--r-sm); padding: 13px 15px; }
.picker__step b { color: var(--gold-2); }

.empty { border-radius: var(--r-md); background: #fffdfb; box-shadow: var(--lift-1); padding: 30px; text-align: center; }
.empty__t { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: -0.024em; }
.empty__d { font-size: 0.9rem; color: var(--on-light-mute); margin: 8px 0 16px; }

/* ============================================================ footer */
.site-footer { background: var(--ink); color: var(--on-ink); padding-block: clamp(42px, 6vw, 68px) 30px; border-top: 1px solid var(--edge-ink-soft); }
.footer-grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; } }
.footer-h { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px; }
.footer-list li + li { margin-top: 9px; }
.footer-list a { text-decoration: none; color: var(--on-ink-mute); }
.footer-list a:hover { color: var(--on-ink); text-decoration: underline; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--edge-ink-soft); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: 0.8rem; color: var(--on-ink-mute); }
.stamp { letter-spacing: 0.06em; }

/* ============================================================ motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .btn:hover, .slotlink:hover, .time:hover, .chain li:nth-child(2) { transform: none; }
}
/* step two: name + mobile, confirms in place (concept study, nothing is sent) */
.step-form{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:12px}
.step-form label{display:flex;flex-direction:column;gap:4px;font-size:.74rem;letter-spacing:.04em}
.step-form input{font:inherit;font-size:.95rem;padding:10px 12px;border-radius:10px;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.08);color:inherit;min-height:44px}
.step-form button{grid-column:1/-1}
@media (max-width:480px){.step-form{grid-template-columns:1fr}}
