:root {
  --red: #d62828;
  --deep-red: #8f1010;
  --yellow: #fcbf49;
  --corn: #ffd166;
  --green: #2a9d8f;
  --cream: #fff5df;
  --black: #1d1d1d;
  --muted: #6d5f4f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(65, 20, 10, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 10%, rgba(252, 191, 73, .35), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(214, 40, 40, .18), transparent 26%),
    linear-gradient(135deg, #fff6df 0%, #ffe8b8 55%, #fff1d3 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(30deg, rgba(141, 42, 15, .24) 12%, transparent 12.5%, transparent 87%, rgba(141, 42, 15, .24) 87.5%, rgba(141, 42, 15, .24)),
    linear-gradient(150deg, rgba(141, 42, 15, .24) 12%, transparent 12.5%, transparent 87%, rgba(141, 42, 15, .24) 87.5%, rgba(141, 42, 15, .24));
  background-size: 70px 120px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

main {
  min-height: 60vh;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(60px, 8vw, 90px) auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: .95;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .5px;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 8.5rem);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

p {
  line-height: 1.75;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  border: 2px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  transition: .2s ease;
  text-align: center;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--black);
}

.btn.primary {
  background: var(--red);
  color: white;
}

.btn.secondary {
  background: var(--yellow);
  color: var(--black);
}

.text-link {
  font-weight: 900;
  color: var(--deep-red);
}

.page-hero {
  width: min(1050px, calc(100% - 32px));
  margin: 80px auto 40px;
  padding: clamp(34px, 5vw, 60px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  box-shadow: var(--shadow);
  border: 2px solid rgba(29, 29, 29, .08);
}

.page-hero p:last-child {
  max-width: 700px;
}

.cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(60px, 8vw, 90px) auto;
  padding: clamp(34px, 6vw, 55px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 25%),
    linear-gradient(135deg, var(--deep-red), var(--red));
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band p {
  color: rgba(255,255,255,.86);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .section {
    width: min(100% - 28px, 1180px);
  }
}

@media (max-width: 650px) {
  body {
    padding-bottom: 86px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .section {
    width: min(100% - 24px, 1180px);
    margin: 58px auto;
  }

  .page-hero {
    width: min(100% - 24px, 1050px);
    margin-top: 52px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .cta-band {
    width: min(100% - 24px, 1180px);
    padding: 34px 22px;
    border-radius: 22px;
  }

  .btn {
    width: 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: white;
    border: 2px solid var(--black);
    border-radius: 999px;
    padding: 16px 20px;
    font-weight: 900;
    box-shadow: 5px 5px 0 var(--black);
  }
}