/* ===========================================================================
   Mizizi Foundation — "Warm & Human" design system
   Palette drawn from the brand logo: warm gold, deep forest green, terracotta,
   on a soft cream ground. Tree / roots motif carried through quietly.
   =========================================================================== */

:root {
  /* Brand */
  --gold: #e7a23a;
  --gold-soft: #f2c873;
  --gold-deep: #c5821f;
  --forest: #2c5f3a;
  --forest-deep: #1d4128;
  --forest-soft: #4f8460;
  --terracotta: #c2683d;
  --terracotta-soft: #e9a079;

  /* Neutrals */
  --cream: #fbf6ec;
  --cream-2: #f4ead7;
  --cream-3: #efe1c8;
  --ink: #29241d;
  --muted: #6c6357;
  --line: #e7dcc7;
  --white: #ffffff;

  /* System */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(41, 36, 29, .06);
  --shadow: 0 14px 40px -18px rgba(41, 36, 29, .28);
  --shadow-lg: 0 30px 70px -30px rgba(29, 65, 40, .45);
  --maxw: 1180px;
  --gut: clamp(1.1rem, 4vw, 2.5rem);

  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold-deep); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--ink); letter-spacing: -.01em; }
button { font: inherit; cursor: pointer; }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--forest); color: #fff; padding: .6rem 1rem; border-radius: 10px; z-index: 999;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-cream-2 { background: var(--cream-2); }
.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--white); }
.center { text-align: center; }
.measure { max-width: 56ch; }
.measure-center { max-width: 60ch; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-center { justify-content: center; }

h1 { font-size: clamp(2.3rem, 1.5rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem); }
.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: var(--muted); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn-solid { background: var(--gold); color: var(--forest-deep); box-shadow: 0 10px 22px -10px rgba(199, 130, 31, .8); }
.btn-solid:hover { background: var(--gold-deep); color: #fff; }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--forest-deep); color: #fff; }
.btn-outline { border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--forest-deep); }
.btn-cream:hover { background: #fff; }
.btn-ghost-light { border-color: rgba(251,246,236,.5); color: var(--cream); }
.btn-ghost-light:hover { background: var(--cream); color: var(--forest-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--forest); }
.text-link svg { width: 1em; height: 1em; transition: transform .18s ease; }
.text-link:hover svg { transform: translateX(4px); }

/* ===========================================================================
   Header
   =========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,246,236,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand-mark { width: 48px; height: 48px; border-radius: 50%; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--forest); }
.brand-name span { color: var(--gold-deep); }
.brand-tagline { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: .35rem; }
.nav-list > li > a {
  display: inline-block; padding: .55rem .85rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .96rem; color: var(--ink); transition: background .15s ease, color .15s ease;
}
.nav-list > li > a:hover { background: var(--cream-2); color: var(--forest); }
.nav-list > li > a[aria-current="page"] { color: var(--forest); background: var(--cream-3); }
.nav-cta { margin-left: .5rem; }
.nav-cta .btn { padding: .7rem 1.3rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--white); position: relative; }
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--ink); transform: translate(-50%, -50%); transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bar::before { transform: translate(-50%, -8px); }
.nav-toggle-bar::after { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translate(-50%, 0) rotate(45deg); background: var(--ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translate(-50%, 0) rotate(-45deg); background: var(--ink); }

/* ===========================================================================
   Hero
   =========================================================================== */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(242,200,115,.5), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(79,132,96,.18), transparent 60%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy h1 { margin-bottom: 1.1rem; }
.hero-copy .lead { margin-bottom: 1.8rem; max-width: 46ch; }
.hero-stats { display: flex; gap: 1.8rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat b { font-family: var(--font-display); font-size: 2rem; color: var(--forest); line-height: 1; }
.hero-stat span { font-size: .85rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-top: .35rem; }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; transform: rotate(1.5deg);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame-2 {
  position: absolute; bottom: -28px; left: -28px; width: 46%; aspect-ratio: 1;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 6px solid var(--cream); transform: rotate(-3deg);
}
.hero-media .frame-2 img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: -22px; right: -10px; background: var(--forest); color: var(--cream);
  border-radius: 50%; width: 116px; height: 116px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); transform: rotate(-8deg); padding: .5rem;
}
.hero-badge b { font-family: var(--font-display); font-size: 2.1rem; line-height: .9; color: var(--gold-soft); }
.hero-badge span { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }

/* ===========================================================================
   Cards & grids
   =========================================================================== */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 3/2; overflow: hidden; background: var(--cream-3); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.card-title { font-size: 1.28rem; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--forest); }
.card-excerpt { color: var(--muted); font-size: .98rem; }
.card-foot { margin-top: auto; padding-top: .4rem; }
.card-date { font-size: .85rem; color: var(--muted); font-weight: 600; }

/* Involve cards */
.involve-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.involve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.involve-card .ico {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-content: center;
  background: var(--cream-2); color: var(--forest); margin-bottom: 1.2rem;
}
.involve-card .ico svg { width: 30px; height: 30px; }
.involve-card h3 { margin-bottom: .5rem; text-transform: capitalize; }
.involve-card p { color: var(--muted); margin-bottom: 1.2rem; }

/* ===========================================================================
   About / mission split
   =========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.values { display: grid; gap: .8rem; margin: 1.6rem 0; }
.value-row { display: flex; align-items: center; gap: .9rem; font-weight: 600; }
.value-row .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--cream-2); color: var(--forest); display: grid; place-content: center; flex: none; }
.value-row .ico svg { width: 22px; height: 22px; }
.stat-chip {
  position: absolute; right: -18px; bottom: -18px; background: var(--gold); color: var(--forest-deep);
  border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow); text-align: center;
}
.stat-chip b { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; display: block; }
.stat-chip span { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* ===========================================================================
   Videos
   =========================================================================== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow-sm); background: #000; }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===========================================================================
   Gallery
   =========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: .8rem; }
.gallery a { display: block; overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.08); }
.gallery a:nth-child(1) { grid-row: span 2; }
.gallery a:nth-child(6) { grid-column: span 2; }

/* ===========================================================================
   Masonry gallery + lightbox
   =========================================================================== */
.masonry { columns: 4 240px; column-gap: 1rem; }
.masonry-item {
  display: block; width: 100%; margin: 0 0 1rem; padding: 0; border: 0; cursor: zoom-in;
  background: var(--cream-3); border-radius: var(--radius); overflow: hidden;
  break-inside: avoid; box-shadow: var(--shadow-sm); line-height: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.masonry-item img { width: 100%; height: auto; transition: transform .5s ease; }
.masonry-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.masonry-item:hover img { transform: scale(1.04); }

.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  grid-template-columns: auto 1fr auto; gap: .5rem; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 16, 12, .92); backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox-figure { grid-column: 2; margin: 0; max-width: 100%; max-height: 86vh; display: grid; place-items: center; }
.lightbox-figure img { max-width: 100%; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-nav, .lightbox-close {
  background: rgba(251,246,236,.12); color: var(--cream); border: 0; border-radius: 50%;
  width: 52px; height: 52px; font-size: 2rem; line-height: 1; cursor: pointer;
  display: grid; place-content: center; transition: background .15s ease;
}
.lightbox-nav:hover, .lightbox-close:hover { background: var(--gold); color: var(--forest-deep); }
.lightbox-prev { grid-column: 1; }
.lightbox-next { grid-column: 3; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 46px; height: 46px; font-size: 1.7rem; }
.lightbox-count { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; color: rgba(251,246,236,.75); font-weight: 600; font-size: .9rem; }

@media (max-width: 860px) { .masonry { columns: 2 160px; } }
@media (max-width: 560px) {
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { position: absolute; left: .6rem; top: 50%; }
  .lightbox-next { position: absolute; right: .6rem; top: 50%; }
}

/* ===========================================================================
   Events
   =========================================================================== */
.event { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow-sm); align-items: center; }
.event-date { background: var(--forest); color: var(--cream); border-radius: var(--radius); padding: 1rem 1.1rem; text-align: center; min-width: 84px; }
.event-date b { font-family: var(--font-display); font-size: 2rem; display: block; line-height: 1; }
.event-date span { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.event-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; color: var(--muted); font-size: .9rem; font-weight: 600; margin: .4rem 0 .6rem; }
.event-meta span { display: inline-flex; align-items: center; gap: .35rem; }

/* ===========================================================================
   Banner CTA (fundraising)
   =========================================================================== */
.banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(2.5rem, 6vw, 4.5rem); color: var(--cream); }
.banner::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, var(--forest-deep), var(--forest) 60%, var(--forest-soft)); }
.banner::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(242,200,115,.35), transparent 70%); z-index: -1; }
.banner h2 { color: #fff; max-width: 20ch; }
.banner p { color: rgba(251,246,236,.85); max-width: 54ch; margin: 1rem 0 1.6rem; }

/* ===========================================================================
   Footer
   =========================================================================== */
.site-footer { background: var(--forest-deep); color: rgba(251,246,236,.82); margin-top: clamp(3rem, 6vw, 5rem); }
.footer-cta { background: var(--gold); color: var(--forest-deep); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-block: clamp(2rem, 4vw, 3rem); }
.footer-cta h2 { color: var(--forest-deep); max-width: 24ch; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.5rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer-about p { margin: 1.1rem 0; max-width: 42ch; font-size: .95rem; }
.brand-footer .brand-name, .brand-footer .brand-name span { color: var(--cream); }
.brand-footer .brand-tagline { color: var(--gold-soft); }
.site-footer h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 1.1rem; }
.footer-links a, .footer-contact a { color: rgba(251,246,236,.82); }
.footer-links li, .footer-contact li { margin-bottom: .6rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-soft); }
.footer-contact span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-soft); font-weight: 700; }
.social { display: flex; gap: .6rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-content: center; background: rgba(251,246,236,.1); color: var(--cream); transition: background .18s ease, color .18s ease, transform .18s ease; }
.social a:hover { background: var(--gold); color: var(--forest-deep); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(251,246,236,.12); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.4rem; font-size: .85rem; color: rgba(251,246,236,.6); }

/* ===========================================================================
   Page header (interior pages)
   =========================================================================== */
.page-hero { position: relative; padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 100% at 80% 0%, rgba(242,200,115,.4), transparent 60%), var(--cream-2); }
.breadcrumb { font-size: .85rem; color: var(--muted); font-weight: 600; margin-bottom: 1rem; }
.breadcrumb a { color: var(--forest); }

/* Article */
.article { max-width: 760px; margin-inline: auto; }
.article-hero { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 2.2rem; aspect-ratio: 16/9; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 1.1rem; color: #3a342b; }
.prose p { margin-bottom: 1.3rem; }
.prose h2, .prose h3 { margin: 2rem 0 .8rem; }
.prose strong { color: var(--ink); }
.meta-line { display: flex; gap: 1rem; align-items: center; color: var(--muted); font-weight: 600; font-size: .9rem; margin-bottom: 1.5rem; }
.pill { display: inline-block; background: var(--cream-3); color: var(--gold-deep); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .8rem; border-radius: var(--radius-pill); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; gap: 1rem; align-items: flex-start; }
.contact-card .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--cream-2); color: var(--forest); display: grid; place-content: center; flex: none; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.contact-card a { font-weight: 600; word-break: break-word; }

/* Team */
.team-card { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.4rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo { width: 150px; height: 150px; margin: 0 auto 1.1rem; border-radius: 50%; background: linear-gradient(160deg, var(--cream-2), var(--cream-3)); display: grid; place-content: center; overflow: hidden; border: 4px solid var(--cream-2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card h3 { font-size: 1.25rem; }
.team-role { color: var(--gold-deep); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin: .2rem 0 .7rem; }
.team-card p { color: var(--muted); font-size: .95rem; }

/* Decorative leaf divider */
.leaf-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); margin: 0 auto; }
.leaf-divider::before, .leaf-divider::after { content: ""; height: 2px; width: clamp(40px, 12vw, 120px); background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.leaf-divider::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }

/* ===========================================================================
   Reveal-on-scroll
   =========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
  [data-reveal].is-visible { opacity: 1; transform: none; }
}

/* ===========================================================================
   Responsive
   =========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery a:nth-child(6) { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav { position: static; }
  .nav-list {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--cream); padding: 1rem var(--gut) 1.6rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-list.is-open { transform: translateY(0); }
  .nav-list > li > a { padding: .85rem 1rem; border-radius: 12px; font-size: 1.05rem; }
  .nav-cta { margin: .4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .brand-tagline { display: none; }
}

@media (max-width: 560px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .event { grid-template-columns: 1fr; text-align: center; }
  .event-date { justify-self: center; }
  .hero-badge { width: 96px; height: 96px; }
  .stat-chip { right: 8px; }
}
