/* =========================================================
   Ecolive — Brand stylesheet
   Palette derived from the logo & profile:
   Green (hope/prosperity), Brown (earth/soil), White (transparency)
   ========================================================= */

:root {
  --green-900: #1e3d23;
  --green-800: #244d28;
  --green-700: #2e6b32;
  --green-600: #3a7d3e;
  --green-500: #4c9a4f;
  --green-300: #8fc492;
  --green-100: #e4f0e2;
  --brown-700: #5b3a22;
  --brown-500: #8b5e3c;
  --brown-300: #c39d7e;
  --cream:     #f7f5ee;
  --cream-2:   #eef0e6;
  --ink:       #20281f;
  --muted:     #5d6a58;
  --white:     #ffffff;
  --shadow:    0 14px 40px rgba(30, 61, 35, 0.12);
  --shadow-sm: 0 6px 18px rgba(30, 61, 35, 0.10);
  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 13px 26px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--green-700); color: #fff; box-shadow: 0 8px 22px rgba(46,107,50,.35); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 238, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46,107,50,.12);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; }
.brand-text { font-weight: 800; font-size: 1.35rem; line-height: 1; display: flex; align-items: baseline; gap: 0; }
.brand-eco { color: var(--green-700); }
.brand-live { color: var(--brown-500); }
.brand-accent { color: var(--green-500); }
.brand-text small { font-size: .62rem; font-weight: 600; letter-spacing: .18em; color: var(--brown-500); text-transform: uppercase; margin-left: 6px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--ink); position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--green-600); transition: width .25s ease;
}
.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta).active::after { width: 100%; }
.nav a:not(.nav-cta).active { color: var(--green-700); font-weight: 600; }
.nav-cta { background: var(--green-700); color: #fff !important; padding: 9px 20px; border-radius: 50px; }
.nav-cta:hover, .nav-cta.active { background: var(--green-800); }

/* Tabbed pages: only the active page's sections are shown */
.page-hidden { display: none !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--green-800); border-radius: 3px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: 120px 0 96px;
  background:
    linear-gradient(160deg, rgba(30,61,35,.94) 0%, rgba(36,77,40,.86) 50%, rgba(58,125,62,.78) 100%),
    url("assets/hero-hands.jpg") center 30% / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0, transparent 35%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 8c6 8 6 18 0 26-6-8-6-18 0-26z' fill='%23ffffff' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; }
.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .76rem; font-weight: 600; color: var(--green-300); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.1; font-weight: 800; letter-spacing: -.5px; }
.hero h1 span { color: var(--green-300); }
.hero-lead { font-size: 1.12rem; max-width: 620px; margin: 22px 0 32px; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 54px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat span { font-size: .82rem; color: rgba(255,255,255,.8); margin-top: 6px; max-width: 150px; }

/* ---------- Values marquee ---------- */
.values-strip { background: var(--brown-700); color: var(--cream); overflow: hidden; padding: 14px 0; }
.marquee { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: scroll 26s linear infinite; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .9rem; }
.marquee span { opacity: .92; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--cream-2); }
.section-green { background: linear-gradient(160deg, var(--green-800), var(--green-700)); color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head.light h2, .section-head.light .kicker { color: #fff; }
.kicker { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 700; color: var(--green-600); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; color: var(--green-900); letter-spacing: -.5px; }
.section-green .section-head h2 { color: #fff; }
.section-sub { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.section-green .section-sub { color: rgba(255,255,255,.85); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start; margin-bottom: 60px; }
.about-text p { margin-bottom: 18px; color: var(--muted); font-size: 1.04rem; }
.about-text blockquote {
  font-family: "Lora", serif; font-style: italic; font-size: 1.25rem; color: var(--green-800);
  border-left: 4px solid var(--green-500); padding: 6px 0 6px 22px; margin-top: 26px;
}
.about-cards { display: grid; gap: 20px; }
.vm-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(46,107,50,.08); }
.vm-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-100); color: var(--green-700); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.vm-icon svg { width: 26px; height: 26px; }
.vm-card h3 { color: var(--green-800); font-size: 1.2rem; margin-bottom: 8px; }
.vm-card p { color: var(--muted); font-size: .98rem; }

.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.value { background: #fff; border-radius: var(--radius-sm); padding: 22px 18px; border-top: 4px solid var(--green-500); box-shadow: var(--shadow-sm); transition: transform .25s ease; }
.value:hover { transform: translateY(-5px); }
.value h4 { color: var(--green-800); font-size: 1.02rem; margin-bottom: 8px; }
.value p { font-size: .86rem; color: var(--muted); }

/* ---------- Source to Sea ---------- */
.s2s-flow { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.s2s-step { flex: 1; min-width: 180px; background: #fff; border-radius: var(--radius); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(46,107,50,.08); }
.s2s-emoji { width: 64px; height: 64px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.s2s-emoji svg { width: 30px; height: 30px; }
.s2s-step h4 { color: var(--green-800); font-size: 1.18rem; margin-bottom: 8px; }
.s2s-step p { font-size: .9rem; color: var(--muted); }
.s2s-arrow { display: flex; align-items: center; font-size: 1.8rem; color: var(--green-500); font-weight: 700; }
.s2s-photo { margin: 44px auto 0; max-width: 920px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.s2s-photo img { width: 100%; height: 340px; object-fit: cover; }
.s2s-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 24px 16px;
  background: linear-gradient(to top, rgba(20,40,24,.78), transparent);
  color: #fff; font-size: .92rem; font-weight: 500;
}

/* ---------- Thematic ---------- */
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.theme-card { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(46,107,50,.08); position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.theme-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.theme-tag { display: inline-block; background: var(--green-100); color: var(--green-700); font-weight: 700; font-size: .72rem; letter-spacing: .1em; padding: 5px 12px; border-radius: 50px; text-transform: uppercase; margin-bottom: 16px; }
.theme-card h3 { color: var(--green-900); font-size: 1.2rem; margin-bottom: 12px; line-height: 1.3; }
.theme-card p { color: var(--muted); font-size: .96rem; }

/* ---------- Programs ---------- */
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.program-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 34px 28px; position: relative; backdrop-filter: blur(4px); transition: transform .25s ease, background .25s ease; }
.program-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.14); }
.program-emoji { width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,.14); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.program-emoji svg { width: 32px; height: 32px; }
.program-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.program-card p { color: rgba(255,255,255,.85); font-size: .96rem; }
.program-pill { position: absolute; top: 22px; right: 22px; background: var(--green-300); color: var(--green-900); font-weight: 700; font-size: .72rem; padding: 4px 12px; border-radius: 50px; letter-spacing: .08em; }

/* ---------- Strategy list ---------- */
.strategy-list { max-width: 820px; margin: 0 auto; list-style: none; counter-reset: step; }
.strategy-list li { position: relative; padding: 0 0 30px 70px; counter-increment: step; }
.strategy-list li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-700); color: #fff; font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.strategy-list li:not(:last-child)::after {
  content: ""; position: absolute; left: 23px; top: 52px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--green-300), transparent);
}
.strategy-list h4 { color: var(--green-800); font-size: 1.18rem; margin-bottom: 6px; }
.strategy-list p { color: var(--muted); font-size: .98rem; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.founder-media { display: grid; gap: 16px; }
.founder-portrait { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 1 / 1; }
.founder-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.founder-thumbs img { width: 100%; height: 130px; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.founder-content { position: relative; }
.founder-head { text-align: left; margin: 0 0 18px; }
.founder-mark { font-family: "Lora", serif; font-size: 6rem; color: var(--green-300); line-height: .5; height: 46px; }
.founder-quote { font-family: "Lora", serif; font-style: italic; font-size: 1.45rem; line-height: 1.5; color: var(--green-800); margin: 10px 0 22px; border-left: 4px solid var(--green-500); padding-left: 22px; }
.founder-body { color: var(--muted); font-size: 1.05rem; }
.founder-body em { color: var(--brown-500); font-style: italic; font-weight: 600; }
.founder-name { margin-top: 22px; font-weight: 700; color: var(--green-700); }

/* ---------- Impact ---------- */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.impact-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(46,107,50,.08); transition: transform .25s ease, box-shadow .25s ease; }
.impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.impact-banner { height: 210px; position: relative; display: flex; align-items: flex-end; padding: 16px; overflow: hidden; }
.impact-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.impact-card:hover .impact-banner img { transform: scale(1.06); }
.impact-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,40,24,.55), rgba(20,40,24,.05) 55%, transparent);
}
.impact-badge { position: relative; z-index: 2; background: rgba(255,255,255,.94); color: var(--green-800); font-weight: 700; font-size: .72rem; padding: 5px 13px; border-radius: 50px; letter-spacing: .08em; text-transform: uppercase; }
.impact-body { padding: 24px 24px 28px; }
.impact-body h3 { color: var(--green-900); font-size: 1.18rem; margin-bottom: 10px; line-height: 1.3; }
.impact-body p { color: var(--muted); font-size: .94rem; }

.impact-link { display: inline-block; margin-top: 8px; color: var(--green-700); font-weight: 600; font-size: .9rem; }
.impact-link:hover { color: var(--green-800); text-decoration: underline; }

/* ---------- Nurseries spotlight ---------- */
.nursery-feature { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.nursery-text .kicker { color: var(--green-600); }
.nursery-text h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; color: var(--green-900); margin-bottom: 16px; }
.nursery-text > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.nursery-text strong { color: var(--green-800); }
.nursery-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.ns-item { display: flex; flex-direction: column; }
.ns-item strong { font-size: 2.4rem; font-weight: 800; color: var(--green-700); line-height: 1; }
.ns-item span { font-size: .86rem; color: var(--muted); margin-top: 6px; }

.nursery-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nursery-gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.nursery-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 200px; transition: transform .5s ease; }
.nursery-gallery figure:hover img { transform: scale(1.06); }
.ng-tall { grid-row: span 2; }
.ng-tall img { min-height: 414px; }
.ng-tall figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 14px;
  background: linear-gradient(to top, rgba(20,40,24,.8), transparent);
  color: #fff; font-size: .85rem; font-weight: 500;
}

/* ---------- News (cards) ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(46,107,50,.08); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-cover { height: 200px; overflow: hidden; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-cover img { transform: scale(1.06); }
.news-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-600); margin-bottom: 10px; }
.news-card h3 { color: var(--green-900); font-size: 1.16rem; line-height: 1.3; margin-bottom: 10px; }
.news-card p { color: var(--muted); font-size: .94rem; flex: 1; }
.news-readmore { margin-top: 16px; font-weight: 600; color: var(--green-700); font-size: .9rem; }
.news-card:hover .news-readmore { color: var(--green-800); text-decoration: underline; }
.news-more { text-align: center; margin-top: 40px; }

/* ---------- Article (post) pages ---------- */
.post-hero { position: relative; height: clamp(300px, 44vh, 460px); overflow: hidden; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,36,22,.82), rgba(18,36,22,.25) 60%, rgba(18,36,22,.15)); }
.post-hero-inner { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 0; }
.post-hero-inner .container { color: #fff; }
.post-cat { display: inline-block; background: var(--green-600); color: #fff; font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.post-title { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 800; color: #fff; max-width: 880px; line-height: 1.15; letter-spacing: -.5px; }
.post-meta { margin-top: 16px; color: rgba(255,255,255,.92); font-size: .9rem; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.post-meta svg { width: 16px; height: 16px; }
.post-article { max-width: 740px; margin: 0 auto; padding: 50px 22px 80px; }
.post-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; color: var(--green-700); font-weight: 600; font-size: .92rem; }
.post-back:hover { color: var(--green-900); }
.post-back svg { width: 18px; height: 18px; }
.post-article p { color: var(--ink); font-size: 1.1rem; line-height: 1.85; margin-bottom: 24px; }
.post-article p.lead { font-size: 1.25rem; color: var(--green-800); font-weight: 500; }
.post-figure { margin: 8px 0 32px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.post-figure img { width: 100%; display: block; }
.post-figure figcaption { font-size: .86rem; color: var(--muted); padding: 12px 16px; background: #fff; font-style: italic; }
.post-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 10px 0 32px; }
.post-gallery img { width: 100%; height: 170px; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.post-cta { margin-top: 44px; padding: 30px; background: var(--green-100); border-radius: var(--radius); text-align: center; }
.post-cta h3 { color: var(--green-800); font-size: 1.25rem; margin-bottom: 10px; }
.post-cta p { color: var(--muted); margin-bottom: 18px; font-size: 1rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 165px;
  grid-auto-flow: dense;
  gap: 14px;
}
.g-item { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,40,24,.4), transparent 50%);
  opacity: 0; transition: opacity .3s ease;
}
.g-item:hover::after { opacity: 1; }
.g-item::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.7);
  z-index: 2; opacity: 0; transition: opacity .3s ease, transform .3s ease;
  background: rgba(255,255,255,.92) url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23244d28%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2711%27%20cy%3D%2711%27%20r%3D%277%27%2F%3E%3Cline%20x1%3D%2721%27%20y1%3D%2721%27%20x2%3D%2716.65%27%20y2%3D%2716.65%27%2F%3E%3Cline%20x1%3D%2711%27%20y1%3D%278%27%20x2%3D%2711%27%20y2%3D%2714%27%2F%3E%3Cline%20x1%3D%278%27%20y1%3D%2711%27%20x2%3D%2714%27%20y2%3D%2711%27%2F%3E%3C%2Fsvg%3E") center / 22px no-repeat;
  width: 46px; height: 46px; border-radius: 50%;
}
.g-item:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }
.g-big  { grid-column: span 2; grid-row: span 2; }

/* ---------- Video feature ---------- */
.video-feature { max-width: 940px; margin: 0 auto 44px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #0c160d; }
.video-feature video { width: 100%; display: block; max-height: 560px; background: #0c160d; }
.video-feature figcaption { background: #fff; color: var(--muted); font-size: .9rem; padding: 14px 18px; text-align: center; font-style: italic; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15, 28, 17, .92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 30px;
  animation: lbFade .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-figure { margin: 0; max-width: 90vw; max-height: 88vh; text-align: center; }
.lb-figure img { max-width: 90vw; max-height: 78vh; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,.5); object-fit: contain; }
.lb-figure figcaption { color: #fff; margin-top: 16px; font-size: 1rem; font-weight: 500; }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer; border-radius: 50%; transition: background .2s ease, transform .2s ease;
}
.lb-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; line-height: 1; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- Poem ---------- */
.poem-section { background: linear-gradient(160deg, var(--green-900), var(--brown-700)); color: var(--cream); }
.poem-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; }
.poem-inner { max-width: 680px; }
.light-kicker { color: var(--green-300); }
.poem-title { font-family: "Lora", serif; font-size: 2.4rem; color: #fff; margin-bottom: 28px; }
.poem { font-family: "Lora", serif; font-size: 1.12rem; line-height: 1.95; color: rgba(255,255,255,.92); font-style: italic; }
.poem strong { color: var(--green-300); font-style: normal; }
.poem-media { display: grid; gap: 18px; }
.poem-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.poem-media img:first-child { height: 280px; }
.poem-media img:last-child { height: 200px; }

/* ---------- SDGs ---------- */
.sdg-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.sdg { background: var(--sdg); color: #fff; border-radius: var(--radius-sm); padding: 20px 12px; text-align: center; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow-sm); transition: transform .25s ease; }
.sdg:hover { transform: scale(1.06); }
.sdg strong { font-size: 2rem; font-weight: 800; line-height: 1; }
.sdg span { font-size: .72rem; font-weight: 600; margin-top: 8px; }

/* ---------- Logo meaning ---------- */
.logo-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.logo-visual { background: radial-gradient(circle, var(--green-100), transparent 70%); border-radius: 50%; padding: 30px; display: flex; justify-content: center; }
.logo-visual img { width: 280px; }
.logo-text .section-head { text-align: left; margin-bottom: 28px; }
.logo-list { list-style: none; display: grid; gap: 16px; margin-bottom: 26px; }
.logo-list li { padding-left: 34px; position: relative; color: var(--muted); font-size: 1rem; }
.logo-list li .li-ic { position: absolute; left: 0; top: 3px; width: 22px; height: 22px; color: var(--green-600); flex-shrink: 0; }
.logo-list strong { color: var(--green-800); }
.logo-colors { display: flex; gap: 12px; flex-wrap: wrap; }
.lc { font-size: .82rem; font-weight: 600; padding: 8px 16px; border-radius: 50px; }
.lc-green { background: var(--green-700); color: #fff; }
.lc-white { background: #fff; color: var(--ink); border: 1px solid rgba(0,0,0,.12); }
.lc-brown { background: var(--brown-500); color: #fff; }

/* ---------- CTA ---------- */
.cta-section { background: linear-gradient(160deg, var(--green-800), var(--green-900)); color: #fff; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.cta-text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,.88); font-size: 1.08rem; margin-bottom: 26px; }
.contact-points { list-style: none; display: grid; gap: 12px; }
.contact-points li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.contact-points span { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.12); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-points span svg { width: 19px; height: 19px; }

.cta-form { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); color: var(--ink); }
.cta-form h3 { color: var(--green-800); font-size: 1.4rem; margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--green-800); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(46,107,50,.25); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; background: var(--cream); transition: border .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(76,154,79,.18); background: #fff;
}
.form-note { margin-top: 14px; text-align: center; color: var(--green-700); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-note svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.82); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { width: 70px; margin-bottom: 16px; background: #fff; border-radius: 12px; padding: 6px; }
.footer-brand p { font-size: .92rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .92rem; margin-bottom: 10px; color: rgba(255,255,255,.78); transition: color .2s ease, padding .2s ease; }
.footer-col a:hover { color: var(--green-300); padding-left: 4px; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: .82rem; color: rgba(255,255,255,.6); flex-wrap: wrap; }
.footer-bar-inner span:last-child { font-style: italic; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-grid, .program-grid, .impact-grid, .news-grid { grid-template-columns: 1fr; }
  .logo-wrap, .cta-inner { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-media { max-width: 460px; }
  .poem-grid { grid-template-columns: 1fr; }
  .poem-media { grid-template-columns: 1fr 1fr; max-width: 520px; }
  .nursery-feature { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-big { grid-column: span 2; grid-row: span 2; }
  .g-wide { grid-column: span 2; grid-row: span 1; }
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .logo-text .section-head { text-align: center; }
  .sdg-grid { grid-template-columns: repeat(4, 1fr); }
  .s2s-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid rgba(46,107,50,.12);
    padding: 10px 22px; box-shadow: var(--shadow-sm);
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  }
  .nav.open { max-height: 360px; padding: 16px 22px 22px; }
  .nav a { width: 100%; padding: 12px 0; }
  .nav-cta { width: 100%; text-align: center; margin-top: 8px; }
  .hero { padding: 80px 0 64px; }
  .hero-stats { gap: 24px; }
  .stat strong { font-size: 1.7rem; }
  .values-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .gallery-grid { grid-auto-rows: 120px; }
  .post-gallery { grid-template-columns: 1fr 1fr; }
  .team-grid, .team-grid-3 { grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; }
}

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-grid-2 { grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; }
.team-grid-3 { grid-template-columns: repeat(3, minmax(0, 320px)); justify-content: center; }
.team-card { background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(46,107,50,.08); transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo { width: 150px; height: 150px; margin: 0 auto 18px; }
.team-photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 22px rgba(46,107,50,.18); }
.team-avatar { width: 150px; height: 150px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(150deg, var(--green-500), var(--brown-500)); color: #fff; font-weight: 800; font-size: 2.4rem; letter-spacing: .04em; display: flex; align-items: center; justify-content: center; }
.team-photo .team-avatar { margin: 0; }
.team-card h3 { color: var(--green-800); font-size: 1.18rem; margin-bottom: 4px; }
.team-role { color: var(--brown-500); font-weight: 600; font-size: .95rem; margin-bottom: 10px; }
.team-linkedin { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; color: var(--green-700); background: var(--green-100); margin-bottom: 14px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.team-linkedin svg { width: 20px; height: 20px; }
.team-linkedin:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }
.team-bio { color: var(--muted); font-size: .9rem; line-height: 1.6; }

@media (max-width: 560px) {
  .team-grid, .team-grid-2, .team-grid-3 { grid-template-columns: 1fr; }
}
