/* =============================================================
   Sirens & Kings — site styles
   Black + white base, shared between both brands.
   Accents (used sparingly): Sirens red (Sounds & Sirens brand
   red #D81E2C) + TFAK gold (The Fox & King #E9B23A).
   Single stylesheet, no build step. Edit tokens in :root.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #0b0b0e;   /* near-black base */
  --bg-2:      #141419;
  --bg-3:      #1c1c24;
  --line:      #262631;
  --line-2:    #383843;
  --text:      #f5f4f2;   /* near-white base */
  --muted:     #a7a8b1;
  --muted-2:   #777884;

  /* The Fox & King — gold */
  --gold:      #e9b23a;
  --gold-2:    #f3c869;
  --gold-deep: #c9922b;

  /* Sounds & Sirens — red */
  --siren:     #d81e2c;
  --siren-2:   #ff5a68;
  --siren-deep:#7e1018;

  /* red -> gold join, used for the "&", dividers, small details */
  --join: linear-gradient(120deg, var(--siren) 12%, var(--gold) 88%);

  --font-display: "Anton", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 11px;
  --gap: clamp(1rem, 3vw, 2rem);
  --shadow: 0 18px 50px -20px rgba(0,0,0,.8);
  --shadow-sm: 0 8px 24px -12px rgba(0,0,0,.72);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* Subtle ambient tint — a whisper of both brand colors */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -8%, rgba(233,178,58,.07), transparent 60%),
    radial-gradient(900px 500px at 0% 12%, rgba(216,30,44,.06), transparent 55%);
  pointer-events: none; z-index: 0;
}

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: #17130a;
  padding: .6rem 1rem; border-radius: 8px; font-weight: 700;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }

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

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
main { position: relative; z-index: 1; }
section { position: relative; }
.section { padding-block: clamp(3.4rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
/* thin red->gold divider on top of the alternate sections */
.section--alt::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: var(--join); opacity: .85;
}

/* ---------- Typography ---------- */
.display { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; line-height: .95; letter-spacing: .01em; }
h1, h2, h3 { font-weight: 700; line-height: 1.15; letter-spacing: -.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .22em; color: var(--gold); margin-bottom: 1rem;
}
/* the small tick uses the red->gold join */
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--join); display: inline-block; border-radius: 2px; }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .01em; line-height: .98; font-size: clamp(2rem, 5.4vw, 3.2rem); }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.08rem; }

.lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--muted); }
.muted { color: var(--muted); }
.text-gold { color: var(--gold); }
.text-siren { color: var(--siren); }

/* red -> gold gradient text for the joining "&" and "×" */
.hero h1 .amp, .brand-word .amp, .partner-strip .p-x {
  background: var(--join);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  border: 1px solid transparent; background: var(--btn-bg);
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; }

/* Primary = Sirens red */
.btn-primary { background: var(--siren); color: #fff; box-shadow: 0 10px 30px -12px rgba(216,30,44,.65); }
.btn-primary:hover { background: #e5323c; }
/* Outline hover = TFAK gold */
.btn-outline { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(233,178,58,.06); }
.btn-ghost { color: var(--text); }
.btn-ghost:hover { color: var(--gold); }
.btn-sm { padding: .6rem 1.05rem; font-size: .9rem; }
.btn-block { width: 100%; }

.btn .ext { transition: transform .18s var(--ease); }
.btn:hover .ext { transform: translate(2px,-2px); }

/* Pending / not-yet-configured link (placeholder URL) */
.btn.is-pending, a.is-pending { opacity: .55; cursor: not-allowed; transform: none !important; position: relative; }
.btn.is-pending::after {
  content: "Coming soon";
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--bg-3); color: var(--muted); border: 1px solid var(--line-2);
  font-size: .72rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap;
  padding: .3rem .55rem; border-radius: 7px; opacity: 0; pointer-events: none;
  transition: opacity .16s var(--ease);
}
.btn.is-pending:hover::after, .btn.is-pending:focus-visible::after { opacity: 1; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,14,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(11,11,14,.9); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand svg { width: 36px; height: 36px; }
.brand-word { font-family: var(--font-display); text-transform: uppercase; font-size: 1.18rem; letter-spacing: .06em; line-height: 1; }
.brand-word .amp { margin-inline: .06em; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a { padding: .5rem .85rem; border-radius: 8px; font-weight: 500; font-size: .96rem; color: var(--muted); transition: color .16s var(--ease), background .16s var(--ease); }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { content: ""; display: block; height: 2px; width: 60%; margin: 2px auto 0; background: var(--join); border-radius: 2px; }
.nav-cta { margin-left: .4rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.02);
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); background: var(--gold); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); background: var(--siren); }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: rgba(11,11,14,.98); border-bottom: 1px solid var(--line);
    padding: .8rem clamp(1.2rem, 5vw, 2rem) 1.4rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .24s var(--ease), opacity .24s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .85rem .6rem; font-size: 1.05rem; }
  .nav-links a.active::after { margin: 4px 0 0; width: 30px; }
  .nav-cta { margin: .5rem 0 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,14,.74) 0%, rgba(11,11,14,.62) 34%, rgba(11,11,14,.86) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11,11,14,.72) 0%, rgba(11,11,14,.15) 60%);
}
.hero-inner { display: flex; flex-direction: column; justify-content: center; min-height: min(88vh, 760px); padding-block: clamp(4rem, 12vh, 8rem); max-width: 42rem; }
.hero h1 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(3.1rem, 12vw, 6.6rem); line-height: .9; letter-spacing: .005em; text-shadow: 0 2px 30px rgba(0,0,0,.5); }
.hero .lead { margin-top: 1.4rem; color: #e9e7e2; max-width: 34rem; }
.hero .btn-row { margin-top: 2.2rem; }
.hero-tag { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem .9rem; color: var(--muted); font-size: .9rem; }
.hero-tag span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.hero-tag span:nth-child(even) .dot { background: var(--siren); }

/* ---------- Sub-page hero ---------- */
.hero--sub .hero-inner { min-height: auto; padding-block: clamp(3.4rem, 10vh, 5.5rem); max-width: 48rem; }
.hero--sub h1 { font-size: clamp(2.6rem, 9vw, 5rem); }
.hero--sub .hero-media img { object-position: center 40%; }

/* ---------- Callout (mission / closing line) ---------- */
.callout { border-left: 3px solid var(--gold); border-image: linear-gradient(180deg, var(--siren), var(--gold)) 1; background: var(--bg-2); padding: 1.3rem 1.5rem; }
.callout p { color: var(--text); font-size: 1.06rem; }
.callout .eyebrow { margin-bottom: .6rem; }

/* ---------- Partnership strip ---------- */
.partner-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(.8rem, 4vw, 2.4rem); text-align: center; }
.partner-strip .p-brand { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: clamp(1.15rem, 3.4vw, 1.9rem); color: var(--text); transition: color .16s var(--ease); }
.partner-strip a.p-brand:hover { color: var(--gold); }
.partner-strip .p-x { font-size: clamp(1rem, 3vw, 1.5rem); font-weight: 700; }

/* ---------- Content split (image + text) ---------- */
.split { display: grid; gap: clamp(1.6rem, 5vw, 3.6rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.05fr 1fr; }
  .split.reverse .split-media { order: 2; }
}
.split-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split-body h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.9rem, 4.6vw, 2.8rem); line-height: 1; }
.split-body p { color: var(--muted); margin-top: 1rem; }
.split-body .btn-row { margin-top: 1.6rem; }

figure { margin: 0; }
figcaption { font-size: .82rem; color: var(--muted-2); margin-top: .6rem; letter-spacing: .01em; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: clamp(1.1rem, 3vw, 1.8rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .cards.three { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards.three { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card-media { position: relative; overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-tag { position: absolute; top: .8rem; left: .8rem; background: rgba(11,11,14,.8); border: 1px solid var(--line-2); color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 7px; backdrop-filter: blur(6px); }
.card:nth-child(even) .card-tag { color: var(--siren-2); }
.card-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card-body h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .01em; font-size: 1.5rem; line-height: 1; }
.card-body p { color: var(--muted); font-size: .98rem; }
.card-body .card-link { margin-top: auto; }
.card-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold); font-weight: 600; font-size: .95rem; }
.card-link .ext { transition: transform .18s var(--ease); }
.card-link:hover .ext { transform: translate(2px,-2px); }

/* ---------- Pillars ---------- */
.pillars { display: grid; gap: clamp(1rem, 3vw, 1.6rem); grid-template-columns: 1fr; }
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.5rem 1.4rem; }
.pillar .p-ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(233,178,58,.12); color: var(--gold); border: 1px solid rgba(233,178,58,.25); margin-bottom: 1rem; }
/* alternate the middle icon to red so both brand colors appear */
.pillar:nth-child(2) .p-ico { background: rgba(216,30,44,.12); color: var(--siren-2); border-color: rgba(216,30,44,.3); }
.pillar .p-ico svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.12rem; }
.pillar p { color: var(--muted); margin-top: .5rem; font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band { border-radius: var(--radius); overflow: hidden; position: relative; background: linear-gradient(120deg, #16161d, #1d1d26); border: 1px solid var(--line-2); padding: clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .55; background: radial-gradient(600px 200px at 82% -20%, rgba(233,178,58,.22), transparent 60%), radial-gradient(500px 200px at 10% 120%, rgba(216,30,44,.2), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem, 5vw, 3rem); line-height: 1; }
.cta-band p { color: var(--muted); margin: 1rem auto 0; max-width: 46ch; }
.cta-band .btn-row { justify-content: center; margin-top: 1.8rem; }

/* ---------- Forms ---------- */
.form-wrap { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .45rem; }
.field .req { color: var(--siren); }
.field-hint { display: block; font-size: .82rem; color: var(--muted-2); margin-top: .4rem; }

.input, .textarea, .select {
  width: 100%; padding: .8rem .95rem; font: inherit; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(233,178,58,.18); }
.textarea { resize: vertical; min-height: 140px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a7a8b1' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.4rem;
}
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: var(--siren); box-shadow: 0 0 0 3px rgba(216,30,44,.18); }
.field-error { display: none; color: var(--siren-2); font-size: .82rem; margin-top: .4rem; font-weight: 500; }
.field.has-error .field-error { display: block; }

/* Honeypot (spam trap) — hidden from users */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { display: none; margin-bottom: 1.2rem; }
.form-status.show { display: block; }
.alert { display: flex; gap: .7rem; align-items: flex-start; padding: .95rem 1.1rem; border-radius: 11px; font-size: .95rem; border: 1px solid var(--line-2); background: var(--bg-2); }
.alert svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.alert-success { border-color: rgba(74,222,128,.4); background: rgba(34,197,94,.1); color: #b7f4c9; }
.alert-success svg { color: #4ade80; }
.alert-error { border-color: rgba(216,30,44,.5); background: rgba(216,30,44,.12); color: #ffb9be; }
.alert-error svg { color: var(--siren-2); }
.alert a { color: inherit; text-decoration: underline; font-weight: 600; }

.btn[aria-busy="true"] { pointer-events: none; opacity: .85; }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .7s linear infinite; display: none; }
.btn[aria-busy="true"] .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-meta { display: grid; gap: 1.1rem; }
.contact-meta .cm { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem 1.2rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.contact-meta .cm .cm-ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex: none; background: rgba(233,178,58,.12); color: var(--gold); border: 1px solid rgba(233,178,58,.22); }
.contact-meta .cm:nth-child(2) .cm-ico { background: rgba(216,30,44,.12); color: var(--siren-2); border-color: rgba(216,30,44,.28); }
.contact-meta .cm-ico svg { width: 20px; height: 20px; }
.contact-meta h3 { font-size: 1.02rem; }
.contact-meta p { color: var(--muted); font-size: .95rem; margin-top: .2rem; }
.contact-meta a { color: var(--gold); }

/* ---------- TODO placeholder marker (editor-visible) ---------- */
.todo { background: rgba(216,30,44,.12); border: 1px dashed rgba(216,30,44,.5); color: #ff9ba1; font-size: .8rem; padding: .1rem .4rem; border-radius: 5px; font-weight: 600; letter-spacing: .02em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(2.6rem, 6vw, 4rem); margin-top: clamp(2rem,5vw,4rem); position: relative; z-index: 1; }
.site-footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: var(--join); opacity: .85; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); max-width: 38ch; font-size: .95rem; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-2); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { color: var(--muted); font-size: .96rem; transition: color .16s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-col a .ext { opacity: .7; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; justify-content: space-between; color: var(--muted-2); font-size: .86rem; }
.footer-bottom .partnership { color: var(--muted); }
.footer-bottom .partnership b { color: var(--text); font-weight: 600; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .card, .card-media img { transition: none !important; }
}

/* ---------- Small helpers ---------- */
.stack-sm > * + * { margin-top: .8rem; }
.mt-2 { margin-top: 2rem; }
.center { text-align: center; margin-inline: auto; }
.prose p + p { margin-top: 1rem; }
.prose p { color: var(--muted); }
