:root {
  --red: #cb1111;
  --ink: #111111;
  --muted: #6a6a6a;
  --line: #d0d2d4;
  --paper: #ffffff;
  --soft: #eeeeee;
  --soft-strong: #d0d2d4;
  --blush: #edd5d5;
  --black: #000000;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Arial", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(0, 0, 0, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
}

.brand-mark img {
  width: 118%;
  height: 118%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

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

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #fff;
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 78px) clamp(42px, 8vw, 86px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 950;
}

h1 span {
  color: var(--red);
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  color: rgba(255, 255, 255, 0.92);
}

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

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

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #a80e0e;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.16);
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 6vw, 78px);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
}

.intro-band p {
  max-width: 980px;
  margin: 0;
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.08;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 78px);
  scroll-margin-top: 86px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.mission-section p,
.audience-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid #fff;
  border-radius: 22px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--red);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 900;
}

.step-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.mission-section {
  display: block;
  background: #fff;
  text-align: center;
}

.mission-copy {
  max-width: 760px;
  margin: 0 auto;
}

.mission-copy h2 {
  font-size: clamp(3.5rem, 9vw, 6.4rem);
}

.mission-copy h2 span {
  display: block;
  color: var(--red);
}

.mission-copy p:last-child {
  max-width: 660px;
  margin: 28px auto 0;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  line-height: 1.18;
  color: var(--muted);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(58px, 8vw, 100px);
}

.mission-cards article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 270px;
  padding: 34px 28px;
  background: var(--soft);
  border-radius: 28px;
}

.mission-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 26px;
  background: var(--blush);
  border-radius: 22px;
}

.mission-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-cards h3 {
  max-width: 190px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.mission-cards p {
  max-width: 220px;
  margin: 14px auto 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
  color: var(--muted);
}

.brand-section {
  background: #fff;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 36px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.brand-feature {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.brand-feature img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.brand-feature div {
  padding: 28px;
}

.brand-feature p:last-child {
  color: var(--muted);
}

.brand-feature h3 a {
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.brand-feature h3 a:hover,
.brand-feature h3 a:focus-visible {
  color: var(--red);
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) 1fr;
  gap: clamp(32px, 6vw, 82px);
  background: var(--soft);
}

.audience-grid {
  display: grid;
  gap: 16px;
}

.audience-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.audience-grid p {
  color: var(--muted);
}

.audience-grid a {
  color: var(--red);
  font-weight: 900;
}

.contact-section {
  background: var(--black);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 7vw, 96px);
  max-width: 1160px;
  margin: 0 auto;
  color: #fff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-info {
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
  padding: clamp(20px, 4vw, 34px);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.contact-link,
.contact-note {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 22px;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-link {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 950;
  line-height: 1.1;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--red);
}

.contact-link span,
.contact-note span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-note {
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 6vw, 78px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(0, 0, 0, 0.96);
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    padding: 13px 14px;
    text-align: center;
  }

  .split-section,
  .mission-section,
  .brand-grid,
  .audience-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .mission-cards {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
  }

  .brand span:last-child {
    max-width: 132px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 84px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 32px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.15rem);
  }

  .hero-copy {
    margin-top: 18px;
  }

  .intro-band {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .intro-band p {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    text-align: left;
  }

  .contact-panel {
    gap: 26px;
  }

  .contact-info {
    padding: 14px;
  }

  .contact-link {
    font-size: 1rem;
  }

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

  .step-card {
    grid-template-columns: 1fr;
  }

  .step-card p {
    grid-column: auto;
  }
}
