@font-face {
  font-family: "Right Grotesk";
  src: url("../fonts/PPRightGrotesk-CompactDark.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111111;
  --paper: #f6f2ea;
  --surface: #ffffff;
  --muted: #5f5b53;
  --line: rgba(17, 17, 17, 0.14);
  --lime: #c9ff3f;
  --coral: #ff694d;
  --cyan: #70dfff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Neue Montreal", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 234, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Right Grotesk", Impact, sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.78;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 20px;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-links a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.button {
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero {
  padding: clamp(74px, 9vw, 128px) 0 clamp(42px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 980px;
  font-family: "Right Grotesk", Impact, sans-serif;
  font-size: clamp(58px, 10vw, 142px);
  text-transform: uppercase;
}

h2 {
  margin-top: 48px;
  font-size: clamp(31px, 5vw, 58px);
}

h3 {
  margin-top: 30px;
  font-size: clamp(23px, 3vw, 32px);
}

.lead {
  max-width: 830px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 27px);
}

.hero-media {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.section {
  padding: clamp(52px, 7vw, 86px) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.article {
  max-width: 820px;
}

.article p,
.article li {
  color: #343129;
}

.article ul,
.article ol {
  padding-left: 1.2em;
}

.article li + li {
  margin-top: 10px;
}

.info-panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.info-panel {
  position: sticky;
  top: 98px;
  padding: 22px;
}

.info-panel h2,
.info-panel h3 {
  margin-top: 0;
}

.info-panel a {
  display: block;
  padding: 10px 0;
}

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

.card {
  padding: 22px;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 6px;
}

.meta {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.callout {
  margin: 34px 0;
  padding: 22px;
  border-left: 5px solid var(--lime);
  background: rgba(255, 255, 255, 0.62);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 28px;
}

.footer-brand {
  font-family: "Right Grotesk", Impact, sans-serif;
  font-size: 58px;
  line-height: 0.8;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .content-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .info-panel {
    position: static;
  }

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

  .hero-media img {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
