:root {
  --bg: #0b0f07;
  --surface: #121a0f;
  --brand: #5e9145;
  --brand-bright: #78b456;
  --brand-deep: #3d5a2c;
  --accent: #b08d2b;
  --accent-light: #d4b85a;
  --text: #edf2e7;
  --muted: #b8c5ad;
  --line: rgba(141, 168, 111, 0.22);
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #1a2614 0%, var(--bg) 45%);
  line-height: 1.65;
}
h1, h2, h3 { font-family: 'Playfair Display', 'Manrope', serif; }

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; border-radius: 14px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Header — charity-style professional bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(61, 90, 44, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--brand-deep);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  height: 50px;
  width: auto;
  display: block;
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 10px;
}
.brand-text {
  display: flex;
  align-items: center;
}
.brand-text strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.brand-text small {
  display: block;
  color: rgba(237, 242, 231, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  max-width: 18ch;
  line-height: 1.3;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
.nav-links a {
  color: #dce9d0;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #dce9d0;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}
.lang-btn:hover { border-color: #fff; color: #fff; }
.menu-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav a {
  padding: 10px 0;
  color: #dce9d0;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav.is-open { display: flex; }

.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
  font-family: inherit;
}
.btn-primary {
  background: #fff;
  color: var(--brand-deep);
}
.btn-primary:hover { background: #eef5e7; transform: translateY(-1px); }
.btn-ghost {
  border-color: rgba(141, 168, 111, 0.4);
  background: rgba(94, 145, 69, 0.12);
  color: #fff;
}
.btn-ghost:hover { background: rgba(94, 145, 69, 0.22); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.72);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Charity-style hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero.page-hero .hero-content { padding: 110px 24px 56px; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center 30%;
  animation: heroKenBurns 14s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(20, 30, 14, 0.84) 24%, rgba(61, 90, 44, 0.72) 58%, rgba(45, 68, 32, 0.5) 100%);
  background-size: 240% 240%;
  animation: heroGradientShift 12s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 120px 24px 56px;
  max-width: 1180px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #d4e8c4;
  margin-bottom: 18px;
}
.title-dual {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: 20px;
  max-width: 16ch;
}
.title-dual-hero,
.title-dual.section-title { max-width: none; }
.title-line {
  display: block;
  font-family: 'Playfair Display', 'Manrope', serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
}
@media (min-width: 761px) {
  .title-dual-hero .title-line,
  .section-title .title-line {
    white-space: nowrap;
  }
  .title-dual-hero,
  .title-dual.section-title {
    max-width: 24ch;
  }
}
.title-line-accent { color: var(--accent-light); }
.hero-content > .eyebrow,
.hero-content > .lead,
.hero-content > .hero-cta,
.hero-content > .title-dual-hero .title-line {
  opacity: 0;
  transform: translateY(28px);
  animation: heroTextReveal 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-content > .eyebrow { animation-delay: 0.12s; }
.hero-content > .title-dual-hero .title-line:nth-child(1) { animation-delay: 0.28s; }
.hero-content > .title-dual-hero .title-line:nth-child(2) { animation-delay: 0.48s; }
.hero-content > .lead {
  animation-delay: 0.68s;
  max-width: 62ch;
  color: rgba(237, 242, 231, 0.9);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.hero-content > .hero-cta { animation-delay: 0.88s; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 24px 48px;
  max-width: 1180px;
}
.hstat {
  background: rgba(20, 30, 14, 0.55);
  border: 1px solid rgba(212, 232, 196, 0.22);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}
.hstat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent-light);
  margin-bottom: 4px;
}
.hstat span { font-size: 0.86rem; color: rgba(237, 242, 231, 0.82); }

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes heroTextReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Content sections */
.section { padding: 72px 0; }
.section-alt { background: rgba(18, 26, 15, 0.65); }
.section-pattern {
  background:
    radial-gradient(circle at 10% 20%, rgba(94, 145, 69, 0.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(176, 141, 43, 0.06), transparent 35%);
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.section-head { margin-bottom: 20px; }
.section-head .kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dce9d0;
  background: rgba(94, 145, 69, 0.16);
  border: 1px solid rgba(141, 168, 111, 0.35);
}
.section-title { margin: 0; }
.section-title .title-line { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.section-lead { color: var(--muted); margin: 0 0 16px; max-width: 72ch; }
.split p { color: var(--muted); margin-bottom: 14px; }

.panel {
  background: linear-gradient(145deg, rgba(20, 29, 16, 0.95), rgba(10, 15, 8, 0.95));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.info-card {
  background: linear-gradient(145deg, rgba(20, 29, 16, 0.95), rgba(10, 15, 8, 0.95));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.info-card h3, .quote-panel h3 { margin: 0 0 10px; font-size: 1.1rem; color: #f0f5ea; }
.info-card h3 + p { margin-bottom: 16px; }
.info-card p { color: var(--muted); font-size: 0.94rem; }
.bullet-list { margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 8px; }
.contact-card a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 3px; }
.contact-card .btn { margin-top: 12px; }

/* Contact form & map */
.hp-field {
  position: absolute; left: -10000px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}
.contact-section { padding-top: 32px; }
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.contact-list li { color: var(--muted); }
.contact-list a { color: var(--accent-light); font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list strong {
  display: block;
  color: #f0f5ea;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.form { display: flex; flex-direction: column; gap: 18px; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 0.9rem; color: #eef5e7; }
.form input, .form select, .form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(12, 18, 10, 0.92);
  color: #f0f5ea;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid rgba(176, 141, 43, 0.55);
  border-color: transparent;
}
.form .btn { align-self: flex-start; }
.alert { border-radius: 10px; padding: 14px 18px; margin: 0 0 16px; font-weight: 700; }
.alert-success { background: rgba(94, 145, 69, 0.18); color: #d4e8c4; border: 1px solid rgba(141, 168, 111, 0.45); }
.alert-error { background: rgba(176, 60, 50, 0.15); color: #f5d0cc; border: 1px solid rgba(200, 100, 90, 0.4); }
.map-section { margin-top: 48px; }
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: rgba(12, 18, 10, 0.9);
  min-height: 380px;
}
.map-wrap iframe { display: block; width: 100%; height: 380px; min-height: 320px; border: 0; }
.map-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.map-link {
  border-color: rgba(141, 168, 111, 0.55);
  color: #eef5e7;
  background: rgba(20, 29, 16, 0.75);
}
.map-link:hover {
  border-color: var(--accent-light);
  background: rgba(94, 145, 69, 0.22);
  color: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.value-card {
  background: linear-gradient(155deg, rgba(22, 34, 16, 0.9), rgba(11, 15, 9, 0.95));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(176, 141, 43, 0.4); }
.value-card h3 { margin: 0 0 8px; font-size: 1rem; font-family: 'Manrope', sans-serif; }
.value-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.card-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: linear-gradient(155deg, rgba(22, 34, 16, 0.9), rgba(11, 15, 9, 0.95));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(176, 141, 43, 0.4); }
.card h4 { margin: 0 0 8px; font-size: 1rem; }
.card p, .card li { margin: 0; color: var(--muted); font-size: 0.92rem; }
.card ul { margin: 0; padding-left: 18px; display: grid; gap: 6px; }

.timeline {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.phase {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(18, 25, 14, 0.9);
}
.phase h4 { margin: 0 0 8px; color: #f5f9ef; }
.phase ul { margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 6px; font-size: 0.92rem; }

/* Growth strategy */
.growth-section { padding-top: 56px; }
.growth-roadmap {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}
.growth-phase {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
  background: linear-gradient(155deg, rgba(22, 34, 16, 0.92), rgba(11, 15, 9, 0.96));
  position: relative;
  overflow: hidden;
}
.growth-phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
}
.growth-phase-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.phase-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dce9d0;
  background: rgba(94, 145, 69, 0.2);
  border: 1px solid rgba(141, 168, 111, 0.4);
}
.growth-phase h3 {
  margin: 0;
  font-family: 'Playfair Display', 'Manrope', serif;
  font-size: 1.35rem;
  color: #f5f9ef;
}
.growth-phase-lead {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 78ch;
  font-size: 0.96rem;
}
.growth-phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.growth-phase-grid h4 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.growth-phase-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
}
.growth-pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card strong { color: #eef5e7; font-weight: 700; }

/* Editorial layouts */
.editorial-intro { max-width: 820px; }
.prose { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.prose p { margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }
.pull-quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(176, 141, 43, 0.14), transparent);
  color: #eef5e7;
  font-family: 'Playfair Display', 'Manrope', serif;
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
}
.stat-band-wrap { padding: 40px 0; }
.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.stat-item {
  background: rgba(16, 22, 12, 0.95);
  padding: 28px 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}
.stat-item span { color: var(--muted); font-size: 0.9rem; }
.product-segments {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}
@media (min-width: 900px) {
  .product-segments { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}
.product-segment {
  background: rgba(16, 22, 12, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  border-top: 3px solid var(--brand);
  height: 100%;
}
.product-segment-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-bright);
}
.product-segment h3 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  color: #f5f9ef;
  line-height: 1.25;
}
.product-segment-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.product-segment-body p:last-of-type { margin-bottom: 0; }
.product-segment .detail-points {
  margin-top: 14px;
  font-size: 0.9rem;
}
.narrative-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.narrative-block:last-child { border-bottom: 0; }
.narrative-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(176, 141, 43, 0.55);
  line-height: 1;
  padding-top: 4px;
}
.narrative-body h3 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: #f5f9ef;
}
.narrative-body p { margin: 0 0 14px; color: var(--muted); line-height: 1.7; }
.detail-points {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  line-height: 1.6;
}
.flow-stack { display: grid; gap: 0; margin-top: 20px; }
.flow-item {
  padding: 20px 0 20px 28px;
  border-left: 2px solid rgba(141, 168, 111, 0.35);
  position: relative;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(176, 141, 43, 0.15);
}
.flow-item h4 { margin: 0 0 8px; color: #f0f5ea; font-size: 1rem; }
.flow-item p { margin: 0; color: var(--muted); line-height: 1.65; }
.detail-list { display: grid; gap: 28px; margin-top: 8px; }
.detail-item {
  padding: 0 0 0 20px;
  border-left: 3px solid rgba(141, 168, 111, 0.5);
}
.detail-item h3 { margin: 0 0 10px; font-size: 1.05rem; color: #f0f5ea; }
.detail-item p { margin: 0; color: var(--muted); line-height: 1.7; }
.ops-journal { display: grid; gap: 36px; margin-top: 12px; }
.ops-entry { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.ops-entry:last-child { border-bottom: 0; padding-bottom: 0; }
.ops-entry h3 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #f5f9ef;
}
.ops-entry p { margin: 0 0 12px; color: var(--muted); line-height: 1.7; }
.ops-entry p:last-child { margin-bottom: 0; }
.segment-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.segment-story:last-of-type { border-bottom: 0; }
.segment-aside {
  padding: 24px;
  border-radius: 16px;
  background: rgba(18, 26, 15, 0.7);
  border: 1px solid var(--line);
}
.segment-aside h4 {
  margin: 0 0 12px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.segment-aside ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  line-height: 1.55;
}
.corp-facts {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.corp-facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 4px;
}
.corp-facts dd {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}
.founder-message .quote {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
}
.founder-message .quote p { margin: 0 0 16px; }
.founder-message .quote p:last-of-type { margin-bottom: 0; }
.text-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 24px;
}
.text-link-row a {
  color: var(--accent-light);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(141, 168, 111, 0.4);
  padding-bottom: 2px;
}
.text-link-row a:hover { border-color: var(--accent-light); }

.quote-panel { padding: 24px 26px; }

.quote {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(176, 141, 43, 0.18), rgba(176, 141, 43, 0.05), transparent);
  font-style: italic;
  color: #eef5e7;
}
.quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--accent-light);
  font-weight: 700;
}

.gallery-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-band { padding: 48px 0; }
.gallery-band .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.founder-split {
  grid-template-columns: minmax(0, 280px) 1fr;
  align-items: center;
  gap: 36px;
}
.founder-portrait {
  margin: 0;
  width: 100%;
  max-width: 280px;
  justify-self: center;
}
.founder-portrait img {
  display: block;
  width: 100%;
  max-width: 280px;
  max-height: 340px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center 8%;
  aspect-ratio: 4 / 5;
  background: #000;
}
.founder-split .quote-panel {
  align-self: center;
  min-height: 0;
}
.founder-portrait figcaption {
  margin-top: 14px;
  font-weight: 700;
  color: #f0f5ea;
  font-size: 1rem;
}
.founder-portrait figcaption small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  font-size: 0.88rem;
}
.gallery-item {
  background: rgba(15, 22, 11, 0.95);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img, .gallery-item video { width: 100%; height: 210px; object-fit: cover; border-radius: 0; }
.gallery-item .cap { padding: 10px 12px; color: var(--muted); font-size: 0.88rem; }

.gallery-grid--desktop {
  display: none !important;
}
.gallery-carousel {
  display: block;
  position: relative;
  margin-top: 16px;
}
.carousel-gallery .carousel-viewport {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(15, 22, 11, 0.95);
}
.carousel-gallery .carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-gallery .carousel-slide {
  min-width: 100%;
  margin: 0;
  flex: 0 0 100%;
}
.carousel-gallery .gallery-slide img,
.carousel-gallery .gallery-slide video {
  width: 100%;
  height: min(280px, 58vw);
  object-fit: cover;
  display: block;
}
@media (min-width: 921px) {
  .carousel-gallery .gallery-slide img,
  .carousel-gallery .gallery-slide video {
    height: min(420px, 42vw);
  }
}
.carousel-gallery .gallery-slide .cap {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}
.carousel-gallery .carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(94, 145, 69, 0.94);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.carousel-gallery .carousel-btn:hover {
  background: var(--brand);
  transform: translateY(-50%) scale(1.05);
}
.carousel-gallery .carousel-prev { left: 10px; }
.carousel-gallery .carousel-next { right: 10px; }
.carousel-gallery .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.carousel-gallery .carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #b8c9a8;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.carousel-gallery .carousel-dot.is-active {
  background: var(--brand);
  transform: scale(1.15);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Footer — charity glass panel (agro palette) */
.site-footer {
  position: relative;
  padding: 72px 0 52px;
  overflow: hidden;
  color: #fff;
  margin-top: 20px;
}
.footer-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.38) saturate(0.85);
  transform: scale(1.06);
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(61, 90, 44, 0.82) 0%,
    rgba(45, 68, 32, 0.9) 45%,
    rgba(20, 30, 14, 0.94) 100%
  );
}
.footer-shell { position: relative; z-index: 2; }
.footer-brand-overlap {
  font-family: 'Playfair Display', 'Manrope', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #d4e8c4;
  text-align: right;
  margin: 0 8px -28px 0;
  position: relative;
  z-index: 3;
  line-height: 1;
  letter-spacing: -0.02em;
}
.footer-glass {
  position: relative;
  background: rgba(30, 45, 22, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 232, 196, 0.22);
  border-radius: 22px;
  padding: 44px 40px 36px;
  box-shadow: 0 24px 60px rgba(10, 15, 8, 0.38);
}
.footer-grid-3 {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 36px 40px;
  align-items: start;
}
.footer-headline {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}
.footer-desc {
  color: var(--accent-light);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 38ch;
}
.footer-copy { color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; margin-bottom: 8px; }
.footer-group-link a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-group-link a:hover { color: #d4e8c4; }
.footer-col h3 {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: #d4e8c4; }
.footer-links .soon {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}
.footer-links .soon em { font-style: normal; opacity: 0.8; font-size: 0.82rem; }
.footer-contact p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 6px;
}
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: #d4e8c4; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.footer-social a:hover { transform: translateY(-2px); }
.footer-social .soc-wa { background: #25d366; }
.footer-social .soc-mail { background: var(--brand); }
.footer-social .soc-map { background: #4285f4; }
.footer-logo-wrap { margin-top: 14px; }
.footer-logo { height: 52px; width: auto; background: #f0f0f0; padding: 4px 8px; border-radius: 8px; }

.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 12px 30px rgba(18, 140, 76, 0.45);
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 1020px) {
  .nav-links, .nav-actions .btn-primary { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .split, .card-grid, .timeline, .gallery-grid, .values-grid, .hero-stats, .growth-pillars, .stat-band, .segment-story, .narrative-block { grid-template-columns: 1fr 1fr; }
  .footer-grid-3 { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-overlap { text-align: left; margin: 0 0 -20px 4px; }
  .footer-glass { padding: 32px 24px 28px; }
  .footer-desc { max-width: none; }
}
@media (max-width: 760px) {
  .split, .card-grid, .timeline, .gallery-grid, .values-grid, .hero-stats, .stat-band, .segment-story { grid-template-columns: 1fr; }
  .narrative-block { grid-template-columns: 1fr; gap: 12px; }
  .founder-split { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 240px; margin: 0 auto; }
  .founder-portrait img { max-width: 240px; max-height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .growth-phase-grid { grid-template-columns: 1fr; }
  .growth-pillars { grid-template-columns: 1fr; }
  .hero-content { padding-top: 96px; }
  .wa-float span { display: none; }
  .wa-float { width: 56px; height: 56px; padding: 0; justify-content: center; border-radius: 50%; }
}
