/* ============================================================
   CRLiH – Modern Creative Stylesheet 2025
   Design Language: Bold, asymmetric, editorial, clean white
   with sage green + gold accent system, glassmorphism panels,
   gradient mesh, large display typography, animated elements.

   Brand Colors:
     Primary:   #6D886B  #85A083  #C2CFC1
     Secondary: #CCB381  #BF9F5F  #E4CDA1
     Charcoal:  #545454
   ============================================================ */

/* ─────────────────────────────────────────
   CSS Custom Properties
───────────────────────────────────────── */
:root {
  --green-dark:    #6D886B;
  --green-mid:     #85A083;
  --green-light:   #C2CFC1;
  --green-pale:    #eaf0ea;
  --green-ultra:   #f3f8f3;
  --green-mesh:    #dde9dd;

  --gold:          #CCB381;
  --gold-deep:     #BF9F5F;
  --gold-light:    #E4CDA1;
  --gold-pale:     #fbf6ec;

  --charcoal:      #3d3d3d;
  --charcoal-soft: #555555;
  --muted:         #8a9a8a;
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --gray-50:       #F9F9F9;
  --gray-100:      #F2F2F2;
  --gray-200:      #E8E8E8;
  --border:        #E2EAE2;
  --border-soft:   #EDF3ED;

  /* Surfaces */
  --bg:            #FFFFFF;
  --bg-alt:        #F8FAF8;
  --bg-section:    #F8FAF8;   /* alias for bg-alt used in newer pages */
  --bg-card:       #FFFFFF;   /* alias for white card surface */
  --surface:       #FFFFFF;
  --surface-green: rgba(194,207,193,0.18);
  --surface-gold:  rgba(228,205,161,0.15);

  /* Text */
  --text-heading:  #1e2d1e;
  --text-body:     #4a5a4a;
  --text-muted:    #7a8a7a;
  --text-light:    #aab8aa;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(109,136,107,0.06);
  --shadow-sm:  0 2px 12px rgba(109,136,107,0.09);
  --shadow-md:  0 6px 28px rgba(109,136,107,0.13);
  --shadow-lg:  0 16px 56px rgba(109,136,107,0.16);
  --shadow-xl:  0 32px 80px rgba(109,136,107,0.20);
  --shadow-gold: 0 8px 32px rgba(191,159,95,0.22);

  /* Radius */
  --r-sm:    6px;
  --r-md:    14px;
  --r-lg:    22px;
  --r-xl:    36px;
  --r-2xl:   56px;
  --r-pill:  999px;

  /* Transitions */
  --t-fast:     all 0.18s ease;
  --t:          all 0.28s cubic-bezier(0.4,0,0.2,1);
  --t-slow:     all 0.5s cubic-bezier(0.4,0,0.2,1);
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1); /* alias */

  /* Radius aliases for legacy references */
  --radius:     14px;   /* = r-md */
  --radius-lg:  22px;   /* = r-lg */

  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ─────────────────────────────────────────
   Reset & Base
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ─────────────────────────────────────────
   Typography Scale
───────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--text-body); font-size: 1rem; line-height: 1.75; }

.display-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green  { color: var(--green-dark); }
.text-gold   { color: var(--gold-deep); }
.text-muted  { color: var(--text-muted); }

/* ─────────────────────────────────────────
   Layout Utilities
───────────────────────────────────────── */
.container   { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-sm{ max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section     { padding: 100px 0; }
.section-sm  { padding: 60px 0; }
.section-xs  { padding: 36px 0; }
.text-center { text-align: center; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ─────────────────────────────────────────
   Buttons — Redesigned
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 700;
  border: 2px solid transparent;
  transition: var(--t);
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(109,136,107,0.30);
}
.btn-primary:hover {
  background: var(--text-heading);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(109,136,107,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(191,159,95,0.35);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold-deep);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}
.btn-ghost {
  background: rgba(109,136,107,0.08);
  color: var(--green-dark);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 9px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ─────────────────────────────────────────
   Badges / Labels
───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.badge-green {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--border);
}
.badge-gold {
  background: var(--gold-pale);
  color: var(--gold-deep);
  border: 1px solid rgba(191,159,95,0.25);
}
.badge-dark {
  background: var(--text-heading);
  color: var(--white);
}
.badge-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  color: var(--green-dark);
  border: 1px solid rgba(109,136,107,0.2);
}

/* Section pill label */
.section-pill {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  padding: 7px 22px;
  border-radius: var(--r-pill);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-pill.light {
  background: var(--green-pale);
  color: var(--green-dark);
}
.section-pill.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
}

/* Legacy .tag compatibility */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--border);
  padding: 7px 20px;
  border-radius: var(--r-pill);
  font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────
   Section Headers
───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }

.section-header-left { margin-bottom: 48px; }
.section-header-left h2 { margin-bottom: 12px; }
.section-header-left p { max-width: 520px; color: var(--text-muted); }

.accent-line {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  border-radius: 4px;
  margin: 16px auto 0;
  display: block;
}
.accent-line-left {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  border-radius: 4px;
  margin: 14px 0 0;
  display: block;
}
/* old divider alias */
.divider        { display: block; width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  border-radius: 4px; margin: 14px auto 0; }
.divider-left   { display: block; width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  border-radius: 4px; margin: 12px 0 0; }

/* ─────────────────────────────────────────
   Decorative Elements
───────────────────────────────────────── */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.45; pointer-events: none; z-index: 0;
}
.blob-green { background: var(--green-mesh); }
.blob-gold  { background: rgba(228,205,161,0.55); }

.mesh-bg {
  background:
    radial-gradient(ellipse 700px 500px at 15% 20%, rgba(194,207,193,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 85% 80%, rgba(228,205,161,0.15) 0%, transparent 70%),
    var(--bg);
}
.mesh-bg-strong {
  background:
    radial-gradient(ellipse 800px 600px at 0% 0%,  rgba(194,207,193,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 100% 100%, rgba(228,205,161,0.22) 0%, transparent 60%),
    var(--bg);
}

/* ─────────────────────────────────────────
   Glassmorphism Cards
───────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(194,207,193,0.40);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: var(--t);
}
.glass-card:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(109,136,107,0.30);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ─────────────────────────────────────────
   Standard Cards
───────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--t);
}
.card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-flat {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border-soft);
  transition: var(--t);
}
.card-flat:hover { background: var(--green-ultra); transform: translateY(-3px); }

/* ─────────────────────────────────────────
   NAVBAR — Modern Floating Style
───────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(194,207,193,0.35);
  transition: var(--t);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(109,136,107,0.10);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 12px;
}
.navbar-logo-img { height: 42px; width: auto; flex-shrink: 0; }
.logo-text-wrap  { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name      { font-size: 1.05rem; font-weight: 900; letter-spacing: -0.02em; color: var(--text-heading); }
.brand-name .cr  { color: var(--green-dark); }
.brand-name .lih { color: var(--gold-deep); }
.brand-sub       { font-size: 0.58rem; color: var(--text-muted); letter-spacing: 0.3px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 7px 13px;
  border-radius: var(--r-md);
  font-size: 0.86rem; font-weight: 600;
  color: var(--charcoal-soft, var(--charcoal));
  transition: var(--t-fast);
  letter-spacing: -0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-dark); background: var(--green-pale); }
.nav-cta {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  border-radius: var(--r-pill) !important;
  padding: 9px 22px !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 14px rgba(109,136,107,0.28) !important;
}
.nav-cta:hover {
  background: var(--text-heading) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109,136,107,0.30) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-dark); border-radius: 2px; transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-4px); }

/* ─────────────────────────────────────────
   HERO — Split editorial layout
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-mesh .blob-1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(ellipse, rgba(194,207,193,0.38) 0%, transparent 70%);
  filter: blur(60px);
}
.hero-mesh .blob-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(ellipse, rgba(228,205,161,0.25) 0%, transparent 70%);
  filter: blur(50px);
}
.hero-mesh .blob-3 {
  width: 300px; height: 300px;
  top: 30%; left: 40%;
  background: radial-gradient(ellipse, rgba(194,207,193,0.18) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
  padding: 60px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 8px 20px; border-radius: var(--r-pill);
  font-size: 0.75rem; font-weight: 700;
  color: var(--green-dark); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow i { font-size: 0.8rem; }
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.hero-title .line-accent {
  display: block;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; font-weight: 600; font-style: italic;
  color: var(--gold-deep); margin-bottom: 18px;
}
.hero-desc {
  font-size: 1.02rem; color: var(--text-muted);
  max-width: 460px; line-height: 1.78; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

/* Hero stats row */
.hero-stats-row {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hstat { display: flex; flex-direction: column; }
.hstat-num  { font-size: 2.2rem; font-weight: 900; color: var(--green-dark); line-height: 1; letter-spacing: -0.03em; }
.hstat-lbl  { font-size: 0.72rem; color: var(--text-muted); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.8px; }

/* Hero visual panel */
.hero-visual-panel { display: flex; flex-direction: column; gap: 16px; }
.hero-big-card {
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(30, 45, 30, 0.85) 70%, rgba(30, 45, 30, 0.98) 100%), url('../assets/img/00-home-page.jpg') center/cover no-repeat;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-big-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(109,136,107,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-big-card .big-icon { font-size: 3.8rem; margin-bottom: 18px; }
.hero-big-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.hero-big-card p  { font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); line-height: 1.68; }
.hero-mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-mini-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  position: relative;
  transition: var(--t);
}
.hero-mini-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  box-sizing: border-box;
  pointer-events: none;
  transition: var(--t);
}
.hero-mini-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--r-lg);
  padding: 2px; /* Border thickness */
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--gold-deep) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: var(--t);
}
.hero-mini-card:hover::before { opacity: 0; }
.hero-mini-card:hover::after { opacity: 1; }
.hero-mini-card:hover { 
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transform: translateY(-4px); 
}
.hero-mini-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.hero-mini-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────
   PARTNERS STRIP
───────────────────────────────────────── */
#partners {
  padding: 40px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-title {
  text-align: center; font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 24px;
  font-weight: 700;
}
.partners-slider-wrap { position: relative; overflow: hidden; }
.partners-slider-wrap::before,
.partners-slider-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2;
}
.partners-slider-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.partners-slider-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-alt), transparent); }
.partners-track {
  display: flex; gap: 16px;
  animation: scroll-partners 28s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes scroll-partners {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 28px; min-width: 150px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast); flex-shrink: 0;
}
.partner-logo:hover { border-color: var(--green-mid); box-shadow: var(--shadow-xs); }
.partner-logo span {
  font-size: 0.78rem; font-weight: 800;
  color: var(--text-muted); text-align: center; line-height: 1.35;
}
.partner-logo img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* ─────────────────────────────────────────
   QUICK NAV — Icon cards
───────────────────────────────────────── */
.quick-nav-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.quick-nav-card {
  background: #fdfdfd;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
  display: block;
  position: relative; overflow: hidden;
}
.quick-nav-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-ultra), transparent);
  opacity: 0; transition: var(--t);
  border-radius: var(--r-xl);
}
.quick-nav-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.quick-nav-card:hover::after { opacity: 1; }
.quick-nav-card .icon { 
  font-size: 2.2rem; 
  margin: 0 auto 16px auto; 
  position: relative; 
  z-index: 1; 
  background: var(--green-dark);
  color: var(--white);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-nav-card h3 { font-size: 0.98rem; color: var(--green-dark); margin-bottom: 8px; position: relative; z-index: 1; }
.quick-nav-card p  { font-size: 0.82rem; color: var(--text-muted); position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   CAPSULE CARDS — Objectives
───────────────────────────────────────── */
.objectives-capsule-grid,
.obj-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.capsule-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--green-ultra);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 22px 26px 22px 18px;
  transition: var(--t);
}
.capsule-card:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.capsule-card:hover .capsule-text,
.capsule-card:hover strong { color: var(--white) !important; }
.capsule-card:hover .capsule-icon { background: rgba(255,255,255,0.2); }
.capsule-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  transition: var(--t);
}
.capsule-text { font-size: 0.87rem; color: var(--text-body); line-height: 1.58; transition: var(--t); }
.capsule-text strong { color: var(--text-heading); font-weight: 700; }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages) — Bolder
───────────────────────────────────────── */
.page-hero {
  padding: 130px 0 70px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(194,207,193,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 400px 300px at 80% 20%, rgba(228,205,161,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { max-width: 580px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 20px; justify-content: center;
}
.breadcrumb a { color: var(--green-dark); font-weight: 600; }
.breadcrumb span { color: var(--charcoal); font-weight: 500; }

/* ─────────────────────────────────────────
   OVERVIEW / ABOUT
───────────────────────────────────────── */
.overview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.overview-badge {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky; top: 100px;
}
.overview-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.overview-row:last-child { border-bottom: none; }
.overview-row .label { color: var(--text-muted); font-size: 0.82rem; }
.overview-row .value { font-weight: 800; color: var(--green-dark); font-size: 0.9rem; }

/* Key figures */
.key-figures {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 48px;
}
.key-figure {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 20px; text-align: center;
  transition: var(--t); position: relative; overflow: hidden;
}
.key-figure::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  transform: scaleX(0); transition: var(--t); transform-origin: left;
}
.key-figure:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); }
.key-figure:hover::before { transform: scaleX(1); }
.key-figure .num {
  display: block; font-size: 2.2rem; font-weight: 900;
  color: var(--green-dark); line-height: 1; margin-bottom: 7px;
  letter-spacing: -0.03em;
}
.key-figure .lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }

/* Vision / Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { border-radius: var(--r-xl); padding: 40px 36px; position: relative; overflow: hidden; }
.vm-card.vision  {
  background: linear-gradient(145deg, var(--green-ultra) 0%, var(--green-pale) 100%);
  border: 1.5px solid var(--border);
}
.vm-card.mission {
  background: linear-gradient(145deg, var(--gold-pale) 0%, rgba(228,205,161,0.25) 100%);
  border: 1.5px solid rgba(228,205,161,0.5);
}
.vm-icon { font-size: 2.6rem; margin-bottom: 18px; }
.vm-card h3 { margin-bottom: 12px; color: var(--green-dark); }
.vm-card p  { color: var(--text-body); font-size: 0.96rem; line-height: 1.75; }

/* ─────────────────────────────────────────
   TEAM CARDS — Modern hoverable
───────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden; transition: var(--t);
  position: relative;
}
.team-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  transform: scaleX(0); transition: var(--t); transform-origin: left;
}
.team-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card:hover::after { transform: scaleX(1); }
.team-card-img {
  height: 190px;
  background: linear-gradient(145deg, var(--green-pale) 0%, var(--green-ultra) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; overflow: hidden; position: relative;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-card-body { padding: 24px; }
.team-card-body h4 { font-size: 1rem; margin-bottom: 5px; }
.team-card-body .role { font-size: 0.78rem; color: var(--green-dark); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.team-card-body .affil { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 14px; }
.team-social { display: flex; gap: 8px; }
.team-social a {
  width: 32px; height: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--text-muted); transition: var(--t-fast);
}
.team-social a:hover { border-color: var(--green-dark); color: var(--green-dark); background: var(--green-pale); }

/* ─────────────────────────────────────────
   ACTIVITY CARDS
───────────────────────────────────────── */
.activities-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.activity-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden; transition: var(--t);
  display: flex; flex-direction: column;
}
.activity-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.activity-img {
  height: 200px;
  background: linear-gradient(145deg, var(--green-pale) 0%, var(--green-ultra) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.4rem; overflow: hidden; position: relative;
}
.activity-img img { width: 100%; height: 100%; object-fit: cover; }
.activity-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.activity-tag {
  display: inline-block;
  padding: 4px 14px; border-radius: var(--r-pill);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; margin-bottom: 12px;
  background: var(--green-pale); color: var(--green-dark);
  border: 1px solid var(--border);
}
.activity-tag.gold { background: var(--gold-pale); color: var(--gold-deep); border-color: rgba(191,159,95,0.25); }
.activity-body h3 { font-size: 1.02rem; margin-bottom: 10px; }
.activity-body p  { font-size: 0.86rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; line-height: 1.68; }
.activity-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.78rem; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 14px;
}
.activity-meta i { color: var(--green-dark); }

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery-filters {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-muted);
  font-size: 0.84rem; font-weight: 600;
  cursor: pointer; transition: var(--t); font-family: var(--font);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: var(--green-pale);
}
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; background: var(--bg-alt);
  border: 1.5px solid var(--border); transition: var(--t);
}
.gallery-item:hover { border-color: var(--green-mid); transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item.tall  { grid-row: span 2; aspect-ratio: auto; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  background: linear-gradient(145deg, var(--green-ultra), var(--green-pale));
}
.gallery-placeholder .ph-icon  { font-size: 2.8rem; }
.gallery-placeholder .ph-label { font-size: 0.74rem; color: var(--text-muted); font-weight: 600; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,45,30,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--white); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,30,20,0.80);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--t);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px; text-align: center;
  position: relative; max-width: 85vw;
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  width: 36px; height: 36px; border-radius: 50%;
  color: var(--text-heading); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.lightbox-close:hover { background: var(--green-pale); color: var(--green-dark); }

/* ─────────────────────────────────────────
   VIDEO CARDS
───────────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.video-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; transition: var(--t);
}
.video-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.video-thumb {
  position: relative; height: 190px;
  background: linear-gradient(145deg, var(--green-pale), var(--green-ultra));
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.play-btn {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--t); z-index: 2;
}
.video-card:hover .play-btn {
  background: var(--green-dark); color: var(--white);
  transform: scale(1.12); box-shadow: var(--shadow-lg);
}
.video-duration {
  position: absolute; bottom: 10px; right: 12px;
  background: rgba(30,30,30,0.6); color: var(--white);
  font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 6px;
}
.video-body { padding: 20px; }
.video-body h4 { font-size: 0.93rem; margin-bottom: 8px; }
.video-body p  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.62; }
.video-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); }

/* Video modal */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(15,25,15,0.80);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--t);
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal-inner {
  width: min(880px, 92vw);
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-xl);
}
.video-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  width: 36px; height: 36px; border-radius: 50%;
  color: var(--text-heading); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 10;
  transition: var(--t);
}
.video-modal-close:hover { background: var(--green-pale); color: var(--green-dark); }
.video-modal-player {
  width: 100%; aspect-ratio: 16/9;
  background: var(--green-ultra);
  display: flex; align-items: center; justify-content: center;
}
.video-modal-info { padding: 22px 28px 28px; }
.video-modal-info h3 { margin-bottom: 7px; }
.video-modal-info p  { font-size: 0.87rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.65fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 18px;
  display: flex; gap: 16px; align-items: flex-start; transition: var(--t);
}
.contact-info-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--green-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--green-dark); flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-card p  { font-size: 0.92rem; color: var(--text-heading); font-weight: 600; }

.contact-form {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { color: var(--green-dark); margin-bottom: 28px; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-heading); letter-spacing: 0.2px; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px; color: var(--text-heading);
  font-size: 0.92rem; font-family: var(--font);
  transition: var(--t); width: 100%; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(133,160,131,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--white); }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success .icon { font-size: 3.2rem; margin-bottom: 14px; }
.form-success h3 { color: var(--green-dark); }

/* FAQ */
.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 24px; cursor: pointer;
  transition: var(--t);
}
.faq-item:hover { border-color: var(--green-mid); box-shadow: var(--shadow-xs); }
.faq-item.open  { border-color: var(--green-mid); background: var(--green-ultra); }
.faq-item h4 { font-size: 0.94rem; color: var(--text-heading); }
.faq-icon { color: var(--green-dark); flex-shrink: 0; transition: var(--t); }
.faq-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ─────────────────────────────────────────
   CTA BANNERS — Redesigned
───────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, #4a6348 100%);
  border-radius: var(--r-2xl);
  padding: 72px 56px; text-align: center;
  color: var(--white);
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204,179,129,0.15) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.80); max-width: 520px; margin: 0 auto 36px; position: relative; z-index: 1; font-size: 1.05rem; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.cta-banner-gold {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: var(--r-2xl);
  padding: 72px 56px; text-align: center;
}
.cta-banner-gold h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner-gold p  { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 36px; }

.cta-banner-light {
  background: var(--green-ultra);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 72px 56px; text-align: center;
}
.cta-banner-light h2 { color: var(--green-dark); margin-bottom: 14px; }
.cta-banner-light p  { color: var(--text-muted); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-banner-light .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Highlight for CTA */
.highlight      { color: var(--gold-light); }
.highlight-gold { color: var(--gold-deep); }

/* CTA actions row (used in gallery / videos / contact CTAs) */
.cta-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}

/* bg-section alias (used on some page sections) */
.bg-section { background: var(--bg-alt); }

/* ─────────────────────────────────────────
   FOOTER — Dark Green Modern
───────────────────────────────────────── */
#footer {
  background: var(--text-heading);
  padding: 70px 0 32px;
  position: relative; overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold), var(--green-mid));
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 48px;
}
.footer-logo-img { height: 46px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p  { color: rgba(255,255,255,0.62); font-size: 0.86rem; margin-bottom: 22px; max-width: 270px; line-height: 1.72; }
.footer-social   { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--t);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.4); }
.footer-col h4 {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gold-light); margin-bottom: 20px; font-weight: 800;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.62); transition: var(--t-fast); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--gold-light); }

/* ─────────────────────────────────────────
   Stat/Number Cards
───────────────────────────────────────── */
.stat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 28px 20px;
  text-align: center; transition: var(--t);
}
.stat-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); }
.stat-card .num  { font-size: 2.4rem; font-weight: 900; color: var(--green-dark); display: block; letter-spacing: -0.04em; }
.stat-card .lbl  { font-size: 0.74rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 5px; }

/* Hero inline stats */
.stat-item   { display: flex; flex-direction: column; }
.stat-number { font-size: 2rem; font-weight: 900; color: var(--green-dark); line-height: 1; letter-spacing: -0.04em; }
.stat-label  { font-size: 0.7rem; color: var(--text-muted); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.8px; }

/* ─────────────────────────────────────────
   Timeline (Activities)
───────────────────────────────────────── */
.timeline-dot-green {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; flex-shrink: 0; z-index: 2; font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(109,136,107,0.35);
}
.timeline-dot-gold {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; flex-shrink: 0; z-index: 2; font-size: 0.88rem;
  box-shadow: var(--shadow-gold);
}

/* ─────────────────────────────────────────
   Scroll-to-top
───────────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: var(--green-dark); color: var(--white);
  border: none; border-radius: var(--r-lg);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: var(--t); z-index: 999;
  box-shadow: var(--shadow-md);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--text-heading); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ─────────────────────────────────────────
   Toast
───────────────────────────────────────── */
.toast {
  position: fixed; bottom: 84px; right: 28px;
  background: var(--text-heading);
  color: var(--white);
  border-radius: var(--r-lg); padding: 13px 22px;
  font-size: 0.87rem; font-weight: 600;
  z-index: 3000; transform: translateY(20px); opacity: 0;
  transition: var(--t); pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─────────────────────────────────────────
   Scroll Animations
───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.fade-in-up   { animation: fadeInUp 0.6s cubic-bezier(0.4,0,0.2,1) both; }
.fade-in-left { animation: fadeInLeft 0.6s cubic-bezier(0.4,0,0.2,1) both; }
.scale-in     { animation: scaleIn 0.5s cubic-bezier(0.4,0,0.2,1) both; }

/* Intersection-observer driven classes —
   Only hide when JS has confirmed it's running (body.js-loaded).
   This prevents content being invisible if JS fails or is slow. */
.reveal { transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.reveal-left { transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1 !important; transform: translateX(0) !important; }

/* JS active: set initial hidden state */
body.js-loaded .reveal:not(.visible) { opacity: 0; transform: translateY(28px); }
body.js-loaded .reveal-left:not(.visible) { opacity: 0; transform: translateX(-28px); }

/* Safety fallback: if JS never fires (e.g. slow load), don't leave content invisible */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { opacity: 1 !important; transform: none !important; }
}

/* Page hero mesh blobs (shared across gallery-hero, videos-hero, contact-hero) */
.hero-mesh .blob-1,
.hero-mesh .blob-2,
.hero-mesh .blob-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ─────────────────────────────────────────
   Brand bar accent
───────────────────────────────────────── */
.brand-bar { display: flex; align-items: center; gap: 14px; }
.brand-bar .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green-dark); flex-shrink: 0; }
.brand-bar .bar { height: 6px; flex: 1; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green-dark) 100%); }

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-layout        { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual-panel  { display: none; }
  .overview-grid      { grid-template-columns: 1fr; }
  .vm-grid            { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: repeat(2,1fr); }
  .quick-nav-grid     { grid-template-columns: repeat(2,1fr); }
  .activities-grid    { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .video-grid         { grid-template-columns: repeat(2,1fr); }
  .gallery-grid       { grid-template-columns: repeat(2,1fr); }
  .objectives-capsule-grid,
  .obj-grid           { grid-template-columns: 1fr; }
  .key-figures        { grid-template-columns: repeat(2,1fr); }
  .cta-banner,
  .cta-banner-light,
  .cta-banner-gold    { padding: 52px 32px; }
  .grid-2, .grid-3    { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: 16px 24px 24px; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a    { width: 100%; padding: 11px 14px; }
  .nav-links a.active {
    background: var(--green-pale);
    color: var(--green-dark);
    font-weight: 700;
    border-left: 4px solid var(--green-dark);
    border-radius: var(--r-md);
  }
  .hamburger      { display: flex; }
  .section        { padding: 60px 0; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .video-grid     { grid-template-columns: 1fr; }
  .hero-stats-row { gap: 20px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .contact-form   { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .gallery-grid   { grid-template-columns: 1fr; }
  .quick-nav-grid { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; }
  .btn            { width: 100%; justify-content: center; }
  .key-figures    { grid-template-columns: repeat(2,1fr); }
}
