:root {
  --forest-900: #0f2318;
  --forest-800: #163024;
  --forest-700: #1e3f2e;
  --forest-600: #2a5a40;
  --forest-500: #3d6b4f;
  --moss: #6b8f71;
  --leaf: #8fb389;
  --cream: #f6f1e6;
  --parchment: #efe6d4;
  --bark: #5c4033;
  --gold: #c4a574;
  --gold-light: #e4d2b0;
  --ink: #1c1914;
  --muted: #5a5348;
  --white: #fffcf7;
  --shadow: 0 18px 50px rgba(15, 35, 24, 0.18);
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.05rem;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--forest-600); text-decoration: none; }
a:hover { color: var(--forest-800); }

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 35, 24, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 165, 116, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--leaf), var(--forest-600));
  box-shadow: 0 0 0 2px rgba(196, 165, 116, 0.35);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}

.nav-links a {
  color: #e8dfcb;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(196, 165, 116, 0.16);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(228, 210, 176, 0.35);
  color: var(--gold-light);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero.compact { min-height: 52vh; }

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,35,24,0.25) 0%, rgba(15,35,24,0.72) 70%, rgba(15,35,24,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3.2rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  font-weight: 600;
  max-width: 16ch;
}

.hero p.lede {
  margin-top: 1.1rem;
  max-width: 42rem;
  font-size: 1.18rem;
  color: #f0e8d6;
}

/* Sections */
section { padding: 4.2rem 0; }

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--forest-800);
  margin-bottom: 0.8rem;
}

.section-intro {
  color: var(--muted);
  max-width: 46rem;
  font-size: 1.12rem;
  margin-bottom: 2rem;
}

.prose p { margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4rem;
  align-items: start;
}

.figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9cbb3;
}

.figure img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

.caption {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.7rem;
  font-style: italic;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15,35,24,0.08);
  border: 1px solid rgba(92, 64, 51, 0.08);
  display: flex;
  flex-direction: column;
}

.card img { height: 190px; width: 100%; object-fit: cover; }

.card-body { padding: 1.25rem 1.35rem 1.45rem; }

.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  color: var(--forest-800);
  margin-bottom: 0.4rem;
}

.card p { color: var(--muted); font-size: 0.98rem; }

.card .more {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest-600);
}

/* Facts */
.facts {
  background: var(--forest-800);
  color: var(--cream);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.fact h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  color: var(--gold);
  line-height: 1;
}

.fact p { margin-top: 0.45rem; color: #d8d0bf; font-size: 0.95rem; }

/* Timeline */
.timeline {
  position: relative;
  margin-top: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--forest-500));
}

.tl-item {
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: 1.7rem;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(196,165,116,0.25);
}

.tl-year {
  font-weight: 700;
  color: var(--forest-600);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.tl-item h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  color: var(--forest-800);
}

/* Quote */
.pullquote {
  background: var(--parchment);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.6rem;
  border-radius: 0 14px 14px 0;
  margin: 1.8rem 0;
}

.pullquote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.35;
  color: var(--forest-800);
}

.pullquote cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Tables */
.table-wrap { overflow-x: auto; margin: 1.2rem 0 0.4rem; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #eadfca;
  font-size: 0.97rem;
}

th {
  background: var(--forest-800);
  color: var(--gold-light);
  font-weight: 600;
}

tr:last-child td { border-bottom: none; }

/* List */
.rich-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.rich-list li {
  background: var(--white);
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(92,64,51,0.08);
}

.rich-list strong { color: var(--forest-800); }

/* Footer */
.site-footer {
  background: var(--forest-900);
  color: #d6cdb8;
  padding: 2.6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.site-footer a { color: #d6cdb8; }
.site-footer a:hover { color: var(--gold-light); }

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.3rem; }

.copyright {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(196,165,116,0.18);
  font-size: 0.86rem;
  color: #9d9482;
}

/* Utility */
.band { background: var(--parchment); }
.mt-0 { margin-top: 0; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--forest-900);
    flex-direction: column;
    padding: 0.8rem 1.2rem 1.2rem;
  }
  .nav-links.open { display: flex; }
  .two-col, .card-grid, .facts-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 68vh; }
}
