/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --olive:        #4e5f35;
  --olive-dark:   #3a4727;
  --olive-light:  #6b7e4a;
  --olive-pale:   #eef2e4;
  --olive-xpale:  #f5f7ef;
  --charcoal:     #2a2e22;
  --warm-white:   #ffffff;
  --cream:        #f9f7f2;
  --text:         #2a2e22;
  --text-muted:   #5c6350;
  --border:       #dde3cc;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Source Sans 3', system-ui, sans-serif;

  --max-w: 1120px;
  --section-pad: 5rem 1.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 1rem;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}
.btn--primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

.btn--outline {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn--outline:hover { background: var(--olive); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn--ghost:hover { background: var(--olive); color: #fff; }

.section { padding: var(--section-pad); }

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img { height: 114px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav__links a:not(.btn) {
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s;
}
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4a5830;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav__links a:not(.btn):hover { color: #4a5830; }
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__hamburger { display: none; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #c8d4a8 0%, #a0b478 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(255,255,255,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(180,200,140,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 111%;
  top: -11%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 1s ease;
}
.hero__video--b {
  opacity: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 2rem;
}

.hero__logo {
  width: 506px;
  max-width: 90vw;
  margin: 1rem auto 5rem;
  display: block;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero__tagline {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__actions .btn--primary {
  background: #fff;
  color: #4a5830;
  border-color: #fff;
}
.hero__actions .btn--primary:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.85);
}
.hero__actions .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.hero__actions .btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* ── Mission ──────────────────────────────────────────────── */
.mission { background: var(--warm-white); }

.mission__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.mission__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pillar {
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--olive);
  background: var(--cream);
  border-radius: 2px;
}

.pillar__icon {
  font-size: 1.4rem;
  color: var(--olive);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Photo Strip ──────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}

.photo-strip__item {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  overflow: hidden;
}

.photo-strip__item:hover {
  transform: scale(1.03);
  z-index: 1;
}

/* ── Photo Banner ─────────────────────────────────────────── */
.photo-banner {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center 65%;
}

.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,46,34,0.35);
}

/* ── Services ─────────────────────────────────────────────── */
.services { background: var(--olive-xpale); }

.services .section__label { color: var(--olive); }
.services .section__title { color: var(--charcoal); }

.services__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 3rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--olive);
  background: var(--warm-white);
  border-radius: 2px;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Callout ──────────────────────────────────────────────── */
.callout {
  background: var(--olive);
  padding: 5rem 1.5rem;
}

.callout__inner { max-width: 720px; }

.callout blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  border-left: 3px solid rgba(255,255,255,0.45);
  padding-left: 2rem;
}

/* ── Manifesto ────────────────────────────────────────────── */
.manifesto {
  background: var(--charcoal);
  padding: 6rem 1.5rem;
}

.manifesto__inner {
  max-width: 780px;
}

.manifesto__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.manifesto__body p {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 1.4rem;
  font-family: var(--font-sans);
}

.manifesto__closing {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
  color: rgba(255,255,255,0.95) !important;
  line-height: 1.8 !important;
  margin-top: 2.5rem !important;
  padding-left: 1.5rem;
  border-left: 3px solid var(--olive-light);
}

/* ── Story ────────────────────────────────────────────────── */
.story { background: var(--warm-white); }

.story__intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.founder-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 4px solid var(--olive);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.founder-card__role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-light);
}

.founder-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  line-height: 1.25;
}

.founder-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.founder-card__quote {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--olive);
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--olive-dark);
  line-height: 1.7;
  background: var(--olive-pale);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact { background: var(--olive-pale); }

.contact__inner > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3rem;
}

.contact__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--warm-white);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form {
  margin-top: 1rem;
  border-radius: 2px;
  overflow: hidden;
}
.contact-form iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__logo { width: 200px; opacity: 0.85; }

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.footer__legal {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  max-width: 560px;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Scroll Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
  opacity: 1;
  transform: none;
}
.pillar.reveal, .service-card.reveal, .founder-card.reveal, .contact-card.reveal {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ── Card Hover Effects ───────────────────────────────────── */
.founder-card, .pillar, .service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.founder-card:hover, .pillar:hover, .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ── Hamburger Animation ──────────────────────────────────── */
.nav__hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger--open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Sticky Donate Button ─────────────────────────────────── */
.sticky-donate {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: #4a5830;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.sticky-donate--visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sticky-donate:hover { background: var(--olive-dark); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__links--open { display: flex; }
  .nav__hamburger { display: flex; }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story__aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .story__quote { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero__logo { margin-bottom: 1rem; }
}

@media (max-width: 480px) {
  .story__aside { grid-template-columns: 1fr; }
  .hero__logo { width: 90vw; margin-bottom: 1rem; }
}
