/* The Bunkr Club — holding page
   Brand tokens taken from the approved artwork (Final Marks). Do not drift these. */

:root {
  --ink:        #100E0D;  /* page black */
  --ink-deep:   #0B0A09;  /* intro black */
  --ink-panel:  #13110F;  /* strip / founding band */
  --ink-card:   #191614;  /* founding card */
  --ink-form:   #16130F;  /* form panel */
  --sand:       #F2EEE5;  /* light section */
  --sand-card:  #FBFAF6;
  --bone:       #F4F1EA;  /* body text on dark */
  --gold:       #C9A24B;
  --gold-light: #E9E08C;
  --gold-deep:  #A8853F;
  --gold-ink:   #9A7B38;  /* gold that reads on sand */
  --on-sand:    #1A1715;
  --on-sand-mu: #6B6357;
  --on-sand-fa: #9A9183;

  --gold-grad: linear-gradient(160deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  --rule: rgba(201, 162, 75, 0.16);
  --rule-strong: rgba(201, 162, 75, 0.4);
  --pad-x: clamp(20px, 5vw, 56px);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }
a { text-decoration: none; color: var(--gold); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }
[hidden] { display: none !important; }

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

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

/* ── Film grain ─────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── Intro: ball drops, icon blooms, wordmark wipes in ───────── */
@keyframes bunkrDrop {
  0%   { transform: translate(-50%, -720px) scaleY(1) scaleX(1); }
  62%  { transform: translate(-50%, 0) scaleY(1) scaleX(1); animation-timing-function: cubic-bezier(.3,0,.7,1); }
  70%  { transform: translate(-50%, 10px) scaleY(0.6) scaleX(1.4); }
  80%  { transform: translate(-50%, 0) scaleY(1.04) scaleX(0.97); }
  100% { transform: translate(-50%, 0) scaleY(1) scaleX(1); }
}
@keyframes bunkrBallOut { 0%, 66% { opacity: 1; } 80%, 100% { opacity: 0; } }
@keyframes bunkrShadow {
  0%   { opacity: 0; transform: translateX(-50%) scaleX(0.4); }
  62%  { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
  72%  { opacity: 0.6; transform: translateX(-50%) scaleX(1.3); }
  100% { opacity: 0; transform: translateX(-50%) scaleX(1.5); }
}
@keyframes bunkrFlash {
  0%, 60% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  68%     { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100%    { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}
@keyframes bunkrRing {
  0%, 62% { opacity: 0; transform: translate(-50%, -50%) scale(0.12); }
  66%     { opacity: 0.75; }
  100%    { opacity: 0; transform: translate(-50%, -50%) scale(2.6); }
}
@keyframes bunkrBloom {
  0%, 62% { opacity: 0; transform: translate(-50%, -50%) scale(0.12); }
  72%     { opacity: 1; }
  100%    { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes bunkrWordReveal {
  0%   { opacity: 0; transform: translate(-50%, 26px); -webkit-mask-position: 118% 0%; mask-position: 118% 0%; }
  100% { opacity: 1; transform: translate(-50%, 0);   -webkit-mask-position: 0% 0%;   mask-position: 0% 0%; }
}
@keyframes bunkrSheen {
  0%   { opacity: 0; left: -12%; }
  12%  { opacity: 0.5; }
  88%  { opacity: 0.5; }
  100% { opacity: 0; left: 118%; }
}
@keyframes bunkrIntroOut {
  0%   { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes bunkrRise {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.intro {
  position: fixed; inset: 0; z-index: 10000; overflow: hidden;
  background: var(--ink-deep); pointer-events: none;
  animation: bunkrIntroOut .62s ease 2.62s both;
}
.intro__glow {
  position: absolute; left: 50%; top: 44%; width: min(1180px, 150vw); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(201,162,75,0.34), rgba(11,10,9,0) 70%);
}
.intro__ring {
  position: absolute; left: 50%; top: 52%;
  width: min(560px, 80vw); height: min(346px, 49vw);
  transform: translate(-50%, -50%); border-radius: 50%;
  border: 2px solid rgba(201,162,75,0.9);
  animation: bunkrRing 1.5s cubic-bezier(.14,.9,.24,1) .1s both;
}
.intro__ring--2 { border-color: rgba(201,162,75,0.6); animation: bunkrRing 1.7s cubic-bezier(.14,.9,.24,1) .24s both; }
.intro__flash {
  position: absolute; left: 50%; top: 52%; width: min(620px, 86vw); aspect-ratio: 1;
  transform: translate(-50%, -50%); border-radius: 50%; mix-blend-mode: screen;
  background: radial-gradient(50% 50% at 50% 50%, rgba(233,224,140,0.9), rgba(233,224,140,0) 68%);
  animation: bunkrFlash 1.25s ease-out both;
}
.intro__shadow {
  position: absolute; left: 50%; top: calc(52% + 34px); width: 150px; height: 26px; border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,0.75), rgba(0,0,0,0) 72%);
  animation: bunkrShadow 1.35s ease-out both;
}
.intro__icon {
  position: absolute; left: 50%; top: 52%; width: min(300px, 42vw); aspect-ratio: 720/443;
  transform: translate(-50%, -50%);
  animation: bunkrBloom 1.5s cubic-bezier(.12,.85,.2,1) both;
}
.intro__icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.intro__ball {
  position: absolute; left: 50%; top: 52%; width: 76px; height: 76px; margin-top: -38px; border-radius: 50%;
  background: radial-gradient(38% 34% at 34% 28%, #FFFFFF 0%, #EDE9E0 42%, #B9B2A4 78%, #8A8478 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55), inset -8px -10px 22px rgba(0,0,0,0.28);
  animation: bunkrDrop 1.35s linear both, bunkrBallOut 1.35s linear both;
}
.intro__ball::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%; opacity: 0.34;
  background-image: radial-gradient(circle, rgba(0,0,0,0.5) 1.2px, rgba(0,0,0,0) 1.4px);
  background-size: 11px 11px;
}
.intro__word {
  position: absolute; left: 50%; top: 73%; width: min(430px, 62vw); transform: translate(-50%, 0);
  animation: bunkrWordReveal .85s cubic-bezier(.2,.7,.2,1) 1.35s both;
  -webkit-mask-image: linear-gradient(96deg, #000 12%, rgba(0,0,0,0.72) 34%, rgba(0,0,0,0.28) 52%, rgba(0,0,0,0) 74%);
          mask-image: linear-gradient(96deg, #000 12%, rgba(0,0,0,0.72) 34%, rgba(0,0,0,0.28) 52%, rgba(0,0,0,0) 74%);
  -webkit-mask-size: 300% 100%; mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.intro__word img { width: 100%; height: auto; display: block; }
.intro__sheen {
  position: absolute; top: 0; width: min(320px, 30vw); height: 100%;
  transform: translateX(-50%) skewX(-12deg); mix-blend-mode: screen;
  background: linear-gradient(90deg, rgba(233,224,140,0) 0%, rgba(233,224,140,0.55) 50%, rgba(233,224,140,0) 100%);
  animation: bunkrSheen 1s ease-in-out 1.7s both;
}

/* ── Top bar ─────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 12px var(--pad-x);
  background: rgba(16,14,13,0.76);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.topbar__brand { display: flex; align-items: center; gap: 16px; }
.topbar__icon { height: clamp(34px, 7vw, 44px); width: auto; flex: none; object-fit: contain; display: block; }
.topbar__word { height: clamp(19px, 4vw, 26px); width: auto; flex: none; object-fit: contain; display: block; }
.topbar__rule { width: 1px; height: 30px; background: rgba(201,162,75,0.3); display: block; }
.topbar__status {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,241,234,0.5);
}
.topbar__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: block; }

/* ── Shared bits ─────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; }

.eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
  color: var(--gold);
}
.eyebrow--sand { color: var(--gold-ink); }
.eyebrow--rule { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow--rule::before { content: ''; width: 26px; height: 1px; background: var(--gold); display: inline-block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; border-radius: 100px; border: none;
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
}
.btn--gold { color: #1A1510; background: var(--gold-grad); }
.btn--ghost { color: var(--bone); border: 1px solid var(--rule-strong); background: rgba(255,255,255,0.02); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  /* The oversized watermark deliberately bleeds off the right edge —
     clip it here or it drags a horizontal scrollbar across the page. */
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) var(--pad-x) clamp(56px, 8vw, 96px);
  background:
    radial-gradient(120% 85% at 74% -10%, rgba(201,162,75,0.20), transparent 56%),
    radial-gradient(90% 70% at 6% 112%, rgba(201,162,75,0.07), transparent 60%),
    var(--ink);
}
.hero__watermark {
  position: absolute; right: -9%; top: 50%; transform: translateY(-50%);
  height: 116%; width: auto; max-width: none; opacity: 0.06; pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.hero__copy { animation: bunkrRise .9s cubic-bezier(.2,.7,.2,1) var(--hero-delay, 0s) both; }
.hero__copy .eyebrow { margin-bottom: 30px; }
.hero__word { width: min(420px, 78%); height: auto; display: block; margin-bottom: clamp(24px, 4vw, 34px); }
.hero h1 {
  margin: 0; font-weight: 900; line-height: 0.92; letter-spacing: -0.025em;
  font-size: clamp(46px, 7.4vw, 96px); max-width: 15ch;
}
.hero h1 span { display: block; }
.hero h1 .gold {
  padding-bottom: 0.14em; margin-bottom: -0.1em;
  background: linear-gradient(150deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede {
  margin: 30px 0 0; max-width: 48ch;
  font-size: clamp(16px, 1.7vw, 20px); line-height: 1.6; color: rgba(244,241,234,0.74);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__note { margin-top: 24px; font-size: 13px; letter-spacing: 0.03em; color: rgba(244,241,234,0.48); }
.hero__shot {
  animation: bunkrRise .9s cubic-bezier(.2,.7,.2,1) var(--hero-shot-delay, .14s) both;
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; display: block;
  border-radius: 18px; background: #211C18; border: 1px solid rgba(201,162,75,0.22);
}

/* ── Numbers strip ───────────────────────────────────────────── */
.strip { border-top: 1px solid rgba(201,162,75,0.14); border-bottom: 1px solid rgba(201,162,75,0.14); background: var(--ink-panel); }
.strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.strip__cell { padding: clamp(22px, 4vw, 30px) clamp(16px, 3vw, 36px); border-right: 1px solid rgba(201,162,75,0.12); }
.strip__cell:last-child { border-right: none; }
.strip__num { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.02em; color: var(--gold); }
.strip__label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,241,234,0.55); margin-top: 6px; }

/* ── What's coming (sand) ────────────────────────────────────── */
.coming {
  scroll-margin-top: 76px;
  padding: clamp(70px, 9vw, 116px) var(--pad-x);
  background: var(--sand); color: var(--on-sand);
}
.coming__head { margin-bottom: 50px; }
.coming__head .eyebrow { margin-bottom: 18px; display: block; }
.coming h2 {
  margin: 0 0 22px; font-size: clamp(30px, 4.4vw, 58px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.0; max-width: 20ch;
}
.coming__lede { margin: 0; max-width: 56ch; font-size: 16px; line-height: 1.65; color: var(--on-sand-mu); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--sand-card); border: 1px solid rgba(26,23,21,0.10); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
}
.card__shot {
  width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block;
  background: #E6DFD2; border-bottom: 1px solid rgba(26,23,21,0.08);
}
.card__body { padding: 26px 26px 30px; }
.card__kicker { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 12px; }
.card h3 { margin: 0 0 12px; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--on-sand-mu); }

/* ── Statement ───────────────────────────────────────────────── */
.statement {
  padding: clamp(66px, 9vw, 120px) var(--pad-x); text-align: center;
  background: radial-gradient(80% 130% at 50% 0%, rgba(201,162,75,0.13), transparent 58%), var(--ink);
}
.statement img { width: clamp(76px, 7vw, 110px); height: auto; display: block; margin: 0 auto 30px; }
.statement__kicker {
  margin: 0 auto 22px; max-width: 30ch; font-family: 'Questrial', sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: clamp(12px, 1.4vw, 15px); color: var(--gold);
}
.statement h2 {
  margin: 0 auto; max-width: 16ch; font-size: clamp(34px, 5.6vw, 76px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 0.98;
}

/* ── Founding list ───────────────────────────────────────────── */
.founding { padding: clamp(60px, 8vw, 104px) var(--pad-x); background: var(--ink-panel); border-top: 1px solid rgba(201,162,75,0.14); }
.founding__head { text-align: center; margin-bottom: 44px; }
.founding__head .eyebrow { margin-bottom: 16px; display: block; }
.founding h2 {
  margin: 0 auto 16px; font-size: clamp(28px, 4vw, 52px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.04; max-width: 22ch;
}
.founding__lede { margin: 0 auto; max-width: 52ch; font-size: 16px; line-height: 1.6; color: rgba(244,241,234,0.66); }
.founding__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 18px; }
.perk { background: var(--ink-card); border: 1px solid rgba(201,162,75,0.18); border-radius: 16px; padding: 28px 24px 30px; }
.perk__n { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 16px; }
.perk h3 { margin: 0 0 10px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.perk p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(244,241,234,0.62); }

/* ── Register ────────────────────────────────────────────────── */
.register {
  scroll-margin-top: 76px;
  padding: clamp(70px, 9vw, 116px) var(--pad-x);
  background: radial-gradient(100% 90% at 80% 0%, rgba(201,162,75,0.14), transparent 58%), var(--ink);
}
.register__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(30px, 5vw, 72px); align-items: start;
}
.register__pitch .eyebrow { margin-bottom: 18px; display: block; }
.register h2 { margin: 0 0 22px; font-size: clamp(30px, 4.2vw, 54px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; }
.register__lede { margin: 0 0 30px; font-size: 16px; line-height: 1.65; color: rgba(244,241,234,0.7); max-width: 42ch; }
.promises { display: flex; flex-direction: column; }
.promises li {
  list-style: none; display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--rule); font-size: 15px; color: rgba(244,241,234,0.82);
}
.promises { margin: 0; padding: 0; }
.promises li:last-child { border-bottom: 1px solid var(--rule); }
.register__contact { margin-top: 30px; font-size: 14px; line-height: 1.6; color: rgba(244,241,234,0.5); }

.panel {
  background: var(--ink-form); border: 1px solid rgba(201,162,75,0.24); border-radius: 22px;
  padding: clamp(26px, 3.4vw, 42px);
}
.form { display: flex; flex-direction: column; gap: 22px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,241,234,0.55); }
.field__label .soft { text-transform: none; letter-spacing: 0; color: rgba(244,241,234,0.34); }
.field input, .field textarea {
  padding: 14px 16px; border-radius: 10px; border: 1px solid rgba(244,241,234,0.16);
  background: rgba(255,255,255,0.03); color: var(--bone); font-size: 15px; width: 100%;
}
.field textarea { line-height: 1.5; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,241,234,0.34); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input[aria-invalid="true"] { border-color: rgba(214,110,90,0.7); }

.chips { display: flex; flex-direction: column; gap: 11px; }
.chips__row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 12px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  cursor: pointer; transition: all .15s ease;
  border: 1px solid rgba(244,241,234,0.18); background: rgba(255,255,255,0.02); color: rgba(244,241,234,0.72);
}
.chip:hover { border-color: rgba(201,162,75,0.5); color: var(--bone); }
.chip[aria-pressed="true"] { border-color: var(--gold); background: var(--gold-grad); color: #1A1510; }

.consent {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; line-height: 1.55; color: rgba(244,241,234,0.6);
}
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--gold); flex: none; }

.alert {
  padding: 13px 16px; border-radius: 10px;
  border: 1px solid rgba(214,110,90,0.5); background: rgba(214,110,90,0.1);
  font-size: 14px; color: #E8B4A6;
}
.form__submit { padding: 17px 30px; }
.form__submit[disabled] { opacity: 0.6; cursor: progress; }
.form__smallprint { margin: 0; font-size: 12px; line-height: 1.55; color: rgba(244,241,234,0.4); }

/* Post-submit states */
.done { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 26px 6px 20px; }
.done img { width: 104px; height: auto; display: block; margin-bottom: 28px; }
.done__kicker { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.done h3 { margin: 0 0 16px; font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.done p { margin: 0 0 30px; max-width: 40ch; font-size: 16px; line-height: 1.6; color: rgba(244,241,234,0.68); }
.done__recap { width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 12px; text-align: left; margin-bottom: 30px; }
.done__recap div {
  display: flex; justify-content: space-between; gap: 16px; padding: 13px 0;
  border-top: 1px solid rgba(201,162,75,0.18); font-size: 14px;
}
.done__recap div:last-child { border-bottom: 1px solid rgba(201,162,75,0.18); }
.done__recap dt { color: rgba(244,241,234,0.5); margin: 0; }
.done__recap dd { color: var(--bone); font-weight: 600; margin: 0; text-align: right; }
.done__follow { margin: 0 0 20px; font-size: 14px; line-height: 1.6; color: rgba(244,241,234,0.55); }
.done .btn--ghost { padding: 14px 28px; font-size: 13px; letter-spacing: 0.07em; }
.done__reset {
  margin-top: 22px; background: none; border: none; font-size: 13px;
  color: rgba(244,241,234,0.45); text-decoration: underline; cursor: pointer;
}

/* ── Details (sand) ──────────────────────────────────────────── */
.details { padding: clamp(60px, 8vw, 100px) var(--pad-x); background: var(--sand); color: var(--on-sand); }
.details__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 64px); align-items: center;
}
.details .eyebrow { margin-bottom: 16px; display: block; }
.details h2 { margin: 0 0 26px; font-size: clamp(28px, 4vw, 50px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; }
.details__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; }
.details__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-sand-fa); margin-bottom: 8px; }
.details__value { font-size: 15px; line-height: 1.6; color: #3A352F; }
.details__value a { color: var(--gold-ink); }
.details__map {
  position: relative; width: 100%; aspect-ratio: 4/3; min-height: 300px; border-radius: 18px;
  overflow: hidden; border: 1px solid rgba(26,23,21,0.12); background: #EDE8DE;
}
.details__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: clamp(44px, 6vw, 64px) var(--pad-x) 36px;
  background: var(--ink); border-top: 1px solid var(--rule);
}
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.footer__brand { display: flex; align-items: center; gap: 24px; }
.footer__icon { height: clamp(46px, 9vw, 60px); width: auto; flex: none; object-fit: contain; display: block; }
.footer__stack { display: flex; flex-direction: column; gap: 12px; }
.footer__word { height: clamp(23px, 5vw, 30px); width: auto; flex: none; object-fit: contain; display: block; }
.footer__tag {
  margin: 0; font-family: 'Questrial', sans-serif; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 13px; color: rgba(244,241,234,0.7);
}
.footer__meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(244,241,234,0.4); align-items: center; }
.footer__meta a { color: rgba(244,241,234,0.55); text-decoration: underline; }
.footer__meta a:hover { color: var(--gold); }

/* ── Standalone pages (confirm / privacy) ────────────────────── */
.page {
  min-height: 100vh; display: flex; flex-direction: column;
  background: radial-gradient(90% 70% at 50% 0%, rgba(201,162,75,0.13), transparent 60%), var(--ink);
}
.page__body { flex: 1; padding: clamp(50px, 8vw, 90px) var(--pad-x); }
.page__card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--ink-form); border: 1px solid rgba(201,162,75,0.24);
  border-radius: 22px; padding: clamp(32px, 5vw, 56px);
}
.page__card img { width: clamp(90px, 14vw, 120px); height: auto; display: block; margin: 0 auto 28px; }
.page__card h1 { margin: 0 0 18px; font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.06; }
.page__card p { margin: 0 auto 20px; max-width: 46ch; font-size: 16px; line-height: 1.65; color: rgba(244,241,234,0.7); }
.page__card .btn { margin-top: 14px; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { margin: 0 0 10px; font-size: clamp(30px, 5vw, 52px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.prose .updated { margin: 0 0 44px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,241,234,0.4); }
.prose h2 {
  margin: 44px 0 14px; font-size: clamp(19px, 2.4vw, 24px); font-weight: 700; letter-spacing: -0.01em;
  padding-top: 22px; border-top: 1px solid var(--rule);
}
.prose h3 { margin: 26px 0 10px; font-size: 16px; font-weight: 700; }
.prose p, .prose li { font-size: 15px; line-height: 1.75; color: rgba(244,241,234,0.72); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 9px; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border: 1px solid var(--rule); vertical-align: top; color: rgba(244,241,234,0.75); }
.prose th { color: var(--gold); font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.prose .callout {
  margin: 22px 0; padding: 18px 22px; border-radius: 12px;
  border: 1px solid rgba(201,162,75,0.28); background: rgba(201,162,75,0.06);
}
.prose .callout p:last-child { margin-bottom: 0; }

/* ── Responsive / motion ─────────────────────────────────────── */
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(44px, 15vw, 64px); }
  .intro__icon { max-width: 78vw; }
  .form__submit { width: 100%; }
  .strip__cell { border-right: none; border-bottom: 1px solid rgba(201,162,75,0.12); }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none !important; }
  .hero__copy, .hero__shot { animation: none !important; opacity: 1 !important; transform: none !important; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@media print {
  .intro, .grain, .topbar, .register { display: none !important; }
  body { background: #fff; color: #000; }
}
