:root {
  color-scheme: light;
  --ink: #17231d;
  --muted: #58655e;
  --paper: #f5f0e6;
  --paper-deep: #e8dfcf;
  --forest: #164b36;
  --rust: #8f321c;
  --line: #cfc5b5;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 300px;
  line-height: 1.65;
}
a {
  color: var(--forest);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}
a:hover {
  color: var(--rust);
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  background: var(--ink);
  color: white;
  padding: 0.65rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.site-header,
footer {
  max-width: 1180px;
  margin: auto;
  padding: 1.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.brand {
  color: var(--ink);
  font:
    700 1.7rem/1 Arial,
    sans-serif;
  letter-spacing: -0.08em;
  text-decoration: none;
}
.brand span {
  color: var(--rust);
}
.brand-small {
  font-size: 1.3rem;
}
nav {
  display: flex;
  gap: 1.5rem;
}
nav a {
  color: var(--ink);
  font:
    600 0.78rem/1 Arial,
    sans-serif;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}
main {
  overflow: hidden;
}
.hero,
.page-title,
.not-found {
  max-width: 1180px;
  margin: auto;
  padding: clamp(5rem, 12vw, 10rem) 2rem;
}
.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(
    circle at 78% 45%,
    rgba(184, 75, 45, 0.16),
    transparent 25%
  );
}
.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--rust);
  font:
    700 0.75rem/1.2 Arial,
    sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  text-wrap: pretty;
}
h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(3.2rem, 8.5vw, 7.8rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 500;
}
h1 em {
  color: var(--forest);
  font-weight: inherit;
}
.lead,
.dek {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
}
.hero .lead {
  margin: 2.2rem 0;
}
.primary-link {
  align-self: flex-start;
  border-bottom: 2px solid var(--rust);
  padding: 0.5rem 0;
  font:
    700 0.88rem/1 Arial,
    sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.latest,
.article-list {
  max-width: 1180px;
  margin: auto;
  padding: 5rem 2rem;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.section-heading h2,
.principles h2,
.newsletter h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 500;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.article-card {
  min-height: 320px;
  padding: 2rem;
  border-bottom: 1px solid var(--line);
}
.article-grid .article-card {
  border-right: 1px solid var(--line);
}
.article-grid .article-card:first-child {
  padding-left: 0;
}
.article-grid .article-card:last-child {
  border-right: 0;
}
.article-card h3 {
  margin: 0.8rem 0;
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 500;
}
.article-card h3 a {
  color: var(--ink);
  text-decoration: none;
}
.article-card .meta,
.story .meta {
  color: var(--muted);
  font:
    0.75rem/1.5 Arial,
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.read-more {
  display: inline-block;
  margin-top: 1rem;
  font:
    700 0.78rem/1 Arial,
    sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}
.principles {
  margin: 4rem 0 0;
  padding: clamp(4rem, 9vw, 8rem) max(2rem, calc((100vw - 1116px) / 2));
  color: #fff;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6rem;
}
.principles blockquote {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.principles a {
  color: #f0b5a4;
}
.newsletter {
  padding: clamp(4rem, 8vw, 7rem) max(2rem, calc((100vw - 1116px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 8vw, 7rem);
  background: var(--paper-deep);
}
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
label {
  font:
    700 0.78rem/1.4 Arial,
    sans-serif;
  letter-spacing: 0.05em;
}
input[type="email"] {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  padding: 0.8rem 0.2rem;
  color: var(--ink);
  background: transparent;
  font:
    1.15rem Georgia,
    serif;
}
input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid #e17655;
  outline-offset: 3px;
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
}
.consent input {
  margin-top: 0.32rem;
  inline-size: 1.1rem;
  block-size: 1.1rem;
}
button {
  align-self: flex-start;
  border: 0;
  padding: 0.9rem 1.3rem;
  color: white;
  background: var(--forest);
  font:
    700 0.8rem/1 Arial,
    sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  min-height: 1.6rem;
  margin: 0;
  font-weight: 700;
}
.page-title {
  padding-bottom: 3rem;
}
.page-title h1,
.not-found h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
}
.article-list {
  padding-top: 0;
}
.article-list .article-card {
  display: grid;
  grid-template-columns: 220px 1fr 1fr auto;
  gap: 2rem;
  align-items: baseline;
  min-height: auto;
  padding: 2rem 0;
}
.article-list .article-card h3,
.article-list .article-card p {
  margin: 0;
}
.story > header,
.story > .prose {
  max-width: 820px;
  margin: auto;
  padding-inline: 2rem;
}
.story > header {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: 3rem;
}
.story h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}
.story .dek {
  margin-top: 2rem;
}
.prose {
  padding-bottom: 7rem;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}
.prose > * {
  max-width: 680px;
}
.prose h2 {
  margin: 3rem 0 1rem;
  font-size: 2rem;
  line-height: 1.15;
}
.prose blockquote {
  border-left: 3px solid var(--rust);
  margin-left: 0;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 1.4rem;
}
.not-found {
  min-height: 66vh;
}
footer {
  align-items: end;
  border-top: 1px solid var(--line);
}
footer p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}
@media (max-width: 760px) {
  .site-header,
  footer {
    padding: 1.3rem 1.2rem;
  }
  .site-header nav {
    gap: 0.8rem;
  }
  .hero,
  .page-title,
  .not-found,
  .latest,
  .article-list {
    padding-inline: 1.2rem;
  }
  .hero {
    min-height: 68vh;
  }
  .article-grid,
  .principles,
  .newsletter {
    grid-template-columns: 1fr;
  }
  .article-grid .article-card {
    border-right: 0;
    padding-inline: 0;
  }
  .principles,
  .newsletter {
    padding-inline: 1.2rem;
    gap: 2.5rem;
  }
  .article-list .article-card {
    display: block;
  }
  .article-list .article-card > * {
    margin-bottom: 0.8rem;
  }
  .story > header,
  .story > .prose {
    padding-inline: 1.2rem;
  }
  footer {
    display: block;
  }
  footer nav {
    margin-top: 2rem;
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
