:root {
  --cream: #faf5e8;
  --parchment: #f2ead6;
  --ink: #241f16;
  --forest: #1f3d2c;
  --forest-dark: #16291d;
  --rust: #a3441f;
  --gold: #c99a3c;
  --gold-light: #e7c26b;
  --line: rgba(36, 31, 22, 0.14);
  --shadow: 0 20px 50px -25px rgba(36, 31, 22, 0.35);
  --serif: "Libre Caslon Display", "Iowan Old Style", serif;
  --sans: "Schibsted Grotesk", -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.paper {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(36,31,22,0.045) 1px, transparent 1px);
  background-size: 3px 3px;
}

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

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--rust);
  display: inline-block;
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--forest-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

em { font-style: italic; color: var(--rust); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 232, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text small {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a { color: var(--ink); opacity: 0.8; transition: opacity 0.2s; }
.site-nav a:hover { opacity: 1; }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--forest-dark); }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--rust);
  color: var(--cream);
}
.btn-primary:hover { background: #8a3819; transform: translateY(-2px); }
.btn-ghost {
  border-color: rgba(250, 245, 232, 0.5);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(250, 245, 232, 0.12); transform: translateY(-2px); }
.btn-wide { width: 100%; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,41,29,0.55) 0%, rgba(22,41,29,0.35) 35%, rgba(22,41,29,0.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 4rem 2.5rem 4.5rem;
  color: var(--cream);
  width: 100%;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.04;
  max-width: 16ch;
}
.hero-lede {
  max-width: 46ch;
  font-size: 1.15rem;
  margin: 1.5rem 0 2rem;
  color: rgba(250, 245, 232, 0.88);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 245, 232, 0.25);
}
.hero-stats dt {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--gold-light);
}
.hero-stats dd {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: rgba(250, 245, 232, 0.75);
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--forest);
  color: var(--gold-light);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 1.2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  animation: scroll-left 32s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections generic ---------- */

section:not(.hero):not(.marquee):not(.photo-band) {
  max-width: 1360px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.section-alt { background: var(--parchment); max-width: none !important; }
.section-alt > * { max-width: 1360px; margin-left: auto; margin-right: auto; }

.section-head {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
}
.section-head p { color: rgba(36,31,22,0.7); font-size: 1.05rem; margin: 0; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Intro ---------- */

.intro-grid {
  max-width: 900px;
}
.intro-grid h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin: 0 0 2rem;
}
.intro-lead {
  font-size: 1.3rem;
  color: var(--forest-dark);
  font-family: var(--serif);
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.intro-grid > p:not(.intro-lead) {
  font-size: 1.05rem;
  color: rgba(36,31,22,0.78);
  max-width: 68ch;
}

/* ---------- Photo band ---------- */

.photo-band {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
}
.photo-band img { width: 100%; height: 100%; object-fit: cover; }
.photo-band-caption {
  position: absolute;
  left: 2.5rem;
  bottom: 2rem;
  color: var(--cream);
  background: rgba(22, 41, 29, 0.55);
  backdrop-filter: blur(6px);
  padding: 1.2rem 1.6rem;
  border-radius: 10px;
  max-width: 380px;
}
.photo-band-caption span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.photo-band-caption p { margin: 0; font-size: 1.05rem; font-family: var(--serif); }

/* ---------- Feature rows ---------- */

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.feature-row-compact { margin-top: 3rem; gap: 2rem; }
.feature .num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
  margin-bottom: 1.2rem;
}
.feature h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.feature p { color: rgba(36,31,22,0.72); margin: 0; }

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 5rem 2.5rem;
}
.stats-band-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.big-num {
  display: block;
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--gold-light);
}
.big-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: rgba(250,245,232,0.75);
  max-width: 26ch;
}

/* ---------- Events ---------- */

.events-list { display: flex; flex-direction: column; gap: 0; }
.event-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.event-row:first-child { border-top: 1px solid var(--line); }
.event-date {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--rust);
}
.event-date strong { font-family: var(--serif); font-size: 2.2rem; }
.event-date span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }
.event-info h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.event-info p { margin: 0; color: rgba(36,31,22,0.7); }
.event-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(31,61,44,0.1);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Directory ---------- */

.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.dir-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dir-img { height: 200px; overflow: hidden; }
.dir-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dir-card:hover .dir-img img { transform: scale(1.06); }
.dir-body { padding: 1.6rem; }
.dir-cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 0.5rem;
}
.dir-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.dir-body p { margin: 0; color: rgba(36,31,22,0.7); font-size: 0.95rem; }

/* ---------- Advocacy ---------- */

.advocacy {
  background: var(--forest);
  color: var(--cream);
  padding: 6rem 2.5rem !important;
}
.advocacy-copy { max-width: 1360px; margin: 0 auto; }
.advocacy h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  max-width: 22ch;
}
.advocacy > .advocacy-copy > p {
  max-width: 60ch;
  font-size: 1.1rem;
  color: rgba(250,245,232,0.8);
  margin: 1.2rem 0 0;
}
.advocacy .num { color: var(--gold-light); border-bottom-color: rgba(250,245,232,0.2); }
.advocacy h3 { color: var(--cream); }
.advocacy .feature p { color: rgba(250,245,232,0.72); }

/* ---------- CTA / Join ---------- */

.cta-band {
  background: var(--parchment);
  max-width: none !important;
  padding: 6rem 2.5rem !important;
}
.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin: 0 0 3rem;
}
.inquiry-form {
  text-align: left;
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.inquiry-form label { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--forest-dark); }
.inquiry-form input, .inquiry-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.inquiry-form input:focus, .inquiry-form textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.form-note { font-size: 0.8rem; color: rgba(36,31,22,0.5); text-align: center; margin: 0; font-weight: 400; }

.cta-direct {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.cta-direct > div { display: flex; flex-direction: column; gap: 0.4rem; }
.cta-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rust); font-weight: 600; }
.cta-direct a { font-family: var(--serif); font-size: 1.15rem; color: var(--forest-dark); }
.cta-direct a:hover { color: var(--rust); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--forest-dark);
  color: rgba(250,245,232,0.7);
  padding: 3.5rem 2.5rem 2.5rem;
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250,245,232,0.15);
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-name { margin: 0; font-family: var(--serif); color: var(--cream); font-size: 1.15rem; }
.footer-tag { margin: 0.2rem 0 0; font-size: 0.85rem; }
.footer-nav { display: flex; gap: 1.6rem; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-fine { max-width: 1360px; margin: 1.5rem auto 0; font-size: 0.78rem; opacity: 0.65; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .site-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 0.3s ease; }
  .site-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); }
  .feature-row, .dir-grid, .stats-band-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 60px 1fr; }
  .event-tag { grid-column: 1 / -1; justify-self: start; }
  .hero { min-height: 100vh; }
}
