:root {
  color-scheme: light;
  --bg: #f7f2ea;
  --paper: #fffaf2;
  --ink: #1b1a17;
  --muted: #6e665b;
  --line: #e7dccb;
  --accent: #0b6b4f;
  --accent-2: #d66b2f;
  --dark: #101816;
  --shadow: 0 18px 50px rgba(38, 30, 20, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 234, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--dark);
  color: #f9d77e;
  font-weight: 800;
}

.brand strong, .brand small { display: block; line-height: 1; }
.brand small { color: var(--muted); margin-top: 5px; letter-spacing: .12em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover { color: var(--accent); }

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 16% 12%, rgba(214, 107, 47, .20), transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(11, 107, 79, .20), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 36px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  letter-spacing: -.06em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
}

h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.15; }

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary { background: var(--accent); color: white; }
.button.ghost { border: 1px solid var(--line); background: rgba(255,255,255,.45); }

.hero-card, .card, .quote-card, .event-list article, .news-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, .82);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  border-radius: 32px;
  transform: rotate(-1deg);
}

.hero-card .tag, .card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.hero-card a { color: var(--accent); font-weight: 800; }

.section { padding: 76px 0; }
.section-head { margin-bottom: 28px; }

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 260px;
  padding: 26px;
  border-radius: 28px;
}

.card.accent {
  background: var(--dark);
  color: white;
  border-color: transparent;
}

.card.accent p { color: #cbd7d2; }
.card p, .event-list p, .news-grid p { color: var(--muted); line-height: 1.6; }

.feature-strip, .people {
  padding: 78px 0;
  background: var(--dark);
  color: white;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  color: #d9e2dd;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px;
  border-radius: 24px;
}

time { color: var(--accent-2); font-weight: 800; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-grid article {
  padding: 24px;
  border-radius: 24px;
}

.quote-card {
  padding: 32px;
  border-radius: 30px;
  background: #fff3df;
  color: var(--ink);
}

blockquote {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.03em;
}

.footer {
  padding: 34px 0;
  background: #090d0c;
  color: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #cbd7d2;
}

.footer strong { color: white; }
.footer a { display: block; color: #f9d77e; margin-bottom: 8px; }

@media (max-width: 860px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { flex-wrap: wrap; gap: 12px; }
  .hero-grid, .split, .cards.three, .news-grid { grid-template-columns: 1fr; }
  .event-list article { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
}
