@font-face {
  font-family: "Right Grotesk";
  src: url("./font/right-grotesk-compact-black.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --red: #d4121e;
  --red-deep: #9e0e16;
  --red-dark: var(--red-deep);
  --red-ink: #6e0a10;
  --ink: #1a1416;
  --ink-70: #443c3e;
  --paper: #ffffff;
  --paper-warm: #faf7f4;
  --line: rgba(26, 20, 22, 0.1);
  --yellow: #ffcb05;
  --black: var(--ink);
  --text: var(--ink);
  --white: var(--paper);
  --off-white: var(--paper-warm);
  --font-display: "Right Grotesk", "Archivo", "Anton", sans-serif;
  --font-text: "Montserrat", system-ui, sans-serif;
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;
  --s-32: 128px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-pill: 999px;
  --container: 1200px;
  --gutter: 24px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--s-4));
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--paper);
  background: rgba(26, 20, 22, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 48px));
  min-height: var(--header-height);
  margin-inline: auto;
  gap: var(--s-8);
}

.site-header__brand {
  position: relative;
  display: block;
  width: 150px;
  aspect-ratio: 2200 / 632;
  overflow: hidden;
  flex: 0 0 auto;
}

.site-header__brand img {
  position: absolute;
  top: -100%;
  left: -26.14%;
  width: 151.32%;
  max-width: none;
  height: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--paper-warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__nav a:not(.site-header__cta):hover,
.site-header__nav a:not(.site-header__cta):focus-visible {
  color: var(--yellow);
}

.site-header__nav .site-header__cta {
  min-height: 44px;
  padding-inline: var(--s-4);
  color: var(--paper);
  background: var(--red);
  border-radius: var(--r-sm);
}

.site-header__nav .site-header__cta:hover,
.site-header__nav .site-header__cta:focus-visible {
  background: var(--red-deep);
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  place-content: center;
  gap: 5px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.site-header__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: var(--r-pill);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  height: max(680px, 50vw);
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--red-ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(54, 5, 9, 0.9) 0%, rgba(110, 10, 16, 0.62) 32%, rgba(110, 10, 16, 0.06) 63%),
    linear-gradient(0deg, rgba(26, 20, 22, 0.28), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -4%;
  bottom: -15px;
  z-index: 3;
  width: 65%;
  height: 29px;
  background: var(--red);
  content: "";
  transform: rotate(-1.2deg);
  transform-origin: right bottom;
}

.hero-background,
.purpose-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background {
  object-fit: contain;
  object-position: right bottom;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 48px;
}

.brand-logo {
  position: relative;
  display: block;
  width: 240px;
  aspect-ratio: 2200 / 632;
  overflow: hidden;
  margin-bottom: 22px;
}

.brand-logo img {
  position: absolute;
  top: -100%;
  left: -26.14%;
  width: 151.32%;
  max-width: none;
  height: auto;
}

.hero-copy {
  width: 620px;
  max-width: 52%;
}

.hero-eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.story-media h2,
.purpose-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

.hero h1 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-size: clamp(56px, 6.3vw, 98px);
  line-height: 0.82;
  text-wrap: balance;
}

.hero h1 > span {
  display: block;
}

.hero h1 strong {
  display: inline-block;
  position: relative;
  z-index: 0;
  margin-top: 0.12em;
  padding: 0.02em 0.14em 0.08em;
  color: var(--paper);
  font-weight: 800;
  transform: rotate(-1.5deg);
}

.hero h1 strong::before {
  position: absolute;
  inset: 0.05em -0.03em 0;
  z-index: -1;
  background: var(--red);
  content: "";
  transform: skewX(-4deg);
}

.hero-copy > p:not(.hero-eyebrow):not(.action-message) {
  max-width: 440px;
  margin: 22px 0 28px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.video-button {
  display: flex;
  align-items: center;
  width: 350px;
  max-width: 100%;
  min-height: 78px;
  padding: 12px 22px;
  gap: 15px;
  color: var(--white);
  background: rgba(26, 20, 22, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--r-sm);
  cursor: pointer;
  text-align: left;
  transition: background-color 160ms ease, transform 160ms ease;
}

.video-button:hover {
  background: rgba(212, 18, 30, 0.34);
  transform: translateY(-2px);
}

.video-button:focus-visible,
.lead-submit:focus-visible,
.lead-form input:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.video-button strong {
  display: block;
  font-family: var(--font-text);
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.video-icon {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  font-size: 34px;
}

.action-message {
  min-height: 1.25em;
  margin: 8px 0 0;
  color: var(--paper-warm);
  font-size: 0.82rem;
}

.story-section {
  padding: var(--s-12) 0;
  background: var(--off-white);
}

.story-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  padding: 44px 12px;
  border-bottom: 1px solid var(--line);
}

.story-row:last-child {
  border-bottom: 0;
}

.section-kicker {
  margin: 0 0 3px;
  color: var(--red);
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-media h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

.story-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.story-media:first-child img {
  object-position: center 48%;
}

.story-row:nth-child(2) .story-media img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.story-copy {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-content: center;
  padding-top: 26px;
}

.story-icon {
  color: var(--red);
  font-size: 52px;
}

.story-copy h3 {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--font-text);
  font-size: 1.7rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.story-copy p {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.purpose-section {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: var(--red-dark);
}

.purpose-background {
  object-position: center 72%;
}

.purpose-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 64px;
  align-items: center;
  min-height: 330px;
  margin-block: 48px;
  padding: 48px 52px;
  background: linear-gradient(135deg, rgba(110, 10, 16, 0.97), rgba(70, 5, 10, 0.91));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(26, 20, 22, 0.28);
}

.purpose-heading {
  position: relative;
  padding-right: 50px;
  border-right: 1px solid rgba(255, 203, 5, 0.65);
}

.purpose-heading::before,
.purpose-heading::after{
  position: absolute;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 6.5rem;
  line-height: 1;
  opacity: 0.22;
}

.purpose-heading::before {
  top: 22px;
  left: -8px;
  content: "“";
}

.purpose-heading::after {
  right: 34px;
  bottom: -34px;
  content: "”";
}

.purpose-heading p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-family: var(--font-text);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.purpose-heading p::after {
  width: 44px;
  height: 2px;
  background: currentColor;
  content: "";
}

.purpose-heading h2 {
  position: relative;
  font-size: clamp(36px, 3.7vw, 56px);
  line-height: 0.96;
}

.purpose-copy > p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.28;
}

.purpose-closing {
  display: block;
  margin-top: 18px;
  font-family: var(--font-text);
  font-size: 1.65rem;
  text-transform: uppercase;
}

.lead-section {
  padding: var(--s-24) 0;
  background: var(--white);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: start;
}

.lead-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.lead-copy > p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--ink-70);
  line-height: 1.65;
}

.lead-form {
  padding: 30px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.lead-fields {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font: inherit;
}

.form-field input:focus-visible {
  border-color: var(--red);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--ink-70);
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.form-consent a {
  color: var(--red-dark);
}

.lead-submit {
  min-height: 50px;
  padding: 12px 28px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
}

.lead-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.form-status.is-warning {
  color: var(--red-dark);
}

.legal-section {
  padding: 96px 0;
  background: var(--paper-warm);
}

.legal-container {
  width: min(1160px, calc(100% - 56px));
  margin-inline: auto;
}

.legal-section-heading {
  margin-bottom: 44px;
}

.legal-section-heading h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.legal-section-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--ink-70);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 200ms ease;
}

.legal-panel[open] {
  border-color: rgba(212, 18, 30, 0.55);
}

.legal-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  list-style: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.legal-panel summary::-webkit-details-marker {
  display: none;
}

.legal-panel summary::marker {
  content: "";
}

.legal-panel-title {
  margin: 0;
  color: var(--ink);
  display: block;
  font-family: var(--font-text);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.legal-panel-title small {
  display: block;
  margin-top: 5px;
  color: var(--ink-70);
  font-family: var(--font-text);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.legal-plus {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.legal-plus::before,
.legal-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--yellow);
  content: "";
  transition: transform 250ms ease;
}

.legal-plus::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.legal-plus::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.legal-panel[open] .legal-plus::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.legal-content {
  max-width: none;
  padding: 24px 30px 30px;
}

.legal-content h3 {
  margin: 32px 0 10px;
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 12px;
  color: var(--ink-70);
  font-size: 0.96rem;
  line-height: 1.8;
}

.legal-content a {
  color: var(--red-dark);
  font-weight: 600;
}

.site-footer {
  padding: 56px 0 28px;
  color: var(--white);
  background: var(--red);
  border-top: 1px solid rgba(255, 203, 5, 0.28);
}

.site-footer__container {
  width: min(1160px, calc(100% - 56px));
  margin-inline: auto;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.7fr) minmax(240px, 1fr);
  gap: 48px;
  align-items: start;
}

.site-footer__about {
  max-width: 360px;
}

.site-footer__brand {
  display: inline-block;
  margin-bottom: 18px;
}

.site-footer__brand-logo {
  position: relative;
  display: block;
  width: 240px;
  aspect-ratio: 2200 / 632;
  overflow: hidden;
}

.site-footer__brand-logo img {
  position: absolute;
  top: -100%;
  left: -26.14%;
  width: 151.32%;
  max-width: none;
  height: auto;
}

.site-footer__about p,
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.7;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer__nav strong,
.site-footer__contact strong {
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 200ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.site-footer__contact a {
  overflow-wrap: anywhere;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.site-footer__legal a {
  font-size: 0.76rem;
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header__inner {
    width: min(100% - 32px, var(--container));
  }

  .site-header__toggle {
    display: grid;
  }

  .site-header__nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    padding: var(--s-4);
    align-items: stretch;
    flex-direction: column;
    gap: var(--s-1);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__nav a {
    justify-content: center;
    min-height: 48px;
  }

  .site-header__nav .site-header__cta {
    margin-top: var(--s-2);
  }

  .hero {
    height: 820px;
    min-height: 820px;
  }

  .hero-background {
    inset: 40px 0 0;
    width: 100%;
    height: calc(100% - 40px);
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(35, 4, 7, 0.92) 0%, rgba(83, 8, 13, 0.76) 34%, rgba(83, 8, 13, 0.12) 61%, rgba(26, 20, 22, 0.18) 100%),
      linear-gradient(90deg, rgba(26, 20, 22, 0.22), transparent 65%);
  }

  .hero::after {
    width: 82%;
    height: 22px;
  }

  .hero-content {
    align-items: flex-start;
  }

  .brand-logo {
    width: 220px;
    margin-bottom: 22px;
  }

  .brand-logo img {
    width: 151.32%;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 15vw, 4.8rem);
    line-height: 0.84;
  }

  .hero h1 strong {
    margin-top: 0.15em;
  }

  .hero-copy > p:not(.hero-eyebrow):not(.action-message) {
    max-width: 350px;
  }

  .story-row,
  .purpose-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .story-row {
    gap: 16px;
    padding-inline: 0;
  }

  .story-copy {
    padding-top: 0;
  }

  .story-media img {
    height: auto;
  }

  .purpose-grid {
    gap: 24px;
    width: min(100% - 32px, var(--container));
    min-height: 0;
    margin-block: 40px;
    padding: 34px 28px 36px;
    border-radius: 16px;
  }

  .purpose-section {
    height: auto;
    min-height: 0;
  }

  .purpose-heading {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 203, 5, 0.5);
  }

  .purpose-heading::before {
    top: 28px;
    left: -4px;
    font-size: 5.5rem;
  }
  
  .purpose-heading::after {
    right: 0;
    bottom: -22px;
    font-size: 5.5rem;
  }

  .purpose-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
    line-height: 0.98;
  }

  .purpose-copy > p {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .purpose-closing {
    margin-top: 20px;
    color: var(--yellow);
    font-size: 1.35rem;
  }

  .lead-section {
    padding: 56px 0;
  }

  .lead-grid {
    gap: 28px;
  }

  .lead-fields {
    grid-template-columns: 1fr;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .site-footer__about {
    grid-column: 1 / -1;
  }

  .legal-section {
    padding: 72px 0;
  }
}

@media (max-width: 460px) {
  .hero {
    height: 820px;
    min-height: 820px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 34px);
  }

  .hero-content > .brand-logo {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15.5vw, 4.1rem);
  }

  .hero-eyebrow {
    max-width: 260px;
    margin-bottom: 18px;
    font-size: 0.7rem;
  }

  .video-button {
    width: 270px;
    min-height: 64px;
    padding: 9px 14px;
  }

  .video-button strong {
    font-size: 1rem;
  }

  .video-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .purpose-grid {
    padding-inline: 22px;
  }

  .story-copy {
    grid-template-columns: 42px 1fr;
  }

  .story-icon {
    font-size: 38px;
  }

  .story-media h2 {
    font-size: 2rem;
  }

  .story-media img {
    height: auto;
  }

  .lead-form {
    padding: 22px;
  }

  .site-footer {
    padding-top: 46px;
  }

  .site-footer__container,
  .legal-container {
    width: min(100% - 40px, 1160px);
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__about {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .legal-section {
    padding: 72px 0;
  }

  .legal-panel summary {
    padding: 20px;
  }

  .legal-content {
    padding: 20px 20px 24px;
  }
}

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

  .video-button,
  .lead-submit {
    transition: none;
  }
}
