:root {
  --ink: #17211f;
  --muted: #5e6b66;
  --paper: #f5f2e9;
  --card: #fffdf7;
  --accent: #aa4f2b;
  --line: #d8d2c5;
  --max: 72rem;
  color-scheme: light;
}
* { box-sizing: border-box; }
html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
body { margin: 0; overflow-x: hidden; }
a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--accent); }
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: .15rem;
}
.skip { position: absolute; left: -999px; }
.skip:focus-visible {
  left: 1rem;
  top: 1rem;
  background: white;
  padding: .7rem;
  z-index: 10;
}
.wrap { width: min(calc(100% - 2rem), var(--max)); margin: auto; }
header {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  background: rgba(245, 242, 233, .96);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { text-decoration: none; font-weight: 760; letter-spacing: -.02em; }
nav { display: flex; flex-wrap: wrap; gap: .35rem .9rem; font-size: .86rem; }
nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: .25rem .05rem;
  text-decoration: none;
}
nav a[aria-current="page"] { color: var(--accent); font-weight: 720; text-decoration: underline; }
.review { background: #272e2b; color: #fff; padding: .55rem 1rem; font-size: .8rem; text-align: center; }
.hero {
  padding: clamp(4rem, 10vw, 8rem) 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(15rem, .6fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 720;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: .91;
  letter-spacing: -.055em;
  margin: .4rem 0 1.3rem;
  max-width: 12ch;
  overflow-wrap: anywhere;
}
.lede { font-family: Georgia, serif; font-size: clamp(1.2rem, 2.4vw, 1.8rem); max-width: 42ch; }
.aside { border-left: 2px solid var(--accent); padding-left: 1rem; color: var(--muted); }
main { min-height: 70vh; }
.section { padding: 3rem 0; border-top: 1px solid var(--line); }
.section-title { font-family: Georgia, serif; margin: 0 0 1.25rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.prose { display: grid; gap: 1rem; max-width: 52rem; }
.prose .card { min-height: 0; }
.card { background: var(--card); border: 1px solid var(--line); padding: 1.25rem; min-height: 12rem; }
.card h2,
.card h3 { font-family: Georgia, serif; margin-top: 0; }
.state {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: .2rem .5rem;
  color: var(--accent);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
.meta { font-size: .82rem; color: var(--muted); }
footer { padding: 3rem 0; border-top: 1px solid var(--line); margin-top: 4rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.utility-nav a { min-height: 2.75rem; padding: .35rem .2rem; }

@media (max-width: 800px) {
  header { position: static; }
  .bar { align-items: stretch; flex-direction: column; }
  .brand { align-self: flex-start; min-height: 2.75rem; display: inline-flex; align-items: center; }
  nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 .75rem;
    width: 100%;
    font-size: .82rem;
  }
  nav a {
    min-height: 2.75rem;
    border-top: 1px solid var(--line);
    padding: .5rem 0;
  }
  .hero { grid-template-columns: minmax(0, 1fr); min-width: 0; padding-top: 3.2rem; }
  .hero > * { min-width: 0; max-width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3.15rem); max-width: 100%; overflow-wrap: anywhere; }
  .lede { font-size: 1.15rem; max-width: 100%; overflow-wrap: anywhere; }
  .aside { min-width: 0; }
}
