:root {
  --ink: #17201a;
  --muted: #5b665e;
  --paper: #f6f8f1;
  --white: #ffffff;
  --red: #d71920;
  --green: #315f46;
  --teal: #32707c;
  --gold: #c89d42;
  --line: rgba(23, 32, 26, 0.14);
  --shadow: 0 26px 70px rgba(23, 32, 26, 0.17);
  color-scheme: light;
}

@font-face {
  font-family: "Hannover Sans";
  src: local("Segoe UI");
  font-weight: 400 800;
}

@font-face {
  font-family: "Hannover Serif";
  src: local("Georgia");
  font-weight: 600 800;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.08) 0 2px, transparent 2px 100%),
    var(--paper);
  background-size: 92px 92px;
  color: var(--ink);
  font-family: "Hannover Sans", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.nav-links {
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 20, 14, 0.78), rgba(4, 20, 14, 0.38) 46%, rgba(4, 20, 14, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
}

.hero-content {
  width: min(960px, calc(100% - 36px));
  padding: 150px 0 90px;
  margin-left: clamp(18px, 8vw, 110px);
}

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

.hero .eyebrow {
  color: #ffcb55;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Hannover Serif", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 15vw, 12rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 5.6vw, 5rem);
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.hero-copy {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
}

.hero-actions,
.strip-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: 12px 18px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 15px 36px rgba(215, 25, 32, 0.28);
}

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

.button.secondary-dark {
  color: var(--ink);
  background: #ffcb55;
  box-shadow: 0 15px 34px rgba(255, 203, 85, 0.16);
}

.button.text-link {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.photo-credit {
  position: absolute;
  right: clamp(16px, 3vw, 42px);
  bottom: 16px;
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  text-align: right;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.intro-text {
  display: flex;
  align-items: center;
  border-left: 6px solid var(--red);
  padding-left: clamp(18px, 3vw, 34px);
}

.intro-text p {
  max-width: 840px;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.quick-stats {
  display: grid;
  gap: 12px;
  margin: 0;
}

.quick-stats div {
  padding: 22px;
  border: 1px solid var(--line);
  background: #f9faf6;
}

.quick-stats dt {
  color: var(--green);
  font-family: "Hannover Serif", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.quick-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
}

.content-section,
.source-section {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

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

.feature-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(23, 32, 26, 0.07);
}

.feature-card.highlight {
  color: var(--white);
  background: linear-gradient(160deg, var(--green), var(--teal));
}

.card-number {
  width: fit-content;
  padding-top: 8px;
  border-top: 3px solid var(--red);
  color: var(--red);
  font-weight: 900;
}

.feature-card.highlight .card-number {
  color: #ffcb55;
  border-color: #ffcb55;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  width: fit-content;
  color: var(--green);
  font-weight: 800;
  text-decoration-color: rgba(49, 95, 70, 0.35);
  text-underline-offset: 4px;
}

.feature-card.highlight p {
  color: rgba(255, 255, 255, 0.88);
}

.shopping-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.shopping-strip .eyebrow {
  color: #ffcb55;
}

.shopping-strip h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.shopping-strip p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.shopping-strip .button.text-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.source-section {
  background: #eef5f0;
}

.source-section h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.source-section ul {
  max-width: 980px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: clamp(28px, 6vw, 72px);
}

.source-section li {
  break-inside: avoid;
  margin-bottom: 12px;
}

.source-section a {
  color: var(--green);
  font-weight: 700;
  text-decoration-color: rgba(49, 95, 70, 0.35);
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #101411;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a,
.footer-links a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .intro-band,
  .shopping-strip {
    grid-template-columns: 1fr;
  }

  .strip-actions {
    margin-top: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 82svh;
  }

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

  .hero-actions,
  .strip-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .photo-credit {
    left: 16px;
    right: 16px;
    text-align: left;
  }

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

  .feature-card {
    min-height: 300px;
  }

  .source-section ul {
    columns: 1;
  }

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