/* ==========================================================================
   Our Special Village — design system
   Warm, calm, modern. Palette: cream / deep pine / terracotta / gold / sage.
   Type: Fraunces (display serif) + Mulish (humanist sans), both variable and
   self-hosted. No framework, no build step.
   ========================================================================== */

/* ---- Fonts ---- */
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Mulish";
  src: url("/fonts/mulish-var.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Mulish";
  src: url("/fonts/mulish-italic-var.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Tokens ---- */
:root {
  --cream: #faf6ef;
  --sand: #f1eadd;
  --white: #ffffff;
  --pine: #1e4038;
  --pine-deep: #152e28;
  --ink: #22332d;
  --muted: #55655d;
  --terra: #c05c36;
  --terra-dark: #9a4523;
  --gold: #e9b949;
  --gold-soft: #f7e6b8;
  --sage: #7fa08c;
  --sage-soft: #e4ebe2;
  --line: rgba(30, 64, 56, 0.15);
  --on-dark: #e7efe9;
  --on-dark-muted: #b9cdc0;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", "Segoe UI", system-ui, sans-serif;

  --radius-card: 20px;
  --radius-band: 28px;
  --shadow-card: 0 1px 2px rgba(21, 46, 40, 0.05), 0 10px 28px -14px rgba(21, 46, 40, 0.18);
  --shadow-lift: 0 2px 4px rgba(21, 46, 40, 0.06), 0 18px 38px -16px rgba(21, 46, 40, 0.26);
  --container: 1160px;
}

/* ---- Reset / base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  font-optical-sizing: auto;
}
img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.15;
  color: var(--pine);
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
}
h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
p {
  margin: 0 0 1.1em;
}
a {
  color: var(--terra-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--terra);
}
ul,
ol {
  padding-left: 1.4em;
  margin: 0 0 1.2em;
}
li {
  margin-bottom: 0.45em;
}
strong {
  font-weight: 800;
}
hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

::selection {
  background: var(--gold);
  color: var(--pine-deep);
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--pine);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* ---- Layout primitives ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow {
  max-width: 800px;
}
.section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.section--tight {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.theme-cream {
  background: var(--cream);
}
.theme-white {
  background: var(--white);
}
.theme-sand {
  background: var(--sand);
}
.theme-pine {
  background: var(--pine-deep);
  color: var(--on-dark);
}
.theme-pine h1,
.theme-pine h2,
.theme-pine h3 {
  color: var(--cream);
}
.theme-pine a {
  color: var(--gold);
}
.theme-pine .eyebrow {
  color: var(--gold);
}

/* Big rounded feature band (sits inside a section) */
.band {
  border-radius: var(--radius-band);
  padding: clamp(2.25rem, 5vw, 3.75rem);
}
.band--pine {
  background: var(--pine-deep);
  color: var(--on-dark);
}
.band--pine h2,
.band--pine h3 {
  color: var(--cream);
}
.band--pine a {
  color: var(--gold);
}
.band--gold {
  background: var(--gold-soft);
}
.band--sage {
  background: var(--sage-soft);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-dark);
  margin-bottom: 0.9rem;
}
.lede {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}
.theme-pine .lede,
.band--pine .lede {
  color: var(--on-dark-muted);
}
.center {
  text-align: center;
}
.center .lede {
  margin-inline: auto;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}
.section-head--row .more-link {
  white-space: nowrap;
  margin-bottom: 0.4rem;
}
.more-link {
  font-weight: 800;
  text-decoration: none;
}
.more-link::after {
  content: " →";
}
.more-link:hover {
  text-decoration: underline;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 64, 56, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px -12px rgba(21, 46, 40, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--pine);
}
.brand:hover {
  color: var(--pine);
}
.brand-mark {
  flex: 0 0 auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a:not(.btn) {
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover {
  color: var(--terra-dark);
}
.site-nav a[aria-current="page"]:not(.btn) {
  color: var(--terra-dark);
  border-bottom-color: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--pine);
}
@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -20px rgba(21, 46, 40, 0.3);
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .site-nav a:not(.btn) {
    display: block;
    padding: 0.75rem 0.25rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(30, 64, 56, 0.08);
  }
  .site-nav li:last-child {
    margin-top: 0.9rem;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(154, 69, 35, 0.25), 0 10px 22px -10px rgba(154, 69, 35, 0.45);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}
.btn:hover {
  background: var(--terra-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--ghost {
  background: transparent;
  color: var(--pine);
  border-color: rgba(30, 64, 56, 0.3);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--pine);
  border-color: var(--pine);
}
.btn--gold {
  background: var(--gold);
  color: var(--pine-deep);
  box-shadow: 0 2px 6px rgba(122, 92, 15, 0.2), 0 10px 22px -10px rgba(122, 92, 15, 0.4);
}
.btn--gold:hover {
  background: #f0c65e;
  color: var(--pine-deep);
}
.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.92rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
a.card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
a.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--sage);
  color: inherit;
}
.card h3 {
  margin-bottom: 0.4em;
}
.card p:last-child {
  margin-bottom: 0;
}
.card .more-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--pine);
  margin-bottom: 1.1rem;
}
.icon-circle--gold {
  background: var(--gold-soft);
}
.icon-circle--terra {
  background: #f6ddd2;
  color: var(--terra-dark);
}

.card--dashed {
  border-style: dashed;
  border-width: 2px;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Pills / badges ---- */
.pill {
  display: inline-block;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.pill--gold {
  background: var(--gold-soft);
  color: #6d5310;
}
.pill--terra {
  background: #f6ddd2;
  color: var(--terra-dark);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.hero-copy {
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
.hero-copy h1 {
  margin-bottom: 0.5em;
}
.hero-copy .lede {
  margin-bottom: 1.8rem;
}
.hero-art {
  align-self: end;
  line-height: 0;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-meta svg {
  color: var(--terra);
  flex: 0 0 auto;
}
@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-bottom: 0.5rem;
  }
  .hero-art {
    max-width: 480px;
  }
}

/* ---- Steps (numbered guide) ---- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}
.steps > li {
  counter-increment: step;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1.75rem 1.6rem 5.25rem;
  margin: 0;
}
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.5rem;
  top: 1.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--terra);
  line-height: 1;
}
.steps h3 {
  margin-bottom: 0.35em;
}
.steps p:last-child {
  margin-bottom: 0;
}
@media (max-width: 560px) {
  .steps > li {
    padding: 1.4rem 1.4rem 1.4rem 4.25rem;
  }
  .steps > li::before {
    left: 1.15rem;
  }
}

/* ---- Callouts ---- */
.callout {
  border-left: 5px solid var(--gold);
  background: rgba(247, 230, 184, 0.45);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  margin: 1.6rem 0;
}
.callout--sage {
  border-left-color: var(--sage);
  background: rgba(228, 235, 226, 0.6);
}
.callout--terra {
  border-left-color: var(--terra);
  background: rgba(246, 221, 210, 0.45);
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}

/* ---- Accordion ---- */
.accordion {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-card);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--pine);
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terra);
  line-height: 1;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.accordion[open] summary::after {
  transform: rotate(45deg);
}
.accordion-body {
  padding: 0 1.4rem 1.3rem;
}
.accordion-body p:last-child {
  margin-bottom: 0;
}

/* ---- Resource cards ---- */
.res-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 2.25rem;
}
@media (max-width: 760px) {
  .res-list {
    grid-template-columns: 1fr;
  }
}
.res-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.res-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}
.res-card h3 a {
  color: var(--pine);
  text-decoration: none;
}
.res-card h3 a:hover {
  color: var(--terra-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.res-card h3 svg {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--terra);
  vertical-align: -0.1em;
}
.res-card p {
  font-size: 0.98rem;
  margin-bottom: 0.6em;
}
.res-card .res-meta {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

/* ---- Events ---- */
.month-heading {
  font-size: 1.35rem;
  margin: 2.4rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.event-list {
  display: grid;
  gap: 1.1rem;
}
.event-row {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-card);
}
.event-date {
  flex: 0 0 auto;
  width: 68px;
  text-align: center;
  align-self: flex-start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.5rem 0.25rem 0.6rem;
}
.event-date .dow {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.event-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--pine);
  line-height: 1.1;
}
.event-date .mon {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-dark);
}
.event-body h3 {
  margin-bottom: 0.25em;
  font-size: 1.15rem;
}
.event-meta {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.5em;
}
.event-meta span + span::before {
  content: "·";
  margin: 0 0.5em;
  color: var(--sage);
}
.event-body p {
  font-size: 0.98rem;
  margin-bottom: 0.5em;
}
.event-body p:last-child,
.event-body .event-meta:last-child {
  margin-bottom: 0;
}
.event-tags {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
@media (max-width: 560px) {
  .event-row {
    flex-direction: column;
    gap: 0.9rem;
  }
  .event-date {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    width: auto;
    padding: 0.35rem 0.8rem;
  }
}
.events-empty {
  border: 2px dashed var(--line);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

/* ---- Forms ---- */
.form {
  display: grid;
  gap: 1.1rem;
}
.form label {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--pine);
}
.form .optional {
  font-weight: 600;
  color: var(--muted);
}
.form input,
.form textarea,
.form select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(127, 160, 140, 0.35);
}
.form textarea {
  min-height: 9rem;
  resize: vertical;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  min-height: 1.4em;
  font-weight: 700;
  margin: 0;
}
.form-status.ok {
  color: #2c6e49;
}
.form-status.err {
  color: var(--terra-dark);
}

/* Inline signup row (newsletter) */
.signup-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.signup-row input {
  flex: 1;
}
@media (max-width: 560px) {
  .signup-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ---- Breadcrumb + page head ---- */
.crumbs {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.crumbs a {
  color: var(--muted);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--terra-dark);
  text-decoration: underline;
}
.crumbs .sep {
  margin: 0 0.5em;
  color: var(--sage);
}
.page-head {
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2rem);
}
.page-head .lede {
  margin-top: 0.4rem;
}
.reviewed {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 1.1rem;
}
.reviewed .dot {
  color: var(--terra);
  margin-right: 0.4em;
}

/* ---- Prose (guide pages) ---- */
.prose {
  max-width: 760px;
}
.prose h2 {
  margin-top: 2.2em;
  font-size: clamp(1.45rem, 2.6vw, 1.8rem);
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  margin-top: 1.8em;
}
.prose .res-list {
  grid-template-columns: 1fr;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--pine-deep);
  color: var(--on-dark-muted);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.97rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.75rem;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin-bottom: 0.55em;
}
.site-footer a {
  color: var(--on-dark);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(231, 239, 233, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom p {
  margin: 0;
}

/* ---- Misc ---- */
.note {
  font-size: 0.9rem;
  color: var(--muted);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}
