@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Greens — hero backgrounds only */
  --green-900: #1b3a24;
  --green-800: #1d4a2f;
  --green-600: #2a5233;

  /* PRIMARY ACCENT — terracotta / warm orange */
  --terra:       #c8532a;
  --terra-dark:  #a6421e;
  --terra-mid:   #d4663a;
  --terra-light: #f5e6dc;

  /* Hero gradient warm end */
  --brown:  #7a4525;
  --brown2: #6b3618;

  /* Page backgrounds */
  --cream: #f5f0e8;
  --white: #ffffff;

  /* Footer */
  --footer-bg: #151d19;

  /* Text */
  --text-900: #1a1a1a;
  --text-700: #374151;
  --text-500: #6b7280;
  --text-300: #d1d5db;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.13);
  --radius:    12px;
  --radius-lg: 20px;
  --ease:      0.25s ease;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

/* Logo: circle image + stacked text */
.nav__logo { display: flex; align-items: center; gap: .6rem; }
.nav__logo-img { height: 40px; width: auto; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-name { font-family: var(--font-serif); font-size: .9rem; font-weight: 700; color: var(--text-900); }
.nav__logo-sub  { font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--text-500); }

.nav__links { display: flex; align-items: center; gap: .125rem; }
.nav__links a { padding: .5rem .875rem; font-size: .875rem; font-weight: 500; color: var(--text-700); border-radius: 8px; transition: color var(--ease); }
.nav__links a:hover { color: var(--terra); }
.nav__links a.active { color: var(--terra); font-weight: 600; }
.nav__cta {
  background: var(--terra) !important; color: var(--white) !important;
  padding: .55rem 1.4rem !important; border-radius: 50px !important;
  font-weight: 600 !important; margin-left: .5rem;
  transition: background var(--ease) !important;
}
.nav__cta:hover { background: var(--terra-dark) !important; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--text-900); border-radius: 2px; transition: transform var(--ease), opacity var(--ease); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--white); padding: 1rem 1.5rem 2rem; border-bottom: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow-md); }
  .nav__links.open { display: flex; }
  .nav__links a { display: block; padding: .75rem 1rem; }
  .nav__cta { margin-left: 0 !important; margin-top: .5rem; text-align: center; }
}

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5.5rem 0; }
.section--alt  { background: var(--cream); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; }
.lead { font-size: 1.05rem; color: var(--text-700); line-height: 1.75; max-width: 600px; }

/* ===== SECTION LABEL (replaces pill tag) ===== */
.label {
  display: block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: .875rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: 50px;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary { background: var(--terra); color: var(--white); }
.btn--primary:hover { background: var(--terra-dark); }
.btn--outline { background: transparent; color: var(--text-900); border: 2px solid var(--text-900); }
.btn--outline:hover { background: rgba(0,0,0,.05); }
.btn--outline-terra { background: transparent; color: var(--terra); border: 2px solid var(--terra); }
.btn--outline-terra:hover { background: var(--terra-light); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--sm { padding: .6rem 1.25rem; font-size: .825rem; }

/* ===== HOME HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; text-align: center;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-600) 35%, var(--brown) 70%, var(--brown2) 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 110px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero__leaf {
  position: absolute; top: 1.5rem; left: 2rem;
  font-size: 3rem; opacity: .18; color: var(--white);
  pointer-events: none; user-select: none;
}
.hero__content { position: relative; z-index: 1; color: var(--white); max-width: 860px; margin: 0 auto; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.75); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 2rem;
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.65); flex-shrink: 0; }
.hero h1 { color: var(--white); font-size: clamp(3rem, 7.5vw, 5.75rem); line-height: 1.05; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: #d4a030; } /* warm gold for "Climate" */
.hero__desc { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.hero__desc strong { color: var(--terra-mid); font-weight: 400; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ===== STATS ===== */
.stats { padding: 4rem 0; background: var(--white); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-serif); font-size: 2.75rem; font-weight: 800; color: var(--text-900); line-height: 1; }
.stat__label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-500); margin-top: .5rem; }
.stats__divider { border: none; border-top: 1px solid rgba(0,0,0,.07); }
@media (max-width: 600px) { .stats__grid { grid-template-columns: repeat(2,1fr); } }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header--center { text-align: center; }
.section-header--center .lead { margin: 0 auto; }

/* ===== MISSION ===== */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-image { border-radius: var(--radius-lg); aspect-ratio: 4/3; overflow: hidden; }
.mission-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mission-text { display: flex; flex-direction: column; gap: 1.5rem; }
.mission-text p { color: var(--text-700); line-height: 1.8; }
.mission-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--text-900); font-size: .95rem; transition: color var(--ease); }
.mission-link:hover { color: var(--terra); }
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ===== CARDS (home program preview) ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.25rem; }
.card { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: .75rem; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; }
.card__icon { width: 48px; height: 48px; border-radius: 10px; background: var(--terra-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.card__tag { font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terra); }
.card h3 { font-size: 1.05rem; color: var(--text-900); }
.card p { font-size: .875rem; color: var(--text-700); line-height: 1.7; flex: 1; }
.card__list { display: flex; flex-direction: column; gap: .45rem; }
.card__list li { font-size: .85rem; color: var(--text-700); padding-left: 1.2rem; position: relative; }
.card__list li::before { content: '→'; position: absolute; left: 0; color: var(--terra); }

/* ===== QUOTE SECTION ===== */
.quote { padding: 5.5rem 0; background: var(--terra); text-align: center; }
.quote__heart { font-size: 1.75rem; margin-bottom: 1.75rem; color: rgba(255,255,255,.55); }
.quote blockquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--white); max-width: 800px; margin: 0 auto 1rem; line-height: 1.45; }
.quote cite { font-size: .875rem; color: rgba(255,255,255,.7); font-style: normal; font-weight: 500; display: block; margin-bottom: 2.25rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { padding: 8rem 0 5.5rem; background: linear-gradient(135deg, var(--green-900), var(--green-600)); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero.cream-after::after { background: var(--cream); }
.page-hero__content { position: relative; z-index: 1; max-width: 680px; }
.page-hero__meta { display: inline-flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: .35rem .9rem; border-radius: 50px; margin-bottom: 1.5rem; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.page-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.75; }

/* ===== VALUES GRID ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.value-card { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius); padding: 2rem; transition: box-shadow var(--ease); }
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--terra-light); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.05rem; color: var(--text-900); margin-bottom: .6rem; }
.value-card p { font-size: .875rem; color: var(--text-700); line-height: 1.7; }

/* ===== STORY (about) ===== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.story-text { display: flex; flex-direction: column; gap: 1.25rem; }
.story-text p { color: var(--text-700); line-height: 1.8; }
.story-highlight { background: var(--terra-light); border-left: 4px solid var(--terra); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; }
.story-highlight p { color: var(--text-900); font-style: italic; font-size: .95rem; }
.story-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.story-stat { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius); padding: 1.75rem; text-align: center; box-shadow: var(--shadow-sm); }
.story-stat__num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--terra); line-height: 1; }
.story-stat__label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-500); margin-top: .5rem; }

/* ===== FOUNDATION BOX ===== */
.foundation-box { background: linear-gradient(135deg, var(--green-900), var(--green-800)); border-radius: var(--radius-lg); padding: 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center; }
.foundation-box h2 { color: var(--white); font-size: 1.75rem; margin-bottom: .875rem; }
.foundation-box p { color: rgba(255,255,255,.75); line-height: 1.75; font-size: .95rem; margin-bottom: .75rem; }
.foundation-box blockquote { font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,.65); font-size: 1rem; padding-left: 1.1rem; border-left: 3px solid var(--terra); margin-top: 1.5rem; }
@media (max-width: 768px) { .foundation-box { grid-template-columns: 1fr; } }

/* ===== INVOLVE CARDS ===== */
.involve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.5rem; }
.involve-card { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius-lg); padding: 2.25rem; display: flex; flex-direction: column; gap: 1rem; transition: transform var(--ease), box-shadow var(--ease); }
.involve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.involve-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--terra-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.involve-card h3 { font-size: 1.15rem; color: var(--text-900); }
.involve-card p { font-size: .875rem; color: var(--text-700); line-height: 1.75; flex: 1; }
.involve-card__list { display: flex; flex-direction: column; gap: .4rem; }
.involve-card__list li { font-size: .825rem; color: var(--text-700); padding-left: 1.35rem; position: relative; }
.involve-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--terra); font-weight: 700; font-size: .75rem; }
.involve-card .btn { margin-top: .5rem; align-self: flex-start; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.65fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--terra-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item__label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--terra); margin-bottom: .2rem; }
.contact-item__value { font-size: .9rem; color: var(--text-700); line-height: 1.55; }
.contact-item__value a { color: var(--terra); transition: color var(--ease); }
.contact-item__value a:hover { color: var(--terra-dark); }
.collab-box { background: linear-gradient(135deg, var(--terra-light), var(--cream)); border-radius: var(--radius); padding: 1.75rem; margin-top: .5rem; }
.collab-box h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--text-900); margin-bottom: .6rem; }
.collab-box p { font-size: .875rem; color: var(--text-700); line-height: 1.7; }
.contact-form-wrap { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.375rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-700); margin-bottom: .45rem; }
.form-group input, .form-group textarea { width: 100%; padding: .875rem 1rem; border: 1.5px solid var(--text-300); border-radius: 10px; font-family: var(--font-sans); font-size: .9rem; color: var(--text-900); background: var(--white); outline: none; transition: border-color var(--ease), box-shadow var(--ease); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(200,83,42,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-300); }
.form-group textarea { min-height: 145px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ===== CTA STRIP ===== */
.cta-strip { padding: 5rem 0; background: var(--cream); text-align: center; }
.cta-strip h2 { color: var(--text-900); margin-bottom: 1rem; }
.cta-strip p { color: var(--text-700); max-width: 480px; margin: 0 auto 2rem; }
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--footer-bg); color: var(--white); padding: 4.5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(2,1fr); gap: 3rem; margin-bottom: 3rem; }
.footer__brand { display: flex; flex-direction: column; gap: 1.1rem; }
.footer__logo { display: flex; align-items: center; gap: .65rem; }
.footer__logo-img { height: 38px; width: auto; }
.footer__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer__logo-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.footer__logo-by { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terra-mid); margin-top: .1rem; }
.footer__desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 290px; }
.footer__social { display: flex; gap: .6rem; }
.footer__social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: rgba(255,255,255,.5); transition: color var(--ease), border-color var(--ease); }
.footer__social-link:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.footer__heading { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1.1rem; }
.footer__links { display: flex; flex-direction: column; gap: .65rem; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--ease); }
.footer__links a:hover { color: var(--white); }
.footer__contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer__contact-list a,
.footer__contact-list span { font-size: .875rem; color: rgba(255,255,255,.55); display: flex; align-items: flex-start; gap: .5rem; transition: color var(--ease); line-height: 1.5; }
.footer__contact-list a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer__badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer__badge { font-size: .68rem; font-weight: 600; letter-spacing: .05em; padding: .25rem .65rem; border-radius: 50px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 42px; height: 42px; border-radius: 50%; background: var(--terra); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; opacity: 0; transform: translateY(12px); transition: opacity var(--ease), transform var(--ease), background var(--ease); z-index: 100; box-shadow: var(--shadow-md); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--terra-dark); }

/* ===== FORM SUCCESS ===== */
.form-success { text-align: center; padding: 3rem 2rem; }
.form-success__icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-serif); color: var(--terra); margin-bottom: .5rem; }
.form-success p { color: var(--text-700); font-size: .95rem; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--terra-light); border: 1px solid rgba(0,0,0,.07); transition: transform var(--ease), box-shadow var(--ease); cursor: pointer; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.filter-btn { padding: .45rem 1.1rem; border-radius: 50px; font-size: .825rem; font-weight: 600; border: 1.5px solid var(--text-300); background: var(--white); color: var(--text-700); cursor: pointer; transition: all var(--ease); }
.filter-btn.active, .filter-btn:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }
.gallery-filter { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* ===== PAGE HERO LIGHT VARIANT ===== */
.page-hero--light { background: var(--cream); }
.page-hero--light::after { background: var(--white); }
.page-hero--light .page-hero__meta { color: var(--terra); background: rgba(200,83,42,.08); border: 1px solid rgba(200,83,42,.18); }
.page-hero--light .page-hero__content { text-align: center; max-width: 720px; margin: 0 auto; }
.page-hero--light h1 { color: var(--text-900); }
.page-hero--light .page-hero__sub { color: var(--text-700); }

/* ===== STORY IMAGE WITH BADGE ===== */
.story-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-founded-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  width: 80px; height: 80px; border-radius: 50%;
  background: #d4a030; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.story-founded-badge__year { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 800; color: var(--white); line-height: 1; }
.story-founded-badge__text { font-size: .52rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* ===== FOUNDATION LIGHT (about page) ===== */
.foundation-light { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 2rem; }
.foundation-light__text { display: flex; flex-direction: column; gap: 1.25rem; }
.foundation-light__text h2 { color: var(--text-900); }
.foundation-light__text p { color: var(--text-700); line-height: 1.8; font-size: .95rem; }
.foundation-light__text blockquote { font-family: var(--font-serif); font-style: italic; color: var(--text-700); font-size: 1.05rem; padding-left: 1.1rem; border-left: 3px solid var(--terra); margin-top: .5rem; }
.foundation-light__img { border-radius: var(--radius-lg); overflow: hidden; }
.foundation-light__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
@media (max-width: 900px) { .foundation-light { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ===== PROGRAM ROWS (alternating) ===== */
.prog-rows { display: flex; flex-direction: column; gap: 5rem; }
.prog-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.prog-row:nth-child(even) { direction: rtl; }
.prog-row:nth-child(even) > * { direction: ltr; }
.prog-row__img { border-radius: var(--radius-lg); overflow: hidden; }
.prog-row__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.prog-row__text { display: flex; flex-direction: column; gap: 1rem; }
.prog-row__tag { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terra); background: var(--terra-light); padding: .3rem .75rem; border-radius: 50px; align-self: flex-start; }
.prog-row__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--terra-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.prog-row h3 { font-size: 1.5rem; color: var(--text-900); }
.prog-row p { color: var(--text-700); line-height: 1.8; }
.prog-row__list { display: flex; flex-direction: column; gap: .5rem; }
.prog-row__list li { font-size: .875rem; color: var(--text-700); padding-left: 1.4rem; position: relative; }
.prog-row__list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); }
@media (max-width: 900px) { .prog-row { grid-template-columns: 1fr; gap: 2rem; direction: ltr !important; } .prog-row > * { direction: ltr !important; } }

/* ===== INVOLVE CARD WITH COLORED HEADER ===== */
.involve-card--headed { padding: 0; overflow: hidden; }
.involve-card__header { padding: 1.5rem 1.75rem; display: flex; align-items: center; gap: .875rem; }
.involve-card__header .involve-card__icon { background: rgba(255,255,255,.2); flex-shrink: 0; }
.involve-card__header h3 { color: var(--white); font-size: 1.05rem; margin: 0; }
.involve-card__header--terra { background: var(--terra); }
.involve-card__header--green { background: var(--green-900); }
.involve-card__header--gold  { background: #c09020; }
.involve-card__body { padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.involve-card__body p { font-size: .875rem; color: var(--text-700); line-height: 1.75; }
.involve-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 700; color: var(--terra); margin-top: .25rem; transition: gap var(--ease), color var(--ease); }
.involve-link:hover { gap: .65rem; color: var(--terra-dark); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
