/* ==========================================================================
   Nova Booth Studio — styles.css
   Cinematic dark studio system: polished black, soft ivory,
   champagne-gold metallics, restrained electric-violet accent light.
   Mobile-first. Respects prefers-reduced-motion.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink-0: #08080b;
  --ink-1: #0c0c11;
  --ink-2: #121219;
  --ink-3: #1a1a23;
  --line: rgba(239, 234, 224, 0.10);
  --line-strong: rgba(239, 234, 224, 0.18);
  --ivory: #efeae0;
  --muted: rgba(239, 234, 224, 0.64);
  --faint: rgba(239, 234, 224, 0.42);
  --gold: #c9a468;
  --gold-bright: #ead9ab;
  --gold-deep: #8f6f3e;
  --gold-ink: #1a1206;
  --violet: #8e7bff;
  --violet-soft: rgba(142, 123, 255, 0.14);
  --danger: #ff9d8f;
  --metal: linear-gradient(135deg, #8f6f3e 0%, #c9a468 32%, #eeddab 50%, #c39b58 68%, #83653a 100%);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 0.61, 0.2, 1);
  --shadow-1: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-2: 0 12px 34px rgba(0, 0, 0, 0.45);
  --header-h: 68px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink-0);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

ul, ol { margin: 0; padding: 0; }

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

::selection { background: rgba(201, 164, 104, 0.32); color: var(--ivory); }

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

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--ink-2);
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 0.9rem;
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.container-narrow { max-width: 860px; }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 640px; margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }
.section-head-center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-head-center .eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(270deg, transparent, var(--gold));
}

.section-title { font-size: clamp(1.8rem, 4.4vw, 2.8rem); }
.section-sub { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.1rem); max-width: 58ch; }
.section-head-center .section-sub { margin-inline: auto; }

.gilt {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.7rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--metal);
  color: var(--gold-ink);
  box-shadow: 0 12px 30px rgba(201, 164, 104, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-gold:hover {
  color: var(--gold-ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201, 164, 104, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-strong);
  color: var(--ivory);
}
.btn-ghost:hover {
  color: var(--ivory);
  border-color: rgba(201, 164, 104, 0.6);
  transform: translateY(-2px);
}

.btn-lg { min-height: 54px; padding: 1rem 2.1rem; font-size: 1rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.text-link .arrow { transition: transform 0.3s var(--ease); }
.text-link:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(8, 8, 11, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory);
  z-index: 120;
}
.brand:hover { color: var(--ivory); }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 560;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  z-index: 120;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px; height: 48px;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 4vh) clamp(1.5rem, 8vw, 4rem) 4vh;
  background: rgba(8, 8, 11, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}
body.nav-open .site-nav {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.site-nav li a:not(.btn) {
  display: block;
  padding: 0.55rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.5vw, 2.2rem);
  color: var(--ivory);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.3s var(--ease);
}
body.nav-open .site-nav li a:not(.btn) { transform: translateY(0); opacity: 1; }
.site-nav li:nth-child(2) a { transition-delay: 0.04s; }
.site-nav li:nth-child(3) a { transition-delay: 0.08s; }
.site-nav li:nth-child(4) a { transition-delay: 0.12s; }
.site-nav li:nth-child(5) a { transition-delay: 0.16s; }
.site-nav li:nth-child(6) a { transition-delay: 0.2s; }
.site-nav li a:not(.btn):hover { color: var(--gold); }
.site-nav li a[aria-current="page"]:not(.btn) { color: var(--gold); }
.site-nav .nav-cta { margin-top: 1.4rem; }
.site-nav .nav-cta .btn { width: 100%; max-width: 340px; }

.nav-foot {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--faint);
}
.nav-foot a { color: var(--muted); }
.nav-foot a:hover { color: var(--gold); }

@media (min-width: 900px) {
  :root { --header-h: 76px; }
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    visibility: visible;
    opacity: 1;
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    flex-direction: row;
    justify-content: flex-end;
  }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: clamp(1.1rem, 2.4vw, 2.1rem);
  }
  .site-nav li a:not(.btn) {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0.4rem 0;
    opacity: 1;
    transform: none;
    position: relative;
  }
  .site-nav li a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--gold);
    transition: right 0.3s var(--ease);
  }
  .site-nav li a:not(.btn):hover::after,
  .site-nav li a[aria-current="page"]:not(.btn)::after { right: 0; }
  .site-nav li a[aria-current="page"]:not(.btn) { color: var(--ivory); }
  .site-nav .nav-cta { margin: 0 0 0 0.5rem; }
  .site-nav .nav-cta .btn { width: auto; min-height: 42px; padding: 0.6rem 1.35rem; font-size: 0.88rem; }
  .nav-foot { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: clip;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vh, 5rem));
  padding-bottom: clamp(3rem, 7vh, 5rem);
  min-height: 92svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(52% 42% at 78% 16%, rgba(142, 123, 255, 0.09), transparent 70%),
    radial-gradient(60% 48% at 18% 8%, rgba(201, 164, 104, 0.08), transparent 70%),
    linear-gradient(180deg, var(--ink-0) 0%, #0a0a10 55%, var(--ink-0) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  width: 100%;
}
@media (min-width: 1000px) {
  .hero-inner { grid-template-columns: 1.04fr 0.96fr; }
}

.hero-copy .eyebrow { margin-bottom: 1.3rem; }
.hero-title {
  font-size: clamp(2.5rem, 8.5vw, 4.4rem);
  font-weight: 480;
  line-height: 1.06;
  margin-bottom: 1.1rem;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  max-width: 54ch;
  margin-bottom: 1.9rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  color: var(--faint);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.hero-meta .dot { color: var(--gold-deep); }

/* Hero stage: layered 3D composition */
.hero-stage {
  position: relative;
  height: clamp(340px, 62vw, 560px);
  perspective: 1100px;
}
.stage-layer { position: absolute; will-change: transform; }

.stage-glow {
  inset: auto 0 -4%;
  height: 30%;
  background: radial-gradient(50% 90% at 50% 100%, rgba(201, 164, 104, 0.13), transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}

/* Sweeping studio light beams */
.stage-beam {
  top: -12%;
  width: 34%;
  height: 78%;
  background: linear-gradient(180deg, rgba(239, 234, 224, 0.05), transparent 80%);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  filter: blur(2px);
  transform-origin: 50% 0;
  pointer-events: none;
}
.stage-beam-a { left: 6%; animation: beam-sway 13s var(--ease) infinite alternate; }
.stage-beam-b {
  right: 4%;
  background: linear-gradient(180deg, rgba(142, 123, 255, 0.07), transparent 80%);
  animation: beam-sway 17s var(--ease) infinite alternate-reverse;
}
@keyframes beam-sway {
  from { transform: rotate(-5deg); }
  to { transform: rotate(5deg); }
}

/* Mirror booth visual */
.booth-mirror {
  left: 6%;
  bottom: 8%;
  width: clamp(150px, 34%, 210px);
  aspect-ratio: 10 / 17;
}
.mirror-frame {
  position: relative;
  height: 100%;
  padding: 7px;
  border-radius: 120px 120px 16px 16px;
  background: var(--metal);
  box-shadow: var(--shadow-1), 0 0 60px rgba(201, 164, 104, 0.08);
}
.mirror-glass {
  position: relative;
  height: 100%;
  border-radius: 114px 114px 11px 11px;
  background:
    linear-gradient(160deg, rgba(239, 234, 224, 0.10) 0%, rgba(239, 234, 224, 0.02) 34%, rgba(8, 8, 11, 0.9) 100%),
    linear-gradient(200deg, #17171f 0%, #0b0b10 100%);
  overflow: hidden;
}
.mirror-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(239, 234, 224, 0.12) 46%, rgba(239, 234, 224, 0.02) 54%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 7.5s var(--ease) infinite;
}
@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  85%, 100% { transform: translateX(120%); }
}
.mirror-ui {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  animation: ui-pulse 3.4s ease-in-out infinite;
}
@keyframes ui-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.mirror-reflection {
  position: absolute;
  top: calc(100% + 6px);
  left: 4%;
  right: 4%;
  height: 34%;
  border-radius: 0 0 90px 90px;
  background: linear-gradient(180deg, rgba(201, 164, 104, 0.16), transparent 75%);
  transform: scaleY(-1);
  filter: blur(8px);
  opacity: 0.5;
  pointer-events: none;
}

/* 360 platform visual */
.booth-360 {
  right: 4%;
  bottom: 10%;
  width: clamp(170px, 42%, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: end center;
}
.ring-tilt {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: rotateX(64deg);
  transform-style: preserve-3d;
  bottom: -16%;
}
.orbit-ring {
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(142, 123, 255, 0.4);
  box-shadow: 0 0 40px rgba(142, 123, 255, 0.12), inset 0 0 40px rgba(142, 123, 255, 0.06);
  position: relative;
  animation: orbit-spin 14s linear infinite;
}
@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}
.orbit-cam {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 16px rgba(234, 217, 171, 0.8), 0 0 34px rgba(142, 123, 255, 0.5);
}
.platform-disc {
  position: relative;
  width: 62%;
  aspect-ratio: 10 / 3.2;
  margin-bottom: 4%;
}
.platform-top {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 50% 38%, rgba(239, 234, 224, 0.14), rgba(239, 234, 224, 0.03) 70%),
    linear-gradient(180deg, #23232c, #101016);
  border: 1px solid rgba(201, 164, 104, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}
.platform-side {
  position: absolute;
  left: 3%; right: 3%;
  top: 52%;
  height: 58%;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: linear-gradient(180deg, #17171e, #0a0a0e);
  border: 1px solid rgba(201, 164, 104, 0.18);
  border-top: 0;
  z-index: -1;
}
.platform-glow {
  position: absolute;
  left: -12%; right: -12%;
  bottom: -46%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, var(--violet-soft), transparent 70%);
  filter: blur(10px);
}

/* Floating photo frames */
.float-frame {
  margin: 0;
  width: clamp(78px, 19%, 116px);
  aspect-ratio: 4 / 5;
  padding: 6px 6px 20px;
  background: linear-gradient(180deg, #1d1d26, #14141b);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow-2);
  animation: frame-float 8s ease-in-out infinite alternate;
}
.float-frame .ff-photo {
  height: 100%;
  border-radius: 4px;
}
.frame-a {
  top: 4%;
  left: 34%;
  transform: rotate(-7deg);
}
.frame-a .ff-photo { background: linear-gradient(150deg, #3a2f4e 0%, #191423 55%, #2b1f3d 100%); }
.frame-b {
  top: 16%;
  right: 6%;
  animation-delay: -3s;
  animation-duration: 9.5s;
  transform: rotate(6deg);
}
.frame-b .ff-photo { background: linear-gradient(150deg, #4e3d24 0%, #221a10 60%, #3b2d18 100%); }
.frame-c {
  top: 40%;
  left: 44%;
  width: clamp(64px, 15%, 92px);
  animation-delay: -5.5s;
  animation-duration: 7s;
  transform: rotate(3deg);
}
.frame-c .ff-photo { background: linear-gradient(150deg, #333340 0%, #14141b 60%, #232331 100%); }
@keyframes frame-float {
  from { translate: 0 -7px; }
  to { translate: 0 7px; }
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--faint);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 1000px) { .hero-scroll-hint { display: block; } }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--ink-1);
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1rem;
  list-style: none;
}
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .trust-grid { grid-template-columns: repeat(6, 1fr); } }
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.trust-item svg { width: 26px; height: 26px; stroke: var(--gold); }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 104, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 164, 104, 0.3);
    box-shadow: var(--shadow-2);
  }
  .card:hover::before { opacity: 1; }
}

/* Experience feature cards */
.exp-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) { .exp-grid { grid-template-columns: 1fr 1fr; } }

.exp-card { padding: clamp(1.5rem, 3.5vw, 2.4rem); display: flex; flex-direction: column; }
.exp-visual {
  height: clamp(180px, 30vw, 240px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(239, 234, 224, 0.05), transparent 70%),
    linear-gradient(180deg, #101017, #0a0a0f);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}
.exp-visual .mini-mirror {
  width: 64px;
  aspect-ratio: 10 / 17;
  padding: 3px;
  border-radius: 40px 40px 6px 6px;
  background: var(--metal);
}
.exp-visual .mini-mirror i {
  display: block;
  height: 100%;
  border-radius: 38px 38px 4px 4px;
  background: linear-gradient(160deg, rgba(239, 234, 224, 0.14), rgba(8, 8, 11, 0.95) 80%);
}
.exp-visual .mini-ring {
  width: 120px;
  aspect-ratio: 10 / 4;
  position: relative;
}
.exp-visual .mini-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(142, 123, 255, 0.5);
  box-shadow: 0 0 26px rgba(142, 123, 255, 0.18);
}
.exp-visual .mini-ring::after {
  content: "";
  position: absolute;
  inset: 22% 14%;
  border-radius: 50%;
  background: linear-gradient(180deg, #22222b, #101015);
  border: 1px solid rgba(201, 164, 104, 0.4);
}
.exp-card h3 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin-bottom: 0.5rem; }
.exp-card > p { color: var(--muted); margin-bottom: 1.2rem; }
.exp-includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.exp-includes li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.exp-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.price-line { font-size: 0.9rem; color: var(--muted); }
.price-line strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 560;
  color: var(--ivory);
}

/* Event types */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  list-style: none;
}
@media (min-width: 860px) { .event-grid { grid-template-columns: repeat(4, 1fr); } }
.event-card {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-sm);
}
.event-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.event-card h3::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--metal);
  translate: 0 -2px;
}
.event-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* Steps */
.steps {
  list-style: none;
  display: grid;
  gap: 1.75rem;
  counter-reset: step;
}
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.steps-5 { }
@media (min-width: 960px) { .steps-5 { grid-template-columns: repeat(5, 1fr); } }
.step { counter-increment: step; position: relative; padding-top: 0.4rem; }
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 480;
  line-height: 1;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}
.step::after {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 3.4rem;
  right: 0.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 104, 0.35), transparent);
  display: none;
}
@media (min-width: 860px) { .step:not(:last-child)::after { display: block; } }
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- Package cards ---------- */
.pkg-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) { .pkg-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .pkg-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .pkg-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.pkg-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
}
.pkg-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.pkg-card h3 { font-size: clamp(1.3rem, 2.4vw, 1.55rem); margin-bottom: 0.2rem; }
.pkg-price {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.pkg-price strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 560;
  color: var(--ivory);
  margin-right: 0.35rem;
}
.pkg-card > p { color: var(--muted); font-size: 0.93rem; }
.pkg-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0.4rem 0 1.4rem;
}
.pkg-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.pkg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 13px; height: 7px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) scale(0.85);
}
.pkg-note {
  margin-top: 0.4rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(142, 123, 255, 0.25);
  border-radius: var(--radius-sm);
  background: var(--violet-soft);
  font-size: 0.84rem;
  color: var(--ivory);
}
.pkg-foot { margin-top: auto; padding-top: 1rem; }
.pkg-foot .btn { width: 100%; }

.fine-print {
  font-size: 0.85rem;
  color: var(--faint);
  max-width: 68ch;
}

/* Pricing tables */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.rate-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  padding-bottom: 0.75rem;
}
.rate-table th, .rate-table td {
  text-align: left;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.rate-table th { color: var(--faint); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.rate-table td:last-child, .rate-table th:last-child { text-align: right; }
.rate-table td:last-child { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-bright); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 860px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }
.g-tile {
  position: relative;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  padding: 0.9rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
@media (hover: hover) {
  .g-tile:hover { transform: translateY(-4px); border-color: rgba(201, 164, 104, 0.35); }
}
.g-tile.g-wide { aspect-ratio: auto; grid-column: span 2; }
.g-label {
  position: relative;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ivory);
}
.g-label small { display: block; color: var(--faint); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }
.g-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 11, 0.75));
}
.g-art { position: absolute; inset: 0; }
.g-art-1 { background: radial-gradient(80% 70% at 30% 20%, rgba(201, 164, 104, 0.22), transparent 60%), linear-gradient(160deg, #201a2b, #0d0c12); }
.g-art-2 { background: radial-gradient(70% 60% at 70% 30%, rgba(142, 123, 255, 0.2), transparent 65%), linear-gradient(200deg, #171722, #0b0b10); }
.g-art-3 { background: radial-gradient(90% 80% at 50% 90%, rgba(239, 234, 224, 0.1), transparent 60%), linear-gradient(180deg, #14141c, #0a0a0f); }
.g-art-4 { background: radial-gradient(60% 60% at 60% 60%, rgba(201, 164, 104, 0.16), transparent 65%), linear-gradient(140deg, #1c1620, #0c0b10); }
.g-art-5 { background: radial-gradient(75% 65% at 20% 70%, rgba(142, 123, 255, 0.14), transparent 60%), linear-gradient(170deg, #12121b, #0a0a0e); }
.g-art-6 { background: radial-gradient(85% 75% at 80% 20%, rgba(239, 234, 224, 0.08), transparent 55%), linear-gradient(190deg, #191822, #0b0a10); }
.g-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 164, 104, 0.4);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  background: rgba(8, 8, 11, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 520;
  color: var(--ivory);
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-item summary .faq-icon {
  flex: none;
  position: relative;
  width: 14px; height: 14px;
  translate: 0 1px;
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq-item summary .faq-icon::after { transform: rotate(90deg); }
.faq-item[open] summary .faq-icon::after { transform: rotate(0deg); }
.faq-item .faq-body {
  padding: 0 0.2rem 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 70ch;
}
.faq-body ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: 0.4rem; }

.safety-panel {
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(142, 123, 255, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(142, 123, 255, 0.08), rgba(142, 123, 255, 0.02));
}
.safety-panel h3 { font-size: 1.15rem; }
.safety-panel ul { list-style: none; display: grid; gap: 0.6rem; }
.safety-panel li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.safety-panel li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--violet);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: clip;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(60% 90% at 50% 110%, rgba(201, 164, 104, 0.12), transparent 65%),
    radial-gradient(40% 60% at 85% 0%, rgba(142, 123, 255, 0.08), transparent 70%),
    var(--ink-1);
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}
.cta-band h2 { font-size: clamp(2rem, 5.5vw, 3.2rem); margin-bottom: 0.7rem; }
.cta-band p { color: var(--muted); max-width: 46ch; margin: 0 auto 2rem; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.cta-phone {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--faint);
}
.cta-phone a { font-weight: 600; color: var(--gold); white-space: nowrap; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 8vh, 5.5rem));
  padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(142, 123, 255, 0.07), transparent 70%),
    radial-gradient(55% 70% at 15% 0%, rgba(201, 164, 104, 0.08), transparent 70%),
    var(--ink-0);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.2rem, 6.5vw, 3.6rem); max-width: 16ch; }
.page-hero .lede { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.12rem); max-width: 58ch; margin-bottom: 0; }
.page-hero .hero-ctas { margin-top: 1.8rem; margin-bottom: 0; }

/* Split feature rows */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-reverse > .split-visual { order: 2; }
}
.split-visual {
  position: relative;
  min-height: clamp(260px, 40vw, 420px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(239, 234, 224, 0.05), transparent 65%),
    linear-gradient(180deg, #101018, #0a0a0f);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.split-visual .booth-mirror,
.split-visual .booth-360 { position: relative; inset: auto; }
.split-visual .booth-mirror { width: clamp(130px, 30%, 170px); }
.split-visual .booth-360 { width: clamp(200px, 60%, 300px); }
.split-copy h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.split-copy > p { color: var(--muted); }

.check-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0;
}
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.check-list li strong { color: var(--ivory); font-weight: 600; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* Comparison table */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 560;
  color: var(--ivory);
  background: var(--ink-2);
}
.compare-table thead th:first-child { color: var(--faint); font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.compare-table tbody th {
  font-weight: 500;
  color: var(--faint);
  font-size: 0.85rem;
  white-space: nowrap;
}
.compare-table tbody td { color: var(--muted); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- Forms ---------- */
.form-shell {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 1000px) {
  .form-shell { grid-template-columns: 0.9fr 1.5fr; align-items: start; }
}
.contact-aside { display: grid; gap: 1rem; align-content: start; }
.contact-card { padding: 1.5rem; border-radius: var(--radius); }
.contact-card h2, .contact-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.8rem; }
.contact-card p:last-child { margin-bottom: 0; }
.phone-big {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 560;
  color: var(--gold-bright);
  white-space: nowrap;
}
.phone-big:hover { color: var(--gold); }

.availability-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}
.form-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field > label, .field > .field-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ivory);
}
.req { color: var(--gold); }
.field-hint { font-size: 0.78rem; color: var(--faint); margin: -0.15rem 0 0; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="time"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  color-scheme: dark;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23c9a468' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 104, 0.18);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--danger);
}
.field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
}
.field.has-error .field-error { display: block; }

fieldset.field { border: 0; padding: 0; margin: 0; }
fieldset.field legend { padding: 0; margin-bottom: 0.55rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; color: var(--ivory); }
.choice-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choice {
  position: relative;
  display: inline-flex;
}
.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background-color 0.25s var(--ease);
  pointer-events: none;
}
.choice input:checked + span {
  border-color: var(--gold);
  color: var(--gold-ink);
  background: var(--metal);
  font-weight: 600;
}
.choice input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.consent input {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent label { font-size: 0.88rem; color: var(--muted); font-weight: 400; }

.form-actions { margin-top: 1.75rem; display: grid; gap: 0.9rem; }
.form-actions .btn { width: 100%; }
@media (min-width: 720px) {
  .form-actions { grid-template-columns: auto 1fr; align-items: center; }
  .form-actions .btn { width: auto; }
}
.form-note { font-size: 0.8rem; color: var(--faint); margin: 0; }

.form-alert {
  display: none;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 157, 143, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(255, 157, 143, 0.08);
  color: var(--danger);
  font-size: 0.9rem;
}
.form-alert.is-visible { display: block; }

/* Honeypot — kept in the DOM but hidden from humans and assistive tech. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Delivery-failure fallback (distinct from field validation alert). */
.form-fallback {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 157, 143, 0.5);
  border-radius: var(--radius-sm);
  background: rgba(255, 157, 143, 0.09);
  color: var(--ivory);
  font-size: 0.92rem;
}
.form-fallback[hidden] { display: none; }
.form-fallback a { color: var(--gold); font-weight: 600; white-space: nowrap; }

.btn[aria-busy="true"] { opacity: 0.72; cursor: progress; }

/* Success state */
.form-success {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(201, 164, 104, 0.4);
  border-radius: var(--radius);
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(201, 164, 104, 0.1), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}
.form-success[hidden] { display: none; }
.success-mark {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--metal);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 30px rgba(201, 164, 104, 0.25);
}
.success-mark svg { width: 24px; height: 24px; stroke: var(--gold-ink); }
.form-success h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
.form-success > p { color: var(--muted); max-width: 60ch; }
.success-summary {
  margin: 1.5rem 0;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 8, 11, 0.5);
  display: grid;
  gap: 0.55rem;
}
.success-summary div { display: flex; gap: 0.6rem; font-size: 0.88rem; flex-wrap: wrap; }
.success-summary dt { color: var(--faint); min-width: 9.5rem; font-weight: 500; }
.success-summary dd { margin: 0; color: var(--ivory); }
.success-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.copy-status { font-size: 0.82rem; color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-1);
  padding-top: clamp(3rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; } }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 34ch; margin-top: 1rem; }
.footer-col h2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col address { font-style: normal; color: var(--muted); font-size: 0.92rem; display: grid; gap: 0.6rem; }
.footer-col address a { font-weight: 600; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--faint);
}
.footer-bottom p { margin: 0; }

/* ---------- 404 ---------- */
.error-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: calc(var(--header-h) + 3rem) 3rem;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(142, 123, 255, 0.08), transparent 70%),
    radial-gradient(60% 50% at 50% 100%, rgba(201, 164, 104, 0.1), transparent 70%),
    var(--ink-0);
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 9rem);
  line-height: 1;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.error-hero h1 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
.error-hero p { color: var(--muted); max-width: 44ch; margin-inline: auto; }
.error-hero .cta-actions { margin-top: 2rem; }

/* ---------- Availability badges ---------- */
.now-badge, .soon-badge {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 0.2rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  translate: 0 -2px;
}
.now-badge {
  color: var(--gold-ink);
  background: var(--metal);
}
.soon-badge {
  color: var(--violet);
  border: 1px solid rgba(142, 123, 255, 0.45);
  background: var(--violet-soft);
}
h3 .now-badge, h3 .soon-badge { margin-left: 0.5rem; margin-right: 0; }
.soon-inline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  border: 1px solid rgba(142, 123, 255, 0.4);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  margin-left: 0.35rem;
  white-space: nowrap;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  position: relative;
  z-index: 5;
  padding-top: calc(var(--header-h) + 1.1rem);
  margin-bottom: calc(-1 * (var(--header-h) + 0.4rem));
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  font-size: 0.78rem;
  color: var(--faint);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before { content: "/"; color: rgba(239, 234, 224, 0.25); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--gold); }
.page-hero-crumbed { padding-top: calc(var(--header-h) + clamp(4rem, 9vh, 6.2rem)); }

/* ---------- Location links & grids ---------- */
.loc-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.loc-links a, .loc-links .loc-plain {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.loc-links a:hover {
  color: var(--gold-bright);
  border-color: rgba(201, 164, 104, 0.5);
  transform: translateY(-2px);
}
.loc-links .loc-plain { opacity: 0.65; }

.loc-region { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.loc-region:last-child { margin-bottom: 0; }
.loc-region > h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  padding-bottom: 0.8rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.loc-region > h2::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--metal);
  translate: 0 -3px;
}
.loc-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 640px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .loc-grid { grid-template-columns: repeat(4, 1fr); } }
.loc-card { border-radius: var(--radius-sm); }
.loc-card > a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  padding: 1.2rem 1.25rem;
  color: inherit;
}
.loc-card h3 { font-size: 1.15rem; margin: 0; color: var(--ivory); }
.loc-card p { font-size: 0.83rem; color: var(--faint); margin: 0 0 0.6rem; }
.loc-card .text-link { margin-top: auto; font-size: 0.85rem; color: var(--gold); }

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.section-cta-row { margin-top: clamp(2rem, 5vw, 3rem); display: flex; justify-content: center; }

/* ---------- Reduced motion ---------- */
@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;
    transition-delay: 0s !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
