:root {
  color-scheme: light;
  --ink: #202322;
  --soft-ink: #4d5652;
  --muted-ink: #69736f;
  --paper: #fbfaf7;
  --stone: #efede6;
  --mist: #dfe7e2;
  --green: #315c4c;
  --green-dark: #193f34;
  --blue: #243f58;
  --clay: #8c5841;
  --line: rgba(32, 35, 34, 0.14);
  --shadow: 0 22px 50px rgba(39, 45, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 18px;
  line-height: 1.62;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

a {
  color: var(--green-dark);
  text-decoration-color: rgba(49, 92, 76, 0.34);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(18px);
}

.site-name {
  display: grid;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
}

.site-name span:first-child {
  font-size: 1.02rem;
  font-weight: 700;
}

.site-name span:last-child {
  color: var(--muted-ink);
  font-size: 0.82rem;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
}

.site-nav a {
  color: var(--soft-ink);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.section-wrap,
.section-band {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.section-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: clamp(54px, 8vw, 108px);
  padding-bottom: clamp(54px, 8vw, 108px);
}

.section-band {
  padding-top: clamp(50px, 7vw, 88px);
  padding-bottom: clamp(50px, 7vw, 88px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  min-height: auto;
  padding-top: clamp(34px, 5vw, 60px);
  padding-bottom: clamp(34px, 5vw, 60px);
  background:
    linear-gradient(120deg, rgba(223, 231, 226, 0.92), rgba(251, 250, 247, 0.9) 56%),
    radial-gradient(circle at 82% 22%, rgba(140, 88, 65, 0.16), transparent 32%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.6vw, 4.05rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.48;
}

.lead.small {
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.portrait {
  margin: 0;
}

.portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(32, 35, 34, 0.1);
  box-shadow: var(--shadow);
}

.portrait figcaption {
  max-width: 360px;
  margin-top: 14px;
  color: var(--muted-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.4;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.45fr);
  gap: clamp(46px, 9vw, 126px);
}

.content-grid > :first-child {
  min-width: 0;
}

.prose p {
  margin: 0 0 22px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.issue-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.issue-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.muted {
  background: var(--stone);
}

.answers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(42px, 6vw, 72px);
}

.answers article,
.details > div {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.54);
}

.answers p,
.details p {
  margin: 14px 0 0;
  color: var(--soft-ink);
  font-size: 1rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.practical {
  background: var(--mist);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 86px);
}

.details {
  display: grid;
  gap: 18px;
}

address {
  margin-top: 14px;
  color: var(--soft-ink);
  font-style: normal;
}

.contact {
  background: var(--green-dark);
  color: white;
}

.contact .eyebrow,
.contact .lead,
.contact .prose,
.contact .prose p {
  color: rgba(255, 255, 255, 0.86);
}

.contact a {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.42);
}

.contact-lines {
  display: grid;
  gap: 2px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-lines a {
  font-size: 1.12rem;
  font-weight: 700;
}

.contact-lines span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.privacy {
  padding-top: 38px;
  padding-bottom: 38px;
  color: var(--muted-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.privacy h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.5rem;
}

.privacy p {
  max-width: 820px;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .content-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait {
    max-width: 430px;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: static;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .site-nav a {
    padding: 5px 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  .issue-list {
    grid-template-columns: 1fr;
  }

  .answers article,
  .details > div {
    padding: 22px;
  }

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