:root {
  --paper: #f3eee4;
  --paper-deep: #e8dfd0;
  --ink: #1a2a27;
  --ink-soft: #3a4c48;
  --muted: #6a7874;
  --teal: #0e5a53;
  --teal-deep: #0a3f3a;
  --sand: #d4c0a0;
  --line: #1a2a271f;
  --display: "Fraunces", "Iowan Old Style", Palatino, serif;
  --sans: "Figtree", "Avenir Next", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: clip; max-width: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--teal); color: var(--paper); padding: .6rem 1rem; z-index: 80;
}
.skip:focus { left: 1rem; top: 1rem; }
.wrap { width: min(1120px, calc(100% - 2.4rem)); margin-inline: auto; }
header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.4rem;
}
.brand img { height: 46px; width: auto; }
nav { display: flex; gap: 1.4rem; align-items: center; }
nav a {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft);
}
nav a:hover, nav a[aria-current="page"] { color: var(--teal); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: var(--paper);
  text-decoration: none; border-radius: 999px;
  padding: .75rem 1.2rem; font-weight: 600; font-size: .95rem;
}
.btn:hover { background: var(--teal-deep); }
.kicker {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal);
}
h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.08;
  margin: .4rem 0 1rem;
}
h1 em { font-style: italic; font-weight: 500; }
.lede { color: var(--ink-soft); font-size: 1.08rem; max-width: 38rem; }
.page { padding: 3.5rem 0 5rem; }
.cards { display: grid; gap: 1.2rem; margin-top: 2.2rem; }
@media (min-width: 800px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.story {
  display: flex; flex-direction: column;
  background: var(--paper-deep); border-radius: 20px; overflow: hidden;
  text-decoration: none; color: inherit; min-height: 100%;
}
.story img { width: 100%; height: 180px; object-fit: cover; }
.story div { padding: 1.2rem 1.25rem 1.4rem; }
.story .kind { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); }
.story h2 { font-family: var(--display); font-size: 1.45rem; font-weight: 500; margin: .35rem 0 .5rem; }
.story p { color: var(--ink-soft); font-size: .98rem; }
.prose { max-width: 42rem; }
.prose p, .prose ul { margin: 1rem 0; color: var(--ink-soft); font-size: 1.08rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: .35rem 0; }
.cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: 20px; margin: 1.6rem 0 1.8rem; }
.gallery { display: grid; gap: 1rem; margin-top: 1.6rem; }
@media (min-width: 700px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery img { width: 100%; height: 240px; object-fit: cover; border-radius: 16px; }
.back { display: inline-block; margin-bottom: 1.4rem; color: var(--teal); text-decoration: none; font-size: .9rem; }
footer {
  background: #072e2b; color: color-mix(in srgb, var(--paper) 78%, transparent);
  padding: 2.4rem 0 2rem; font-size: .88rem;
}
footer strong { color: var(--paper); font-weight: 600; }
.fine { margin-top: .8rem; max-width: 46rem; color: color-mix(in srgb, var(--paper) 55%, transparent); }
.nav-toggle { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 720px) {
  .menu-btn { display: inline-flex; }
  .nav { position: relative; flex-wrap: wrap; }
  nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .2rem 0 1rem;
  }
  nav a { padding: .7rem 0; }
  .nav-toggle:checked ~ nav { display: flex; }
  .nav-toggle:checked + .menu-btn { background: var(--teal); color: var(--paper); }
  .brand img { height: 38px; }
  .btn.nav-cta { padding: .65rem 1rem; font-size: .85rem; }
}
