/* =========================================================
   RANJIT OIL MILLS INDIA — DESIGN TOKENS
   ========================================================= */
/* =========================================================
   RANJIT — COLOUR TOKENS  ("golden harvest")
   All colours are taken from the logo: forest-green wordmark,
   golden oil-drop, leaf greens. Warm cream / honey backgrounds
   let the gold lead; green stays for headings and leaf accents.
   ========================================================= */
:root{
  --forest:       #0C3C18;   /* logo wordmark green: headings */
  --forest-700:   #14561F;
  --forest-deep:  #072A10;
  --leaf:         #3C8400;   /* logo leaf green */
  --leaf-deep:    #2C6A00;
  --leaf-light:   #7CC24A;

  --gold:         #E4A800;   /* logo oil-drop gold */
  --gold-light:   #F6C531;
  --gold-deep:    #C98A00;   /* amber */
  --gold-ink:     #8A5A00;   /* bronze: gold used as TEXT on light backgrounds */
  --gold-tint:    #FFF3C9;

  --cream:        #FFFBF0;
  --ink:          #1C2A1B;
  --ink-soft:     #4A4A3A;
  --line:         rgba(110,78,10,0.16);
  --line-on-dark: rgba(255,255,255,0.16);
  --on-dark:      #EAF3DC;

  /* warm section tints (the old green tints, now cream & honey) */
  --mint:         #FFF8E4;
  --mint-soft:    #FFFBF0;
  --mint-deep:    #FCEBB8;
  --mint-line:    rgba(138,90,0,0.22);

  --font-display: "Poppins", -apple-system, sans-serif;
  --font-body: "Poppins", -apple-system, sans-serif;

  --container: 1240px;

  /* LOGO SIZE — change these two numbers to resize the logo */
  --logo-h: 108px;            /* top of page */
  --logo-h-scrolled: 82px;    /* after scrolling */

  --radius: 6px;
  --ease: cubic-bezier(.22,.68,0,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #ffffff;
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--forest);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h2{ font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.9rem); font-optical-sizing: auto; }
h3{ font-size: 1.4rem; font-weight: 700; }
h4{ font-size: 1.08rem; font-weight: 600; font-family: var(--font-body); color: var(--forest); }

p{ margin: 0 0 1.1em; max-width: 62ch; }
a{ color: inherit; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

img, svg{ display:block; max-width:100%; }

/* image placeholder block
   ---------------------------------------------------------
   How to add your own photos: drop an image file into the
   /image folder using the exact filename shown in the label
   below each box (e.g. image/pongamia-plantation.jpg).
   The photo appears automatically and covers this box — you
   don't need to touch the HTML or CSS at all. If the file
   isn't found yet, this dashed placeholder just stays visible
   so the layout never breaks.
   --------------------------------------------------------- */
.img-placeholder{
  position: relative;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 2rem;
  background: repeating-linear-gradient(135deg, rgba(23,38,26,0.05) 0 10px, rgba(23,38,26,0.02) 10px 20px);
  border: 1px dashed rgba(23,38,26,0.28);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-style: italic;
  min-height: 220px;
}
.img-placeholder .ph-hint{ position: relative; z-index: 0; max-width: 26ch; }
.img-placeholder .ph-hint code{
  display:inline-block;
  margin-top: 0.5em;
  background: rgba(23,38,26,0.08);
  color: var(--forest);
  font-style: normal;
  font-weight: 700;
  padding: 0.15em 0.5em;
  border-radius: 4px;
  font-size: 0.82rem;
  word-break: break-all;
}
.ph-img{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow{
  display:inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-ink);
  margin-bottom: 0.6em;
}
.eyebrow--light{ color: var(--gold-light); }

.section-head{ max-width: 700px; margin-bottom: 3rem; }
.section-intro{ font-size: 1.08rem; color: var(--ink-soft); }

.text-link{
  display:inline-flex;
  align-items:center;
  gap:.4em;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .35s var(--ease);
  padding-bottom: 2px;
}
.text-link:hover{ background-size: 100% 2px; }

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding: 0.9em 1.7em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration:none;
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: var(--forest);
  font-weight: 800;
  box-shadow: 0 12px 26px -12px rgba(185,134,0,0.85);
}
.btn-primary:hover{ background: linear-gradient(120deg, #FFD34D, var(--gold-light)); box-shadow: 0 16px 30px -10px rgba(185,134,0,0.95); transform: translateY(-2px); }
.btn-ghost{
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
}
.btn-ghost:hover{ background: var(--forest); color: #fff; }
.btn-block{ width:100%; }

/* Prevent the fixed header from covering section tops on anchor-jump */
section[id]{ scroll-margin-top: 130px; }
@media (max-width: 760px){
  section[id]{ scroll-margin-top: 84px; }
}
.site-nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  transition: box-shadow .35s var(--ease);
}

/* ---- top utility bar: soft honey band ---- */
.topbar{
  position: relative;
  background: linear-gradient(90deg, #FFF3CC 0%, #FBE6A0 55%, #F7D97C 100%);
  border-bottom: 2px solid var(--gold-deep);
  overflow: hidden;
  max-height: 46px;
  transition: max-height .4s var(--ease), opacity .3s var(--ease);
}
.site-nav.is-scrolled .topbar{
  max-height: 0;
  opacity: 0;
  border-bottom-width: 0;
}
.topbar-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.55rem clamp(1.25rem, 4vw, 3rem);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1.5rem;
}
.topbar-tagline{
  margin:0;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: none;   /* global p{max-width:62ch} was clipping the tagline */
}
.topbar-contact{ display:flex; align-items:center; gap: 1rem; flex-shrink:0; }
.topbar-contact a{
  display:inline-flex; align-items:center; gap:.45rem;
  color: var(--forest);
  text-decoration:none;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.topbar-contact a:hover{ color: var(--gold-ink); }
.topbar-icon{
  width: 22px; height: 22px; padding: 4px;
  flex-shrink:0;
  color: var(--forest);
  background: rgba(255,255,255,0.75);
  border-radius: 50%;
  box-sizing: border-box;
}
.topbar-divider{ width:1px; height:16px; background: rgba(12,60,24,0.28); }

/* ---- main nav row (transparent over the hero, white once scrolled) ---- */
.nav-inner{
  max-width: var(--container);
  margin:0 auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1.5rem;
  background: transparent;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-nav.is-scrolled .nav-inner{
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  box-shadow: 0 8px 32px -16px rgba(0,0,0,0.45);
}
.nav-brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  text-decoration:none;
  color: var(--forest);
  transition: transform .3s var(--ease);
}
.nav-brand:hover{ transform: translateY(-1px); }
.logo-img{
  height: var(--logo-h);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(23,38,26,0.18));
  transition: height .3s var(--ease), filter .3s var(--ease);
}
.site-nav.is-scrolled .logo-img{
  height: var(--logo-h-scrolled);
  filter: drop-shadow(0 2px 6px rgba(23,38,26,0.14));
}

.nav-links{ display:flex; align-items:center; gap: clamp(1rem, 2vw, 2rem); }
.nav-links a{
  color: var(--forest);
  text-decoration:none;
  font-weight:600;
  font-size: 0.93rem;
  position:relative;
  padding: 0.3em 0;
  transition: color .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover{ color: var(--gold-ink); }
.nav-links a:not(.nav-cta)::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height:2px; background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after{ transform: scaleX(1); }
.nav-links a.nav-cta{
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75em 1.7em;
  margin-left: 0.4rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--forest) !important;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.75);
  box-shadow: 0 10px 22px -8px rgba(138,90,0,0.65), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.nav-links a.nav-cta:hover{
  transform: translateY(-2px);
  background: var(--forest);
  border-color: var(--forest);
  color: var(--gold-light) !important;
  box-shadow: 0 14px 26px -10px rgba(12,60,24,0.65);
}
.nav-links a.nav-cta:focus-visible{ outline: 3px solid var(--forest); outline-offset: 3px; }
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background: var(--forest); transition: all .3s var(--ease); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background: var(--mint);
  isolation: isolate;
}
.hero-media{
  position:absolute; inset:0; z-index:0;
  background: linear-gradient(135deg, var(--mint), var(--gold-tint));
}
/* Real photo: image/banner.avif. If it is ever missing the <img> removes
   itself and the deep-green gradient above stays as a clean fallback. */
.hero-image-slot{
  position:absolute; inset:0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border:none; border-radius:0;
  filter: saturate(1.12);
}
/* deep-forest wash: dense on the text side, lets the flowers glow on the right,
   with a gold light-leak at the bottom edge */
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(255,251,240,0.97) 18%, rgba(255,246,222,0.86) 50%, rgba(255,236,190,0.10) 100%),
    linear-gradient(180deg, rgba(255,248,228,0.80) 0%, rgba(255,248,228,0.45) 16%, rgba(255,251,240,0) 34%, rgba(255,240,200,0.35) 100%);
}
.hero-scrim::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:6px;
  background: linear-gradient(90deg, var(--gold-ink), var(--gold) 50%, var(--gold-light));
}
.hero-inner{
  position:relative; z-index:2;
  max-width: var(--container);
  width:100%;
  margin: 0 auto;
  padding: 12rem clamp(1.25rem, 4vw, 3rem) 5rem;
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 0;
}
.hero-content{ max-width: 700px; }

.hero-headline{
  color: var(--forest);
  font-size: clamp(2.3rem, 1.2rem + 2.8vw, 3.5rem);
  max-width: 19ch;
  margin-bottom: 0.55em;
  opacity:0;
  animation: riseIn 1s var(--ease) .3s forwards;
}
.hero-sub{
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 54ch;
  opacity:0;
  animation: riseIn 1s var(--ease) .5s forwards;
}
.hero-sub b{ color: var(--forest); }
.hero-actions{
  display:flex; flex-wrap:wrap; gap: 1rem; margin-top: 2rem;
  opacity:0;
  animation: riseIn 1s var(--ease) .68s forwards;
}
.btn-ghost-icon{ width:16px; height:16px; flex-shrink:0; }
@keyframes riseIn{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform: translateY(0); }
}

/* ---- hero stat cards ---- */
.hero-stats{
  width:100%;
  max-width: 100%;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 2.6rem;
  opacity:0;
  animation: riseIn 1s var(--ease) .85s forwards;
}
.hero-stat-card{
  position:relative;
  overflow:hidden;
  padding: 1.2rem 1.25rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  background: rgba(255,253,245,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.hero-stat-card:hover{
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 22px 42px -22px rgba(12,60,24,0.4);
}
.hero-stat-value{
  display:block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--forest);
  margin-bottom: .3rem;
  line-height:1.1;
}
.hero-stat-label{
  display:block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
}

.scroll-cue{
  position:absolute; left:50%; bottom: 2rem; transform: translateX(-50%);
  z-index:2;
  width: 24px; height: 40px;
  border: 2px solid rgba(12,60,24,0.4);
  border-radius: 20px;
}
.scroll-cue span{
  position:absolute; top:6px; left:50%; transform: translateX(-50%);
  width:4px; height:8px; border-radius: 2px;
  background: var(--gold);
  animation: cueMove 1.8s ease-in-out infinite;
}
@keyframes cueMove{
  0%{ opacity:1; top:6px; }
  70%{ opacity:0; top:20px; }
  100%{ opacity:0; top:6px; }
}

/* =========================================================
   LEGACY STRIP
   ========================================================= */
.legacy{ background: #fff; padding: clamp(3.5rem,6vw,6rem) 0; border-bottom: 1px solid var(--line); position: relative; }
.legacy::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-ink), var(--gold) 50%, var(--gold-light));
}
.legacy-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items:center;
}
.legacy-image{
  position:relative;
  border-radius: calc(var(--radius) * 1.8);
  overflow:hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 48px -26px rgba(23,38,26,0.35);
}
.legacy-image img{ width:100%; height:100%; object-fit:cover; display:block; }
.legacy-badge{
  position:absolute; left:1rem; right:1rem; bottom:1rem;
  display:flex; flex-direction:column; gap:.15rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: .85rem 1.1rem;
  box-shadow: 0 12px 26px -16px rgba(0,0,0,0.5);
}
.big-figure{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1rem + 1.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-ink);
}
.big-figure-label{ color: var(--ink-soft); font-size:0.8rem; max-width: none; }
.lead{ font-size: 1em; color: var(--ink); }

/* =========================================================
   FOCUS GRID
   ========================================================= */
.focus{ padding: clamp(4rem,8vw,7rem) 0; background: linear-gradient(180deg, #fff 0%, #FFFBF0 100%); }
.focus-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.focus-card{
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.focus-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(0,0,0,0.2); border-color: rgba(228,168,0,0.3); }
.focus-card--wide{ grid-column: span 1; }
.focus-image{
  aspect-ratio: 1 / 1;
  min-height: unset;
  border-radius:0;
  border:none;
  border-bottom:1px solid var(--line);
}
@supports not (aspect-ratio: 1 / 1){
  .focus-image{ min-height: 240px; }
}
.focus-body{ padding: 1.35rem 1.4rem 1.5rem; }
.focus-index{
  display:inline-block;
  font-size: 0.78rem;
  font-weight:800;
  color: var(--gold-ink);
  letter-spacing: 0.02em;
  margin-bottom: .5rem;
}
.focus-body h3{ margin-bottom: 0.4em; font-size: 1.15rem; }
.focus-body p{ color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }
.focus-body .text-link{ font-size: 0.9rem; }

/* Pongamia Oil feature panel beneath the focus grid */
.focus-feature{
  margin-top: clamp(2.5rem,5vw,3.5rem);
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem,4vw,3.5rem);
  align-items:center;
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E4 100%);
  border: 1px solid rgba(60,132,0,0.18);
  border-radius: calc(var(--radius) * 2.5);
  padding: clamp(1.5rem,3vw,2.75rem);
  overflow:hidden;
  position:relative;
}
.focus-feature::before{
  content:"";
  position:absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-ink));
}
.focus-feature-media{
  position:relative;
  border-radius: calc(var(--radius) * 1.6);
  overflow:hidden;
  aspect-ratio: 1672 / 941;
  background: #fff;
  box-shadow: 0 24px 48px -28px rgba(23,38,26,0.35);
}
.focus-feature-media img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}
.focus-feature-copy{ max-width: 56ch; }
.focus-feature-eyebrow{
  display:inline-flex; align-items:center; gap:.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight:700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.focus-feature-eyebrow svg{ width:16px; height:16px; }
.focus-feature-copy h3{
  color: var(--forest);
  font-size: clamp(1.35rem,1.6vw,1.7rem);
  line-height:1.25;
  margin-bottom: 1rem;
}
.focus-feature-copy p{
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.focus-feature-copy p:last-child{ margin-bottom:0; }



/* Highlighted founding-story strip beneath the focus grid */
.focus-tagline{
  margin-top: clamp(2rem,4vw,2.75rem);
  display:flex;
  align-items:center;
  gap: 1rem;
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E4 100%);
  border: 1px solid rgba(60,132,0,0.18);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(1.1rem,2.5vw,1.5rem) clamp(1.4rem,3vw,2rem);
}
.focus-tagline-icon{
  flex: 0 0 auto;
  width: 34px; height: 34px;
  color: var(--gold);
}
.focus-tagline p{
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.02rem,1.6vw,1.2rem);
  color: var(--forest);
  line-height: 1.45;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about{ padding: clamp(4rem,8vw,7rem) 0 3rem; }
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem,5vw,4rem);
  align-items:center;
  margin-bottom: clamp(3rem,6vw,5rem);
}
.about-image{ min-height: 360px; }
.pull-line{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--forest);
  font-size: 1.25rem;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.5rem;
}
.director-quote{
  max-width: 1060px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFFBEA 0%, #FFF3C4 60%, #FDE79A 100%);
  border: 1px solid rgba(185,134,0,0.35);
  border-radius: 16px;
  padding: clamp(2.5rem,5vw,3.75rem) clamp(2.25rem,6vw,4rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(138,97,0,0.5);
}
.director-quote::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-ink), var(--gold) 50%, var(--gold-light));
}
.director-quote::after{
  content: "\201C";
  position: absolute;
  top: -0.35em; right: 0.4em;
  font-family: var(--font-display);
  font-size: 9.5rem;
  line-height: 1;
  color: rgba(138,97,0,0.14);
  pointer-events: none;
}
.director-text{ position: relative; z-index: 1; }
.quote-mark{
  width: 40px; height: 40px;
  padding: 9px;
  box-sizing: border-box;
  fill: var(--gold-light);
  background: var(--forest);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 10px 22px -10px rgba(12,60,24,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.director-text p{ font-size: 1.18rem; color: var(--ink); max-width: 66ch; font-family: var(--font-display); font-weight: 400; }
.director-lead{
  font-size: 1.32rem !important;
  color: var(--forest) !important;
  font-weight: 500 !important;
  line-height: 1.4;
  margin-bottom: 1.4rem;
}
.director-details{
  border-left: 3px solid var(--gold);
  padding-left: 1.3rem;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.director-details p{
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.7;
  color: var(--ink-soft) !important;
  max-width: 62ch;
}
.director-text > .pull-line{ margin-top: 0; margin-bottom: 1.4rem; border-left-color: var(--gold-ink); color: var(--forest); }
.director-text cite{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-style: normal;
  font-weight:700;
  color: var(--forest);
}
.director-text cite::before{
  content:"";
  width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  display:inline-block;
}

/* =========================================================
   MISSION / VISION
   ========================================================= */
.mv{
  position:relative;
  background: linear-gradient(180deg, var(--mint-deep) 0%, var(--mint) 100%);
  color: var(--ink);
  padding: clamp(4rem,8vw,7rem) 0;
  text-align:center;
  overflow:hidden;
}
.mv::before{
  content:""; position:absolute; left:0; right:0; top:0; height:5px;
  background: linear-gradient(90deg, var(--gold-ink), var(--gold) 50%, var(--gold-light));
}
.mv-texture{
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(138,90,0,0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 0%, transparent 75%);
}
.mv-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem,4vw,3rem);
  align-items:stretch;
  text-align:left;
}
.mv-block{
  position:relative;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 16px;
  padding: clamp(1.8rem,3vw,2.6rem);
  box-shadow: 0 18px 40px -26px rgba(12,60,24,0.35);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mv-block:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 48px -26px rgba(12,60,24,0.45);
}
.mv-icon{
  display:inline-flex;
  align-items:center; justify-content:center;
  width: 58px; height: 58px;
  margin-bottom: 1.1rem;
  border-radius:50%;
  background: var(--gold);
  color: var(--forest);
}
.mv-icon svg{ width: 28px; height:28px; }
.mv-label{
  display:block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-ink);
  margin-bottom: .7rem;
}
.mv-block p{ color: var(--ink-soft); max-width: 44ch; margin-bottom:0; }
.mv-divider{ display:flex; justify-content:center; color: rgba(138,90,0,0.45); }
.mv-divider-svg{ width:24px; height:100%; }
.mv-line{
  position:relative;
  margin-top: clamp(2.5rem,5vw,4rem);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  color: var(--forest);
  margin-left: auto; margin-right: auto;
  text-align: center;
}

/* =========================================================
   SAF
   ========================================================= */
.saf{ padding: clamp(4rem,8vw,7rem) 0; }
.saf-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.saf-banner{
  position:relative;
  width:100%;
  aspect-ratio: 1200 / 1413;
  border-radius: calc(var(--radius) * 1.6);
  overflow:hidden;
  box-shadow: 0 24px 48px -28px rgba(23,38,26,0.35);
}
.saf-banner img{ width:100%; height:100%; object-fit:cover; display:block; }
.saf-copy p:last-child{ margin-bottom:0; }

/* =========================================================
   PONGAMIA
   ========================================================= */
.pongamia{ background: linear-gradient(180deg, var(--mint) 0%, var(--mint-soft) 100%); color: var(--ink); padding: clamp(4rem,8vw,7rem) 0; }
.pongamia h2, .pongamia h3{ color: var(--forest); }
.pongamia .section-intro{ color: var(--ink-soft); }
.pong-columns{ display:grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-bottom: clamp(3rem,6vw,4.5rem); align-items: stretch; }
@media (max-width: 1200px){ .pong-columns{ grid-template-columns: repeat(2,1fr); } }
.pong-col{
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px -22px rgba(23,38,26,0.25);
}
.pong-image{ min-height: 200px; border-radius:0; border:none; margin:0; }
.pong-col h3{ margin: 1.5rem 1.5rem 0.6rem; }
.pong-col .pong-subhead{ margin: 0 1.5rem 0.8rem; font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.pong-col p{ color: var(--ink-soft); font-size: 0.98rem; padding: 0 1.5rem; }
.pong-col p + p{ margin-top: 1rem; }
.pong-col p:last-child{ margin-bottom: 1.75rem; }
.why-grid{ border-top: 1px solid var(--line); padding-top: clamp(2.5rem,5vw,3.5rem); }
.why-heading{ color: var(--forest); margin-bottom: .6rem; }
.why-sub{ color: var(--ink-soft); max-width: 66ch; margin-bottom: clamp(1.75rem,3vw,2.25rem); }
.why-cards{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.35rem;
  margin: 0 0 2.25rem;
}
.why-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.6);
  overflow:hidden;
  box-shadow: 0 14px 34px -26px rgba(23,38,26,0.35);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why-card:hover{ transform: translateY(-4px); box-shadow: 0 22px 46px -22px rgba(23,38,26,0.4); }
.why-card-head{
  display:flex; align-items:center; gap:.7rem;
  padding: .95rem 1.2rem;
  color:#fff;
}
.why-card-head h4{ color:#fff; margin:0; font-size:0.98rem; }
.why-card-icon{
  width:34px; height:34px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.2);
  border-radius:50%;
}
.why-card-icon svg{ width:18px; height:18px; }
.why-card-head--forest{ background: linear-gradient(120deg, var(--leaf-deep), var(--leaf)); }
.why-card-head--leaf{ background: linear-gradient(120deg, #A66F00, #7C5200); }
.why-card-head--gold{ background: linear-gradient(120deg, var(--gold-light), var(--gold)); }
.why-card-head--gold, .why-card-head--gold h4{ color: var(--forest); }
.why-card-head--gold .why-card-icon{ background: rgba(12,60,24,0.14); }
.why-card p{ margin:0; padding: 1rem 1.2rem 1.3rem; color: var(--ink-soft); font-size:0.94rem; line-height:1.55; }
.why-approach{
  color: var(--ink-soft);
  max-width: 78ch;
  background: linear-gradient(135deg,#fff,#FFFBF0);
  border: 1px solid var(--mint-line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 0.98rem;
}

/* =========================================================
   UCO / PROCESS
   ========================================================= */
.uco{ padding: clamp(4rem,8vw,7rem) 0; background: linear-gradient(180deg, #fff 0%, #FFFBF0 100%); }
.uco-intro-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items:center; margin-bottom: clamp(3rem,6vw,4.5rem); }
.uco-banner{
  position:relative;
  width:100%;
  aspect-ratio: 1672 / 941;
  border-radius: calc(var(--radius) * 1.6);
  overflow:hidden;
  box-shadow: 0 24px 48px -28px rgba(23,38,26,0.35);
}
.uco-banner img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Section-head paired with a side image (used cooking oil / sustainability intros) */
.section-head-media{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem,5vw,3.5rem);
  align-items:center;
  margin-bottom: clamp(2.5rem,5vw,3.5rem);
}
.section-head-media .section-head{ margin-bottom:0; max-width:none; }
.section-head-img{
  position:relative;
  width:100%;
  aspect-ratio: 3 / 2;
  border-radius: calc(var(--radius) * 1.6);
  overflow:hidden;
  box-shadow: 0 24px 48px -28px rgba(23,38,26,0.35);
}
.section-head-img img{ width:100%; height:100%; object-fit:cover; display:block; }

.process-steps{
  list-style:none; margin:0 0 2.5rem; padding:0;
  display:grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-top: 3px solid var(--gold);
  border-left: 1px solid var(--line);
}
.process-steps li{
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), background .3s var(--ease);
}
.process-steps li:hover{ background: #FFF6DC; }
.process-steps li.is-visible{ opacity:1; transform: translateY(0); }
.step-num{
  display:flex; align-items:center; justify-content:center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 0.9rem;
}
.process-steps h4{ margin-bottom: 0.35em; }
.process-steps p{ font-size: 0.92rem; color: var(--ink-soft); margin:0; }
.uco-note{ color: var(--ink-soft); max-width: 78ch; }

/* =========================================================
   SUSTAINABILITY TABS
   ========================================================= */
.sustainability{
  position:relative;
  background: linear-gradient(180deg, #FFF8DE 0%, #FCE9AE 100%);
  color: var(--ink);
  padding: clamp(4rem,8vw,7rem) 0;
}
.sustainability::before{
  content:""; position:absolute; left:0; right:0; top:0; height:5px;
  background: linear-gradient(90deg, var(--gold-ink), var(--gold) 50%, var(--gold-light));
}
.sustainability h2{ color: var(--forest); }
.sustainability .section-intro{ color: var(--ink-soft); }
.tab-list{
  display:flex; flex-wrap:wrap; gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(138,97,0,0.3);
  padding-bottom: 0;
}
.tab-btn{
  background:none; border:none; cursor:pointer;
  font-family: var(--font-body);
  font-weight:700; font-size: 1rem;
  color: var(--ink-soft);
  padding: 0.9rem 0.3rem;
  margin-right: 1.75rem;
  position:relative;
  transition: color .3s var(--ease);
}
.tab-btn:hover{ color: var(--forest); }
.tab-btn::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:3px;
  background: var(--gold-deep);
  transform: scaleX(0); transform-origin:left; transition: transform .35s var(--ease);
}
.tab-btn.is-active{ color: var(--forest); }
.tab-btn.is-active::after{ transform: scaleX(1); }
.tab-panel{ display:none; max-width: 74ch; animation: fadeIn .5s var(--ease); }
.tab-panel.is-active{ display:block; }
@keyframes fadeIn{ from{ opacity:0; transform: translateY(6px);} to{opacity:1; transform:translateY(0);} }
.tab-panel ul{ list-style:none; margin:0 0 1.2rem; padding:0; display:grid; gap: 0.9rem; }
.tab-panel li{
  padding-left: 1.6rem; position:relative;
  color: var(--ink);
}
.tab-panel li::before{
  content:""; position:absolute; left:0; top:0.55em; width:9px; height:9px; border-radius:50%;
  background: var(--gold-deep);
}
.tab-panel p{ color: var(--ink-soft); max-width: 74ch; }
.tab-panel strong{ color: var(--forest); }

/* =========================================================
   PARTNERS
   ========================================================= */
.partners{ padding: clamp(4rem,8vw,7rem) 0; background: #fff; }
.partner-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.partner-item{
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  font-weight:600;
  color: var(--forest);
  background: #fff;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease), border-left-color .3s var(--ease);
}
.partner-item:hover{
  border-left-color: var(--gold-ink);
  border-color: rgba(228,168,0,0.6);
  background: var(--gold-tint);
  transform: translateY(-3px);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact{ background: linear-gradient(180deg, var(--mint) 0%, #fff 100%); padding: clamp(4rem,8vw,7rem) 0; }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,5vw,4rem); }
.contact-grid > *{ min-width: 0; }
.contact-details dd{ overflow-wrap: anywhere; min-width: 0; }
.contact-details{ margin: 2rem 0; display:grid; gap: 1rem; }
.contact-details > div{ display:flex; gap: 1rem; border-bottom: 1px solid var(--line); padding-bottom: 0.8rem; }
.contact-details dt{ min-width: 90px; font-weight:800; color: var(--forest); }
.contact-details dd{ margin:0; color: var(--ink-soft); }
.contact-details a{ text-decoration:underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.map-embed{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -20px rgba(0,0,0,0.25);
}
.map-embed iframe{ width: 100%; height: 240px; border: 0; display:block; }
.map-link{
  display:inline-flex;
  align-items:center;
  gap: 0.4em;
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
}
.map-link svg{ width: 15px; height: 15px; }
.map-link:hover{ color: var(--gold-ink); }

.contact-form{ background:#fff; border-radius: var(--radius); padding: clamp(1.75rem,4vw,2.5rem); border: 1px solid var(--line); border-top: 5px solid var(--gold); box-shadow: 0 18px 44px -24px rgba(12,60,24,0.3); }
.form-row{ margin-bottom: 1.3rem; display:flex; flex-direction:column; gap: 0.4rem; }
.form-row label{ font-size: 0.88rem; font-weight:700; color: var(--forest); }
.form-row input, .form-row select, .form-row textarea{
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.75em 0.9em;
  border: 1px solid rgba(23,38,26,0.25);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(228,168,0,0.18);
}
.form-status{ min-height: 1.4em; font-size: 0.92rem; color: var(--leaf-deep); font-weight:700; margin: 0.9rem 0 0; }

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #FFF6D8 0%, #FBE5A2 100%);
  color: var(--ink-soft);
  border-top: 6px solid var(--gold);

  padding: clamp(3.5rem, 6vw, 5rem) 0 1.5rem;
}


/* =========================================================
   FOUR COLUMN FOOTER
   ========================================================= */

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1.15fr
    1.5fr;

  gap: 3.5rem;

  padding-bottom: 3rem;

  border-bottom: 1px solid var(--mint-line);
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
  min-width: 0;
}


/* =========================================================
   WHITE LOGO BACKGROUND
   ========================================================= */

/* =========================================================
   LOGO — transparent, no background box
   ========================================================= */

.footer-logo-box {
  width: 170px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 1.15rem;
}


.logo-img--footer {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


/* =========================================================
   COMPANY NAME
   ========================================================= */

.footer-brand h4 {
  margin: 0;

  color: var(--forest);

  font-family: var(--font-display);

  font-size: 1.2rem;

  font-weight: 700;

  line-height: 1.4;
}


/* =========================================================
   TAGLINE
   ========================================================= */

.footer-tagline {
  margin: 0.65rem 0 0 !important;

  color: var(--gold-ink) !important;

  font-family: var(--font-body) !important;

  font-weight: 700;

  font-size: 0.95rem !important;

  line-height: 1.6;

  max-width: 330px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.footer-description {
  margin: 0.9rem 0 0 !important;

  color: var(--ink-soft) !important;

  font-family: var(--font-body) !important;

  font-size: 0.86rem !important;

  line-height: 1.7;

  max-width: 340px;
}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.footer-social {
  display: flex;

  align-items: center;

  gap: 0.65rem;

  margin-top: 1.35rem;
}


.footer-social a {
  width: 36px;
  height: 36px;

  border: 1px solid rgba(138, 90, 0, 0.35);

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.75);

  color: var(--forest);

  text-decoration: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


.footer-social svg {
  width: 17px;
  height: 17px;

  fill: currentColor;

  stroke: currentColor;

  stroke-width: 0;
}


.footer-social a:nth-child(2) svg {
  fill: none;

  stroke-width: 1.8;
}


.footer-social a:hover {
  background: var(--gold);

  border-color: var(--gold);

  color: var(--forest);

  transform: translateY(-3px);
}


/* =========================================================
   FOOTER LINK COLUMNS
   ========================================================= */

.footer-links {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 0.72rem;

  min-width: 0;
}


.footer-links h5 {
  color: var(--forest);

  font-family: var(--font-display);

  font-weight: 700;

  font-size: 1.08rem;

  line-height: 1.4;

  margin: 0;
}


/* =========================================================
   GOLD HEADING LINE
   ========================================================= */

.footer-heading-line {
  display: block;

  width: 32px;
  height: 2px;

  background: var(--gold);

  border-radius: 2px;

  margin: 0.05rem 0 0.35rem;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-links a,
.footer-links span {
  color: var(--ink-soft);

  text-decoration: none;

  font-family: var(--font-body);

  font-size: 0.92rem;

  line-height: 1.55;
}


.footer-links a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.footer-links a:hover {
  color: var(--gold-ink);

  transform: translateX(3px);
}


/* =========================================================
   CONTACT
   ========================================================= */

.footer-contact {
  padding-left: 0.2rem;
}


.footer-email {
  word-break: break-word;
}


.contact-address {
  max-width: 270px;
}


/* =========================================================
   GET IN TOUCH BUTTON
   ========================================================= */

.footer-contact-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-top: 0.4rem;

  padding: 0.55rem 1rem;

  background: linear-gradient(120deg, var(--gold-light), var(--gold));

  color: var(--forest) !important;

  border-radius: 999px;

  font-size: 0.9rem !important;

  font-weight: 800;

  transform: none !important;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.footer-contact-btn:hover {
  background: linear-gradient(120deg, #FFD34D, var(--gold-light));

  color: var(--forest) !important;

  box-shadow: 0 12px 26px -10px rgba(228,168,0,0.75);

  transform: translateY(-2px) !important;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 2rem;

  padding-top: 1.5rem;

  color: var(--ink-soft);

  font-family: var(--font-body);

  font-size: 0.84rem;
}


.footer-bottom-links {
  display: flex;

  align-items: center;

  gap: 1.5rem;
}


.footer-bottom-links a {
  color: var(--ink-soft);

  text-decoration: none;

  transition: color 0.25s ease;
}


.footer-bottom-links a:hover {
  color: var(--gold-ink);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .footer-grid {
    grid-template-columns:
      1.4fr
      1fr
      1fr;

    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 3;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .site-footer {
    padding: 3rem 0 1.25rem;
  }


  .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 2.5rem 2rem;

    padding-bottom: 2.25rem;
  }


  .footer-brand {
    grid-column: span 2;
  }


  .footer-brand h4 {
    font-size: 1.08rem;
  }


  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 0.9rem;

    line-height: 1.6;
  }


  .footer-bottom-links {
    gap: 1rem;

    flex-wrap: wrap;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }


  .footer-brand {
    grid-column: span 1;
  }


  .footer-logo-box {
    width: 140px;
    height: auto;
  }


  .footer-bottom {
    font-size: 0.8rem;
  }

}
/* =========================================================
   SCROLL REVEAL (site-wide)
   ========================================================= */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

.reveal-left{ opacity:0; transform: translateX(-32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.is-visible{ opacity:1; transform: translateX(0); }

.reveal-right{ opacity:0; transform: translateX(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right.is-visible{ opacity:1; transform: translateX(0); }

.reveal-scale{ opacity:0; transform: scale(.94); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.is-visible{ opacity:1; transform: scale(1); }

/* Stagger helper — apply alongside a reveal class; JS sets the delay inline
   so grids don't need one class per position. */
.reveal, .reveal-left, .reveal-right, .reveal-scale{ transition-delay: var(--reveal-delay, 0s); }

/* Gentle hover lift for cards, now that they animate in */
.focus-card, .pong-col, .partner-item{ transition: opacity .8s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.focus-card:hover, .pong-col:hover{ transform: translateY(-6px); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.35); border-color: rgba(228,168,0,0.4); }

/* Subtle image zoom-in as it scrolls into view */
.img-placeholder.reveal-scale .ph-img{ transition: transform 1.1s var(--ease); }
.img-placeholder.reveal-scale:not(.is-visible) .ph-img{ transform: scale(1.08); }

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scroll-progress{
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-ink), var(--gold), var(--gold-light));
  z-index: 2000; transition: width .1s linear;
}

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */
.back-to-top{
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 1500;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--forest); color: var(--gold-light); border: 2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  cursor: pointer; box-shadow: 0 10px 28px -10px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease);
}
.back-to-top svg{ width: 18px; height: 18px; }
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--gold); color: var(--forest); }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-left, .reveal-right, .reveal-scale{ opacity:1 !important; transform:none !important; }
  .img-placeholder.reveal-scale:not(.is-visible) .ph-img{ transform:none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .legacy-grid, .about-grid, .saf-grid, .uco-intro-grid, .contact-grid, .section-head-media{ grid-template-columns: 1fr; }
  .about-grid .about-image{ order:-1; }
  .saf-grid .saf-banner{ order:-1; }
  .section-head-media .section-head-img{ order:-1; }
  .focus-grid{ grid-template-columns: repeat(2, 1fr); }
  .focus-tagline{ align-items: flex-start; }
  .pong-columns{ grid-template-columns: 1fr; }
  .why-cards{ grid-template-columns: repeat(2,1fr); }
  .process-steps{ grid-template-columns: repeat(2,1fr); }
  .partner-grid{ grid-template-columns: repeat(2,1fr); }
  .mv-grid{ grid-template-columns: 1fr; text-align:left; }
  .mv-divider{ display:none; }
  .hero-stats{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 900px){
  .topbar-tagline{ display:none; }
  .topbar-contact{ margin-left: auto; }
}

@media (max-width: 1080px){
  .nav-links{ gap: clamp(0.7rem, 1.6vw, 1.5rem); }
  .nav-links a:not(.nav-cta){ font-size: 0.88rem; }
  :root{ --logo-h: 68px; --logo-h-scrolled: 68px; }
}

@media (max-width: 760px){
  .topbar-tagline{ display:none; }
  .topbar-contact{ gap: 0.7rem; }
  .topbar-contact a span{ display:none; }
  .nav-links{
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: #fff;
    flex-direction: column; align-items:flex-start;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: none;
    border-left: 4px solid var(--gold);
  }
  .nav-links{ z-index: 3; }
  .nav-links a.nav-cta{ margin-left: 0; margin-top: 0.6rem; }
  .nav-toggle{ position: relative; z-index: 5; }
  .nav-links.is-open{ transform: translateX(0); box-shadow: -20px 0 50px -20px rgba(7,42,16,0.45); }
  .nav-links a:not(.nav-cta){ color: var(--forest) !important; font-size: 1.05rem; }
  .nav-toggle{ display:flex; }
  .nav-toggle span{ background: var(--forest) !important; }
  .site-nav.is-scrolled .nav-toggle span{ background: var(--forest) !important; }
  .process-steps{ grid-template-columns: 1fr; }
  .partner-grid{ grid-template-columns: 1fr; }
  .hero-stats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-badge{ font-size: 0.7rem; padding: .42rem .8rem; }
  .focus-grid{ grid-template-columns: 1fr; }
  .focus-tagline{ flex-direction: column; }
  .focus-feature{ grid-template-columns: 1fr; }
  .why-cards{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .hero-inner{ padding-top: 10rem; }
  :root{ --logo-h: 64px; --logo-h-scrolled: 60px; }
  .hero-stats{ grid-template-columns: 1fr 1fr; }
  .hero-stat-card{ padding: .95rem .9rem; }
  .hero-stat-value{ font-size: 1.2rem; }
}

/* =========================================================
   SUBPAGE COMPONENTS
   (About / Pongamia / UCO / Sustainability / Contact pages)
   ========================================================= */

/* ---- page hero (inner banner) — light theme, matching homepage hero ---- */
.page-hero{
  position:relative;
  overflow:hidden;
  padding: clamp(9.5rem,16vw,12rem) 0 clamp(3.5rem,6vw,5rem);
  background: linear-gradient(135deg, var(--mint) 0%, var(--gold-tint) 100%);
  isolation:isolate;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0; z-index:0;
  background-image: radial-gradient(rgba(12,60,24,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 20% 20%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 75% 90% at 20% 20%, #000 0%, transparent 70%);
}
.page-hero::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:5px;
  background: linear-gradient(90deg, var(--gold-ink), var(--gold) 50%, var(--gold-light));
}
.page-hero-media{
  position:absolute; inset:0; z-index:0;
}
.page-hero-media img{
  width:100%; height:100%; object-fit:cover; opacity: 0.16; filter: saturate(1.1);
}
.page-hero-inner{ position:relative; z-index:1; max-width: 800px; }
.page-breadcrumb{
  display:flex; align-items:center; gap: 0.5rem;
  font-size: 0.82rem; font-weight:700; letter-spacing:.03em;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.page-breadcrumb a{ color: var(--gold-ink); text-decoration:none; }
.page-breadcrumb a:hover{ text-decoration: underline; }
.page-hero-eyebrow{
  display:inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--gold-ink);
  margin-bottom: 0.7rem;
}
.page-hero h1{
  color: var(--forest);
  font-size: clamp(2.1rem, 1.3rem + 2.6vw, 3.2rem);
  max-width: 18ch;
  margin-bottom: 0.55em;
}
.page-hero-sub{
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 60ch;
}
.page-hero-actions{ display:flex; flex-wrap:wrap; gap: 1rem; margin-top: 1.8rem; }
.page-hero .btn-ghost{ border-color: rgba(12,60,24,0.35); color: var(--forest); }
.page-hero .btn-ghost:hover{ background: var(--forest); color:#fff; border-color: var(--forest); }

/* ---- stat strip (reused hero-stat look, outside the hero) ---- */
.stat-strip{
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.stat-strip-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: -2.6rem;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 20px 46px -26px rgba(12,60,24,0.4);
}
.stat-strip-card{
  background:#fff;
  padding: 1.5rem 1.4rem;
  text-align:center;
}
.stat-strip-value{
  display:block; font-family: var(--font-display); font-weight:800;
  font-size: clamp(1.4rem,1rem + 1.2vw,1.9rem); color: var(--forest); margin-bottom:.3rem;
}
.stat-strip-label{
  display:block; font-size:0.78rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.04em; color: var(--ink-soft);
}

/* ---- generic page section rhythm ---- */
.page-section{ padding: clamp(4rem,8vw,6.5rem) 0; }
.page-section--tint{ background: linear-gradient(180deg, #fff 0%, #FFFBF0 100%); }
.page-section--mint{ background: linear-gradient(180deg, var(--mint) 0%, var(--mint-soft) 100%); }
.page-section--border{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.two-col.reverse .two-col-media{ order:2; }
.two-col-media{
  position:relative; border-radius: var(--radius); overflow:hidden;
  border: 1px solid var(--line); min-height: 320px;
  box-shadow: 0 22px 48px -28px rgba(12,60,24,0.35);
}
.two-col-media img{ width:100%; height:100%; object-fit:cover; display:block; min-height:320px; }

/* ---- value / pillar cards (mv-block styling, generalised) ---- */
.value-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.value-card{
  background:#fff; border: 1px solid var(--line); border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.8rem 1.5rem;
  box-shadow: 0 16px 36px -26px rgba(12,60,24,0.3);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.value-card:hover{ transform: translateY(-5px); box-shadow: 0 24px 46px -24px rgba(12,60,24,0.4); }
.value-card .value-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:50%;
  background: linear-gradient(145deg, var(--forest) 0%, #0a2e12 100%);
  color: var(--gold-light);
  box-shadow: 0 10px 22px -10px rgba(12,60,24,0.55), inset 0 0 0 3px rgba(228,168,0,0.25);
  margin-bottom: 1.1rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.value-card:hover .value-icon{
  transform: scale(1.06);
  box-shadow: 0 14px 26px -10px rgba(12,60,24,0.6), inset 0 0 0 3px rgba(228,168,0,0.45);
}
.value-card .value-icon svg{ width:26px; height:26px; }
.value-card h3{ font-size: 1.08rem; margin-bottom: .4em; }
.value-card p{ font-size: 0.92rem; color: var(--ink-soft); margin:0; }

/* ---- timeline ---- */
.timeline{ position:relative; margin-top: 2.5rem; }
.timeline::before{
  content:""; position:absolute; left: 26px; top:6px; bottom:6px; width:2px;
  background: repeating-linear-gradient(180deg, var(--gold) 0 8px, transparent 8px 14px);
}
.timeline-item{ position:relative; padding-left: 72px; margin-bottom: 2.4rem; }
.timeline-item:last-child{ margin-bottom:0; }
.timeline-dot{
  position:absolute; left:0; top:0; width:54px; height:54px; border-radius:50%;
  background: var(--forest); color: var(--gold-light); display:flex; align-items:center; justify-content:center;
  text-align:center; line-height:1.05; padding: 4px; box-sizing:border-box; overflow:hidden;
  font-family: var(--font-display); font-weight:800; font-size:0.66rem; letter-spacing:0.01em;
  border: 3px solid var(--gold); word-break: break-word;
}
.timeline-item h3{ font-size: 1.12rem; margin-bottom:.3em; }
.timeline-item p{ color: var(--ink-soft); margin:0; font-size:0.96rem; }

/* ---- leadership / team ---- */
.team-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.team-card{
  background:#fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; box-shadow: 0 16px 36px -26px rgba(12,60,24,0.3);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover{ transform: translateY(-5px); box-shadow: 0 24px 46px -24px rgba(12,60,24,0.4); }
.team-photo{
  height: 210px;
  background: linear-gradient(135deg, var(--forest), var(--leaf-deep));
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-light); font-family: var(--font-display); font-weight:800; font-size: 2.4rem;
}
.team-body{ padding: 1.4rem 1.5rem 1.6rem; }
.team-body h3{ font-size: 1.08rem; margin-bottom:.15em; }
.team-role{ display:block; color: var(--gold-ink); font-weight:700; font-size:0.82rem; text-transform:uppercase; letter-spacing:.04em; margin-bottom:.7em; }
.team-body p{ font-size:0.92rem; color: var(--ink-soft); margin:0; }

/* ---- FAQ / accordion ---- */
.faq-list{ max-width: 820px; margin: 0 auto; }
.faq-item{
  background:#fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 0.9rem; overflow:hidden;
}
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding: 1.1rem 1.4rem; background:none; border:none; cursor:pointer; text-align:left;
  font-family: var(--font-display); font-weight:700; font-size: 1rem; color: var(--forest);
}
.faq-question .faq-plus{
  flex-shrink:0; width:24px; height:24px; border-radius:50%; background: var(--gold-tint);
  color: var(--forest); display:flex; align-items:center; justify-content:center;
  transition: transform .3s var(--ease);
  font-size: 1.1rem; line-height:1;
}
.faq-item.is-open .faq-question .faq-plus{ transform: rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-answer p{ padding: 0 1.4rem 1.2rem; color: var(--ink-soft); font-size:0.94rem; margin:0; max-width:none; }
.faq-item.is-open .faq-answer{ max-height: 400px; }

/* ---- who we work with / audience grid ---- */
.audience-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.audience-card{
  background:#fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; text-align:left;
  border-left: 4px solid var(--leaf);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.audience-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 38px -24px rgba(12,60,24,0.35); }
.audience-card h3{ font-size: 1rem; margin-bottom:.35em; }
.audience-card p{ font-size:0.9rem; color: var(--ink-soft); margin:0; }

/* ---- CTA band (bottom of every subpage) — light theme ---- */
.cta-band{
  position:relative; overflow:hidden;
  padding: clamp(3rem,6vw,4.5rem) 0;
  background: linear-gradient(120deg, var(--mint-deep), var(--mint) 60%, var(--gold-tint));
  text-align:center;
}
.cta-band::before{
  content:""; position:absolute; left:0; right:0; top:0; height:5px;
  background: linear-gradient(90deg, var(--gold-ink), var(--gold) 50%, var(--gold-light));
}
.cta-band h2{ color: var(--forest); margin-bottom:.4em; }
.cta-band p{ color: var(--ink-soft); max-width: 62ch; margin: 0 auto 1.8rem; }
.cta-band .hero-actions{ justify-content:center; margin-top:0; }

/* ---- simple checklist ---- */
.check-list{ list-style:none; margin: 0 0 1.2rem; padding:0; display:grid; gap:0.7rem; }
.check-list li{ position:relative; padding-left: 1.7rem; color: var(--ink-soft); }
.check-list li::before{
  content:""; position:absolute; left:0; top:0.35em; width:14px; height:14px; border-radius:50%;
  background: var(--gold); box-shadow: 0 0 0 3px var(--gold-tint);
}

/* ---- responsive ---- */
@media (max-width: 980px){
  .two-col, .two-col.reverse{ grid-template-columns: 1fr; }
  .two-col.reverse .two-col-media{ order:0; }
  .value-grid{ grid-template-columns: repeat(2,1fr); }
  .team-grid{ grid-template-columns: repeat(2,1fr); }
  .audience-grid{ grid-template-columns: repeat(2,1fr); }
  .stat-strip-grid{ grid-template-columns: repeat(2,1fr); margin-top: -2rem; }
}
@media (max-width: 700px){
  .value-grid, .team-grid, .audience-grid{ grid-template-columns: 1fr; }
  .stat-strip-grid{ grid-template-columns: 1fr 1fr; }
  .page-hero{ padding-top: 9rem; }
}

/* =========================================================
   TEAM PAGE — director profile cards
   ========================================================= */
.director-index{ display:flex; flex-direction:column; gap: 3.2rem; }

.director-profile{
  display:flex; gap: 2.8rem; align-items:flex-start;
  background:#fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem; box-shadow: 0 16px 36px -26px rgba(12,60,24,0.28);
}
.director-profile:nth-child(even){ flex-direction: row-reverse; }

.director-num{
  position:absolute; top: -1.1rem; left: 2rem; background: var(--forest);
  color: var(--gold-light); font-family: var(--font-display); font-weight:800;
  font-size: 0.8rem; letter-spacing:.04em; padding: .35rem .85rem; border-radius: 999px;
  border: 2px solid var(--gold);
}
.director-profile{ position: relative; margin-top: 1.1rem; }

.director-media{ flex: 0 0 260px; }
.director-photo-frame{
  width: 100%; aspect-ratio: 4 / 5; border-radius: calc(var(--radius) - 6px);
  overflow:hidden; border: 4px solid var(--gold-tint); box-shadow: 0 14px 30px -18px rgba(12,60,24,0.45);
  background: linear-gradient(135deg, var(--forest), var(--leaf-deep));
}
.director-photo-frame img{ width:100%; height:100%; object-fit: cover; display:block; }
.director-photo-fallback{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  color: var(--gold-light); font-family: var(--font-display); font-weight:800; font-size: 2.8rem;
}

.director-info{ flex: 1 1 auto; min-width:0; }
.director-info h3{ font-size: 1.4rem; margin-bottom:.15em; color: var(--forest); }
.director-info .team-role{ margin-bottom: 1rem; }
.director-info p{ color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 1rem; max-width: 62ch; }
.director-info p:last-of-type{ margin-bottom: 1.3rem; }

.director-info .pull-line{ margin-bottom: 1.3rem; }
.director-info blockquote{
  border-left: 3px solid var(--gold); margin: 0 0 1.3rem; padding-left: 1rem;
  font-family: var(--font-display); font-style: italic; color: var(--forest); font-size: 1.05rem;
}

.director-contact{ display:flex; flex-wrap:wrap; gap: 1.4rem 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.director-contact a{
  display:flex; align-items:center; gap:.55rem; color: var(--ink); font-weight:600; font-size:0.92rem;
}
.director-contact a:hover{ color: var(--gold-ink); }
.director-contact-icon{ width:18px; height:18px; flex:none; color: var(--gold-ink); }

@media (max-width: 900px){
  .director-profile, .director-profile:nth-child(even){ flex-direction: column; }
  .director-media{ flex: none; width: 180px; margin: 0 auto; }
  .director-info{ text-align:left; }
}

/* =========================================================
   WHATSAPP FLOATING BUTTON (site-wide)
   ========================================================= */
.whatsapp-float{
  position: fixed; left: 1.5rem; bottom: 1.5rem; z-index: 1500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float:hover{ transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px -8px rgba(0,0,0,0.55); }
.whatsapp-float svg{ width: 30px; height: 30px; }
.whatsapp-float-pulse{
  position:absolute; inset:0; border-radius:50%; background:#25D366;
  animation: whatsappPulse 2.2s ease-out infinite; z-index:-1;
}
@keyframes whatsappPulse{
  0%{ opacity:.55; transform:scale(1); }
  100%{ opacity:0; transform:scale(1.9); }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float-pulse{ animation:none; display:none; }
}

@media (max-width: 560px){
  .whatsapp-float{ width: 52px; height: 52px; left: 1rem; bottom: 1rem; }
  .whatsapp-float svg{ width: 26px; height: 26px; }
  .back-to-top{ right: 1rem; bottom: 1rem; }
}

/* =========================================================
   EXTRA RESPONSIVE HARDENING (all-device pass)
   ========================================================= */
html, body{ max-width: 100%; overflow-x: hidden; }

@media (max-width: 400px){
  body{ font-size: 15.5px; }
  .page-hero h1, h1{ font-size: clamp(1.6rem, 7vw, 2rem); }
  .btn-primary, .btn-ghost{ width: 100%; justify-content:center; text-align:center; }
  .page-hero-actions, .hero-actions{ flex-direction: column; align-items: stretch; }
  .director-num{ left: 1.1rem; }
  .director-profile{ padding: 1.6rem 1.3rem; }
}
