:root {
  --bg: #fff8f1;
  --paper: #ffffff;
  --ink: #261f1c;
  --muted: #655d58;
  --line: #eadbd1;
  --red: #c94b38;
  --red-dark: #8f2f25;
  --mint: #c7eadb;
  --yellow: #ffe08a;
  --blue: #20384a;
  --shadow: 0 20px 60px rgba(47, 33, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 42px);
  background: rgba(255, 248, 241, 0.88);
  border-bottom: 1px solid rgba(234, 219, 209, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  color: #fff;
  background: var(--red);
  padding: 10px 14px;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  align-items: end;
  overflow: hidden;
  padding: 112px 18px 44px;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(28, 18, 14, 0.26), rgba(28, 18, 14, 0.74)),
    linear-gradient(90deg, rgba(35, 21, 17, 0.68), rgba(35, 21, 17, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.eyebrow,
.section-kicker,
.status-label {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 10vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 9vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.3vw, 24px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(143, 47, 37, 0.32);
}

.button.secondary,
.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button.dark {
  color: #fff;
  background: var(--blue);
}

.status-band {
  display: grid;
  gap: 18px;
  padding: 22px 18px;
  color: #fff;
  background: var(--blue);
}

.status-copy {
  display: grid;
  gap: 4px;
}

.status-copy strong {
  font-size: clamp(28px, 8vw, 50px);
  line-height: 1;
}

.status-copy span:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.status-link {
  align-self: center;
  justify-self: start;
  color: var(--blue);
  background: var(--mint);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration: none;
}

.section {
  padding: 64px 18px;
}

.section-kicker {
  color: var(--red);
}

.split {
  display: grid;
  gap: 24px;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 7vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

p {
  margin: 0;
}

.copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  gap: 14px;
  background: #fff;
}

.media-proof {
  display: grid;
  gap: 24px;
  background: #fff;
}

.media-proof-copy {
  display: grid;
  max-width: 980px;
  gap: 14px;
}

.media-proof-copy p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.media-proof-grid {
  display: grid;
  gap: 14px;
}

.media-frame {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--blue);
  border-radius: 8px;
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.video-frame video {
  background: var(--blue);
}

.card {
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-icon {
  width: fit-content;
  color: var(--red-dark);
  background: var(--yellow);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 900;
}

.card p,
.seo-text p,
.news-header p,
.timeline p {
  color: var(--muted);
}

.statement {
  background: linear-gradient(90deg, var(--mint), #f9edc9);
}

.statement-panel {
  display: grid;
  gap: 24px;
  max-width: 940px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 19px;
  font-weight: 750;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  content: "✓";
}

.seo-text {
  display: grid;
  gap: 18px;
  max-width: 1040px;
}

.seo-text h2 {
  max-width: 900px;
}

.seo-text p {
  max-width: 820px;
  font-size: 18px;
}

.news {
  width: 100%;
  max-width: none;
  background: #fff;
}

.news-header {
  display: grid;
  width: 100%;
  gap: 12px;
  margin-bottom: 24px;
}

.timeline {
  display: grid;
  width: 100%;
  gap: 14px;
}

.timeline article {
  display: grid;
  width: 100%;
  gap: 8px;
  padding: 20px;
  border-left: 5px solid var(--red);
  background: var(--bg);
  border-radius: 0 8px 8px 0;
}

.timeline p {
  max-width: none;
}

.timeline time {
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 900;
}

.legal-hero {
  display: grid;
  gap: 18px;
  padding: 132px 18px 54px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(143, 47, 37, 0.92), rgba(32, 56, 74, 0.94)),
    var(--red-dark);
}

.legal-hero .eyebrow {
  color: var(--yellow);
}

.legal-hero p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 23px);
}

.legal-content {
  display: grid;
  gap: 14px;
  background: #fff;
}

.legal-panel {
  display: grid;
  max-width: 980px;
  gap: 14px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-panel h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.legal-panel p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.final-cta {
  display: grid;
  gap: 24px;
  padding: 54px 18px;
  color: #fff;
  background: var(--red-dark);
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 30px 18px 42px;
  color: rgba(255, 255, 255, 0.82);
  background: #17110f;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #fff;
}

@media (min-width: 760px) {
  .nav {
    display: flex;
  }

  .hero {
    padding: 136px clamp(30px, 6vw, 72px) 56px;
  }

  .status-band {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 28px clamp(30px, 6vw, 72px);
  }

  .section,
  .final-cta,
  .site-footer,
  .legal-hero {
    padding-left: clamp(30px, 6vw, 72px);
    padding-right: clamp(30px, 6vw, 72px);
  }

  .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    align-items: start;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-proof-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1120px) {
  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    font-size: 15px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media video {
    display: none;
  }

  .hero-media {
    background: linear-gradient(145deg, #8f2f25, #20384a);
  }
}
