:root {
  --ink: #25342f;
  --muted: #60716a;
  --paper: #fbfaf5;
  --soft: #eef3e8;
  --leaf: #4e6c5c;
  --leaf-dark: #334d40;
  --sage: #dce8d5;
  --peach: #f3ddce;
  --gold: #d8a75d;
  --line: #d8dfd7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(37, 52, 47, 0.09);
  --radius: 24px;
  --content: 720px;
  --wide: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--leaf-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

a:hover {
  color: #172c22;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.7em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.6rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: -0.015em;
}

p,
ul,
ol {
  margin: 0 0 1.25em;
}

ul,
ol {
  padding-left: 1.25em;
}

li + li {
  margin-top: 0.55em;
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 1rem;
  padding: 0.6rem 0.85rem;
  position: fixed;
  top: -5rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.96);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--wide);
  padding: 1rem 1.5rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.brand img {
  border-radius: 50%;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li + li {
  margin: 0;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.hero {
  margin: 0 auto;
  max-width: var(--wide);
  padding: clamp(4rem, 9vw, 8rem) 1.5rem;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
}

.eyebrow {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 40rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  border: 2px solid var(--leaf-dark);
  border-radius: 999px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 750;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
}

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

.button-primary:hover {
  background: #1f382c;
  color: var(--white);
}

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

.photo-stack {
  background: var(--sage);
  border-radius: 45% 45% 42% 42% / 34% 34% 55% 55%;
  padding: 1rem;
  transform: rotate(1.5deg);
}

.photo-stack img {
  aspect-ratio: 4 / 5;
  border-radius: inherit;
  object-fit: cover;
  transform: rotate(-1.5deg);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.section-soft {
  background: var(--soft);
}

.section-peach {
  background: var(--peach);
}

.section-inner {
  margin: 0 auto;
  max-width: var(--wide);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.card .meta {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.card h2 a,
.card h3 a {
  color: var(--ink);
  text-decoration: none;
}

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

.card h2 a:hover,
.card h3 a:hover {
  color: var(--leaf);
}

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

.card .read-more {
  font-size: 0.92rem;
  font-weight: 750;
  margin-top: auto;
}

.two-column {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-card {
  background: var(--leaf-dark);
  border-radius: var(--radius);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
}

.quote-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
  max-width: var(--wide);
  padding: clamp(4rem, 8vw, 7rem) 1.5rem clamp(3rem, 6vw, 5rem);
}

.page-hero h1 {
  max-width: 940px;
}

.page-hero .lede {
  max-width: 760px;
}

.prose {
  margin: 0 auto;
  max-width: var(--content);
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}

.prose h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-top: 2.2em;
}

.prose h3 {
  margin-top: 1.8em;
}

.prose a {
  font-weight: 650;
}

.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.note,
.action-box {
  border-radius: 18px;
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
}

.note {
  background: var(--soft);
  border-left: 5px solid var(--leaf);
}

.action-box {
  background: var(--peach);
}

.note > :last-child,
.action-box > :last-child {
  margin-bottom: 0;
}

.resource-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.resource-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 0;
  padding: 1.2rem 1.3rem;
}

.resource-list strong {
  display: block;
}

.site-footer {
  background: var(--ink);
  color: #dce4df;
  padding: 3rem 1.5rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: var(--wide);
}

.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  max-width: 600px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin: 0;
}

.small {
  font-size: 0.85rem;
}

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

  .nav-shell,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-shell {
    display: flex;
  }

  .nav-links {
    gap: 0.4rem 1rem;
  }

  .hero-grid,
  .cards,
  .two-column,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .photo-stack {
    margin: 0 auto;
    max-width: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .prose,
  .page-hero {
    max-width: none;
    padding: 1rem 0;
  }
}
