@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --green: #146c36;
  --green-dark: #0f4d28;
  --orange: #f25b1a;
  --ink: #1c1c1c;
  --muted: #5c6570;
  --paper: #ffffff;
  --cream: #fffaf2;
  --line: #e7e8ed;
  --sans: "Nunito", sans-serif;
  --serif: "Playfair Display", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.wrap--narrow { width: min(760px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 30; height: 86px; overflow: hidden;
  background: #fff; border-bottom: 1px solid var(--line);
}
.site-header__row { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; height: 58px; }
.logo img { height: 58px; width: auto; max-height: 58px; }
.site-nav { display: flex; align-items: center; gap: 16px; font-size: 14px; font-weight: 700; }
.site-nav a { text-decoration: none; color: #222; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--orange); }
.nav-toggle { display: none; border: 1px solid var(--green); background: #fff; color: var(--green); font: inherit; font-weight: 800; padding: 8px 12px; cursor: pointer; }

.btn, .btn--solid, .btn--ghost, .btn--light, .btn--light-line {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 22px; border-radius: 4px; text-decoration: none;
  font-weight: 800; border: 0; cursor: pointer; font-family: inherit; font-size: 15px;
}
.btn, .btn--solid, .btn--light { background: var(--orange); color: #fff; }
.btn:hover, .btn--solid:hover, .btn--light:hover { background: var(--green); color: #fff; }
.btn--ghost, .btn--light-line { background: transparent; color: #fff; border: 2px solid #fff; }

.slider { position: relative; min-height: 78vh; background: #123; color: #fff; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; justify-content: center; text-align: center; }
.slide.is-active { opacity: 1; z-index: 1; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide__veil { position: absolute; inset: 0; background: rgba(0,0,0,0.28); }
.slide__copy { position: relative; z-index: 2; width: min(920px, calc(100% - 32px)); }
.slide h1 { margin: 0; font-family: var(--sans); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: 0.02em; text-transform: uppercase; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.slide p { margin: 14px 0 0; font-size: 1.15rem; }
.slider__dots { position: absolute; z-index: 3; left: 0; right: 0; bottom: 22px; display: flex; justify-content: center; gap: 8px; }
.slider__dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.55); cursor: pointer; }
.slider__dots button.is-active { background: var(--orange); }

.section { padding: 88px 0; }
.kicker { color: var(--orange); font-weight: 800; margin: 0 0 8px; }
h2, .page-hero h1, .cover h1 {
  font-family: var(--serif); color: var(--green-dark); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 14px;
}
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.lede, .hero__lead { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.frame { background: #d7efe3; padding: 18px 0 0 18px; }
.frame img { width: 100%; height: 460px; object-fit: cover; }
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li { padding: 8px 0 8px 28px; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: 14px; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.pillar { background: var(--cream); padding: 28px 22px; border-top: 4px solid var(--orange); }
.pillar h3 { margin: 0 0 8px; color: var(--green-dark); font-size: 1.25rem; }

.stats { background: var(--green-dark); color: #fff; }
.stats h2, .stats .kicker { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.stats-grid h3 { margin: 0; font-size: 2.4rem; font-weight: 800; color: var(--orange); }
.stats-grid p { margin: 6px 0 0; }

.homes, .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.home, .card { text-decoration: none; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.home img, .card__img { width: 100%; height: 210px; object-fit: cover; }
.home div, .card__body { padding: 16px 16px 20px; }
.home h3, .card h3 { margin: 0 0 6px; color: var(--green-dark); }
.home p, .card p { margin: 0; color: var(--muted); }

.quote { background: var(--cream); }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--green-dark); line-height: 1.4; }
.quote cite { display: block; margin-top: 14px; font-style: normal; font-weight: 800; color: var(--orange); font-family: var(--sans); }

.page-hero { padding: 64px 0 20px; }
.page-hero h1, .cover h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.cover { min-height: 420px; display: flex; align-items: flex-end; color: #fff; background-size: cover; background-position: center; position: relative; }
.cover::before { content: ""; position: absolute; inset: 0; background: rgba(15, 77, 40, 0.45); }
.cover .wrap { position: relative; z-index: 1; padding-bottom: 36px; }
.cover h1, .cover .kicker, .cover p { color: #fff; }
.days { display: grid; gap: 36px; }
.day { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.day img, .essay img { width: 100%; height: 300px; object-fit: cover; }
.essay { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.panel { margin-top: 36px; background: var(--green-dark); color: #fff; padding: 28px; display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.panel h2 { color: #fff; margin: 0 0 6px; }
.form { display: grid; gap: 12px; max-width: 560px; }
.form input, .form textarea { font: inherit; padding: 12px; border: 1px solid var(--line); }
.note { background: var(--cream); padding: 12px 14px; border-left: 4px solid var(--orange); }
.facts { list-style: none; padding: 0; }
.facts li { padding: 12px 0; border-top: 1px solid var(--line); }

.site-footer { background: #10261a; color: #e7efe9; padding: 56px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 28px; }
.site-footer h3 { margin: 0 0 10px; color: #fff; text-transform: capitalize; }
.site-footer a { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 6px 0; }
.footer-note { margin-top: 28px; color: #b7c7bd; font-size: 14px; }
.footer-note a { color: #fff; }

.nav-drop { position: relative; }
.nav-drop__menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 180px;
  background: #fff; border: 1px solid var(--line); padding: 8px 0; z-index: 40;
}
.nav-drop:hover .nav-drop__menu, .nav-drop:focus-within .nav-drop__menu { display: grid; }
.nav-drop__menu a { padding: 8px 14px; }

.donate-band { background: var(--green-dark); text-align: center; }
.donate-band h2, .donate-band p { color: #fff; }
.video { position: relative; padding-top: 56.25%; background: #111; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.review { background: var(--cream); padding: 18px; border-top: 3px solid var(--orange); }
.review p { margin: 0 0 12px; }
.review cite { font-style: normal; font-weight: 800; color: var(--green-dark); }
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 18px 0 22px; }
.news article { border: 1px solid var(--line); padding: 18px; }
.news h3 { margin: 0 0 8px; color: var(--green-dark); }
.insta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.insta img { width: 100%; height: 180px; object-fit: cover; }
.side-rail { position: fixed; top: 40%; right: 0; z-index: 40; display: grid; }
.side-rail a {
  background: var(--orange); color: #fff; text-decoration: none; font-weight: 800;
  padding: 10px 14px 10px 18px; border-bottom: 1px solid #fff;
}

.bento, .tile, .film, .band { }
.film { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.film img { width: 100%; height: 180px; object-fit: cover; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 86px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .split, .pillars, .stats-grid, .homes, .card-grid, .day, .essay, .footer-grid, .film, .reviews, .news, .insta { grid-template-columns: 1fr; }
  .nav-drop__menu { position: static; border: 0; padding: 0 0 0 12px; }
  .side-rail { top: auto; bottom: 0; right: 0; left: 0; grid-template-columns: repeat(3, 1fr); }
  .frame img, .day img { height: 260px; }
  .panel { flex-direction: column; align-items: flex-start; }
  .slider { min-height: 70vh; }
}
@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
}
