/* =========================================================
   Manifest Your Wish — Bridge Page
   Direction: midnight indigo, parchment, soft gold accent.
   Mystical but grounded. Calm, warm, premium.
   ========================================================= */

:root {
  /* Palette */
  --bg:        #0d1130;        /* deep midnight */
  --bg-2:      #11163a;        /* slightly lighter */
  --bg-3:      #181c47;        /* card / panel */
  --bg-soft:   #f7f0e1;        /* parchment cream — light sections */
  --bg-soft-2: #efe6d1;        /* parchment alt */

  --ink:       #f4eedb;        /* primary text on dark */
  --ink-mute:  #b9b5a5;        /* secondary on dark */
  --ink-faint: #7e7a6e;
  --on-cream:  #1d1a36;        /* primary text on cream */
  --on-cream-mute: #555067;

  --line-dark: rgba(244, 238, 219, 0.14);
  --line-cream: rgba(29, 26, 54, 0.12);

  --gold:      #e9c178;        /* warm gold — accent */
  --gold-deep: #c8983f;
  --gold-soft: #f4d39b;
  --rose:      #c89a8a;        /* secondary accent */
  --violet:    #a07cff;        /* cosmic accent */

  /* Typography */
  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --sans:  "Satoshi", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Sizing */
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 40px);

  /* Radii */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-glow: 0 0 0 1px rgba(244, 238, 219, 0.05), 0 30px 60px -30px rgba(0,0,0,0.5);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ----- reset / base ----- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1em; }
em { font-style: italic; }

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

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--gold); color: var(--bg);
  padding: 10px 14px; border-radius: 8px; font-weight: 600;
  z-index: 100;
}
.skip-link:focus { top: 16px; }

/* ----- container ----- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.hide-sm { display: none; }
@media (min-width: 720px) { .hide-sm { display: inline; } }

/* ----- atmosphere ----- */
.atmosphere {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1px 1px at 27% 62%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(1.2px 1.2px at 45% 8%, rgba(244,211,155,.7), transparent 60%),
    radial-gradient(1px 1px at 62% 80%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(1px 1px at 78% 22%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(1px 1px at 88% 70%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(1.4px 1.4px at 32% 35%, rgba(244,211,155,.6), transparent 60%),
    radial-gradient(1px 1px at 8% 88%, rgba(255,255,255,.4), transparent 60%),
    radial-gradient(1px 1px at 55% 50%, rgba(255,255,255,.4), transparent 60%);
  background-size: 100% 100%;
  opacity: 0.9;
}
.aurora {
  position: absolute; inset: -10% -10% auto -10%; height: 80vh;
  background:
    radial-gradient(50% 60% at 20% 30%, rgba(160,124,255,.18), transparent 70%),
    radial-gradient(60% 50% at 80% 20%, rgba(233,193,120,.12), transparent 70%),
    radial-gradient(40% 50% at 50% 70%, rgba(200,154,138,.10), transparent 70%);
  filter: blur(20px);
}

/* ----- header ----- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 16px;
  padding: 14px var(--pad);
  background: rgba(13, 17, 48, 0.6);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  letter-spacing: 0.005em;
}
.brand__mark {
  width: 30px; height: 30px;
  color: var(--gold);
  flex: 0 0 30px;
}
.brand__name em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.brand--footer .brand__mark { width: 34px; height: 34px; flex-basis: 34px; }
.brand--footer { font-size: 19px; }

.site-nav {
  display: none;
  margin-left: auto;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-mute);
}
.site-nav a {
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header__cta { margin-left: auto; }
@media (min-width: 860px) {
  .site-nav { display: inline-flex; }
  .header__cta { margin-left: 0; }
}

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  letter-spacing: 0.01em;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--xl { padding: 20px 34px; font-size: 18px; border-radius: 999px; }

.btn--primary {
  background: linear-gradient(180deg, #f1cf85, #d9a958 100%);
  color: #1d1a36;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 12px 30px -10px rgba(217, 169, 88, 0.55),
    0 0 0 1px rgba(217,169,88,0.25);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #f6d893, #e0b365 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 20px 40px -10px rgba(217, 169, 88, 0.65),
    0 0 0 1px rgba(217,169,88,0.35);
}
.btn--primary svg { transition: transform .25s var(--ease); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-dark);
}
.btn--ghost:hover {
  background: rgba(244, 238, 219, 0.06);
  border-color: rgba(244, 238, 219, 0.3);
}

/* ----- shared section bits ----- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow__dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.section-title--center { text-align: center; }
.title-soft { color: var(--ink-mute); font-style: italic; }
.title-accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 50%, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.section-sub {
  color: var(--ink-mute);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ============================== HERO ============================== */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(70px, 11vw, 130px);
  isolation: isolate;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: left;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
}
.hero__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 640px;
  margin: 0 0 36px;
}
.hero__lede strong { color: var(--ink); font-weight: 500; }
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 28px;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
}
.hero__meta span:first-child {
  color: var(--gold);
  letter-spacing: 0.1em;
}
.hero__meta .dot { color: var(--ink-faint); }

.hero__ornament {
  position: absolute;
  right: -120px;
  top: -40px;
  width: 720px;
  height: 720px;
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
  animation: drift 30s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(-20px, 12px) rotate(-2deg); }
}
@media (max-width: 980px) {
  .hero__ornament { right: -200px; top: 40px; width: 560px; height: 560px; opacity: 0.55; }
}
@media (max-width: 640px) {
  .hero__ornament { right: -180px; top: 60%; width: 500px; height: 500px; opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__ornament { animation: none; }
}

/* ============================== TRUST STRIP ============================== */
.trust {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(13, 17, 48, 0.4);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 28px 0;
  text-align: center;
}
@media (min-width: 720px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
}
.trust__item {
  padding: 12px 8px;
  border-right: 1px solid var(--line-dark);
}
.trust__item:nth-child(2n) { border-right: none; }
@media (min-width: 720px) {
  .trust__item:nth-child(2n) { border-right: 1px solid var(--line-dark); }
  .trust__item:last-child { border-right: none; }
}
.trust__num {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  color: var(--gold-soft);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust__lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}

/* ============================== PROBLEM ============================== */
.problem {
  position: relative; z-index: 2;
  padding: clamp(70px, 10vw, 130px) 0;
}
.problem__inner { max-width: 1000px; margin: 0 auto; }
.problem__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 820px) {
  .problem__cols { grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
}
.problem__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.problem__lead em { color: var(--gold-soft); font-style: italic; }
.problem__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.problem__list li {
  padding: 18px 20px;
  background: rgba(244, 238, 219, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  font-size: 15.5px;
  color: var(--ink-mute);
  position: relative;
}
.problem__list li::before {
  content: "";
  position: absolute; left: 20px; top: -7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
}

/* ============================== INSIDE (cream block) ============================== */
.inside {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-soft-2) 100%);
  color: var(--on-cream);
  padding: clamp(80px, 11vw, 140px) 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.inside .eyebrow { color: var(--gold-deep); }
.inside .eyebrow__dot { background: var(--gold-deep); box-shadow: 0 0 10px rgba(200,152,63,0.5); }
.inside .section-title { color: var(--on-cream); text-align: center; }
.inside .section-sub { color: var(--on-cream-mute); }
.inside .title-soft { color: var(--on-cream-mute); }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 8px;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .cards { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fdfaf2;
  border: 1px solid rgba(29, 26, 54, 0.08);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 24px -16px rgba(29,26,54,0.18);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 20px 40px -16px rgba(29,26,54,0.25);
  border-color: rgba(200, 152, 63, 0.35);
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(233,193,120,0.18), rgba(233,193,120,0.05));
  color: var(--gold-deep);
  border: 1px solid rgba(200, 152, 63, 0.25);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--on-cream);
}
.card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-cream-mute);
  margin: 0;
}

.cta-row {
  text-align: center;
  margin-top: 48px;
}
.cta-fineprint {
  font-size: 13px;
  color: var(--on-cream-mute);
  margin: 14px 0 0;
}

/* ============================== STEPS ============================== */
.steps {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 140px) 0;
}
.steps__list {
  list-style: none;
  padding: 0; margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 740px) { .steps__list { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 1020px) { .steps__list { grid-template-columns: repeat(4, 1fr); } }

.step {
  padding: 28px 24px 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(244,238,219,0.04), rgba(244,238,219,0.01));
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.step:hover { border-color: rgba(233,193,120,0.35); transform: translateY(-3px); }
.step__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
}

/* ============================== VOICES (quote) ============================== */
.voices {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 130px) 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(160,124,255,0.10), transparent 70%),
    rgba(13, 17, 48, 0.5);
}
.voices__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad);
}
.voices__quote {
  width: 36px; height: auto;
  color: var(--gold);
  opacity: 0.55;
  margin: 0 auto 24px;
}
.voices__quote-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 22px;
  font-style: normal;
}
.voices__quote-text em { font-style: italic; color: var(--gold-soft); }
.voices__attr {
  color: var(--ink-mute);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.voices__note {
  color: var(--ink-faint);
  font-size: 13px;
  font-style: italic;
  max-width: 520px;
  margin: 16px auto 0;
}

/* ============================== EXPECT ============================== */
.expect {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 140px) 0;
}
.expect__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 920px) {
  .expect__grid { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
}
.expect__lead {
  color: var(--ink-mute);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}
.expect__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.expect__list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 18px;
  align-items: start;
}
.expect__list strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--sans);
  font-size: 16px;
  margin-bottom: 4px;
}
.expect__list p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.6;
}
.check, .x {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.check {
  background: rgba(233,193,120,0.15);
  color: var(--gold);
  border: 1px solid rgba(233,193,120,0.35);
}
.x {
  background: rgba(244,238,219,0.05);
  color: var(--ink-mute);
  border: 1px solid var(--line-dark);
}

/* ============================== BIG CTA ============================== */
.bigcta {
  position: relative; z-index: 2;
  padding: clamp(70px, 10vw, 110px) 0;
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(233,193,120,0.10), transparent 70%);
}
.bigcta__inner { max-width: 720px; margin: 0 auto; padding: 0 var(--pad); }
.bigcta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.bigcta__sub {
  color: var(--ink-mute);
  font-size: 17px;
  margin: 0 0 30px;
}
.bigcta__fine {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin: 22px 0 0;
  text-transform: uppercase;
}

/* ============================== FAQ ============================== */
.faq { position: relative; z-index: 2; padding: clamp(80px, 11vw, 130px) 0; }
.faq__list {
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
}
.faq__item {
  border-bottom: 1px solid var(--line-dark);
  padding: 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  position: relative;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 18px; line-height: 1;
  transition: transform .25s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.faq__item[open] summary::after {
  content: "−";
  background: rgba(233,193,120,0.12);
  border-color: rgba(233,193,120,0.4);
  transform: translateY(-50%) rotate(180deg);
}
.faq__item summary:hover { color: var(--gold-soft); }
.faq__body {
  padding: 0 0 24px;
  color: var(--ink-mute);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 760px;
}
.faq__body em { color: var(--gold-soft); font-style: italic; }

/* ============================== FINAL CTA ============================== */
.finalcta {
  position: relative; z-index: 2;
  text-align: center;
  padding: clamp(80px, 11vw, 140px) 0;
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(50% 80% at 50% 0%, rgba(160,124,255,0.12), transparent 70%);
}
.finalcta__inner { max-width: 700px; margin: 0 auto; padding: 0 var(--pad); }
.finalcta__star {
  width: 28px; height: 28px;
  color: var(--gold);
  margin: 0 auto 26px;
  filter: drop-shadow(0 0 12px rgba(233,193,120,0.5));
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .finalcta__star { animation: none; }
}
.finalcta__copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 30px;
  letter-spacing: -0.005em;
}

/* ============================== FOOTER ============================== */
.site-footer {
  position: relative; z-index: 2;
  background: #090c25;
  border-top: 1px solid var(--line-dark);
  padding: 60px 0 30px;
  font-size: 14px;
  color: var(--ink-mute);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 0 var(--pad);
}
@media (min-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 2fr; gap: 80px; }
}
.footer__tag { margin: 14px 0 0; font-style: italic; color: var(--ink-faint); }
.footer__disclosure h4 {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 10px;
  font-weight: 600;
}
.footer__disclosure h4 + p { margin-bottom: 20px; }
.footer__disclosure p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-mute);
}
.footer__disclosure a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-color: rgba(244, 211, 155, 0.35);
  text-underline-offset: 3px;
}
.footer__disclosure a:hover { text-decoration-color: var(--gold); }
.footer__disclosure strong { color: var(--ink); }

.footer__bottom {
  margin-top: 40px;
  padding: 20px var(--pad) 0;
  border-top: 1px solid var(--line-dark);
  font-size: 12.5px;
  color: var(--ink-faint);
  text-align: center;
}
.footer__bottom em { font-style: italic; }

/* ============================== ACCESSIBILITY UTILS ============================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

/* Focus states */
a:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
