:root {
  color-scheme: light;
  --ink: #28342f;
  --muted: #59665f;
  --paper: #fffdf7;
  --sage: #b9ddcb;
  --sage-deep: #2f6c58;
  --cream: #f5e5ba;
  --orange: #d87937;
  --line: rgba(47, 108, 88, 0.18);
  --shadow: 0 18px 60px rgba(45, 78, 65, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(185, 221, 203, 0.72), transparent 32rem),
    radial-gradient(circle at 88% 16%, rgba(245, 229, 186, 0.74), transparent 30rem),
    var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: var(--sage-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--orange); }

.site-header,
.site-footer,
main {
  width: min(70rem, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
}

.brand {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  text-decoration: none;
}

nav { display: flex; flex-wrap: wrap; gap: 1rem; }
nav a { font-weight: 650; text-decoration: none; }

main { padding-block: 4rem 6rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  min-height: 32rem;
}

.eyebrow {
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.15; }
h1 { max-width: 13ch; margin: 0.35rem 0 1rem; font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { margin-top: 3rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { margin-bottom: 0.35rem; }

.lead { max-width: 43rem; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.25rem); }

.cat-mark {
  display: grid;
  place-items: center;
  width: min(100%, 24rem);
  aspect-ratio: 1;
  margin-inline: auto;
  color: #5d321e;
  background: linear-gradient(145deg, var(--sage), var(--cream));
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 32%;
  box-shadow: var(--shadow);
  font-size: clamp(6rem, 17vw, 11rem);
}

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

.pill-list { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.pill-list li,
.card {
  padding: 1.25rem;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 8px 28px rgba(45, 78, 65, 0.06);
}

.cards { grid-template-columns: repeat(2, 1fr); }
.card p { margin-bottom: 0; color: var(--muted); }

.prose { max-width: 49rem; }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--ink); }
.prose section { scroll-margin-top: 2rem; }

.notice {
  margin-block: 2rem;
  padding: 1rem 1.2rem;
  background: rgba(245, 229, 186, 0.5);
  border-left: 0.28rem solid var(--orange);
  border-radius: 0.7rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 2rem 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  main { padding-top: 2rem; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { order: 2; }
  .cat-mark { order: 1; width: min(72vw, 18rem); }
  .pill-list, .cards { grid-template-columns: 1fr; }
}

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

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

