:root {
  --ink: #111318;
  --muted: #5f6672;
  --line: #d8dde4;
  --paper: #f7f4ee;
  --white: #ffffff;
  --charcoal: #171a20;
  --red: #b3202a;
  --gold: #b98a28;
  --green: #1d6b5c;
  --blue: #1d4f91;
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.topbar,
.navbar,
.section,
.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
  font-size: 19px;
}

.brand strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: #303640;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 117px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 12, 17, 0.34), rgba(10, 12, 17, 0.62)),
    url("https://images.unsplash.com/photo-1495020689067-958852a7765e?auto=format&fit=crop&w=2200&q=85");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: var(--paper);
  clip-path: polygon(0 82%, 100% 52%, 100% 100%, 0% 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 12vh 0 18vh;
  color: var(--white);
}

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

.hero .kicker {
  color: #f4c04f;
}

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

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 10vw, 132px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 25px);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-weight: 900;
}

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

.button.secondary {
  color: var(--white);
}

.hero-brief {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  z-index: 3;
  width: min(340px, calc(100% - 40px));
  padding: 22px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-brief span,
.tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-brief strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
}

.hero-brief p {
  margin-bottom: 0;
  color: var(--muted);
}

.ticker {
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 32px;
  padding: 14px 20px;
  animation: ticker 24s linear infinite;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  background: var(--gold);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 82px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 38px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.lead-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.lead-story h3 {
  max-width: 680px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
}

.lead-story p,
.vertical-grid p,
.project-list p,
.standards-row p,
.audience-grid span,
.contact-copy p {
  color: var(--muted);
}

.story-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.story-list strong,
.story-list span {
  display: block;
}

.story-list span {
  margin-top: 4px;
  color: var(--muted);
}

.stat-grid,
.vertical-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.stat-grid article,
.vertical-grid article,
.standards-row article,
.audience-grid article,
.project-list article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}

.stat-grid strong {
  display: block;
  color: var(--green);
  font-family: "Newsreader", Georgia, serif;
  font-size: 36px;
}

.stat-grid span {
  font-weight: 800;
}

.band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: #eceff3;
}

.vertical-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 900;
}

.project-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.feature-project {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(rgba(16, 18, 23, 0.16), rgba(16, 18, 23, 0.8)),
    url("https://images.unsplash.com/photo-1589903308904-1010c2294adc?auto=format&fit=crop&w=1200&q=85");
  background-size: cover;
  background-position: center;
}

.feature-project .tag {
  color: #f4c04f;
}

.feature-project h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 6vw, 76px);
  margin-bottom: 12px;
}

.feature-project p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
}

.feature-project a {
  width: fit-content;
  margin-top: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f4c04f;
  font-weight: 900;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.project-list article {
  min-height: 220px;
}

.standards {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.audience {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.audience-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 30px;
}

.contact-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 590px) minmax(0, 590px) minmax(20px, 1fr);
  gap: 0;
  padding: 0;
  background: var(--charcoal);
  color: var(--white);
}

.contact-copy {
  grid-column: 2;
  padding: 70px 34px 70px 0;
}

.contact-panel {
  grid-column: 3;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 70px 34px;
  background: var(--red);
}

.contact-panel a,
.contact-panel span {
  display: block;
  color: var(--white);
  font-size: clamp(20px, 3vw, 34px);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
}

.footer p {
  margin-bottom: 0;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .navbar {
    width: calc(100% - 28px);
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 80px 0 260px;
  }

  .hero-brief {
    left: 16px;
    right: 16px;
    bottom: 28px;
  }

  .section,
  .footer {
    width: calc(100% - 32px);
    padding: 58px 0;
  }

  .section-heading,
  .lead-story,
  .project-layout,
  .audience {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .vertical-grid,
  .project-list,
  .standards-row,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-project {
    min-height: 430px;
  }

  .contact-section {
    display: block;
  }

  .contact-copy,
  .contact-panel {
    padding: 52px 16px;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .lead-story {
    padding: 22px;
  }
}
