@charset "UTF-8";
/* ==========================================================================
   Kinetic Freedom Massage Therapy: Design System
   Chico, CA · Isaac Clipper, CMT & Reiki Master

   Structure
   01 Tokens
   02 Reset & base
   03 Typography
   04 Layout primitives
   05 Buttons & links
   06 Header / navigation
   07 Hero
   08 Sections & components
   09 Forms
   10 Footer
   11 Mobile action bar
   12 Motion & accessibility
   ========================================================================== */

/* ==========================================================================
   01 · TOKENS
   ========================================================================== */

:root {
  /* --- Ink (dark ground) ------------------------------------------------ */
  --ink-900: #06070a;          /* page black, faintly blue */
  --ink-850: #0a0b10;
  --ink-800: #0e1016;          /* raised surface */
  --ink-700: #14171f;          /* cards */
  --ink-600: #1c202a;          /* card hover / inputs */

  /* --- Bone (light relief bands) ---------------------------------------- */
  --bone-050: #faf8f4;
  --bone-100: #f4f1ea;         /* primary light band */
  --bone-200: #e9e4d9;
  --bone-300: #d8d1c2;

  /* --- Foreground ------------------------------------------------------- */
  --fg:          #f3f1ec;      /* warm off-white on dark */
  --fg-soft:     #c9c7c1;
  --fg-muted:    #97968f;
  --fg-faint:    #6a6a66;

  --fg-on-bone:       #14151a;
  --fg-on-bone-soft:  #4a4c52;
  --fg-on-bone-muted: #696b72;

  /* --- Accent: brass / candlelight -------------------------------------- */
  --gold-100: #f0e3c2;
  --gold-200: #e2cd9c;
  --gold:     #c6a664;         /* primary accent */
  --gold-600: #a98a4c;
  --gold-700: #7d6535;

  /* --- Accent: moonstone (supporting, from brand mark) ------------------ */
  --moon-200: #b9c6d4;
  --moon:     #8fa3b8;
  --moon-600: #546476;         /* the brand's registered primary */

  /* --- Lines & veils ---------------------------------------------------- */
  --line:        rgba(243, 241, 236, 0.11);
  --line-strong: rgba(243, 241, 236, 0.20);
  --line-gold:   rgba(198, 166, 100, 0.34);
  --line-bone:   rgba(20, 21, 26, 0.13);
  --veil:        rgba(6, 7, 10, 0.72);

  /* --- Type ------------------------------------------------------------- */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-brand:   "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-ui:      "Jost", "Futura", "Century Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid display scale */
  --t-hero:  clamp(2.85rem, 1.30rem + 6.4vw, 6.5rem);
  --t-d1:    clamp(2.35rem, 1.35rem + 4.1vw, 4.55rem);
  --t-d2:    clamp(1.95rem, 1.28rem + 2.7vw, 3.35rem);
  --t-d3:    clamp(1.60rem, 1.20rem + 1.6vw, 2.45rem);
  --t-d4:    clamp(1.32rem, 1.12rem + 0.8vw, 1.75rem);

  /* UI scale */
  --t-lead:  clamp(1.06rem, 0.98rem + 0.36vw, 1.28rem);
  --t-body:  1.0625rem;
  --t-sm:    0.9375rem;
  --t-xs:    0.8125rem;
  --t-eyebrow: 0.72rem;

  --lh-tight: 1.04;
  --lh-snug:  1.18;
  --lh-body:  1.68;

  --ls-eyebrow: 0.24em;
  --ls-caps:    0.16em;
  --ls-btn:     0.13em;

  /* --- Space ------------------------------------------------------------ */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 2.75rem;
  --s-8: 3.75rem;
  --s-9: 5rem;
  --s-10: 7rem;

  --section-y:      clamp(4.5rem, 3rem + 7vw, 9.5rem);
  --section-y-tight: clamp(3.25rem, 2.4rem + 4vw, 6rem);

  /* --- Measure ---------------------------------------------------------- */
  --container:  1220px;
  --container-narrow: 780px;
  --container-wide: 1500px;
  --gutter: clamp(1.25rem, 0.7rem + 2.4vw, 3rem);

  /* --- Misc ------------------------------------------------------------- */
  --radius:    2px;
  --radius-md: 4px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow:    0 18px 48px -22px rgba(0, 0, 0, 0.8);
  --shadow-lg: 0 42px 90px -40px rgba(0, 0, 0, 0.92);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.42s;

  --header-h: 76px;
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
}

/* ==========================================================================
   02 · RESET & BASE
   ========================================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  background: var(--ink-900);
  color: var(--fg);
  font-family: var(--font-ui);
  font-size: var(--t-body);
  font-weight: 300;
  line-height: var(--lh-body);
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

/* long, unbreakable strings (emails, URLs) must never force a scrollbar */
p, address, li, dd, .infolist__v, .drawer__meta, .footer__links a { overflow-wrap: break-word; }

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }

ul, ol { padding: 0; list-style: none; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--s-7) 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold-200);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ==========================================================================
   03 · TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: var(--lh-snug);
  letter-spacing: -0.005em;
  text-wrap: balance;
}

h1 { font-size: var(--t-d1); line-height: var(--lh-tight); }
h2 { font-size: var(--t-d2); }
h3 { font-size: var(--t-d3); }
h4 { font-size: var(--t-d4); }

p { text-wrap: pretty; }

.eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--t-eyebrow);
  font-weight: 400;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-5);
}

.eyebrow--line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow--line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-gold), transparent);
  max-width: 120px;
}

.eyebrow--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}
.eyebrow--center::before,
.eyebrow--center::after {
  content: "";
  width: clamp(24px, 6vw, 56px);
  height: 1px;
  background: var(--line-gold);
}

.lead {
  font-size: var(--t-lead);
  line-height: 1.6;
  color: var(--fg-soft);
  font-weight: 300;
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: var(--lh-tight);
}

.brandtype {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.muted   { color: var(--fg-muted); }
.soft    { color: var(--fg-soft); }
.gold    { color: var(--gold); }
.center  { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }
.balance { text-wrap: balance; }

.serif-em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* Light-band typography inversion */
.band--bone { color: var(--fg-on-bone); }
.band--bone .lead { color: var(--fg-on-bone-soft); }
.band--bone .muted { color: var(--fg-on-bone-muted); }
.band--bone .eyebrow { color: var(--gold-700); }
.band--bone .eyebrow--line::after { background: linear-gradient(90deg, rgba(125,101,53,0.4), transparent); }
.band--bone .eyebrow--center::before,
.band--bone .eyebrow--center::after { background: rgba(125,101,53,0.35); }

/* ==========================================================================
   04 · LAYOUT PRIMITIVES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: var(--container-wide); }

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--tight { padding-block: var(--section-y-tight); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.band--ink   { background: var(--ink-900); }
.band--ink-2 { background: var(--ink-850); }
.band--bone  { background: var(--bone-100); }
.band--bone-2 { background: var(--bone-050); }

.band--edge { border-block: 1px solid var(--line); }
.band--bone.band--edge { border-block-color: var(--line-bone); }

.stack > * + * { margin-top: var(--s-5); }
.stack-sm > * + * { margin-top: var(--s-3); }
.stack-lg > * + * { margin-top: var(--s-7); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

/* Split: text + media */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 5vw, 5.5rem);
  align-items: center;
}
.split--wide-text { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.split--reverse > :first-child { order: 2; }

@media (max-width: 900px) {
  .split, .split--wide-text { grid-template-columns: minmax(0, 1fr); }
  .split--reverse > :first-child { order: 0; }
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 1.6rem + 3vw, 4.5rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* Hairline rule with a diamond, echoing the mark's geometry */
.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--line-gold);
}
.rule::before, .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}
.rule__dot {
  width: 5px; height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ==========================================================================
   05 · BUTTONS & LINKS
   ========================================================================== */

a { color: inherit; text-decoration: none; }

.link-underline {
  position: relative;
  display: inline-block;
  min-height: 24px;
  color: var(--gold-200);
  padding-block: 2px;
  transition: color var(--dur) var(--ease);
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: 0.45;
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo), opacity var(--dur) var(--ease);
}
.link-underline:hover { color: var(--gold-100); }
.link-underline:hover::after { opacity: 1; transform: scaleX(1.02); }

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  --btn-bd: var(--line-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 52px;
  padding: 0.95em 2.1em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: var(--ls-btn);
  text-transform: uppercase;
  white-space: normal;
  text-wrap: balance;
  /* Keep the natural single-line width where there is room, but allow the
     label to wrap rather than overflow once the container is genuinely
     narrower than the text (small screens, 200% zoom). */
  flex: 0 0 auto;
  max-width: 100%;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease), transform 0.3s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--ink-900); border-color: var(--gold); }
.btn:active { transform: translateY(1px); }

.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink-900);
  --btn-bd: var(--gold);
}
.btn--gold::before { background: var(--gold-100); transform: scaleX(0); }
.btn--gold:hover { color: var(--ink-900); border-color: var(--gold-100); }

.btn--ghost {
  --btn-bd: var(--line-strong);
  --btn-fg: var(--fg);
}

.btn--on-bone {
  --btn-fg: var(--fg-on-bone);
  --btn-bd: rgba(20, 21, 26, 0.28);
}
.btn--on-bone:hover { color: var(--ink-900); }

.btn--sm { min-height: 42px; padding: 0.6em 1.4em; font-size: 0.75rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
}
.btn-row--center { justify-content: center; }

/* Inline icons inside buttons carry no intrinsic size of their own, so pin
   them to the type size rather than letting them default to 300x150. */
.btn svg {
  flex: 0 0 auto;
  width: 1.25em;
  height: 1.25em;
}

/* Arrow affordance */
.btn__arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out-expo);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ==========================================================================
   06 · HEADER / NAVIGATION
   ========================================================================== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.9rem 1.4rem;
  background: var(--gold);
  color: var(--ink-900);
  font-size: var(--t-sm);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease),
              backdrop-filter 0.5s var(--ease);
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.78), rgba(6, 7, 10, 0));
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.header.is-stuck {
  background: rgba(6, 7, 10, 0.86);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
}
.header.is-stuck::after { opacity: 0; }

.header__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.brand__mark {
  width: auto;
  height: 42px;
  opacity: 0.95;
}
.brand__type {
  height: 26px;
  width: auto;
}
@media (max-width: 1100px) {
  .brand__mark { height: 34px; }
  .brand__type { height: 21px; }
}
@media (max-width: 420px) {
  .brand__type { height: 18px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 0.4rem + 1.5vw, 2.3rem);
}

.nav__link {
  position: relative;
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--fg-soft);
  padding-block: 0.5rem;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out-expo);
}
.nav__link:hover { color: var(--fg); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--gold-100); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.header__tel {
  font-size: var(--t-xs);
  letter-spacing: 0.07em;
  color: var(--fg-soft);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.header__tel:hover { color: var(--gold-100); }

@media (max-width: 1080px) {
  .nav--desktop, .header__tel { display: none; }
}

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}
.burger__box { position: relative; width: 20px; height: 12px; }
.burger__bar {
  position: absolute;
  left: 0;
  width: 100%; height: 1px;
  background: var(--fg);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.2s linear;
}
.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { top: 5.5px; }
.burger__bar:nth-child(3) { top: 11px; }

.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .burger { display: inline-flex; }
  .header__actions .btn--book-desktop { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink-900);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease-out-expo), visibility 0.4s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--line);
}
.drawer__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.1rem);
  font-weight: 300;
  color: var(--fg);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.drawer__link:hover,
.drawer__link[aria-current="page"] { color: var(--gold-100); padding-left: 0.5rem; }
.drawer__link span {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: var(--ls-caps);
  color: var(--fg-faint);
}

.drawer__foot {
  margin-top: auto;
  padding-top: 2.5rem;
  display: grid;
  gap: var(--s-4);
}
.drawer__meta {
  font-size: var(--t-sm);
  color: var(--fg-muted);
  line-height: 1.8;
}
.drawer__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--gold-200);
}

/* ==========================================================================
   07 · HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(3rem, 8vh, 6rem));
  padding-bottom: clamp(3.5rem, 9vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.hero--short { min-height: auto; }

/* Cosmic ground: layered radial washes + starfield */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(198, 166, 100, 0.14) 0%, transparent 55%),
    radial-gradient(100% 80% at 12% 88%, rgba(84, 100, 118, 0.20) 0%, transparent 58%),
    radial-gradient(140% 120% at 50% 0%, #101219 0%, var(--ink-900) 62%);
}

.hero__stars {
  position: absolute;
  inset: -10%;
  z-index: -2;
  opacity: 0.55;
  background-repeat: repeat;
  background-size: 420px 420px, 260px 260px, 180px 180px;
  background-image:
    radial-gradient(1.4px 1.4px at 34px 62px, rgba(255,255,255,0.72), transparent 60%),
    radial-gradient(1px 1px at 158px 24px, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 88px 132px, rgba(255,255,255,0.35), transparent 60%);
  animation: drift 140s linear infinite;
  pointer-events: none;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-420px, -260px, 0); }
}

/* Photographic bleed on the right, faded into the black ground */
.hero__media {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 auto;
  width: min(56%, 780px);
  pointer-events: none;
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.45) 34%, #000 78%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.45) 34%, #000 78%);
}
.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 22%;
  filter: grayscale(0.55) contrast(1.06) brightness(0.62) sepia(0.12);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,7,10,0.55) 0%, transparent 34%, transparent 60%, var(--ink-900) 100%);
}

@media (max-width: 900px) {
  .hero__media {
    width: 100%;
    opacity: 0.34;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 40%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 40%, #000 100%);
  }
}

/* Flower-of-life geometry watermark */
.hero__geo {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -8%;
  translate: 0 -50%;
  width: min(74vw, 820px);
  aspect-ratio: 1;
  opacity: 0.16;
  pointer-events: none;
  color: var(--gold-200);
  animation: slow-spin 240s linear infinite;
}

@keyframes slow-spin {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

@media (max-width: 900px) {
  .hero__geo { right: -30%; width: 110vw; opacity: 0.10; }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,7,10,0.5) 0%, transparent 26%, transparent 62%, var(--ink-900) 100%);
}

.hero__inner { position: relative; max-width: 940px; }

.hero__title {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.012em;
  margin-bottom: var(--s-6);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-200);
}

.hero__lead {
  max-width: 56ch;
  margin-bottom: var(--s-7);
}

/* Page hero (interior pages) */
.pagehero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(4rem, 10vh, 7.5rem));
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.pagehero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(90% 120% at 85% -10%, rgba(198, 166, 100, 0.13) 0%, transparent 55%),
    radial-gradient(80% 100% at 5% 110%, rgba(84, 100, 118, 0.16) 0%, transparent 60%),
    var(--ink-900);
}
.pagehero__title {
  font-family: var(--font-display);
  font-size: var(--t-d1);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: var(--s-5);
}

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: var(--s-5);
}
.crumbs a:hover { color: var(--gold-200); }
.crumbs li + li::before { content: "/"; margin-right: 0.55rem; color: var(--fg-faint); }
.crumbs li { display: inline; }

/* ==========================================================================
   08 · SECTIONS & COMPONENTS
   ========================================================================== */

/* --- Trust strip ------------------------------------------------------- */
.trust {
  border-block: 1px solid var(--line);
  background: var(--ink-850);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}
.trust__item {
  background: var(--ink-850);
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.4rem) clamp(1rem, 0.6rem + 1vw, 1.75rem);
  text-align: center;
  display: grid;
  gap: 0.4rem;
  align-content: center;
}
.trust__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.15rem + 1.4vw, 2.15rem);
  font-weight: 300;
  color: var(--gold-100);
  line-height: 1.1;
}
.trust__label {
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 780px) {
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  line-height: 1;
}
.stars svg { width: 1em; height: 1em; fill: currentColor; }

/* --- Service cards ----------------------------------------------------- */
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 1.1rem + 1.6vw, 2.5rem);
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.5s var(--ease), background-color 0.5s var(--ease), transform 0.5s var(--ease-out-expo);
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.svc:hover {
  border-color: var(--line-gold);
  background: var(--ink-700);
  transform: translateY(-3px);
}
.svc:hover::before { opacity: 1; }

.svc__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.svc__dur {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--fg);
}
.svc__dur small {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-left: 0.45rem;
}
.svc__price {
  font-variant-numeric: lining-nums tabular-nums;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.2rem + 0.9vw, 1.95rem);
  font-weight: 300;
  color: var(--gold-100);
  line-height: 1;
  white-space: nowrap;
}
.svc__body {
  font-size: var(--t-sm);
  color: var(--fg-soft);
  line-height: 1.7;
  margin-bottom: var(--s-5);
}
.svc__note {
  font-size: var(--t-xs);
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: var(--s-5);
}
.svc__cta { margin-top: auto; }

.svc--feature > .svc__top { margin-top: 1.35rem; }

.svc--feature {
  border-color: var(--line-gold);
  background: linear-gradient(180deg, rgba(198,166,100,0.06), transparent 45%), var(--ink-800);
}
.svc__flag {
  position: absolute;
  top: 0; right: 0;
  padding: 0.4rem 0.85rem;
  background: var(--gold);
  color: var(--ink-900);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- Menu rows (price-list layout) ------------------------------------- */
.menu-list { border-top: 1px solid var(--line); }
.band--bone .menu-list { border-top-color: var(--line-bone); }

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 8rem) minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.9rem, 0.4rem + 1.6vw, 2.5rem);
  padding-block: clamp(1.35rem, 1rem + 1vw, 2rem);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease);
}
.band--bone .menu-row { border-bottom-color: var(--line-bone); }
.menu-row:hover { background: rgba(198, 166, 100, 0.045); }

.menu-row__dur {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 2rem);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}
.menu-row__dur small {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-top: 0.35rem;
}
.band--bone .menu-row__dur small { color: var(--fg-on-bone-muted); }

.menu-row__desc {
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--fg-soft);
}
.band--bone .menu-row__desc { color: var(--fg-on-bone-soft); }

.menu-row__price {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.8rem);
  font-weight: 300;
  color: var(--gold-100);
  white-space: nowrap;
  min-width: 4.2ch;
  text-align: right;
  font-variant-numeric: lining-nums tabular-nums;
}
.band--bone .menu-row__price { color: var(--gold-700); }

@media (max-width: 820px) {
  .menu-row {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0.65rem;
  }
  .menu-row__dur { grid-column: 1; }
  .menu-row__price { grid-column: 2; text-align: right; }
  .menu-row__desc { grid-column: 1 / -1; }
  .menu-row__cta { grid-column: 1 / -1; justify-self: start; }
}

/* --- Feature / step cards ---------------------------------------------- */
.feature {
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink-800);
  height: 100%;
}
.band--bone .feature {
  border-color: var(--line-bone);
  background: #fff;
}
.feature__icon {
  width: 34px; height: 34px;
  color: var(--gold);
  margin-bottom: var(--s-5);
}
.feature__icon svg { width: 100%; height: 100%; }
.feature h3 { font-size: var(--t-d4); margin-bottom: 0.6rem; }
.feature p { font-size: var(--t-sm); color: var(--fg-soft); line-height: 1.7; }
.band--bone .feature p { color: var(--fg-on-bone-soft); }

.step { position: relative; padding-top: var(--s-5); border-top: 1px solid var(--line-gold); }
.step__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: var(--s-4);
}
.step h3 { font-size: var(--t-d4); margin-bottom: 0.55rem; }
.step p { font-size: var(--t-sm); color: var(--fg-soft); line-height: 1.7; }
.band--bone .step p { color: var(--fg-on-bone-soft); }

/* --- Media frames ------------------------------------------------------ */
.frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid var(--line);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--portrait { aspect-ratio: 4 / 5; }
.frame--square { aspect-ratio: 1; }
.frame--wide { aspect-ratio: 16 / 10; }

.frame--geo {
  display: grid;
  place-items: center;
  background:
    radial-gradient(90% 90% at 50% 40%, rgba(84,100,118,0.22), transparent 70%),
    linear-gradient(180deg, var(--ink-800), var(--ink-900));
}
.frame--geo svg { width: 78%; height: auto; color: var(--gold-200); opacity: 0.45; }

.frame__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(6,7,10,0.9));
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* --- Testimonials ------------------------------------------------------ */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--s-6);
}
.quote {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink-800);
  height: 100%;
}
.band--bone .quote { border-color: var(--line-bone); background: #fff; }

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1rem + 0.42vw, 1.32rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--fg);
}
.band--bone .quote__text { color: var(--fg-on-bone); }

.quote__who {
  margin-top: auto;
  display: grid;
  gap: 0.3rem;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.quote__who span { color: var(--fg-faint); font-size: 0.72rem; letter-spacing: 0.16em; }
.band--bone .quote__who span { color: var(--fg-on-bone-muted); }
.band--bone .quote__who { color: var(--fg-on-bone-muted); }
.quote__who strong { color: var(--fg-soft); font-weight: 400; }
.band--bone .quote__who strong { color: var(--fg-on-bone-soft); }

/* --- Accordion / FAQ --------------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.band--bone .acc { border-top-color: var(--line-bone); }

.acc__item { border-bottom: 1px solid var(--line); }
.band--bone .acc__item { border-bottom-color: var(--line-bone); }

.acc__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.15rem, 0.9rem + 0.8vw, 1.7rem) 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.42rem);
  font-weight: 300;
  line-height: 1.35;
  color: inherit;
  transition: color var(--dur) var(--ease);
}
.acc__btn:hover { color: var(--gold-100); }
.band--bone .acc__btn:hover { color: var(--gold-700); }

.acc__sign {
  position: relative;
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 0.42em;
}
.acc__sign::before, .acc__sign::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.45s var(--ease-out-expo), opacity 0.3s var(--ease);
}
.acc__sign::before { top: 50%; left: 0; width: 100%; height: 1px; translate: 0 -50%; }
.acc__sign::after  { left: 50%; top: 0; width: 1px; height: 100%; translate: -50% 0; }
.acc__btn[aria-expanded="true"] .acc__sign::after { transform: rotate(90deg); opacity: 0; }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out-expo);
}
.acc__panel[data-open="true"] { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p {
  padding-bottom: 1.6rem;
  max-width: 68ch;
  font-size: var(--t-sm);
  line-height: 1.75;
  color: var(--fg-soft);
}
.band--bone .acc__panel p { color: var(--fg-on-bone-soft); }
.acc__panel p + p { padding-top: 0; margin-top: -0.6rem; }

/* --- Info list (hours, contact) ---------------------------------------- */
.infolist { display: grid; gap: 0; }
.infolist__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.72rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--t-sm);
}
.band--bone .infolist__row { border-bottom-color: var(--line-bone); }
.infolist__row:first-child { border-top: 1px solid var(--line); }
.band--bone .infolist__row:first-child { border-top-color: var(--line-bone); }
.infolist__k {
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: var(--t-xs);
  color: var(--fg-muted);
}
.band--bone .infolist__k { color: var(--fg-on-bone-muted); }
.infolist__v { color: var(--fg); text-align: right; }
.band--bone .infolist__v { color: var(--fg-on-bone); }
.infolist__row.is-today .infolist__k,
.infolist__row.is-today .infolist__v { color: var(--gold-100); }
.band--bone .infolist__row.is-today .infolist__k,
.band--bone .infolist__row.is-today .infolist__v { color: var(--gold-700); }

/* --- Callout / CTA band ------------------------------------------------ */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(198,166,100,0.16), transparent 60%),
    radial-gradient(70% 100% at 50% 110%, rgba(84,100,118,0.18), transparent 60%),
    var(--ink-850);
}
.cta-band__geo {
  position: absolute;
  z-index: -1;
  left: 50%; top: 50%;
  translate: -50% -50%;
  width: min(150vw, 1080px);
  opacity: 0.34;
  pointer-events: none;
  /* Fade the square frame's corners out so the artwork reads as a watermark
     rather than a box drawn behind the headline. */
  -webkit-mask-image: radial-gradient(closest-side, #000 26%, rgba(0,0,0,0.55) 58%, transparent 86%);
  mask-image: radial-gradient(closest-side, #000 26%, rgba(0,0,0,0.55) 58%, transparent 86%);
}
.cta-band__geo img { width: 100%; height: auto; }

/* --- Pull quote --------------------------------------------------------- */
.pullquote {
  margin-top: var(--s-7);
  padding-left: clamp(1.1rem, 0.7rem + 1.2vw, 1.9rem);
  border-left: 1px solid var(--line-gold);
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--gold-100);
}
.pullquote figcaption {
  margin-top: 0.9rem;
  font-size: var(--t-xs);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.band--bone .pullquote blockquote { color: var(--gold-700); }
.band--bone .pullquote figcaption { color: var(--fg-on-bone-muted); }

/* --- Notice / disclosure ----------------------------------------------- */
.notice {
  padding: clamp(1.1rem, 0.9rem + 0.7vw, 1.6rem) clamp(1.2rem, 1rem + 0.8vw, 1.8rem);
  border: 1px solid var(--line-gold);
  border-left-width: 2px;
  border-radius: var(--radius);
  background: rgba(198, 166, 100, 0.055);
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--fg-soft);
}
.band--bone .notice { color: var(--fg-on-bone-soft); background: rgba(198,166,100,0.10); }
.notice strong { color: var(--gold-100); font-weight: 400; }
.band--bone .notice strong { color: var(--gold-700); }

/* --- Chips ------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: var(--t-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.band--bone .chip { border-color: rgba(20,21,26,0.2); color: var(--fg-on-bone-soft); }

/* --- Map --------------------------------------------------------------- */
.map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-800);
  min-height: 340px;
}
.split > .map { height: 100%; align-self: stretch; }
.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  background: var(--ink-800);
  /* Calm the map into the palette without inverting it. Inversion makes
     Google's own labels and pins unreadable. */
  filter: grayscale(0.4) contrast(0.94) brightness(0.94);
}
.band--bone .map iframe { background: var(--bone-200); filter: grayscale(0.4) contrast(1.02); }

/* ==========================================================================
   09 · FORMS
   ========================================================================== */

.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--ink-800);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: var(--t-sm);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--line-gold);
  background: var(--ink-700);
  outline: none;
}
.field textarea { min-height: 150px; resize: vertical; }

/* ==========================================================================
   10 · FOOTER
   ========================================================================== */

.footer {
  position: relative;
  background: var(--ink-850);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  overflow: hidden;
}

.footer__geo {
  position: absolute;
  left: 50%; bottom: -46%;
  translate: -50% 0;
  width: min(150vw, 1100px);
  aspect-ratio: 1;
  opacity: 0.055;
  color: var(--gold-200);
  pointer-events: none;
}

.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 1rem + 3.5vw, 4rem);
  padding-bottom: clamp(2.5rem, 2rem + 2.5vw, 4rem);
}
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
}

.footer__logo { height: 64px; width: auto; margin-bottom: var(--s-5); opacity: 0.94; }

.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-200);
  margin-bottom: var(--s-5);
}

.footer__h {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-5);
}

.footer__links { display: grid; gap: 0.35rem; }
.footer__links a,
.footer address a,
.footer address {
  font-size: var(--t-sm);
  color: var(--fg-muted);
  font-style: normal;
  line-height: 1.75;
  transition: color var(--dur) var(--ease);
}
.footer__links a,
.footer address a,
.footer__bar a,
.footer__legal a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
}
.footer__links a:hover, .footer address a:hover { color: var(--gold-100); }

.footer__hours {
  display: grid;
  gap: 0.45rem;
  font-size: var(--t-sm);
  color: var(--fg-muted);
}
.footer__hours div { display: flex; justify-content: space-between; gap: 1rem; }

.socials { display: flex; gap: 0.7rem; margin-top: var(--s-5); }
.social {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--fg-soft);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover { color: var(--ink-900); background: var(--gold); border-color: var(--gold); }

.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--t-xs);
  color: var(--fg-faint);
  letter-spacing: 0.05em;
}
.footer__bar a:hover { color: var(--fg-soft); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ==========================================================================
   11 · MOBILE ACTION BAR
   ========================================================================== */

.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out-expo);
}
.actionbar.is-visible { transform: none; }

.actionbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem 0.75rem;
  background: rgba(10, 11, 16, 0.94);
  font-size: var(--t-xs);
  letter-spacing: var(--ls-btn);
  text-transform: uppercase;
  color: var(--fg);
}
.actionbar a.is-primary { background: var(--gold); color: var(--ink-900); }
.actionbar svg { width: 16px; height: 16px; }

@media (max-width: 780px) {
  .actionbar { display: grid; }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   12 · MOTION & ACCESSIBILITY
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

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

@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;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__stars, .hero__geo { animation: none; }
}

@media print {
  .header, .drawer, .actionbar, .hero__stars, .hero__geo, .footer__geo { display: none !important; }
  body { background: #fff; color: #000; }
  .band--ink, .band--ink-2 { background: #fff !important; color: #000 !important; }
}
