/* ─────────────────────────────────────────────────────────────
   ReUp Media — Variant A: full-fat spectacular
   Design DNA: cuberto.com (Suisse Intl, geometric grotesque,
   extreme contrast), monopo.london (black + white + single
   accent), lusion.co (oversized numerals, scale-based
   hierarchy), toyfight.co (warm cream + custom display),
   basement.studio (bold black canvas + vibrant accent).
   Palette driven by brand: deep navy + gold accent.
   ───────────────────────────────────────────────────────────── */

:root {
  --navy: #142B4F;
  --navy-deep: #0A1A33;
  --navy-mid: #1F3A6E;
  --gold: #F5B301;
  --gold-soft: #FFD966;
  --ink: #0F172A;
  --paper: #0B1424;
  --paper-2: #0F1A2E;
  --text: #E6EBF2;
  --muted: #8FA0BC;
  --rule: rgba(245, 179, 1, 0.18);
  --rule-strong: rgba(245, 179, 1, 0.45);

  --font-display: ui-sans-serif, -apple-system, BlinkMacSystemFont,
    "SF Pro Display", "Inter", "Helvetica Neue", system-ui, sans-serif;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont,
    "Inter", "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Menlo",
    "Cascadia Code", monospace;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --pad-section: clamp(80px, 12vh, 160px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.7, 0, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

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

/* ─────────  NAV  ───────── */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(11, 20, 36, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--rule);
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__brand img { width: 32px; height: 32px; }
.nav__brand strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.nav__brand small {
  margin-left: 4px;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
}
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--text); opacity: 0.78;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { opacity: 1; color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--gold); color: var(--navy-deep);
  font-weight: 600; font-size: 14px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.nav__cta:hover { background: var(--gold-soft); transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ─────────  HERO  ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) var(--pad-section);
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(245, 179, 1, 0.10), transparent 60%),
    radial-gradient(800px 600px at 20% 110%, rgba(31, 58, 110, 0.6), transparent 70%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  overflow: hidden;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 1s var(--ease) 0.1s forwards;
}
.hero__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
  max-width: 14ch;
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.25s forwards;
}
.hero__title em {
  font-style: normal; color: var(--gold);
  display: inline-block;
}
.hero__sub {
  margin-top: 28px;
  max-width: 60ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.45s forwards;
}
.hero__actions {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.6s forwards;
}
.hero__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.hero__btn--primary {
  background: var(--gold); color: var(--navy-deep);
}
.hero__btn--primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(245, 179, 1, 0.55);
}
.hero__btn--ghost {
  color: var(--text);
  border: 1px solid var(--rule-strong);
  background: transparent;
}
.hero__btn--ghost:hover {
  background: rgba(245, 179, 1, 0.06);
  border-color: var(--gold);
}
.hero__meta {
  margin-top: 60px;
  display: flex; flex-wrap: wrap; gap: 28px 56px;
  font-size: 14px; color: var(--muted);
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.8s forwards;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text); font-weight: 600; font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 3px;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-transform: uppercase;
}
.hero__scroll span {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: drop 2s var(--ease) infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drop {
  0%, 100% { opacity: 0.4; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─────────  SECTION CHROME  ───────── */
section { padding: var(--pad-section) var(--gutter); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__head {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 80px;
  max-width: 920px;
}
.section__num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px;
}
.section__num::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text);
}
.section__lede {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--muted);
  max-width: 56ch;
}

/* ─────────  THE LEAK  ───────── */
.leak { background: var(--paper-2); border-top: 1px solid var(--rule); }
.leak__grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.leak__card {
  padding: 36px 32px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(31, 58, 110, 0.18), transparent);
  position: relative;
}
.leak__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.leak__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.leak__card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.leak__close {
  margin-top: 64px;
  padding: 32px 36px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .leak__grid { grid-template-columns: 1fr; }
}

/* ─────────  SERVICES  ───────── */
.services { background: var(--paper); }
.services__grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.service {
  position: relative;
  padding: 40px 32px 32px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(31, 58, 110, 0.22), rgba(11, 20, 36, 0.4));
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.service:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(245, 179, 1, 0.4);
}
.service__num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 28px;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.service__one {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.5;
}
.service__list { margin: 0 0 24px; padding: 0; list-style: none; }
.service__list li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px; line-height: 1.55;
}
.service__list li:first-child { border-top: 1px solid var(--rule-strong); }
.service__list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.service__list span { color: var(--text); opacity: 0.86; }
.service__price {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--gold);
  border-top: 1px solid var(--rule-strong);
  font-variant-numeric: tabular-nums;
}
.service__price small {
  display: block; font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.services__handoff {
  margin: 56px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: -0.01em;
  font-style: italic;
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ─────────  HOW IT WORKS  ───────── */
.how { background: var(--paper-2); border-top: 1px solid var(--rule); }
.how__grid {
  display: grid; gap: 0;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.how__step {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  background: rgba(31, 58, 110, 0.08);
  transition: background 0.4s var(--ease);
}
.how__step:last-child { border-right: 0; }
.how__step:hover { background: rgba(245, 179, 1, 0.06); }
.how__step__num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 32px;
}
.how__step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.how__step__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.how__step p {
  font-size: 15px; line-height: 1.55;
  color: var(--text); opacity: 0.86;
  margin: 0 0 24px;
}
.how__step__signoff {
  font-size: 13px;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
  line-height: 1.5;
}
.how__principles {
  margin-top: 80px;
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  padding-top: 60px;
}
.how__principle {
  font-size: 15px; line-height: 1.55;
  color: var(--muted);
}
.how__principle strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .how__grid { grid-template-columns: 1fr 1fr; }
  .how__step { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .how__step:nth-child(2n) { border-right: 0; }
  .how__step:nth-last-child(-n+2) { border-bottom: 0; }
  .how__principles { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .how__grid { grid-template-columns: 1fr; }
  .how__step { border-right: 0; border-bottom: 1px solid var(--rule); }
  .how__step:last-child { border-bottom: 0; }
}

/* ─────────  SHOWROOM  ───────── */
.showroom {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(245, 179, 1, 0.06), transparent 60%),
    var(--paper);
}
.showroom__filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 48px;
}
.showroom__filter {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease);
}
.showroom__filter:hover { color: var(--text); border-color: var(--rule-strong); }
.showroom__filter.is-active {
  background: var(--gold); color: var(--navy-deep);
  border-color: var(--gold); font-weight: 600;
}
.showroom__grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.showroom__card {
  border: 1px solid var(--rule);
  background: rgba(31, 58, 110, 0.12);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.showroom__card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.showroom__card.is-hidden { display: none; }
.showroom__card__preview {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-deep);
  overflow: hidden;
}
.showroom__card__preview img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.6s var(--ease);
}
.showroom__card:hover .showroom__card__preview img { transform: scale(1.04); }
.showroom__card__tier {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(11, 20, 36, 0.85);
  color: var(--gold);
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  border: 1px solid var(--rule);
}
.showroom__card__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.showroom__card__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.showroom__card__vertical {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 16px;
}
.showroom__card__note {
  font-size: 15px; line-height: 1.55;
  color: var(--text); opacity: 0.86;
  margin: 0 0 24px;
  flex: 1;
}
.showroom__card__tier-desc {
  font-size: 13px;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  line-height: 1.5;
}
.showroom__card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 900px) { .showroom__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .showroom__grid { grid-template-columns: 1fr; } }

/* ─────────  WHO WE HELP  ───────── */
.who { background: var(--paper-2); border-top: 1px solid var(--rule); }
.who__grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.who__tile {
  padding: 36px 28px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(31, 58, 110, 0.16), rgba(11, 20, 36, 0.4));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.who__tile:hover { border-color: var(--gold); transform: translateY(-3px); }
.who__tile__tier {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px;
}
.who__tile h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.who__tile p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.55;
}
.who__tile blockquote {
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}
.who__footnote {
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .who__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .who__grid { grid-template-columns: 1fr; }
}

/* ─────────  WHAT WE DON'T DO  ───────── */
.dont { background: var(--paper); }
.dont__list {
  display: grid; gap: 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.dont__item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: baseline;
}
.dont__item:nth-child(2n) { padding-left: 32px; border-left: 1px solid var(--rule); }
.dont__item:nth-child(2n+1) { padding-right: 32px; }
.dont__item__no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dont__item p {
  margin: 0;
  font-size: 17px; line-height: 1.5;
  color: var(--text);
}
.dont__item strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}
@media (max-width: 720px) {
  .dont__list { grid-template-columns: 1fr; }
  .dont__item:nth-child(2n) { padding-left: 0; border-left: 0; }
  .dont__item:nth-child(2n+1) { padding-right: 0; }
}

/* ─────────  FAQ  ───────── */
.faq { background: var(--paper-2); border-top: 1px solid var(--rule); }
.faq__list {
  display: grid; gap: 0;
  border-top: 1px solid var(--rule);
  max-width: 920px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-mono);
  font-size: 22px; color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary { color: var(--gold); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin: 0;
  padding: 0 0 32px;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─────────  CTA  ───────── */
.cta {
  background:
    radial-gradient(700px 400px at 80% 50%, rgba(245, 179, 1, 0.12), transparent 60%),
    var(--paper);
  border-top: 1px solid var(--rule);
  padding: clamp(100px, 14vh, 180px) var(--gutter);
  text-align: center;
}
.cta__inner { max-width: 820px; margin: 0 auto; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.cta h2 em { font-style: normal; color: var(--gold); }
.cta p {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  margin: 0 auto 48px;
  max-width: 56ch;
  line-height: 1.55;
}
.cta__btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 40px;
  background: var(--gold); color: var(--navy-deep);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.cta__btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(245, 179, 1, 0.6);
}
.cta__sub {
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
}
.cta__sub a {
  color: var(--gold);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
}

/* ─────────  FOOTER  ───────── */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding: 80px var(--gutter) 40px;
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 56px;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.footer__brand img { width: 40px; height: 40px; margin-bottom: 16px; }
.footer__brand h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.footer__brand p {
  font-size: 14px; line-height: 1.55;
  color: var(--muted); max-width: 32ch;
  margin: 8px 0 0;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text); opacity: 0.78;
  margin-bottom: 12px;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.footer__col a:hover { opacity: 1; color: var(--gold); }
.footer__bottom {
  max-width: var(--max); margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────  REVEAL  ───────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
