/* =========================================================================
   TheraGo — "Night Spa" customer front. Dark-first, warm candlelight.
   One stylesheet. Mobile-first. Tokens → base → components → pages.
   ========================================================================= */

/* ---- Fonts: self-hosted Bricolage Grotesque (variable, OFL) ------------ */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/bricolage-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/bricolage-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+20A0-20BF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Tokens ------------------------------------------------------------ */
:root {
  --ink: #0C1521;
  --navy: #152238;
  --navy-2: #1F3049;
  --gold: #D6A75B;
  --glow-a: #EAC98A;
  --glow-b: #B58540;
  --bone: #EDE6D6;
  --mist: #96A8C2;

  --line: rgba(150, 168, 194, 0.14);
  --line-strong: rgba(150, 168, 194, 0.28);
  --gold-soft: rgba(214, 167, 91, 0.14);
  --gold-edge: rgba(214, 167, 91, 0.40);
  --lamp-glow: 0 18px 50px -20px rgba(214, 167, 91, 0.35);

  /* one canonical danger/red across every face; --err* alias it so the many
     existing --err usages keep working without a rename sweep */
  --danger: #E1746A;
  --danger-soft: rgba(225, 116, 106, 0.12);
  --danger-edge: rgba(225, 116, 106, 0.42);
  --err: var(--danger);
  --err-soft: var(--danger-soft);
  --err-edge: var(--danger-edge);
  --ok: #5FBE8E;
  --icon-alert: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zM11 7h2v6h-2zm0 8h2v2h-2z'/%3E%3C/svg%3E");

  --display: "Bricolage Grotesque", Georgia, "Times New Roman", serif;
  --ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset / base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--ui);
  color: var(--bone);
  background: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* faint warm vignette from the top, like a lamp overhead */
  background-image:
    radial-gradient(120% 60% at 78% -8%, rgba(181, 133, 64, 0.10), transparent 60%),
    radial-gradient(100% 50% at 12% 4%, rgba(150, 168, 194, 0.05), transparent 55%);
  background-attachment: fixed;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
}

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

/* Focus: warm, always visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 9vw, 108px); }
.section--tight { padding-block: clamp(40px, 6vw, 68px); }

.eyebrow {
  display: inline-block;
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}
.lede { font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: var(--bone); opacity: 0.86; max-width: 56ch; }
.muted { color: var(--mist); }
.small { font-size: 0.85rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 8px; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn-sm { padding: 0.52rem 1.05rem; font-size: 0.85rem; }

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--glow-a), var(--gold) 55%, var(--glow-b));
  box-shadow: 0 10px 30px -12px rgba(214, 167, 91, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(234, 201, 138, 0.7), 0 0 0 1px rgba(234, 201, 138, 0.3);
}
.btn-ghost {
  color: var(--bone);
  border-color: var(--line-strong);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold-edge); color: #fff; transform: translateY(-1px); }
.btn-outline {
  color: var(--gold);
  border-color: var(--gold-edge);
  background: rgba(214, 167, 91, 0.05);
}
.btn-outline:hover { background: rgba(214, 167, 91, 0.12); transform: translateY(-1px); }

/* quiet text button (cancel etc.) */
.btn-text {
  background: none; border: 0; color: var(--mist);
  padding: 0.6rem 0.4rem; font-weight: 600; border-radius: 8px;
  transition: color 0.25s var(--ease);
}
.btn-text:hover { color: var(--gold); }
.btn-quiet { background: none; border: 1px solid var(--line-strong); color: var(--mist); }
.btn-quiet:hover { border-color: var(--danger-edge); color: var(--danger); background: var(--danger-soft); }

/* ---- Chips / pills ----------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.55rem 1rem; border-radius: 999px;
  background: var(--navy); border: 1px solid var(--line);
  color: var(--bone); font-size: 0.92rem; font-weight: 500;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease);
}
.chip:hover { transform: translateY(-2px); border-color: var(--gold-edge); box-shadow: var(--lamp-glow); color: #fff; }
.chip--accent { border-color: var(--gold-edge); color: var(--gold); background: transparent; }
.chip--accent:hover { color: var(--ink); background: var(--gold); }

.tag {
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: 999px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--mist); border: 1px solid var(--line-strong);
}

/* ---- Flash / toast ----------------------------------------------------- */
.flash {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(135deg, var(--glow-a), var(--gold));
  color: var(--ink); text-align: center; font-weight: 600;
  padding: 0.7rem 1rem; font-size: 0.92rem;
}
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px);
  background: var(--navy-2); color: var(--bone); border: 1px solid var(--gold-edge);
  padding: 0.7rem 1.1rem; border-radius: 999px; font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--lamp-glow); opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); z-index: 70;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.ad-slot { margin: 32px auto; max-width: var(--wrap); padding-inline: 22px; text-align: center; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(12, 21, 33, 0.7);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.site-header__row {
  max-width: var(--wrap); margin-inline: auto; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: padding 0.35s var(--ease);
}
.site-header.is-condensed { background: rgba(12, 21, 33, 0.86); }
.site-header.is-condensed .site-header__row { padding-block: 11px; }

.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 600; font-size: 1.35rem;
  letter-spacing: -0.02em; color: var(--bone);
}
.brand img { width: 30px; height: 30px; }
.site-header nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: var(--mist); font-weight: 500; font-size: 0.95rem;
  padding: 0.5rem 0.75rem; border-radius: 8px; transition: color 0.25s var(--ease);
}
.nav-link:hover { color: var(--bone); }
.nav-desktop { display: none; }

/* =========================================================================
   HERO — the breathing composition (signature)
   ========================================================================= */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 12vh, 120px); }
.hero__inner { position: relative; z-index: 2; max-width: 640px; }

/* glow field: outer div translated by cursor (JS), inner scaled (breathing) */
.hero__glow-field {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(760px, 96vw); aspect-ratio: 1;
  left: 50%; top: 46%; transform: translate(-50%, -50%);
  opacity: 0.8;
}
.hero__glow {
  position: absolute; inset: 0;
  transform: scale(0.96);
  animation: breathe 6s var(--ease) infinite;
  background:
    radial-gradient(closest-side, rgba(234, 201, 138, 0.22), rgba(234, 201, 138, 0.05) 58%, transparent 72%),
    radial-gradient(closest-side, transparent 45%, rgba(214, 167, 91, 0.14) 46.5%, transparent 48.5%),
    radial-gradient(closest-side, transparent 60%, rgba(214, 167, 91, 0.11) 61.3%, transparent 63.3%),
    radial-gradient(closest-side, transparent 75%, rgba(214, 167, 91, 0.08) 76.2%, transparent 78%),
    radial-gradient(closest-side, transparent 89%, rgba(214, 167, 91, 0.05) 90%, transparent 92%);
}
@keyframes breathe {
  0%, 100% { transform: scale(0.94); }
  50% { transform: scale(1.07); }
}

.hero .eyebrow { opacity: 0; animation: rise 0.55s var(--ease) 0.05s both; }
.hero__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.6rem, 8.4vw, 5rem); line-height: 0.98; letter-spacing: -0.035em;
  margin-top: 16px; color: var(--bone);
}
.hero__title .l1 { display: block; opacity: 0; animation: rise 0.6s var(--ease) 0.16s both; }
.hero__title .l2 { display: block; opacity: 0; animation: rise 0.6s var(--ease) 0.28s both; }
.hero__title em {
  font-style: normal; color: var(--gold);
  text-shadow: 0 0 38px rgba(234, 201, 138, 0.5);
}
.hero__sub { margin-top: 22px; opacity: 0; animation: rise 0.6s var(--ease) 0.4s both; }
.hero__cta { margin-top: 28px; opacity: 0; animation: rise 0.6s var(--ease) 0.48s both; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; opacity: 0; animation: rise 0.6s var(--ease) 0.56s both; }
.hero__trust {
  margin-top: 26px; color: var(--mist); font-size: 0.9rem;
  opacity: 0; animation: rise 0.6s var(--ease) 0.64s both;
}
.hero__scene {
  display: none; position: absolute; left: 50%; top: 52%;
  width: 62%; transform: translate(-50%, -50%);
}
.hero__trust b { color: var(--bone); font-weight: 600; }
.dot-sep { opacity: 0.5; padding-inline: 0.5em; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* =========================================================================
   HOW IT WORKS — vertical amber line drawing in
   ========================================================================= */
.how__list { position: relative; margin-top: 40px; display: grid; gap: 44px; }
.how__line {
  position: absolute; left: 27px; top: 12px; bottom: 32px; width: 2px;
  background: linear-gradient(var(--gold), var(--glow-b));
  transform: scaleY(0); transform-origin: top; opacity: 0.55;
  transition: transform 1.1s var(--ease);
}
.how__list.is-visible .how__line { transform: scaleY(1); }
.step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.step__num {
  position: absolute; left: 4px; top: -26px; z-index: 0;
  font-family: var(--display); font-weight: 700; font-size: 4.6rem; line-height: 1;
  color: rgba(214, 167, 91, 0.20); pointer-events: none;
}
.step__icon {
  position: relative; z-index: 1; width: 56px; height: 56px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--navy); border: 1px solid var(--line-strong);
}
.step__icon svg { width: 28px; height: 28px; stroke: var(--bone); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.step__body { position: relative; z-index: 1; padding-top: 6px; }
.step__body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step__body p { color: var(--mist); max-width: 46ch; }

/* =========================================================================
   SHOP CARDS + GRID / SCROLLER
   ========================================================================= */
.shop-grid { display: grid; gap: 20px; margin-top: 28px; }
.shop-scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%;
  gap: 16px; margin-top: 28px; padding-bottom: 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; margin-inline: -22px; padding-inline: 22px;
}
.shop-scroller::-webkit-scrollbar { display: none; }
.shop-scroller > * { scroll-snap-align: start; }

.shop-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--navy); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.shop-card:hover { transform: translateY(-4px); border-color: var(--gold-edge); box-shadow: var(--lamp-glow); }
.shop-card__media {
  position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 2.6rem; color: var(--gold);
  background: radial-gradient(120% 120% at 30% 20%, var(--navy-2), var(--ink));
  overflow: hidden;
}
.shop-card__media img { width: 100%; height: 100%; object-fit: cover; }
/* same candle-ring motif, scaled down, so photo-less cards read as intentional */
.shop-card__media--empty {
  background:
    radial-gradient(circle at 50% 46%, transparent 39%, rgba(214, 167, 91, 0.15) 40.6%, transparent 42.6%) center / 150px 150px no-repeat,
    radial-gradient(circle at 50% 46%, transparent 53%, rgba(214, 167, 91, 0.09) 54.3%, transparent 56.3%) center / 150px 150px no-repeat,
    radial-gradient(120% 120% at 30% 20%, var(--navy-2), var(--ink));
}
.shop-card__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, var(--navy));
}
.shop-card__badges { position: absolute; z-index: 2; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.shop-card__badge {
  padding: 0.24rem 0.66rem; border-radius: 999px; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--bone);
  background: rgba(12, 21, 33, 0.66); border: 1px solid var(--line-strong); backdrop-filter: blur(4px);
}
.shop-card__badge--gold {
  color: #1a1206;
  background: linear-gradient(135deg, #eac98a, #b58540);
  border-color: rgba(234, 201, 138, 0.7);
  box-shadow: 0 2px 10px rgba(214, 167, 91, 0.35);
}
.shop-card__body { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 18px; flex: 1; }
.shop-card__name { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--bone); letter-spacing: -0.01em; }
.shop-card:hover .shop-card__name { color: #fff; }
.shop-card__rating { display: flex; align-items: center; gap: 8px; }
.shop-card__services { color: var(--mist); font-size: 0.88rem; }
.shop-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 6px; }
.shop-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.shop-card__price { color: var(--mist); font-size: 0.8rem; text-align: right; }
.shop-card__price b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--bone); }

/* SVG star rating */
.stars-svg { display: inline-flex; gap: 2px; }
.stars-svg svg { width: 13px; height: 13px; }
.stars-svg .s-full { fill: var(--gold); }
.stars-svg .s-empty { fill: var(--navy-2); }
.rating-count { color: var(--mist); font-size: 0.82rem; }
.rating-new { color: var(--mist); font-size: 0.82rem; font-style: italic; }

/* legacy helper output (cust_stars_html) */
.stars { color: var(--gold); letter-spacing: 1px; }
.stars--new { color: var(--mist); font-size: 0.82rem; letter-spacing: 0; font-style: italic; }
.stars-count { color: var(--mist); font-size: 0.82rem; margin-left: 6px; }

/* =========================================================================
   ALL AREAS — tactile card grid / footer area lists
   ========================================================================= */
.area-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.area-card {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 16px; border-radius: var(--radius-sm);
  background: var(--navy); border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.area-card::after { /* warm corner glow, brightens on hover */
  content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px;
  background: radial-gradient(closest-side, rgba(214, 167, 91, 0.16), transparent 72%);
  opacity: 0.5; transition: opacity 0.35s var(--ease); pointer-events: none;
}
.area-card:hover { transform: translateY(-3px); border-color: var(--gold-edge); box-shadow: var(--lamp-glow); }
.area-card:hover::after { opacity: 1; }
.area-card__pin { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(214, 167, 91, 0.1); }
.area-card__pin svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.area-card__text { min-width: 0; }
.area-card__name { display: block; font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--bone); line-height: 1.2; letter-spacing: -0.01em; }
.area-card__city { display: block; color: var(--mist); font-size: 0.76rem; margin-top: 2px; }
.area-card__go { margin-left: auto; color: var(--mist); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease); }
.area-card:hover .area-card__go { opacity: 1; transform: none; color: var(--gold); }

.svc-strip { color: var(--mist); font-size: 0.92rem; margin-top: 14px; }

.footer-areas a { display: block; color: var(--mist); padding: 4px 0; transition: color 0.2s var(--ease); }
.footer-areas a:hover { color: var(--bone); }

/* =========================================================================
   OWNER BAND
   ========================================================================= */
.owner-band { position: relative; overflow: hidden; background: var(--navy); border-block: 1px solid var(--line); }
.owner-band::before {
  content: ""; position: absolute; right: -14%; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px; pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(234, 201, 138, 0.14), transparent 70%),
    radial-gradient(closest-side, transparent 62%, rgba(214, 167, 91, 0.12) 63.3%, transparent 65.3%),
    radial-gradient(closest-side, transparent 80%, rgba(214, 167, 91, 0.08) 81%, transparent 83%);
  animation: breathe 6s var(--ease) infinite;
}
.owner-band__inner { position: relative; z-index: 1; max-width: 620px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { border-top: 1px solid var(--line); padding-block: 56px 32px; background: var(--ink); }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.footer-grid h4 { font-family: var(--ui); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-mission { color: var(--mist); margin-top: 12px; max-width: 32ch; font-size: 0.92rem; }
.footer-areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
.footer-links a { display: block; color: var(--mist); padding: 4px 0; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--bone); }
.footer-bottom {
  max-width: var(--wrap); margin: 32px auto 0; padding: 20px 22px 0;
  border-top: 1px solid var(--line); color: var(--mist); font-size: 0.82rem;
}

/* =========================================================================
   AREA PAGE
   ========================================================================= */
.area-note { color: var(--mist); margin-top: 8px; }
.empty-note {
  background: var(--navy); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; color: var(--mist);
}

/* =========================================================================
   SHOP PAGE
   ========================================================================= */
.shop-hero__media {
  position: relative; aspect-ratio: 16 / 9; max-height: 420px; border-radius: var(--radius);
  overflow: hidden; display: grid; place-items: center;
  font-family: var(--display); font-size: 4rem; color: var(--gold);
  background: radial-gradient(120% 120% at 30% 20%, var(--navy-2), var(--ink));
}
.shop-hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* photo-less shops (the launch default): no tall 16:9 void — a compact panel
   with a large monogram over the brand's faint candle-ring motif. */
.shop-hero__media--empty {
  aspect-ratio: auto; max-height: none; min-height: 200px;
  font-size: clamp(4.25rem, 15vw, 6.5rem); letter-spacing: -0.03em;
  text-shadow: 0 0 44px rgba(234, 201, 138, 0.25);
  background:
    radial-gradient(circle at 50% 50%, transparent 43%, rgba(214, 167, 91, 0.16) 44.6%, transparent 46.6%) center / 300px 300px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 56%, rgba(214, 167, 91, 0.11) 57.3%, transparent 59.3%) center / 300px 300px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 69%, rgba(214, 167, 91, 0.07) 70.2%, transparent 72.2%) center / 300px 300px no-repeat,
    radial-gradient(120% 120% at 30% 20%, var(--navy-2), var(--ink));
}
.shop-info {
  position: relative; z-index: 2; margin: -64px 12px 0; padding: 24px;
  background: rgba(21, 34, 56, 0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: 0 24px 60px -30px #000;
}
.shop-info h1 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); }
.shop-info__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.shop-info__row { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 12px; color: var(--mist); font-size: 0.92rem; align-items: center; }

.shop-section { margin-top: 40px; }
.shop-section > h2 { font-size: 1.4rem; margin-bottom: 16px; }
.shop-section p { color: var(--bone); opacity: 0.88; }

.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: flex; align-items: center; gap: 14px; justify-content: space-between;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row__main { min-width: 0; flex: 1; }
.svc-row__name { color: var(--bone); font-weight: 600; }
.svc-row__meta { color: var(--mist); font-size: 0.85rem; }
.svc-row__price { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--bone); white-space: nowrap; }
.svc-row__book { flex: none; }

.quote { padding: 20px 0; border-top: 1px solid var(--line); }
.quote p { color: var(--bone); font-size: 1.02rem; font-style: italic; opacity: 0.92; }
.quote__meta { display: flex; align-items: center; gap: 10px; margin-top: 10px; color: var(--mist); font-size: 0.85rem; }

/* mobile sticky bottom bar */
.mobile-book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(12, 21, 33, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
body.has-sticky-cta { padding-bottom: 88px; }

/* =========================================================================
   BOOK PAGE — guided flow: progress, service cards, glass fields, summary
   ========================================================================= */
.book-wrap { max-width: 1040px; }
.book-shop { display: flex; align-items: center; gap: 10px; color: var(--mist); font-size: 0.9rem; margin-bottom: 4px; flex-wrap: wrap; }
.book-shop a { color: var(--mist); }
.book-shop a:hover { color: var(--bone); }
#service-summary { color: var(--gold); font-size: 1.05rem; min-height: 1.5em; margin-top: 4px; }

/* shared inline-icon stroke inside the forms */
.book-form .ico, .book-summary .ico, .field__ico svg, .svc-card__meta .ico, .svc-card__check svg {
  stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.book-form .ico { width: 18px; height: 18px; flex: none; }
.ico--inline { width: 15px; height: 15px; color: var(--gold); }

/* progress steps — sticky under the header, degrade to neutral without JS */
.book-steps {
  list-style: none; padding: 9px 6px; margin: 22px 0 10px;
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px;
  position: sticky; top: 54px; z-index: 20;
  background: rgba(12, 21, 33, 0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 999px; border: 1px solid var(--line);
}
.book-steps__item { display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 0; padding: 4px 6px; }
.book-steps__dot {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-size: 0.82rem; font-weight: 700; font-family: var(--display);
  background: var(--navy-2); color: var(--mist); border: 1px solid var(--line-strong);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.book-steps__name { color: var(--mist); font-size: 0.82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.3s var(--ease); }
.book-steps__item.is-active .book-steps__dot { background: transparent; color: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.book-steps__item.is-active .book-steps__name { color: var(--bone); }
.book-steps__item.is-done .book-steps__dot { background: linear-gradient(135deg, var(--glow-a), var(--gold)); color: var(--ink); border-color: transparent; }
.book-steps__item.is-done .book-steps__name { color: var(--bone); }

/* layout: form + summary aside */
.book-layout { display: grid; gap: 26px; align-items: start; margin-top: 8px; }
.book-form { min-width: 0; }

/* fieldsets + numbered, subtitled headers */
fieldset { border: 0; padding: 0; margin: 0; }
/* each step is its own elevated card, so segments read as clearly separate */
.fset {
  background: var(--navy); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: 4px 22px 24px; margin-bottom: 18px;
  box-shadow: 0 16px 44px -32px rgba(0, 0, 0, 0.85);
}
.fset:first-of-type { margin-top: 4px; }
.fset__head {
  display: flex; align-items: center; gap: 13px; width: auto;
  margin: 0 -22px 18px; padding: 18px 22px 16px;
  border-bottom: 1px solid var(--line);
}
.fset .field:first-of-type, .fset .two-col:first-of-type { margin-top: 0; }
.fset__num {
  flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  background: linear-gradient(135deg, var(--glow-a), var(--gold) 60%, var(--glow-b));
  box-shadow: 0 5px 14px -5px rgba(214, 167, 91, 0.7);
}
.fset__titles { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; min-width: 0; }
.fset__title { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--bone); letter-spacing: -0.01em; line-height: 1.2; }
.fset__sub { color: var(--mist); font-size: 0.85rem; }
.field__grouplabel { display: block; color: var(--bone); font-weight: 600; font-size: 0.92rem; margin-bottom: 2px; }

/* service picker — premium selectable cards */
.svc-cards { display: grid; gap: 12px; }
.svc-card { position: relative; display: block; cursor: pointer; }
.svc-card input { position: absolute; opacity: 0; pointer-events: none; }
.svc-card__inner {
  display: block; padding: 16px 48px 16px 18px; border-radius: var(--radius);
  background: rgba(12, 21, 33, 0.5); border: 1px solid var(--line-strong);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.svc-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.svc-card__name { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--bone); letter-spacing: -0.01em; }
.svc-card__price { font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--gold); white-space: nowrap; }
.svc-card__meta { display: flex; align-items: center; gap: 6px; color: var(--mist); font-size: 0.86rem; margin-top: 6px; }
.svc-card__meta .ico { width: 15px; height: 15px; }
.svc-card__desc { display: block; color: var(--mist); font-size: 0.88rem; margin-top: 8px; line-height: 1.45; }
.svc-card__check {
  position: absolute; right: 16px; top: 16px; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; background: transparent; border: 1.5px solid var(--line-strong);
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.svc-card__check svg { width: 14px; height: 14px; stroke: var(--ink); stroke-width: 2.4; }
.svc-card:hover .svc-card__inner { border-color: var(--gold-edge); transform: translateY(-2px); }
.svc-card input:checked ~ .svc-card__inner {
  border-color: var(--gold); background: rgba(214, 167, 91, 0.08);
  box-shadow: inset 0 0 0 1px var(--gold), inset 0 22px 44px -30px rgba(234, 201, 138, 0.9), var(--lamp-glow);
}
.svc-card input:checked ~ .svc-card__check { opacity: 1; transform: scale(1); background: linear-gradient(135deg, var(--glow-a), var(--gold)); border-color: transparent; }
.svc-card input:focus-visible ~ .svc-card__inner { outline: 2px solid var(--gold); outline-offset: 2px; }

/* segmented control (type, when) with icons */
.segmented { display: flex; padding: 5px; gap: 5px; background: var(--navy); border: 1px solid var(--line); border-radius: 999px; width: 100%; }
.seg-option { flex: 1; position: relative; }
.seg-option input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.seg-option span {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 0.7rem 0.5rem; border-radius: 999px; text-align: center;
  color: var(--mist); font-weight: 600; font-size: 0.9rem; line-height: 1.2;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.seg-option span .ico { width: 17px; height: 17px; margin-bottom: 1px; }
.seg-option span small { font-weight: 500; font-size: 0.72rem; opacity: 0.85; }
.seg-option input:checked + span {
  background: linear-gradient(135deg, var(--glow-a), var(--gold));
  color: var(--ink); box-shadow: 0 6px 18px -8px rgba(214, 167, 91, 0.7);
}
.seg-option input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* fields — glass box, left icon, floating label, valid check */
.field { margin-top: 16px; position: relative; }
.field > label { display: block; color: var(--mist); font-size: 0.85rem; font-weight: 500; margin-bottom: 7px; }
.field__ctl { position: relative; }
.field input:not([type="checkbox"]):not([type="radio"]), .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 14px 16px; color: var(--bone); appearance: none;
  /* Fill clearly lighter than the page + a visible border so the box reads as "type here". */
  background: #1a2a44; border: 1.5px solid rgba(150, 168, 194, 0.34); border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.field textarea { min-height: 96px; line-height: 1.5; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(180, 195, 216, 0.72); }
.field input:not([type="checkbox"]):not([type="radio"]):hover, .field select:hover, .field textarea:hover {
  border-color: rgba(150, 168, 194, 0.5);
}
.field input:not([type="checkbox"]):not([type="radio"]):focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #1f3050;
  box-shadow: 0 0 0 3px var(--gold-soft), 0 14px 30px -20px rgba(214, 167, 91, 0.95); transform: translateY(-1px);
}
.field--select select { padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D6A75B' stroke-width='1.7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.field select option, .field select optgroup { background: var(--navy); color: var(--bone); }
.field .hint { color: var(--mist); font-size: 0.78rem; margin-top: 7px; line-height: 1.4; display: flex; align-items: center; gap: 6px; }

/* left affordance icon (anchored to the control, works with block labels) */
.field.has-ico input, .field.has-ico select, .field.has-ico textarea { padding-left: 46px; }
.field__ico { position: absolute; left: 15px; top: 0; height: 52px; display: flex; align-items: center; color: var(--mist); pointer-events: none; transition: color 0.2s var(--ease); }
.field__ico svg { width: 19px; height: 19px; }
.field__ico--top { top: 0; height: auto; padding-top: 15px; align-items: flex-start; }
.field:focus-within .field__ico, .field__ctl:focus-within .field__ico { color: var(--gold); }

/* floating label (text-like inputs) */
.field--float > label {
  position: absolute; left: 16px; top: 15px; margin: 0; pointer-events: none;
  color: var(--mist); font-size: 1rem; font-weight: 500; transform-origin: left center;
  transition: transform 0.18s var(--ease), color 0.18s var(--ease), font-size 0.18s var(--ease);
}
.field--float.has-ico > label { left: 46px; }
.field--float input { padding-top: 20px; padding-bottom: 8px; padding-right: 42px; }
.field--float input:not(:focus)::placeholder { color: transparent; }
.field--float input:focus ~ label,
.field--float input:not(:placeholder-shown) ~ label { transform: translateY(-13px); font-size: 0.72rem; color: var(--gold); }
.field--float.has-ico input:focus ~ label,
.field--float.has-ico input:not(:placeholder-shown) ~ label { transform: translate(-30px, -13px); }
.field--float > label .muted { color: inherit; }

/* subtle check when a required text field becomes valid (JS adds .is-valid) */
.field--float.is-valid::after {
  content: ""; position: absolute; right: 15px; top: 17px; width: 20px; height: 20px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23D6A75B' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0; transform: scale(0.6); animation: checkpop 0.28s var(--ease) forwards;
}
@keyframes checkpop { to { opacity: 1; transform: scale(1); } }

/* checkbox rows (apply) — tappable cards */
.checkbox-row {
  display: flex; align-items: flex-start; gap: 12px; color: var(--bone); cursor: pointer; margin-top: 10px;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(12, 21, 33, 0.4);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.checkbox-row:hover { border-color: var(--gold-edge); background: rgba(12, 21, 33, 0.6); }
.checkbox-row input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--gold); flex: none; }
.checkbox-row b { color: var(--bone); font-weight: 600; }

/* trust / reassurance rows */
.trust-row { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.trust-row li { display: flex; align-items: center; gap: 9px; color: var(--mist); font-size: 0.83rem; line-height: 1.35; }
.trust-row .ico { color: var(--gold); width: 17px; height: 17px; flex: none; }
.trust-row--submit { justify-items: center; margin-top: 14px; }
.trust-row--submit li { justify-content: center; text-align: left; }

.submit-cta { margin-top: 26px; }
.form-microcopy { color: var(--mist); font-size: 0.85rem; text-align: center; margin-top: 14px; }
[data-book-submit][aria-busy="true"] { opacity: 0.75; cursor: progress; }

/* live booking summary aside */
.book-summary { display: grid; gap: 14px; }
.book-summary__title { font-family: var(--display); font-size: 1.05rem; color: var(--bone); margin-bottom: 6px; }
.book-summary__empty { color: var(--mist); font-size: 0.9rem; }
.book-summary__list { margin: 0; }
.book-summary__list .summary-row { padding: 9px 0; }
.book-summary__total { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-strong); }
.book-summary__total span { color: var(--mist); font-size: 0.85rem; }
.book-summary__total strong { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--gold); }

.two-col { display: grid; grid-template-columns: 1fr; gap: 0 22px; }

/* =========================================================================
   TRACKING — oil-filling timeline (signature #2)
   ========================================================================= */
.track-wrap { max-width: 640px; }
/* horizontal stepper: nodes across the page, amber line fills up to the current step */
.timeline {
  list-style: none; margin: 30px 0 0; padding: 4px 0 2px;
  display: flex; align-items: flex-start;
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.timeline::-webkit-scrollbar { display: none; }
.timeline li {
  position: relative; flex: 1 0 auto; min-width: 96px;
  padding-top: 30px; text-align: center;
}
.timeline li::before { /* node */
  content: ""; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--navy-2); z-index: 2;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.timeline li::after { /* connector reaching the next node */
  content: ""; position: absolute; top: 11px; left: 50%; width: 100%; height: 2px;
  background: var(--navy-2); z-index: 1; transition: background 0.5s var(--ease);
}
.timeline li:last-child::after { display: none; }
.timeline li.is-done::before { background: var(--gold); border-color: var(--gold); }
.timeline li.is-done::after { background: linear-gradient(90deg, var(--gold), var(--glow-b)); }
.timeline li.is-current::before {
  background: var(--gold); border-color: var(--gold);
  animation: nodepulse 6s var(--ease) infinite;
}
@keyframes nodepulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(214, 167, 91, 0.12), 0 0 10px 1px rgba(234, 201, 138, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(214, 167, 91, 0.22), 0 0 20px 4px rgba(234, 201, 138, 0.6); }
}
.timeline__label { color: var(--mist); font-weight: 500; font-size: 0.8rem; line-height: 1.25; padding: 0 6px; }
.timeline li.is-done .timeline__label { color: var(--bone); }
.timeline li.is-current .timeline__label { color: var(--gold); font-weight: 600; }
.timeline__time { color: var(--mist); font-size: 0.72rem; margin-top: 3px; }

.glass-card {
  background: rgba(21, 34, 56, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 22px;
}
.glass-card h2 { font-size: 1.15rem; margin-bottom: 12px; }

/* In-app chat */
.chat__log {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 340px; overflow-y: auto; padding: 4px 2px 8px; margin-bottom: 12px;
  scroll-behavior: smooth;
}
.chat__empty { color: var(--mist); font-size: 0.92rem; text-align: center; padding: 18px 8px; margin: 0; }
.chat__msg { display: flex; flex-direction: column; max-width: 82%; }
.chat__msg--me { align-self: flex-end; align-items: flex-end; }
.chat__msg--them { align-self: flex-start; align-items: flex-start; }
.chat__bubble {
  padding: 9px 14px; border-radius: var(--radius); font-size: 0.96rem; line-height: 1.35;
  word-break: break-word; white-space: pre-wrap;
}
.chat__msg--me .chat__bubble {
  background: linear-gradient(135deg, #eac98a, #c99247); color: var(--ink);
  border-bottom-right-radius: 5px; font-weight: 500;
}
.chat__msg--them .chat__bubble {
  background: var(--navy-2); color: var(--bone); border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
}
.chat__time { font-size: 0.68rem; color: var(--mist); margin-top: 3px; padding: 0 4px; }
.chat__form { display: flex; gap: 8px; align-items: flex-end; }
.chat__form textarea {
  flex: 1; resize: none; min-height: 46px; max-height: 140px; padding: 12px 14px;
  background: rgba(12, 21, 33, 0.5); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  color: var(--bone); font: inherit; font-size: 0.96rem;
}
.chat__form textarea:focus { outline: none; border-color: var(--gold-edge); box-shadow: 0 0 0 3px var(--gold-soft); }
.chat__form .btn { flex: 0 0 auto; height: 46px; }

/* ---- Auth / login (admin + shop consoles, brand-aligned) --------------- */
.auth {
  min-height: 100vh; min-height: 100dvh;
  display: grid; place-items: center; padding: 40px 20px; position: relative; overflow: hidden;
}
.auth__glow {
  position: absolute; width: min(720px, 92vw); aspect-ratio: 1; border-radius: 50%;
  top: 46%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
  background: radial-gradient(closest-side, rgba(234, 201, 138, 0.16), rgba(234, 201, 138, 0.04) 55%, transparent 72%);
  animation: breathe 7s var(--ease) infinite;
}
.auth__card {
  position: relative; z-index: 1; width: 100%; max-width: 420px;
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(21, 34, 56, 0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 38px 32px;
  box-shadow: 0 34px 90px -34px rgba(0, 0, 0, 0.65), var(--lamp-glow);
}
.auth__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 1.45rem; color: var(--bone);
}
.auth__brand img { width: 40px; height: 40px; }
.auth__title { font-family: var(--display); font-size: 1.55rem; margin-top: 10px; color: var(--bone); }
.auth__sub { color: var(--mist); font-size: 0.95rem; margin-bottom: 8px; }
.auth__field { position: relative; }
.auth__field > svg {
  position: absolute; left: 16px; top: 27px; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--mist); pointer-events: none;
}
.auth__field input {
  width: 100%; height: 54px; padding: 0 16px 0 46px;
  background: rgba(12, 21, 33, 0.55); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  color: var(--bone); font-size: 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.auth__field input::placeholder { color: transparent; }
.auth__field input:focus { outline: none; border-color: var(--gold-edge); box-shadow: 0 0 0 3px var(--gold-soft); }
.auth__field label {
  position: absolute; left: 46px; top: 27px; transform: translateY(-50%);
  color: var(--mist); pointer-events: none; font-size: 1rem;
  transition: top 0.18s var(--ease), left 0.18s var(--ease), font-size 0.18s var(--ease), color 0.18s var(--ease);
}
.auth__field input:focus + label,
.auth__field input:not(:placeholder-shown) + label {
  top: 0; left: 40px; font-size: 0.72rem; color: var(--gold); background: var(--navy);
  padding: 0 6px; border-radius: 4px;
}
.auth__foot { text-align: center; font-size: 0.9rem; color: var(--mist); margin-top: 4px; }
.auth__foot a { color: var(--gold); }

/* auth inline error / hint under a field */
.auth__err {
  display: flex; align-items: center; gap: 6px; margin-top: 8px;
  color: var(--err); font-size: 0.82rem; font-weight: 500; line-height: 1.35;
}
.auth__err::before {
  content: ""; flex: none; width: 14px; height: 14px; background: var(--err);
  -webkit-mask: var(--icon-alert) center / contain no-repeat;
  mask: var(--icon-alert) center / contain no-repeat;
}
.auth__hint { display: block; margin-top: 8px; color: var(--mist); font-size: 0.82rem; line-height: 1.4; }

/* field in error: warm-red border + accents (JS .is-error, or a server-rendered .auth__err) */
.auth__field.is-error input,
.auth__field:has(.auth__err) input { border-color: var(--err); }
.auth__field.is-error input:focus,
.auth__field:has(.auth__err) input:focus { border-color: var(--err); box-shadow: 0 0 0 3px var(--err-soft); }
.auth__field.is-error > svg,
.auth__field:has(.auth__err) > svg { color: var(--err); }
.auth__field.is-error input:not(:placeholder-shown) + label,
.auth__field.is-error input:focus + label,
.auth__field:has(.auth__err) input:not(:placeholder-shown) + label,
.auth__field:has(.auth__err) input:focus + label { color: var(--err); }
.auth__back { text-align: center; font-size: 0.88rem; color: var(--mist); }
.auth__back:hover { color: var(--gold); }
@media (prefers-reduced-motion: reduce) { .auth__glow { animation: none; transform: translate(-50%, -50%) scale(1); } }
.status-banner {
  display: flex; align-items: center; gap: 14px; padding: 20px 22px;
  background: var(--navy); border: 1px solid var(--line-strong); border-radius: var(--radius);
  margin-top: 28px;
}
.status-banner .ico { font-size: 1.5rem; color: var(--mist); }

.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); }
.summary-row:first-child { border-top: 0; }
.summary-row dt { color: var(--mist); font-size: 0.9rem; }
.summary-row dd { color: var(--bone); text-align: right; font-weight: 500; }
.summary-row dd a { color: var(--gold); }
.gap-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* tappable review stars (CSS-only, radios, reversed for :hover ~) */
.star-picker { display: inline-flex; flex-direction: row-reverse; gap: 6px; }
.star-picker input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-picker label {
  width: 40px; height: 40px; cursor: pointer;
  background-color: var(--navy-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.8-5.1 4.7 1.4 6.8L12 17.8 5.9 20.6l1.4-6.8L2.2 9.1l6.9-.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.8-5.1 4.7 1.4 6.8L12 17.8 5.9 20.6l1.4-6.8L2.2 9.1l6.9-.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: background-color 0.2s var(--ease);
}
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { background-color: var(--gold); }
.star-picker input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

/* =========================================================================
   APPLY PAGE
   ========================================================================= */
.apply-hero { position: relative; overflow: hidden; }
.benefit-list { display: grid; gap: 22px; margin-top: 4px; }
.benefit { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.benefit__ico {
  width: 46px; height: 46px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: var(--navy); border: 1px solid var(--gold-edge);
}
.benefit__ico svg { width: 24px; height: 24px; stroke: var(--gold); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { font-size: 1.1rem; margin-bottom: 4px; }
.benefit p { color: var(--mist); font-size: 0.92rem; }

.thanks-card {
  text-align: center; max-width: 480px; margin-inline: auto;
  background: var(--navy); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 40px 28px;
}
.thanks-card .ico {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.6rem; background: rgba(214, 167, 91, 0.12); color: var(--gold); border: 1px solid var(--gold-edge);
}
.thanks-card h1, .thanks-card h2 { margin-bottom: 8px; }

/* email_action */
.action-card { max-width: 440px; margin: clamp(48px, 12vh, 120px) auto; text-align: center; }
.action-card .ico--warn { background: var(--danger-soft); color: var(--danger); border-color: var(--danger-edge); }

/* =========================================================================
   FAQ — native disclosure, friendly
   ========================================================================= */
.faq { margin-top: 28px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 4px; cursor: pointer; list-style: none;
  color: var(--bone); font-weight: 600; font-size: 1.02rem;
  transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: none; width: 28px; height: 28px;
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--gold-edge); color: var(--gold);
  font-weight: 500; transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq__item summary:hover { color: #fff; }
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--gold-soft); }
.faq__item p { color: var(--mist); padding: 0 44px 18px 4px; max-width: 60ch; }

/* =========================================================================
   SCROLL REVEAL (opt-in, JS-gated so no-JS shows everything)
   ========================================================================= */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .shop-scroller { display: grid; grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin-inline: 0; padding-inline: 0; }
  .two-col { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .field--full { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .hero__glow-field { left: auto; right: 1%; top: 50%; transform: translateY(-50%); width: min(680px, 46vw); }
  .hero__scene { display: block; }
  .hero__inner { max-width: 620px; }
  .area-grid { grid-template-columns: repeat(4, 1fr); }
  .mobile-book-bar { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
  .shop-info { margin-inline: 32px; }
  .book-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; }
  .book-summary { position: sticky; top: 96px; }
}

/* =========================================================================
   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; }
  .hero__glow { transform: scale(1); animation: none; }
  .owner-band::before { animation: none; }
  .hero .eyebrow, .hero__title .l1, .hero__title .l2, .hero__sub, .hero__cta, .hero__chips, .hero__trust { opacity: 1; animation: none; }
  .how__line { transform: scaleY(1); }
  html.js .reveal { opacity: 1; transform: none; }
  .timeline li.is-current::before { animation: none; }
  .field input:focus, .field select:focus, .field textarea:focus,
  .svc-card:hover .svc-card__inner { transform: none; }
  .field--float.is-valid::after { animation: none; opacity: 1; transform: none; }
  .status-pill--live::before { animation: none; }
}

/* =========================================================================
   FORM ERROR UX — banner strip + inline field errors (book + auth)
   ========================================================================= */
.form-banner {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 13px 16px; margin: 18px 0 6px; border-radius: var(--radius-sm);
  color: var(--bone); font-size: 0.92rem; font-weight: 500; line-height: 1.4;
  background: var(--navy); border: 1px solid var(--line-strong);
}
.form-banner::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 1px; background: currentColor;
  -webkit-mask: var(--icon-alert) center / contain no-repeat;
  mask: var(--icon-alert) center / contain no-repeat;
}
.form-banner--error {
  background: var(--err-soft); border-color: var(--err-edge);
  box-shadow: inset 0 1px 0 rgba(225, 116, 106, 0.12);
}
.form-banner--error::before { background: var(--err); }

/* inline per-field error under a book-form field */
.field-err {
  display: flex; align-items: center; gap: 6px; margin-top: 7px;
  color: var(--err); font-size: 0.8rem; font-weight: 500; line-height: 1.35;
}
.field-err::before {
  content: ""; flex: none; width: 14px; height: 14px; background: var(--err);
  -webkit-mask: var(--icon-alert) center / contain no-repeat;
  mask: var(--icon-alert) center / contain no-repeat;
}

/* field wrapper in error: warm-red border + matching accents, still legible */
.field.is-error input:not([type="checkbox"]):not([type="radio"]),
.field.is-error select,
.field.is-error textarea { border-color: var(--err); }
.field.is-error input:not([type="checkbox"]):not([type="radio"]):focus,
.field.is-error select:focus,
.field.is-error textarea:focus {
  border-color: var(--err); box-shadow: 0 0 0 3px var(--err-soft); background: #24303f;
}
.field.is-error .field__ico { color: var(--err); }
.field.is-error.field--float input:not(:placeholder-shown) ~ label,
.field.is-error.field--float input:focus ~ label { color: var(--err); }
/* an errored field never also shows the gold "valid" tick (tel has no native format check) */
.field.is-error.is-valid::after { display: none; }

/* "Have an account? Sign in" nudge in the booking details step */
.book-signin-nudge { margin: 0 0 4px; color: var(--mist); font-size: 0.88rem; }
.book-signin-nudge a { color: var(--gold); font-weight: 600; }
.book-signin-nudge a:hover { color: var(--glow-a); }

/* logged-in details, collapsed to a summary (JS-injected) */
.book-identity-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px 16px;
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(12, 21, 33, 0.42);
}
.book-identity-summary__text { display: flex; align-items: center; gap: 9px; min-width: 0; flex: 1 1 auto; color: var(--mist); font-size: 0.95rem; }
.book-identity-summary__text::before {
  content: ""; flex: none; width: 20px; height: 20px; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='4'/%3E%3Cpath d='M3 21c0-3.3 2.7-6 6-6 1 0 2 .3 2.8.7'/%3E%3Cpath d='m15 18 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='4'/%3E%3Cpath d='M3 21c0-3.3 2.7-6 6-6 1 0 2 .3 2.8.7'/%3E%3Cpath d='m15 18 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.book-identity-summary__text strong { color: var(--bone); font-weight: 600; }
.book-identity-summary__edit { flex: none; }
.book-identity-summary[hidden] { display: none; } /* class display: flex would otherwise beat [hidden] */

/* =========================================================================
   ACCOUNT — "My bookings" dashboard
   ========================================================================= */
.account-wrap { max-width: 820px; }
.account-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 18px 24px; flex-wrap: wrap;
}
.account-head__id { min-width: 0; }
.account-head__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.account-sec { font-size: 1.3rem; margin: 42px 0 16px; letter-spacing: -0.01em; }
.account-bookings { display: grid; gap: 14px; }

.acct-booking {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px 20px; flex-wrap: wrap; padding: 18px 20px;
}
.acct-booking__main { display: flex; flex-direction: column; gap: 5px; min-width: 0; flex: 1 1 260px; }
.acct-booking__svc { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--bone); letter-spacing: -0.01em; }
.acct-booking__shop { color: var(--mist); font-size: 0.9rem; }
.acct-booking__when { font-size: 0.82rem; }
.acct-booking__actions { display: flex; gap: 8px; flex: none; }

.account-empty { text-align: center; padding: 40px 28px; }
.account-empty::before {
  content: ""; display: block; width: 46px; height: 46px; margin: 0 auto 16px; background: var(--gold); opacity: 0.85;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* status chips */
.status-pill {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  padding: 3px 11px 3px 9px; border-radius: 999px; border: 1px solid var(--line-strong);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--mist);
}
.status-pill::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pill--ok { color: var(--ok); border-color: rgba(95, 190, 142, 0.4); background: rgba(95, 190, 142, 0.1); }
.status-pill--live { color: var(--gold); border-color: var(--gold-edge); background: var(--gold-soft); }
.status-pill--live::before { animation: pillpulse 2.4s var(--ease) infinite; }
.status-pill--off { color: var(--mist); border-color: var(--line-strong); background: rgba(150, 168, 194, 0.08); }
@keyframes pillpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 167, 91, 0.5); }
  50% { box-shadow: 0 0 0 4px rgba(214, 167, 91, 0); }
}

/* post-booking "save your details" nudge on the tracking page */
.save-account {
  display: flex; align-items: center; justify-content: space-between; gap: 14px 20px; flex-wrap: wrap;
}
.save-account > div { min-width: 0; flex: 1 1 260px; }
.save-account .btn { flex: none; }

@media (max-width: 560px) {
  .acct-booking { align-items: stretch; }
  .acct-booking__actions { width: 100%; }
  .acct-booking__actions .btn { flex: 1; }
  .save-account .btn { width: 100%; }
}
