:root {
  --night: #18251c;
  --pine: #526b45;
  --cream: #d8d1b8;
  --steel: #6e7470;
  --foliage: #d7e65a;
  --marker: #ff7a30;
  --max: 920px;
  --pad: clamp(20px, 4vw, 32px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  color: var(--cream);
  background: var(--night);
  line-height: 1.65;
}

a { color: var(--foliage); }
img { max-width: 100%; height: auto; display: block; }

.bottom-dock {
  position: static;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 var(--pad) 28px;
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
}
.bottom-dock a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 209, 184, 0.18);
  background: rgba(82, 107, 69, 0.35);
}
.bottom-dock a:hover { background: rgba(82, 107, 69, 0.65); }

.hero.editorial-type {
  padding: calc(72px + var(--pad)) var(--pad) 56px;
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
}
.hero-copy { max-width: 640px; margin-bottom: 32px; }
.eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marker);
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  line-height: 0.95;
  font-weight: 700;
}
.tagline {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--steel);
  max-width: 52ch;
}
.hero-art {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 209, 184, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.hero-art img { width: 100%; object-fit: cover; max-height: 420px; }

main {
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
}

.section-intro { margin-bottom: 28px; }
.section-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}
.section-intro p { margin: 0; color: var(--steel); max-width: 60ch; }

.features.prose-column { margin-bottom: 72px; }
.prose-block {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(110, 116, 112, 0.35);
}
.prose-block h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--foliage);
}
.prose-block p { margin: 0 0 18px; max-width: 68ch; }

.inline-thumb {
  margin: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(120px, 220px) 1fr;
  align-items: start;
}
.inline-thumb img {
  border-radius: 14px;
  border: 1px solid rgba(216, 209, 184, 0.14);
}
.inline-thumb figcaption {
  font-size: 0.92rem;
  color: var(--steel);
  align-self: center;
}

.legal { margin-bottom: 56px; }
.legal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.legal-col p { margin: 0 0 14px; }

.site-footer {
  border-top: 1px solid rgba(110, 116, 112, 0.35);
  padding: 24px var(--pad) 40px;
  text-align: center;
  color: var(--steel);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .legal-columns { grid-template-columns: 1fr; }
  .inline-thumb { grid-template-columns: 1fr; }
}
