:root {
  --ink: #17211c;
  --muted: #66726b;
  --paper: #faf8f3;
  --soft: #f0ece3;
  --line: #d9ded7;
  --accent: #9b4d2e;
  --green: #315744;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background .24s ease, color .24s ease, padding .24s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 248, 243, .94);
  color: var(--ink);
  padding-block: 14px;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 33, 28, .08);
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}
.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 72px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.16)), var(--hero-image);
  background-size: cover;
  background-position: center;
}
.page-hero { min-height: 66svh; }
.hero-inner { max-width: 780px; }
.kicker {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 800;
}
.hero .kicker { color: #e8b18f; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 9vw, 128px);
}
.page-title { font-size: clamp(46px, 7vw, 96px); }
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
}
h3 { font-size: clamp(22px, 2.4vw, 34px); }
p { margin: 14px 0 0; }
.lede {
  max-width: 650px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,.9);
}
.page-lede { color: rgba(255,255,255,.88); }

.section { padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.section.alt { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 5vw, 56px); }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}
.feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.feature img,
.story img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.story h3 { margin-top: 14px; }
.story p:not(.meta) { color: #3f4a43; }
.meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800;
}
.article {
  max-width: 780px;
  margin: 0 auto;
  font-size: 18px;
}
.article p { margin-top: 22px; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 18px 20px;
  }
  .site-header.is-scrolled {
    position: fixed;
    padding: 14px 20px;
  }
  .nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 12px;
  }
  .hero { min-height: 86svh; padding: 112px 20px 48px; }
  .page-hero { min-height: 62svh; }
  .grid, .feature { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
