:root {
  --color-ink: #080604;
  --color-ink-soft: #130d09;
  --color-charcoal: #211711;
  --color-cream: #f3e7cf;
  --color-cream-deep: #dfcda9;
  --color-red: #ef3c2f;
  --color-red-dark: #b8241d;
  --color-orange: #f28c1b;
  --color-gold: #dfb246;
  --color-moss: #6e6a31;
  --color-white: #fffdf8;
  --color-muted: #baa98e;
  --shadow-soft: 0 18px 50px rgb(0 0 0 / 0.28);
  --shadow-card: 0 14px 34px rgb(0 0 0 / 0.22);
  --radius-sm: 0.55rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --container: 1180px;
  --font-display: "Arial Black", "Franklin Gothic Heavy", Impact, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--color-cream);
  background:
    radial-gradient(circle at 10% -10%, rgb(239 60 47 / 0.16), transparent 34rem),
    radial-gradient(circle at 95% 15%, rgb(242 140 27 / 0.10), transparent 32rem),
    var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: url("../assets/images/backgrounds/noise.png");
  mix-blend-mode: soft-light;
  z-index: 1000;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.06;
  text-wrap: balance;
}
h1, h2 { font-family: var(--font-display); letter-spacing: 0.015em; text-transform: uppercase; }
h1 { font-size: clamp(2.7rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { color: var(--color-cream-deep); }

::selection { background: var(--color-red); color: var(--color-white); }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 4px; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.section--cream {
  color: var(--color-ink);
  background:
    linear-gradient(rgb(243 231 207 / 0.95), rgb(239 222 191 / 0.95)),
    url("../assets/images/backgrounds/noise.png");
}
.section--cream p { color: #4d3b2c; }
.section--tight { padding-block: 3.5rem; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.2rem; }
.section-header > div { max-width: 760px; }
.section-header h2 { margin-bottom: 0.65rem; }
.section-header p { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 2px; background: currentColor; }
.section--cream .eyebrow { color: var(--color-red-dark); }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 68ch; }
.kicker { color: var(--color-gold); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.035em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red), #d52f23);
  box-shadow: 0 10px 30px rgb(239 60 47 / 0.25);
}
.button--primary:hover { box-shadow: 0 14px 38px rgb(239 60 47 / 0.38); }
.button--secondary { color: var(--color-cream); border-color: rgb(243 231 207 / 0.35); background: rgb(255 255 255 / 0.04); }
.button--secondary:hover { border-color: var(--color-gold); background: rgb(223 178 70 / 0.08); }
.button--dark { color: var(--color-cream); background: var(--color-ink); }
.button--youtube { color: white; background: #c92820; }
.button--youtube img, .button img { width: 1.1rem; height: 1.1rem; }
.text-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--color-orange); font-weight: 850; }
.text-link:hover { color: var(--color-gold); }

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

.skip-link { position: fixed; top: 0.5rem; left: 0.5rem; z-index: 3000; padding: 0.7rem 1rem; background: var(--color-cream); color: var(--color-ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.page-hero {
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid rgb(223 178 70 / 0.18);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  right: -10rem;
  top: 3rem;
  border: 1px solid rgb(223 178 70 / 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgb(239 60 47 / 0.025), 0 0 0 8rem rgb(242 140 27 / 0.02);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin-bottom: 1rem; }
.page-hero p { max-width: 720px; font-size: 1.12rem; }

.notice {
  padding: 1rem 1.1rem;
  border: 1px solid rgb(223 178 70 / 0.3);
  border-radius: var(--radius-sm);
  background: rgb(223 178 70 / 0.08);
  color: var(--color-cream-deep);
}
.notice strong { color: var(--color-cream); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
