:root {
  --ink: #1c1914;
  --ink-soft: #3f3a32;
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --olive: #2f4a32;
  --olive-deep: #203326;
  --leaf: #4c7a4e;
  --terracotta: #c45c26;
  --gold: #e7c56a;
  --line: rgba(28, 25, 20, 0.12);
  --shadow: 0 24px 60px rgba(32, 51, 38, 0.12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Figtree", system-ui, sans-serif;
  --max: 1120px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--olive);
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--olive);
  color: white;
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0.5rem;
}
.skip-link:focus {
  top: 1rem;
}
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  background: rgba(246, 240, 228, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 44px;
  height: 44px;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-weight: 600;
}
.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 1.15rem;
}
.nav-toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}
.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--olive);
}
.site-nav a.btn-primary,
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary:focus,
.site-nav a.btn-primary:visited {
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
}
.btn-dark {
  background: var(--olive);
  color: #f6f0e4;
}
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 78vh;
  background: var(--olive-deep);
  color: var(--cream);
}
.hero-copy {
  padding: 7vw 6vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero h1,
.page-hero h1,
h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 500;
  margin: 0 0 1rem;
}
.lede {
  font-size: 1.15rem;
  max-width: 36rem;
  color: rgba(246, 240, 228, 0.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 2rem;
}
.status-card,
.fact {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(246, 240, 228, 0.14);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
}
.status-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.hero-photo {
  position: relative;
  min-height: 380px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-chip {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  max-width: 18rem;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}
.photo-chip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  margin: 0;
}
.fact {
  background: var(--paper);
  border: 0;
  border-radius: 0;
}
.fact dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin: 0 0 0.35rem;
}
.fact dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.wrap {
  width: min(var(--max), calc(100% - 12vw));
  margin-inline: auto;
}
.section {
  padding: 5rem 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}
.section-head p:not(.eyebrow) {
  max-width: 28rem;
  color: var(--ink-soft);
  margin: 0;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.2rem 0 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card,
.panel {
  background: var(--paper);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.card img.faces {
  object-position: 50% 22%;
}
.card-body,
.panel {
  padding: 1.3rem 1.4rem 1.5rem;
}
.card h3,
.panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}
.card p,
.panel p {
  margin: 0;
  color: var(--ink-soft);
}
.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.project-list li {
  background: var(--paper);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 1.1rem;
}
.project-list a {
  text-decoration: none;
  color: var(--olive);
}
.project-list a:hover {
  color: var(--terracotta);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.6rem;
}
.notice {
  background: var(--olive);
  color: var(--cream);
  border-radius: 1.6rem;
  padding: 2rem;
}
.notice a {
  color: var(--gold);
}
.page-hero {
  padding: 5.5rem 6vw 3rem;
  background:
    radial-gradient(circle at top left, rgba(231, 197, 106, 0.35), transparent 32%),
    var(--cream);
}
.page-hero p {
  max-width: 42rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.video-grid {
  display: grid;
  gap: 2.5rem;
}
.video-card {
  background: var(--paper);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-card .embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #111;
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card .card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}
.video-card .card-body p {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}
.photo-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 0.8rem;
  margin-top: 2rem;
}
.photo-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1.2rem;
}
.site-footer {
  background: var(--olive-deep);
  color: var(--cream);
  padding: 3.5rem 6vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  width: min(var(--max), 100%);
  margin: 0 auto 2rem;
}
.site-footer a {
  color: var(--gold);
}
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}
.site-footer p {
  margin: 0 0 0.5rem;
  color: rgba(246, 240, 228, 0.86);
}
.tiny {
  font-size: 0.86rem;
  color: rgba(246, 240, 228, 0.72);
  width: min(var(--max), 100%);
  margin-inline: auto;
}
@media (max-width: 900px) {
  .hero,
  .facts,
  .cards,
  .cards-2,
  .split,
  .footer-grid,
  .photo-row {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: start;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 0.6rem 6vw 1.4rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(32, 51, 38, 0.18);
  }
  .site-nav a {
    padding: 1rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a.btn {
    margin-top: 0.85rem;
    justify-content: center;
    border-bottom: 0;
  }
  .site-nav.open {
    display: flex;
  }
  .hero-photo {
    min-height: 280px;
  }
}
