:root {
  --bg: #fbfaf6;
  --paper: #fffefa;
  --ink: #201e1b;
  --muted: #686057;
  --rule: #ddd6cb;
  --green: #2d8b3f;
  --green-dark: #1e6e30;
  --warm: #f2efe7;
  --quote: #35573d;
  --shadow: 0 18px 55px rgba(42, 35, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--bg);
  font-family: Georgia, "Times New Roman", serif;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  line-height: 1.68;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 254, 250, 0.94);
}

.site-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.article {
  width: 100%;
}

.hero-figure {
  margin: 0;
  width: 100%;
  max-height: 380px;
  overflow: hidden;
  background: var(--warm);
}

.hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: 50% 36%;
}

.article-inner {
  width: min(100% - 36px, 710px);
  margin: 0 auto;
  padding: 34px 0 56px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 16px;
  max-width: 690px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 6vw, 58px);
}

h2 {
  margin: 46px 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 4.5vw, 34px);
}

p {
  margin: 0 0 20px;
  font-size: 20px;
}

strong {
  font-weight: 700;
}

.disclosure {
  margin: 0 0 30px;
  padding: 14px 16px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
}

.emphasis {
  color: var(--quote);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.38;
}

.pull-quote {
  margin: 38px 0 10px;
  padding: 22px 24px;
  border-left: 5px solid var(--green);
  background: var(--warm);
  color: var(--quote);
  font-size: 27px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.28;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  margin: 32px 0 14px;
  padding: 16px 20px;
  border-radius: 7px;
  background: var(--green);
  box-shadow: var(--shadow);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 3px solid rgba(45, 139, 63, 0.35);
  outline-offset: 3px;
}

.legal {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.legal p {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 22px;
}

.redirect-card {
  width: min(100%, 620px);
  padding: 34px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.redirect-card h1 {
  font-size: clamp(30px, 6vw, 46px);
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero-figure,
  .hero-figure img {
    max-height: 240px;
  }

  .article-inner {
    width: min(100% - 28px, 710px);
    padding: 26px 0 44px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    margin-top: 38px;
    font-size: 25px;
  }

  p {
    font-size: 18px;
  }

  .emphasis {
    font-size: 22px;
  }

  .pull-quote {
    margin-top: 30px;
    padding: 18px 18px;
    font-size: 23px;
  }

  .cta {
    min-height: 58px;
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .article-inner {
    padding-top: 44px;
  }
}
