/* ==========================================================================
   MAYRA RUSSIAN SPA — style.css
   Mobile-first. No frameworks. No external fonts (zero render-blocking
   requests, zero font CLS — a deliberate Core Web Vitals choice).

   CONTENTS
   01. Design tokens
   02. Reset & base
   03. Typography
   04. Layout primitives
   05. Accessibility (skip link, focus, sr-only)
   06. Motion primitives  (React Bits-style effects, vanilla)
   07. Header & navigation
   08. Buttons
   09. Hero
   10. Cards
   11. Sections (stats, process, pricing, FAQ, gallery, breadcrumb, CTA)
   12. Forms
   13. Footer
   14. Error page
   15. Reduced motion & print
   ========================================================================== */

/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand palette — deep emerald, champagne gold, warm cream */
  --ink:          #08110F;
  --ink-800:      #0B201C;
  --ink-700:      #103029;
  --ink-600:      #17443A;
  --ink-500:      #22594C;

  --gold:         #C8A560;
  --gold-light:   #E7CB8F;
  --gold-deep:    #A6813C;

  --cream:        #F7F3EA;
  --cream-200:    #EFE8DA;
  --cream-300:    #E2D8C4;

  --text:         #1A211E;
  --text-muted:   #5A6661;
  --text-invert:  #F7F3EA;
  --text-invert-muted: #B9C6C0;

  --surface:      #FFFFFF;
  --surface-alt:  var(--cream);
  --border:       #E3DCCE;
  --border-dark:  rgba(200, 165, 96, 0.22);

  --success:      #1F7A5A;
  --danger:       #B3261E;

  /* Typography */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale */
  --fs-xs:   0.78rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   clamp(1.05rem, 0.99rem + 0.30vw, 1.2rem);
  --fs-lg:   clamp(1.25rem, 1.13rem + 0.60vw, 1.6rem);
  --fs-xl:   clamp(1.6rem, 1.38rem + 1.05vw, 2.3rem);
  --fs-2xl:  clamp(2rem, 1.62rem + 1.90vw, 3.2rem);
  --fs-3xl:  clamp(2.4rem, 1.78rem + 3.10vw, 4.4rem);

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 2.75rem;  --sp-8: 3.5rem;
  --sp-9: 5rem;     --sp-10: 7rem;

  --section-y: clamp(3.5rem, 2.4rem + 5vw, 7rem);
  --container: 1200px;
  --container-narrow: 820px;
  --gutter: 1rem;

  /* Shape & depth */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(8, 17, 15, 0.05), 0 2px 8px rgba(8, 17, 15, 0.04);
  --shadow:    0 4px 12px rgba(8, 17, 15, 0.07), 0 12px 32px rgba(8, 17, 15, 0.07);
  --shadow-lg: 0 8px 24px rgba(8, 17, 15, 0.10), 0 28px 64px rgba(8, 17, 15, 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 160ms;
  --dur:      320ms;
  --dur-slow: 720ms;

  --header-h: 68px;
}

@media (min-width: 768px) {
  :root { --gutter: 2rem; --header-h: 80px; }
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Lock scroll while the mobile drawer is open */
body.is-nav-open { overflow: hidden; }

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Images always declare width/height in HTML; this keeps the ratio while
   allowing fluid widths, so nothing shifts during load (CLS = 0). */
img { background-color: var(--cream-200); }

a { color: var(--ink-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }

ul, ol { padding-left: 1.15rem; }
li + li { margin-top: var(--sp-2); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: var(--sp-7) 0;
}

::selection { background: var(--gold); color: var(--ink); }

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-800);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.75;
}

/* Small gold label above a heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

/* Gradient text — React Bits "Gradient Text" equivalent */
.text-gradient {
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 680px; margin-bottom: var(--sp-7); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head.is-centered .eyebrow { justify-content: center; }

/* ==========================================================================
   04. LAYOUT PRIMITIVES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * 0.62); }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--ink-800);
  color: var(--text-invert);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .lead, .section--dark p { color: var(--text-invert-muted); }
.section--dark a { color: var(--gold-light); }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); }
                             .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Two-column media + text block */
.split {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .split--media-right .split__media { order: 2; }
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   05. ACCESSIBILITY
   ========================================================================== */
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 200;
  padding: var(--sp-3) var(--sp-5);
  background: var(--ink-800);
  color: var(--cream);
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: 0; color: var(--cream); }

/* Visible, high-contrast focus ring on every interactive element */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   06. MOTION PRIMITIVES
   Vanilla re-creations of the React Bits effects requested.
   Each is driven by IntersectionObserver / pointer events in main.js.
   ========================================================================== */

/* -- Scroll Reveal (Animated Content) ------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }

/* -- Split Text: per-character rise ------------------------------------- */
.split-text { display: inline; }
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(2deg);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
  transition-delay: var(--char-delay, 0ms);
  will-change: opacity, transform;
}
.split-text.is-visible .char { opacity: 1; transform: none; }
/* Preserve real spaces between words when split into characters */
.split-text .char--space { white-space: pre; }

/* -- Blur Text: per-word de-blur ---------------------------------------- */
.blur-text .word {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translateY(10px);
  transition:
    opacity 700ms var(--ease-out),
    filter 700ms var(--ease-out),
    transform 700ms var(--ease-out);
  transition-delay: var(--word-delay, 0ms);
}
.blur-text.is-visible .word { opacity: 1; filter: blur(0); transform: none; }

/* -- Shiny Text: sweeping highlight ------------------------------------- */
.shiny-text {
  background: linear-gradient(
    100deg,
    var(--gold-deep) 30%,
    var(--gold-light) 48%,
    var(--gold-deep) 62%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5.5s linear infinite;
}
@keyframes shine {
  0%   { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}

/* -- Count Up ------------------------------------------------------------ */
.count-up {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* -- Spotlight Card: cursor-tracking glow -------------------------------- */
.spotlight { position: relative; isolation: isolate; overflow: hidden; }
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    380px circle at var(--mx, 50%) var(--my, 0%),
    rgba(200, 165, 96, 0.16),
    transparent 62%
  );
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.spotlight:hover::before,
.spotlight:focus-within::before { opacity: 1; }

/* -- Tilted Card: 3D pointer tilt --------------------------------------- */
.tilt {
  transform: perspective(900px)
             rotateX(var(--rx, 0deg))
             rotateY(var(--ry, 0deg))
             translateZ(0);
  transition: transform var(--dur) var(--ease-out);
  transform-style: preserve-3d;
}

/* -- Magnetic button ----------------------------------------------------- */
.magnetic {
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0);
  transition: transform 220ms var(--ease-out);
}

/* -- Click Spark --------------------------------------------------------- */
.spark {
  position: fixed;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 999;
  animation: spark-fly 520ms var(--ease-out) forwards;
}
@keyframes spark-fly {
  to { transform: translate3d(var(--sx), var(--sy), 0) scale(0); opacity: 0; }
}

/* -- Marquee: seamless infinite ticker ----------------------------------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: var(--sp-6);
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--text-invert-muted);
  white-space: nowrap;
}
.marquee__item::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.7em;
}

/* -- Aurora background --------------------------------------------------- */
.aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}
.aurora span:nth-child(1) {
  width: 46vw; height: 46vw; min-width: 280px; min-height: 280px;
  top: -14%; left: -8%;
  background: radial-gradient(circle, rgba(200,165,96,0.55), transparent 70%);
  animation: drift-a 22s var(--ease-in-out) infinite alternate;
}
.aurora span:nth-child(2) {
  width: 40vw; height: 40vw; min-width: 240px; min-height: 240px;
  bottom: -18%; right: -6%;
  background: radial-gradient(circle, rgba(34,89,76,0.75), transparent 70%);
  animation: drift-b 27s var(--ease-in-out) infinite alternate;
}
.aurora span:nth-child(3) {
  width: 30vw; height: 30vw; min-width: 200px; min-height: 200px;
  top: 32%; right: 22%;
  background: radial-gradient(circle, rgba(231,203,143,0.30), transparent 70%);
  animation: drift-a 19s var(--ease-in-out) infinite alternate-reverse;
}
@keyframes drift-a { to { transform: translate3d(9%, 13%, 0) scale(1.14); } }
@keyframes drift-b { to { transform: translate3d(-11%, -9%, 0) scale(1.1); } }

/* ==========================================================================
   07. HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 234, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(247, 243, 234, 0.96);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--ink-800);
  text-decoration: none;
}
.brand svg, .brand img { height: 42px; width: auto; }
@media (min-width: 768px) { .brand svg, .brand img { height: 48px; } }

/* --- Desktop nav --------------------------------------------------------- */
.nav { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li + li { margin-top: 0; }

.nav__link {
  display: inline-block;
  position: relative;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out);
  background: none;
  border: 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: var(--sp-3);
  right: var(--sp-3);
  bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover { color: var(--gold-deep); }
.nav__link:hover::after { transform: scaleX(1); }

/* Current page marker — also announced via aria-current in the HTML */
.nav__link[aria-current="page"] { color: var(--gold-deep); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* --- Locations dropdown -------------------------------------------------- */
.nav__item--has-menu { position: relative; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
}
.nav__toggle .chev {
  width: 9px; height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur) var(--ease-out);
}
.nav__toggle[aria-expanded="true"] .chev { transform: rotate(-135deg) translate(-2px, -2px); }

.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 268px;
  padding: var(--sp-3);
  margin: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              visibility var(--dur);
}
.nav__toggle[aria-expanded="true"] + .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__menu li + li { margin-top: 2px; }
.nav__menu a {
  display: block;
  padding: var(--sp-3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--ink-700);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.nav__menu a:hover,
.nav__menu a:focus-visible { background: var(--cream); color: var(--gold-deep); }
.nav__menu a[aria-current="page"] { background: var(--cream); color: var(--gold-deep); font-weight: 600; }

.header__cta { display: none; }

@media (min-width: 1024px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .nav-trigger { display: none; }
}

/* --- Mobile drawer trigger (hamburger) ---------------------------------- */
.nav-trigger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.nav-trigger span {
  display: block;
  height: 1.8px;
  width: 100%;
  background: var(--ink-700);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}
.nav-trigger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-trigger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-trigger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* --- Mobile drawer ------------------------------------------------------- */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--cream);
  padding: var(--sp-6) var(--gutter) var(--sp-9);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--dur) var(--ease-out), visibility var(--dur);
}
.drawer.is-open { transform: none; visibility: visible; }

.drawer__list { list-style: none; margin: 0 0 var(--sp-6); padding: 0; }
.drawer__list li { margin: 0; border-bottom: 1px solid var(--border); }

.drawer__link {
  display: block;
  padding: var(--sp-4) 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--ink-800);
  text-decoration: none;
}
.drawer__link[aria-current="page"] { color: var(--gold-deep); }

.drawer__group > .drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
}
.drawer__group .chev {
  width: 10px; height: 10px;
  border-right: 1.8px solid var(--gold-deep);
  border-bottom: 1.8px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease-out);
  flex-shrink: 0;
}
.drawer__group > [aria-expanded="true"] .chev { transform: rotate(-135deg); }

.drawer__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--sp-3) var(--sp-4);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease-out);
}
.drawer__sub > div { overflow: hidden; min-height: 0; }
.drawer__group > [aria-expanded="true"] + .drawer__sub { grid-template-rows: 1fr; }
.drawer__sub li { border: 0; }
.drawer__sub a {
  display: block;
  padding: var(--sp-3) 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  text-decoration: none;
}
.drawer__sub a:hover, .drawer__sub a[aria-current="page"] { color: var(--gold-deep); }

.drawer__contact { display: grid; gap: var(--sp-3); }

/* ==========================================================================
   08. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.6rem;
  min-height: 48px;           /* comfortable mobile tap target */
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink-800);
  box-shadow: 0 6px 18px rgba(200, 165, 96, 0.34);
}
.btn--primary:hover {
  color: var(--ink-800);
  box-shadow: 0 10px 28px rgba(200, 165, 96, 0.46);
}

.btn--dark { background: var(--ink-800); color: var(--cream); }
.btn--dark:hover { background: var(--ink-700); color: var(--cream); }

.btn--ghost {
  background: transparent;
  border-color: var(--border-dark);
  color: var(--ink-700);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(200,165,96,0.07); }

.section--dark .btn--ghost { color: var(--cream); border-color: rgba(247,243,234,0.32); }
.section--dark .btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
@media (max-width: 420px) { .btn-row .btn { width: 100%; } }

/* Text link with sliding arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
}
.link-arrow::after {
  content: "→";
  transition: transform var(--dur) var(--ease-out);
}
.link-arrow:hover::after { transform: translateX(5px); }

/* ==========================================================================
   09. HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-800);
  color: var(--text-invert);
  padding-block: clamp(3.5rem, 2rem + 8vw, 7.5rem);
}
.hero__inner { position: relative; z-index: 2; }

.hero__grid { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 950px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-8); }
}

.hero h1 { color: var(--cream); margin-bottom: var(--sp-5); }
.hero .lead { color: var(--text-invert-muted); max-width: 54ch; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-5);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200, 165, 96, 0.1);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
}
.hero__badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200,165,96,0.7);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 11px rgba(200,165,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,165,96,0); }
}

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Floating glass info card over the hero image */
.hero__chip {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  right: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: rgba(8, 17, 15, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  color: var(--cream);
}
@media (min-width: 560px) { .hero__chip { right: auto; max-width: 330px; } }
.hero__chip strong { display: block; font-family: var(--font-display); font-size: var(--fs-md); }

/* Compact hero used by inner pages */
.hero--compact { padding-block: clamp(2.5rem, 1.8rem + 4vw, 4.5rem); }
.hero--compact h1 { font-size: var(--fs-2xl); }

/* ==========================================================================
   10. CARDS
   ========================================================================== */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-lg);
}

.card__media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--sp-5);
}
.card__body h3 { margin-bottom: var(--sp-2); }
.card__body p { color: var(--text-muted); font-size: var(--fs-sm); }

.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.card__price {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-deep);
}
.card__foot { margin-top: auto; padding-top: var(--sp-4); }

/* Feature card — icon + copy, no image */
.feature {
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 100%;
}
.section--dark .feature {
  background: rgba(247, 243, 234, 0.04);
  border-color: var(--border-dark);
}
.feature__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: var(--sp-4);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(231,203,143,0.3), rgba(200,165,96,0.16));
  color: var(--gold-deep);
  font-size: 1.25rem;
}
.section--dark .feature__icon { color: var(--gold-light); }
.feature h3 { font-size: var(--fs-md); font-family: var(--font-body); font-weight: 600; }
.feature p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }

/* Location card */
.loc-card { position: relative; }
.loc-card__body { padding: var(--sp-5); }
.loc-card__distance {
  display: inline-block;
  padding: 3px var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  background: rgba(200,165,96,0.12);
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   11. SECTIONS
   ========================================================================== */

/* --- Stats -------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  text-align: center;
}
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: var(--sp-4) var(--sp-2); }
.stat__label {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
}

/* --- Process / journey timeline ----------------------------------------- */
.process { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-5); }
@media (min-width: 900px) { .process { grid-template-columns: repeat(4, 1fr); } }
.process li { margin: 0; position: relative; padding-top: var(--sp-6); }
.process li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--gold);
}
.process li::after {
  content: "";
  position: absolute;
  top: 12px; left: 3.2rem; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--border-dark), transparent);
}
@media (max-width: 899px) { .process li::after { display: none; } }
.process { counter-reset: step; }
.process h3 { font-size: var(--fs-md); font-family: var(--font-body); font-weight: 600; margin-bottom: var(--sp-2); }
.process p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }

/* --- Pricing table ------------------------------------------------------ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.price-table caption {
  caption-side: top;
  text-align: left;
  padding-bottom: var(--sp-4);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.price-table th, .price-table td {
  padding: var(--sp-4) var(--sp-3);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table thead th {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.price-table tbody th { font-weight: 600; color: var(--ink-800); }
.price-table td:last-child, .price-table th:last-child { text-align: right; }
.price-table .amount {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--gold-deep);
  white-space: nowrap;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --- FAQ accordion ------------------------------------------------------ */
.faq { display: grid; gap: var(--sp-3); }

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease-out);
}
.faq__item:has(> [aria-expanded="true"]) { border-color: var(--border-dark); }

.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.5;
}
.faq__q .plus {
  position: relative;
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 4px;
}
.faq__q .plus::before,
.faq__q .plus::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.8px;
  background: var(--gold-deep);
  transition: transform var(--dur) var(--ease-out);
}
.faq__q .plus::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .plus::after { transform: rotate(0deg); }

/* Height-animated panel without JS measuring */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease-out);
}
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; min-height: 0; }
.faq__a p {
  padding: 0 var(--sp-5) var(--sp-5);
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.faq__a p + p { padding-top: var(--sp-3); }

/* --- Gallery ------------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--sp-4);
}
.gallery__item {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--cream-200);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter var(--dur) var(--ease-out);
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.07); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,17,15,0.55), transparent 55%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }
.gallery__item figcaption {
  position: absolute;
  left: var(--sp-4); right: var(--sp-4); bottom: var(--sp-4);
  z-index: 1;
  color: var(--cream);
  font-size: var(--fs-sm);
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.gallery__item:hover figcaption, .gallery__item:focus-visible figcaption {
  opacity: 1; transform: none;
}

/* Make some tiles taller for an editorial mosaic */
@media (min-width: 700px) {
  .gallery__item--tall { aspect-ratio: 3 / 4; grid-row: span 2; }
  .gallery { grid-auto-rows: 1fr; }
}

/* --- Lightbox ----------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  background: rgba(8, 17, 15, 0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  animation: lb-in 320ms var(--ease-out);
}
@keyframes lb-in { from { opacity: 0; transform: scale(0.96); } }
.lightbox__figure img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox__figure figcaption {
  color: var(--text-invert-muted);
  font-size: var(--fs-sm);
  text-align: center;
}
.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  background: rgba(247,243,234,0.1);
  border: 1px solid rgba(247,243,234,0.22);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1;
  transition: background var(--dur) var(--ease-out);
}
.lightbox__btn:hover { background: rgba(247,243,234,0.22); }
.lightbox__close { top: var(--sp-4); right: var(--sp-4); }
.lightbox__prev  { left: var(--sp-3); top: 50%; translate: 0 -50%; }
.lightbox__next  { right: var(--sp-3); top: 50%; translate: 0 -50%; }
.lightbox__count {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  translate: -50% 0;
  color: var(--text-invert-muted);
  font-size: var(--fs-sm);
  font-variant-numeric: tabular-nums;
}

/* --- Breadcrumbs -------------------------------------------------------- */
.breadcrumb { padding-block: var(--sp-4); font-size: var(--fs-sm); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: var(--sp-2); }
.breadcrumb li + li::before { content: "/"; color: var(--gold); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-deep); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink-800); font-weight: 600; }
.hero .breadcrumb a { color: var(--text-invert-muted); }
.hero .breadcrumb [aria-current="page"] { color: var(--cream); }

/* --- Directions list ---------------------------------------------------- */
.directions { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.directions li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2) var(--sp-4);
  margin: 0;
  padding: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.section--dark .directions li {
  background: rgba(247,243,234,0.04);
  border-color: var(--border-dark);
}
.directions strong { font-weight: 600; }
.directions .time {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--gold-deep);
  white-space: nowrap;
}
.section--dark .directions .time { color: var(--gold-light); }

/* --- Checklist ---------------------------------------------------------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.checklist li {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  font-size: var(--fs-sm);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(200,165,96,0.16);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
}
.section--dark .checklist li::before { color: var(--gold-light); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink-800);
  color: var(--text-invert);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 1.4rem + 3vw, 3.75rem);
  text-align: center;
}
.cta-band h2 { color: var(--cream); }
.cta-band .lead { color: var(--text-invert-muted); margin-inline: auto; max-width: 56ch; }
.cta-band .btn-row { justify-content: center; }
.cta-band__inner { position: relative; z-index: 2; }

/* Contact strip used in page footers of location pages */
.contact-strip {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
@media (min-width: 700px) { .contact-strip { grid-template-columns: repeat(3, 1fr); } }
.contact-strip__item h3 {
  font-size: var(--fs-xs);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.contact-strip__item a, .contact-strip__item p {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--ink-800);
  text-decoration: none;
  margin: 0;
}
.contact-strip__item a:hover { color: var(--gold-deep); }

/* --- Notice / disclosure box -------------------------------------------- */
.notice {
  padding: var(--sp-4) var(--sp-5);
  background: rgba(200, 165, 96, 0.08);
  border: 1px solid var(--border-dark);
  border-left-width: 3px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.notice strong { color: var(--ink-800); }
.section--dark .notice strong { color: var(--cream); }

/* --- Related links ------------------------------------------------------ */
.related {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.related li { margin: 0; }
.related a {
  display: inline-block;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--ink-700);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.related a:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ==========================================================================
   12. FORMS
   ========================================================================== */
.form { display: grid; gap: var(--sp-5); }
@media (min-width: 640px) {
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
}

.field { display: grid; gap: var(--sp-2); }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-800); }
.field .hint { font-size: var(--fs-xs); color: var(--text-muted); font-weight: 400; }
.field .req { color: var(--danger); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  min-height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 165, 96, 0.18);
  outline: none;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--danger); }

.field__error {
  font-size: var(--fs-xs);
  color: var(--danger);
  min-height: 1.1em;
}

/* Honeypot — hidden from people, visible to naive bots */
.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__status {
  padding: var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  display: none;
}
.form__status.is-shown { display: block; }
.form__status.is-info {
  background: rgba(200,165,96,0.1);
  border: 1px solid var(--border-dark);
  color: var(--ink-700);
}
.form__status.is-error {
  background: rgba(179, 38, 30, 0.07);
  border: 1px solid rgba(179, 38, 30, 0.3);
  color: var(--danger);
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--text-invert-muted);
  padding-block: var(--sp-8) var(--sp-5);
  font-size: var(--fs-sm);
}
.footer__grid { display: grid; gap: var(--sp-7); }
@media (min-width: 700px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer h2, .footer h3 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.footer__brand svg { height: 48px; width: auto; color: var(--cream); margin-bottom: var(--sp-4); }
.footer p { color: var(--text-invert-muted); }

.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 0 0 var(--sp-3); }
.footer a { color: var(--text-invert-muted); text-decoration: none; }
.footer a:hover { color: var(--gold-light); text-decoration: underline; }

.footer__contact li {
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
}
.footer__contact .label {
  flex-shrink: 0;
  min-width: 62px;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(185, 198, 192, 0.65);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(247, 243, 234, 0.1);
  font-size: var(--fs-xs);
}

.social { display: flex; gap: var(--sp-3); }
.social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(247,243,234,0.16);
  border-radius: 50%;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.social a:hover { border-color: var(--gold); background: rgba(200,165,96,0.12); }
.social svg { width: 17px; height: 17px; fill: currentColor; }

/* Sticky mobile call bar */
.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  border-top: 1px solid var(--border-dark);
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease-out);
}
.call-bar.is-shown { transform: none; }
.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  min-height: 56px;
  background: var(--ink-800);
  color: var(--cream);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
}
.call-bar a:first-child { background: var(--gold); color: var(--ink-800); }
@media (min-width: 1024px) { .call-bar { display: none; } }
@media (max-width: 1023px) { .footer { padding-bottom: calc(var(--sp-5) + 56px); } }

/* ==========================================================================
   14. ERROR PAGE
   ========================================================================== */
.error-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-h));
  padding-block: var(--sp-9);
  text-align: center;
  background: var(--ink-800);
  color: var(--text-invert);
  position: relative;
  overflow: hidden;
}
.error-page__inner { position: relative; z-index: 2; max-width: 640px; }
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 3rem + 13vw, 11rem);
  line-height: 0.9;
  margin-bottom: var(--sp-4);
}
.error-page h1 { color: var(--cream); font-size: var(--fs-xl); }

/* ==========================================================================
   15. REDUCED MOTION & PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Content must never stay hidden when animation is switched off */
  [data-reveal],
  .split-text .char,
  .blur-text .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .aurora span { animation: none; }
  .marquee__track { animation: none; transform: none; }
  .tilt, .magnetic { transform: none !important; }
}

@media print {
  .header, .drawer, .call-bar, .lightbox, .aurora, .btn-row, .social { display: none !important; }
  body { color: #000; background: #fff; }
  .section--dark, .hero, .cta-band { background: #fff !important; color: #000 !important; }
  .section--dark h1, .section--dark h2, .hero h1 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
  [data-reveal], .split-text .char, .blur-text .word { opacity: 1 !important; transform: none !important; filter: none !important; }
}
