/* =========================================================================
   ALMA AGRO LIMITED — Corporate Website
   Rooted in Tradition, Growing with Innovation.
   Palette: forest green · fresh green · soil brown · harvest gold · cream
   ========================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Greens */
  --forest:       #14401f;   /* deep header green */
  --forest-2:     #1b5a2c;
  --green:        #2f9e44;   /* primary brand green */
  --green-bright: #3aaa35;
  --green-soft:   #eaf5ec;
  --green-tint:   #f1f8f2;

  /* Earth */
  --soil:         #7a4a24;
  --soil-light:   #a06a37;
  --gold:         #c9a227;
  --gold-soft:    #f3ead0;

  /* Neutrals */
  --cream:        #f8f5ec;   /* page background */
  --cream-2:      #f1ecdd;   /* alt sections */
  --white:        #ffffff;
  --ink:          #17251c;   /* primary text */
  --ink-2:        #3c4a40;
  --muted:        #63736a;   /* secondary text */
  --line:         rgba(20, 64, 31, 0.12);
  --line-soft:    rgba(20, 64, 31, 0.07);

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(20, 64, 31, 0.06);
  --shadow:    0 14px 40px rgba(20, 64, 31, 0.10);
  --shadow-lg: 0 30px 70px rgba(20, 64, 31, 0.16);
  --radius:    18px;
  --radius-lg: 26px;

  /* Type */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;

  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: rgba(47, 158, 68, 0.22); color: var(--forest); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 80px 0; }
.bg-alt { background: var(--cream-2); }
.bg-green { background: var(--green-tint); }

.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head.center .eyebrow::after {
  content: '';
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; color: var(--forest); letter-spacing: 0.01em; }
.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.lead { font-size: 1.1rem; color: var(--ink-2); line-height: 1.75; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(47, 158, 68, 0.30);
}
.btn-primary:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(47, 158, 68, 0.38); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); background: var(--green-soft); transform: translateY(-2px); }
.btn-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-light:hover { background: #fff; color: var(--forest); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--forest); box-shadow: 0 10px 26px rgba(201,162,39,0.32); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201,162,39,0.42); }

/* =========================================================================
   LOADER
   ========================================================================= */
.loader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--forest);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-mark {
  width: 96px; height: 96px; margin: 0 auto 22px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.25);
  animation: pulse 2s ease-out infinite;
}
.loader-mark svg { width: 66px; height: 66px; }
.loader-word {
  font-family: var(--font-display);
  font-size: 1.7rem; letter-spacing: 0.32em;
  color: #fff; text-transform: uppercase; padding-left: 0.32em;
}
.loader-bar {
  width: 180px; height: 3px; margin: 18px auto 0;
  background: rgba(255,255,255,0.18); border-radius: 3px; overflow: hidden;
}
.loader-bar span { display: block; height: 100%; width: 0; background: var(--green-bright); border-radius: 3px; animation: load 2s ease forwards; }
@keyframes load { to { width: 100%; } }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.30); }
  70%  { box-shadow: 0 0 0 22px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* =========================================================================
   NAVBAR
   ========================================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); flex: none;
}
.brand-mark svg { width: 34px; height: 34px; }
.brand-text { line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.28rem; letter-spacing: 0.03em; color: #fff; text-transform: uppercase;
  transition: color .3s ease;
}
.brand-tag { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color .3s ease; }
.navbar.scrolled .brand-name { color: var(--forest); }
.navbar.scrolled .brand-tag { color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.88);
  position: relative; transition: color .25s ease; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--ink-2); }
.navbar.scrolled .nav-links a:hover { color: var(--green); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.85rem; }
.navbar:not(.scrolled) .nav-cta .btn-primary { background: #fff; color: var(--forest); box-shadow: none; }
.navbar:not(.scrolled) .nav-cta .btn-primary:hover { background: var(--gold); color: var(--forest); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px auto; border-radius: 2px; transition: .3s; }
.navbar.scrolled .nav-toggle span { background: var(--forest); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--forest);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: #fff; font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.04em; padding: 8px 0; opacity: 0.9; }
.mobile-menu a:hover { color: var(--green-bright); }
.mobile-menu .btn { margin-top: 20px; }
.mobile-close { position: absolute; top: 26px; right: 26px; width: 46px; height: 46px; color: #fff; font-size: 2rem; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background: linear-gradient(180deg, #dff0e3 0%, #eef6ea 42%, var(--cream) 100%);
}
.hero-scene { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-scene svg { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; }
.hero-sun {
  position: absolute; top: 12%; right: 14%;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,238,168,0.9) 0%, rgba(255,224,130,0.35) 45%, rgba(255,224,130,0) 70%);
  filter: blur(2px);
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line-soft);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--forest-2); margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47,158,68,0.18); }

.hero h1 { margin-bottom: 8px; }
.hero h1 .line2 { color: var(--green); display: block; }
.hero-serif {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--soil);
  margin: 10px 0 22px;
}
.hero p.lead { max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--forest); line-height: 1; }
.hero-stat .num span { color: var(--green); }
.hero-stat .lbl { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* Hero visual card */
.hero-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--forest);
  aspect-ratio: 4 / 5;
}
.hero-card-scene { position: absolute; inset: 0; }
.hero-card-badge {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 3;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow);
}
.hero-card-badge .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); display: grid; place-items: center; flex: none; }
.hero-card-badge .ic svg { width: 24px; height: 24px; color: var(--green); }
.hero-card-badge h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; color: var(--forest); margin-bottom: 2px; }
.hero-card-badge p { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

/* floating leaf chip on hero card */
.hero-chip {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  background: rgba(255,255,255,0.92); border-radius: 50px; padding: 8px 16px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 8px;
}
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee {
  background: var(--forest); color: #fff; overflow: hidden;
  padding: 20px 0; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 0; animation: scroll 34s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 26px;
  padding: 0 26px; font-family: var(--font-display); font-weight: 500;
  font-size: 1.35rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9);
}
.marquee-item::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1; background: var(--forest); position: relative;
}
.about-badge {
  position: absolute; right: -18px; bottom: 34px; z-index: 4;
  background: #fff; border-radius: 18px; padding: 20px 24px; box-shadow: var(--shadow);
  text-align: center; border: 1px solid var(--line-soft);
}
.about-badge .big { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--green); line-height: 1; }
.about-badge .cap { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.about-visual .leaf-tag {
  position: absolute; top: -16px; left: -14px; z-index: 4;
  background: var(--gold); color: var(--forest); border-radius: 14px; padding: 12px 16px;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.05em; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px;
}
.leaf-tag svg { width: 20px; height: 20px; }

.about-copy p { color: var(--ink-2); margin-bottom: 20px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-point { display: flex; gap: 12px; align-items: flex-start; }
.about-point .tick { width: 26px; height: 26px; border-radius: 8px; background: var(--green-soft); display: grid; place-items: center; flex: none; margin-top: 2px; }
.about-point .tick svg { width: 15px; height: 15px; color: var(--green); }
.about-point b { color: var(--forest); font-weight: 600; }
.about-point span { display: block; font-size: 0.88rem; color: var(--muted); }

/* =========================================================================
   VALUES
   ========================================================================= */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.value-card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 22px; text-align: center; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: var(--shadow-sm);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(47,158,68,0.25); }
.value-ic { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; background: linear-gradient(135deg, var(--green-soft), #fff); display: grid; place-items: center; border: 1px solid var(--line-soft); }
.value-ic svg { width: 28px; height: 28px; color: var(--green); }
.value-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--forest); margin-bottom: 8px; }
.value-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* =========================================================================
   VISION & MISSION
   ========================================================================= */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vm-card {
  position: relative; border-radius: var(--radius-lg); padding: 46px 40px; overflow: hidden;
  box-shadow: var(--shadow);
}
.vm-vision { background: linear-gradient(150deg, var(--forest) 0%, #1d5e30 100%); color: #fff; }
.vm-mission { background: var(--white); border: 1px solid var(--line-soft); }
.vm-card .vm-ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 24px; }
.vm-vision .vm-ic { background: rgba(255,255,255,0.14); }
.vm-vision .vm-ic svg { color: #fff; }
.vm-mission .vm-ic { background: var(--green-soft); }
.vm-mission .vm-ic svg { color: var(--green); }
.vm-card .vm-ic svg { width: 30px; height: 30px; }
.vm-card h3 { font-size: 1.7rem; margin-bottom: 16px; }
.vm-vision h3 { color: #fff; }
.vm-vision p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.vm-mission p { color: var(--ink-2); }
.vm-list { margin-top: 20px; display: grid; gap: 14px; }
.vm-list li { display: flex; gap: 14px; align-items: flex-start; }
.vm-list .n { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--green); flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--green-soft); display: grid; place-items: center; }
.vm-list p { margin: 0; font-size: 0.96rem; }
.vm-watermark { position: absolute; right: -20px; bottom: -30px; opacity: 0.08; }
.vm-watermark svg { width: 200px; height: 200px; }

/* =========================================================================
   SECTORS / WHAT WE DO
   ========================================================================= */
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card {
  position: relative; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 34px 30px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease; box-shadow: var(--shadow-sm);
}
.sector-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.sector-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.sector-card:hover::before { transform: scaleX(1); }
.sector-num { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; color: var(--green-soft); line-height: 1; z-index: 0; }
.sector-ic { position: relative; z-index: 1; width: 62px; height: 62px; border-radius: 16px; background: var(--forest); display: grid; place-items: center; margin-bottom: 22px; box-shadow: 0 10px 24px rgba(20,64,31,0.22); }
.sector-ic svg { width: 30px; height: 30px; color: #fff; }
.sector-card h3 { position: relative; z-index: 1; font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; color: var(--forest); margin-bottom: 12px; }
.sector-card p { position: relative; z-index: 1; font-size: 0.92rem; color: var(--muted); }

/* =========================================================================
   OPERATIONS (tabs)
   ========================================================================= */
.ops-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 34px; align-items: start; }
.ops-tabs { display: flex; flex-direction: column; gap: 10px; }
.ops-tab {
  display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  padding: 18px 20px; border-radius: 14px; background: var(--white);
  border: 1px solid var(--line-soft); transition: all .25s ease; color: var(--ink-2); font-weight: 600;
}
.ops-tab .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--green-soft); display: grid; place-items: center; flex: none; transition: all .25s ease; }
.ops-tab .ic svg { width: 22px; height: 22px; color: var(--green); }
.ops-tab:hover { border-color: rgba(47,158,68,0.3); }
.ops-tab.active { background: var(--forest); color: #fff; border-color: var(--forest); box-shadow: var(--shadow); }
.ops-tab.active .ic { background: rgba(255,255,255,0.16); }
.ops-tab.active .ic svg { color: #fff; }

.ops-panel-wrap { position: relative; min-height: 340px; }
.ops-panel {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
  display: none; animation: fadeUp .5s ease;
}
.ops-panel.active { display: block; }
.ops-panel h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.5rem; color: var(--forest); margin-bottom: 8px; }
.ops-panel > p { color: var(--muted); margin-bottom: 26px; max-width: 620px; }
.ops-items { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ops-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: 14px; background: var(--green-tint); border: 1px solid var(--line-soft); }
.ops-item .ic { width: 40px; height: 40px; border-radius: 11px; background: #fff; display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.ops-item .ic svg { width: 21px; height: 21px; color: var(--green); }
.ops-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; color: var(--forest); margin-bottom: 3px; }
.ops-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================================
   PRODUCTS
   ========================================================================= */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; color: #fff; box-shadow: var(--shadow); transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-bg { position: absolute; inset: 0; z-index: -2; }
.prod-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,64,31,0.05) 0%, rgba(20,64,31,0.35) 45%, rgba(20,64,31,0.86) 100%);
}
.prod-tag {
  align-self: flex-start; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35); border-radius: 50px; padding: 6px 14px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: auto;
}
.prod-card h3 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 1.35rem; margin: 14px 0 10px; }
.prod-items { display: flex; flex-wrap: wrap; gap: 8px; }
.prod-items span {
  font-size: 0.78rem; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28);
  padding: 5px 12px; border-radius: 50px; backdrop-filter: blur(3px);
}
.prod-dev { position: absolute; top: 22px; right: 22px; z-index: 1; background: var(--gold); color: var(--forest); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: 50px; }

/* =========================================================================
   REACH / MARKETING
   ========================================================================= */
.reach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.reach-card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; position: relative;
}
.reach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.reach-step { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.reach-ic { width: 54px; height: 54px; border-radius: 15px; background: var(--green-soft); display: grid; place-items: center; margin-bottom: 18px; }
.reach-ic svg { width: 27px; height: 27px; color: var(--green); }
.reach-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; color: var(--forest); margin-bottom: 12px; }
.reach-card ul { display: grid; gap: 9px; }
.reach-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.reach-card li svg { width: 15px; height: 15px; color: var(--green); flex: none; margin-top: 4px; }

/* =========================================================================
   RTIC (Research centre) — banner
   ========================================================================= */
.rtic {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(140deg, var(--forest) 0%, #1c5b2f 60%, #226b38 100%);
  color: #fff; padding: 64px 56px;
}
.rtic::before { content: ''; position: absolute; inset: 0; background: url("../assets/pattern-leaf.svg"); opacity: 0.06; }
.rtic-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.rtic h2 { color: #fff; margin-bottom: 18px; }
.rtic .lead { color: rgba(255,255,255,0.88); margin-bottom: 26px; }
.rtic-obj { display: grid; gap: 14px; }
.rtic-obj li { display: flex; gap: 14px; align-items: flex-start; }
.rtic-obj .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.14); display: grid; place-items: center; flex: none; }
.rtic-obj .ic svg { width: 21px; height: 21px; color: #fff; }
.rtic-obj b { color: #fff; }
.rtic-obj span { color: rgba(255,255,255,0.8); font-size: 0.9rem; display: block; }
.rtic-programs { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); padding: 30px; backdrop-filter: blur(4px); }
.rtic-programs h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; margin-bottom: 18px; text-transform: uppercase; }
.rtic-programs .pg { display: flex; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.rtic-programs .pg:last-child { border-bottom: none; }
.rtic-programs .pg svg { width: 20px; height: 20px; color: var(--green-bright); flex: none; }
.rtic-programs .pg span { font-size: 0.92rem; color: rgba(255,255,255,0.92); }
.rtic-audience { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.rtic-audience span { font-size: 0.76rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 6px 13px; border-radius: 50px; }

/* =========================================================================
   TEAM / LEADERSHIP
   ========================================================================= */
.team-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; }
.team-block { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.team-block h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.25rem; color: var(--forest); margin-bottom: 6px; display: flex; align-items: center; gap: 12px; }
.team-block h3 .bar { width: 30px; height: 3px; background: var(--gold); border-radius: 3px; }
.team-block > p.sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.role-list { display: grid; gap: 14px; }
.role { display: flex; gap: 16px; align-items: flex-start; padding: 16px; border-radius: 14px; background: var(--green-tint); border: 1px solid var(--line-soft); transition: transform .25s ease; }
.role:hover { transform: translateX(4px); }
.role .avatar { width: 46px; height: 46px; border-radius: 12px; background: var(--forest); display: grid; place-items: center; flex: none; }
.role .avatar svg { width: 24px; height: 24px; color: #fff; }
.role h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--forest); margin-bottom: 3px; }
.role p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.advisory { background: linear-gradient(150deg, var(--forest), #1d5e30); color: #fff; }
.advisory h3 { color: #fff; }
.advisory .team-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.advisory .team-tags span { font-size: 0.82rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); padding: 8px 15px; border-radius: 50px; }
.advisory p { color: rgba(255,255,255,0.85); }

/* =========================================================================
   SUSTAINABILITY & FUTURE GOALS
   ========================================================================= */
.sus-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; align-items: center; }
.sus-copy .pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.sus-copy .pill { display: inline-flex; align-items: center; gap: 8px; background: var(--green-soft); color: var(--forest-2); border-radius: 50px; padding: 9px 16px; font-size: 0.84rem; font-weight: 600; }
.sus-copy .pill svg { width: 16px; height: 16px; color: var(--green); }
.goals { display: grid; gap: 14px; }
.goal {
  display: flex; gap: 18px; align-items: center; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: 16px; padding: 20px 24px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.goal:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.goal .g-num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--forest-2)); display: grid; place-items: center; flex: none; }
.goal h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: var(--forest); margin-bottom: 2px; }
.goal p { font-size: 0.87rem; color: var(--muted); }

/* =========================================================================
   PARTNERS
   ========================================================================= */
.partners-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.partner {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 24px 14px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column; align-items: center; gap: 12px; min-height: 176px; justify-content: center;
}
.partner:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.partner-emblem { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #fff; flex: none; }
.partner p { font-size: 0.79rem; color: var(--ink-2); font-weight: 600; line-height: 1.4; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--forest) 0%, #143e20 55%, #0f3319 100%);
  color: #fff;
}
.contact::before { content: ''; position: absolute; inset: 0; background: url("../assets/pattern-leaf.svg"); opacity: 0.05; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact h2 { color: #fff; margin-bottom: 16px; }
.contact .lead { color: rgba(255,255,255,0.86); margin-bottom: 34px; }
.contact-details { display: grid; gap: 18px; }
.cd { display: flex; gap: 16px; align-items: center; }
.cd .ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; flex: none; }
.cd .ic svg { width: 23px; height: 23px; color: var(--green-bright); }
.cd .lbl { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.cd .val { font-size: 1.02rem; color: #fff; font-weight: 500; }
.cd a.val:hover { color: var(--green-bright); }
.contact-social { display: flex; gap: 12px; margin-top: 30px; }
.contact-social a { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; transition: all .25s ease; }
.contact-social a svg { width: 20px; height: 20px; color: #fff; }
.contact-social a:hover { background: var(--green); transform: translateY(-3px); border-color: var(--green); }

.contact-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); padding: 36px; backdrop-filter: blur(6px); }
.contact-form h3 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 1.25rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; font-family: inherit; font-size: 0.95rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; transition: border-color .25s ease, background .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.45); }
.field select option { color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-bright); background: rgba(255,255,255,0.12); }
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 10px 0 0; color: var(--green-bright); font-weight: 600; }
.form-success.show { display: block; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: #0e2c17; color: rgba(255,255,255,0.72); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-serif { font-family: var(--font-serif); font-style: italic; color: var(--gold); margin-top: 16px; font-size: 0.98rem; }
.footer-col h5 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.9rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--green-bright); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 12px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green-bright); flex: none; margin-top: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.footer-bottom .fb-links { display: flex; gap: 20px; }
.footer-bottom .fb-links a { font-size: 0.84rem; }
.footer-partner { font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.footer-partner a { color: var(--gold); font-weight: 600; transition: color .2s ease; }
.footer-partner a:hover { color: var(--green-bright); }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* Back to top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 50px; height: 50px; border-radius: 14px; background: var(--forest); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all .3s ease;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--green); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .reach-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-card { max-width: 440px; margin: 0 auto; }
  .about-grid, .vm-grid, .rtic-grid, .team-cols, .sus-grid, .contact-grid { grid-template-columns: 1fr; }
  .ops-wrap { grid-template-columns: 1fr; }
  .ops-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 6px; }
  .ops-tab { flex: none; }
  .about-badge { right: 16px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .values-grid, .sectors-grid, .prod-grid, .reach-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .about-points, .ops-items, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 70px; }
  .hero-stats { gap: 26px; }
  .hero-stat .num { font-size: 2rem; }
  .rtic, .contact, .vm-card { padding: 40px 26px; }
  .rtic { padding: 44px 26px; }
  .team-block { padding: 28px 22px; }
  .marquee-item { font-size: 1.1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sector-num { font-size: 2.6rem; }
}
@media (max-width: 420px) {
  .brand-name { font-size: 1.1rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
