:root {
  --ink: #172033;
  --muted: #5f6877;
  --paper: #f8f5ef;
  --white: #ffffff;
  --blue: #1766cc;
  --blue-dark: #0f3f8c;
  --red: #d9412f;
  --green: #2d7f5e;
  --line: rgba(23, 32, 51, 0.14);
  --shadow: 0 18px 48px rgba(23, 32, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--white);
}

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

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid currentColor;
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #151515;
}

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

.hero-image {
  object-fit: cover;
  object-position: center 32%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 13, 24, 0.86) 0%, rgba(9, 13, 24, 0.62) 38%, rgba(9, 13, 24, 0.12) 72%),
    linear-gradient(0deg, rgba(9, 13, 24, 0.72) 0%, rgba(9, 13, 24, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(56px, 9vh, 96px) clamp(18px, 7vw, 104px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcf59;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-size: clamp(4.6rem, 13vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(62px, 9vw, 116px) 0;
}

.intro {
  background: var(--white);
}

.intro-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro p,
.story-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.focus {
  background:
    linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.focus-card {
  min-height: 292px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.08);
}

.focus-number {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.focus-card:nth-child(2) .focus-number {
  color: var(--green);
}

.focus-card:nth-child(3) .focus-number {
  color: var(--red);
}

.focus-card p {
  color: var(--muted);
}

.appeals {
  background: var(--paper);
}

.appeals-heading {
  max-width: 760px;
}

.appeal-post {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.1);
}

.appeal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.appeal-post h3 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.appeal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: start;
}

.appeal-text p {
  color: var(--muted);
  font-size: 1.02rem;
}

.appeal-text p:last-child {
  margin-bottom: 0;
}

.appeal-text strong {
  color: var(--ink);
}

.appeal-text blockquote {
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--red);
  background: var(--paper);
}

.appeal-text blockquote p {
  margin: 0;
  color: var(--ink);
}

.appeal-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
}

.appeal-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.appeal-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.appeal-source {
  margin: 0;
}

.appeal-source img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2f2f2;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.14);
}

.appeal-source figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.story {
  background: #202020;
  color: var(--white);
}

.story .section-kicker {
  color: #ffcf59;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.facts div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.facts dt {
  margin-bottom: 4px;
  color: #ffcf59;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
}

.contact {
  background: var(--white);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-left: 5px solid var(--blue);
  background: var(--paper);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-panel a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--blue-dark);
}

.footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #151515;
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
}

@media (max-width: 840px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  .nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-image {
    object-position: 58% 34%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 13, 24, 0.92) 0%, rgba(9, 13, 24, 0.7) 48%, rgba(9, 13, 24, 0.2) 100%),
      linear-gradient(0deg, rgba(9, 13, 24, 0.78) 0%, rgba(9, 13, 24, 0) 54%);
  }

  .hero-content {
    width: min(620px, calc(100% - 36px));
    margin-left: 18px;
  }

  h1 {
    font-size: clamp(4.1rem, 22vw, 6.8rem);
  }

  .intro-grid,
  .story-grid,
  .contact-grid,
  .focus-grid,
  .appeal-layout {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: auto;
  }

  .focus-number {
    margin-bottom: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
    gap: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    margin-bottom: 44px;
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .appeal-post {
    padding: 20px;
  }

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