:root {
  --bg: #f7f1e8;
  --bg-alt: #efe5d7;
  --text: #2b2118;
  --muted: #6c5a49;
  --accent: #7d3f20;
  --accent-dark: #5a2c16;
  --card: #fffaf4;
  --line: rgba(43, 33, 24, 0.12);
  --shadow: 0 18px 45px rgba(43, 33, 24, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
  line-height: 1.65;
}
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; height: auto; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(820px, 100%); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(251, 247, 241, 0.9);
  border-bottom: 1px solid var(--line);
}
.site-header.simple { position: relative; }
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}
.brand-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}
.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav a {
  text-decoration: none;
  font-size: 0.98rem;
}
.hero {
  padding: 4.5rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
h1, h2 {
  line-height: 1.1;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
h1 span { color: var(--accent); }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.lead {
  font-size: 1.2rem;
  max-width: 44rem;
  color: #3d3024;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.facts div, .callout {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 1rem;
}
.facts strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-dark);
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 0.9fr 1.1fr; }
blockquote {
  margin: 1.5rem 0 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.5);
  font-style: italic;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.source-list {
  padding-left: 1.2rem;
}
.small { color: var(--muted); font-size: 0.95rem; }
.site-footer {
  border-top: 1px solid var(--line);
  background: #f4ecdf;
  padding: 1.5rem 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); }
@media (max-width: 900px) {
  .hero-grid, .two-col, .two-col.reverse, .gallery-grid, .facts {
    grid-template-columns: 1fr;
  }
  .nav-wrap, .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero { padding-top: 3rem; }
}
