/* ═══════════════════════════════════════════════════════════════
 *  style.css
 *  BYUFUEL — Unified Stylesheet
 *
 *  All pages share this single stylesheet. Page-specific styles
 *  are namespaced by prefix:
 *    (none)  — Shared globals (nav, footer, buttons, lazy-load)
 *    .fcard  — Homepage feature cards
 *    .idx-   — Homepage certifications & press sections
 *    .abt2-  — About page
 *    .abt-   — About page "What We Do" tile grid
 *    .imp-   — Impact page
 *    .ct-    — Contact page (aliases)
 *    .tch-   — Technology index (homepage dark zone)
 *    .tpl-   — Technology page (full page)
 *
 *  TABLE OF CONTENTS
 *  ─────────────────────────────────────────────────────────────
 *
 *   1. RESET & DESIGN TOKENS .......................... line ~46
 *   2. GLOBAL: Lazy Loading ........................... line ~57
 *   3. GLOBAL: Navbar ................................. line ~64
 *   4. GLOBAL: Hamburger & Mobile Drawer .............. line ~103
 *   5. GLOBAL: Hero (homepage) ........................ line ~148
 *   6. GLOBAL: Marquee / Partners ..................... line ~221
 *   7. GLOBAL: About Section (homepage) ............... line ~236
 *   8. GLOBAL: Stats Bar ............................. line ~264
 *   9. GLOBAL: Footer ................................ line ~298
 *  10. GLOBAL: Responsive ............................. line ~327
 *  11. CONTACT PAGE ................................... line ~392
 *  12. ABOUT PAGE V2 ................................. line ~1289
 *  13. ABOUT PAGE: What We Do Tiles .................. line ~2022
 *  14. ABOUT PAGE: Clients Grid ...................... line ~2171
 *  15. ABOUT PAGE: Leadership ........................ line ~2290
 *  16. INDEX: Certifications ......................... line ~2428
 *  17. INDEX: Press / Featured In .................... line ~2553
 *  18. IMPACT PAGE ................................... line ~2640
 *  19. TECHNOLOGY INDEX (tch-) ....................... line ~3817
 *  20. TECHNOLOGY PAGE (tpl-) ........................ line ~4369
 *
 * ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
 *  1. RESET & DESIGN TOKENS
 * ═══════════════════════════════════════════════════════════════ */

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

:root {
  --forest: #203B2A;
  --gold:   #CBB35D;
  --gold-l: #dfc97a;
  --white:  #ffffff;
  --cream:  #f4f1ea;
  --text:   #1c2e20;
  --border: rgba(32,59,42,0.09);
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text);   font-family: 'Poppins', sans-serif; overflow-x: hidden; }


/* ═══════════════════════════════════════════════════════════════
 *  2. GLOBAL: Progressive Image Loading
 * ═══════════════════════════════════════════════════════════════ */
img.lazy-pending {
  opacity: 0;
}
img.lazy-loaded {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════════════════
 *  3. GLOBAL: Navbar
 *  Fluid sizing — padding, gap, and logo scale with viewport
 *  so the 5 nav items never clip between 768px and desktop.
 * ═══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(16px, 2.5vw, 32px);
  padding: 20px clamp(20px, 3.2vw, 48px);
  max-width: 100vw;
  box-sizing: border-box;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled { background: rgba(244,241,234,0.97); box-shadow: 0 1px 20px rgba(0,0,0,0.05); }
body.drawer-open .nav-links { visibility: hidden; }

.nav-logo {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.nav-logo a { display: block; line-height: 0; }
.nav-logo img { height: clamp(22px, 2.4vw, 36px); width: auto; display: block; }

/* ── Tagline: "Samosa to SAF"
 *    Editorial restraint — Josefin Sans light, gold #CCB45E, modest tracking,
 *    italic on the connective word for typographic rhythm. The line sits
 *    flush-left under the wordmark and scales gracefully on mobile.
 * ───────────────────────────────────────────── */
.nav-tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(9px, 0.78vw, 11px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #CCB45E;
  white-space: nowrap;
  /* Optical alignment: the BYUFUEL wordmark within the logo PNG starts
     a touch right of the icon — nudge the tagline so it sits in a more
     considered relationship to the wordmark, not the canister mark. */
  padding-left: clamp(34px, 3.4vw, 50px);
  /* Subtle entrance — calm, not animated showmanship */
  opacity: 0.92;
  transition: opacity 0.3s ease, color 0.3s ease;
  user-select: none;
}
.nav-tagline i {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.08em;
  /* Slightly de-emphasised: the connector should sit a hair quieter
     than the proper nouns it links. */
  opacity: 0.78;
}
.nav-logo:hover .nav-tagline { opacity: 1; }
.nav-links {
  display: flex;
  gap: clamp(18px, 2.6vw, 40px);
  list-style: none;
  transition: visibility 0s;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12.5px, 1vw, 14px); font-weight: 300; letter-spacing: 0.3px;
  text-decoration: none; color: var(--text); position: relative; transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); font-weight: 400;}
.nav-links a:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════════
 *  4. GLOBAL: Hamburger & Mobile Drawer
 * ═══════════════════════════════════════════════════════════════ */
#hamburger {
  display: none;
  cursor: pointer; background: none; border: none;
  width: 32px; height: 32px; padding: 0; position: relative;
}
#hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
  position: absolute; left: 5px; transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1),
              opacity 0.3s ease, top 0.4s cubic-bezier(0.23,1,0.32,1),
              background 0.35s ease;
}
#hamburger span:nth-child(1) { top: 9px; }
#hamburger span:nth-child(2) { top: 15px; }
#hamburger span:nth-child(3) { top: 21px; }
#hamburger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); background: var(--gold); }
#hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); background: var(--gold); }

/* ── Mobile Drawer ── */
#mobileDrawer {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--forest); z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s ease;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px; overflow: hidden;
}
#mobileDrawer.open { opacity: 1; pointer-events: all; }

.d-nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.d-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 7vw, 2.6rem); font-weight: 300; letter-spacing: 0.5px;
  color: rgba(244,241,234,0.82); text-decoration: none; transition: color 0.3s; position: relative;
}
.d-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.d-nav a:hover { color: var(--gold-l); }
.d-nav a:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════════
 *  5. GLOBAL: Hero (Homepage)
 *  Design tokens scoped to .hero control the GIF's framing
 *  (scale + horizontal bias) from a single place per breakpoint.
 * ═══════════════════════════════════════════════════════════════ */
.hero {
  --hero-gif-scale: 1;          /* width relative to viewport       */
  --hero-gif-shift: 0%;         /* horizontal bias (negative = left)*/
  --hero-gif-gap: 24px;         /* space between headline and GIF   */
  --hero-text-pad: 48px 24px 0;
  background: var(--cream);
  padding-top: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.hero-text { text-align: center; padding: var(--hero-text-pad); }
.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  color: #203B2A;
  font-size: clamp(2.8rem, 5vw, 7rem); font-weight: 400; line-height: 1.08;
  letter-spacing: -1.5px; color: var(--text);
}
.hero-text h1 .gold { color: var(--gold); font-style: italic; }
.hero-sub { margin-top: 14px; font-family: 'Poppins', sans-serif; font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300; color: #999; letter-spacing: 0.2px; }
.hero-gif {
  width: calc(100% * var(--hero-gif-scale));
  max-width: 1000px;
  padding: 0 24px;
  margin: var(--hero-gif-gap) 0 0 var(--hero-gif-shift);
  display: flex;
  justify-content: center;
}
.hero-gif img { width: 100%; max-width: 880px; height: auto; display: block; }
.hero-cta { margin-top: 32px; margin-bottom: 64px; }

/* ── Hero Intro Choreography ──
   Navbar stays. GIF loads naturally (no fade).
   Headline + CTA reveal after GIF arrives.
   Scroll locked until sequence completes. */
body.intro-loading {
  overflow: hidden;
  height: 100vh;
}

/* Pre-intro state — only the text + CTA are hidden */
.hero-text,
.hero-cta {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Headline reveals after the GIF has landed */
.hero-text.intro-in,
.hero-cta.intro-in {
  opacity: 1;
  transform: translateY(0);
}
.btn-pill {
  display: inline-block; padding: 12px 36px; background: var(--forest); color: var(--white);
    font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 0.3px;
  text-decoration: none; border-radius: 100px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(32,59,42,0.16);
}
.btn-pill:hover { background: #2d5440; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(32,59,42,0.24); }

.sdiv { width: calc(100% - 96px); margin: 0 auto; border: none; border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════════════════
 *  6. GLOBAL: Marquee / Partners Ticker
 * ═══════════════════════════════════════════════════════════════ */
.partners { background: var(--cream); padding: 48px 0 44px; overflow: hidden; position: relative; }
.partners-label { text-align: center; font-family: 'Josefin Sans', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 3.5px; text-transform: uppercase; color: #b5b0a5; margin-bottom: 24px; }
.mwrap { overflow: hidden; position: relative; }
.mtrack { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.mtrack:hover { animation-play-state: paused; }
.mset { display: flex; align-items: center; gap: 60px; padding: 0 30px; }
.logo-item {   font-family: 'Poppins', sans-serif; font-size: clamp(16px,2vw,20px); font-weight: 400; letter-spacing: 1px; color: #c8c3b8; white-space: nowrap; user-select: none; transition: color 0.3s; }
.logo-item:hover { color: var(--forest); }
.logo-dot { width: 4px; height: 4px; border-radius: 50%; background: #ddd; flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.mwrap::before, .mwrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.mwrap::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.mwrap::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

/* ═══════════════════════════════════════════════════════════════
 *  7. GLOBAL: About Section (Homepage)
 * ═══════════════════════════════════════════════════════════════ */
.about { 
  background: var(--white); 
  padding: 100px 64px; 
}

.about-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow { 
  display: block; 
  font-family: 'Josefin Sans', sans-serif; font-size: 15px; font-weight: 600; 
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.about-hl { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.15; color: var(--text); letter-spacing: -0.5px; }
.about-hl strong { font-weight: 600; }
.about-body { font-family: 'Inter', sans-serif; font-size: clamp(0.88rem, 1.1vw, 0.98rem); font-weight: 300; line-height: 2.1; color: #777; letter-spacing: 0.01em; }
.about-body p + p { margin-top: 20px; }
.fcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.fcard { background: var(--white); overflow: hidden; transition: background 0.3s; }
.fcard:hover { background: #fdfcfa; }
.fcard-img { width: 100%; aspect-ratio: 4/4.5; overflow: hidden; }
.fcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.fcard:hover .fcard-img img { transform: scale(1.04); }
.fcard-body { padding: 32px 32px 36px; }
.fcard-lbl { font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.fcard-title {   font-family: 'Poppins', sans-serif; font-size: 1.55rem; font-weight: 500; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.fcard-desc { font-family: 'Inter', serif; font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: #777; }

/* ═══════════════════════════════════════════════════════════════
 *  8. GLOBAL: Stats Bar
 * ═══════════════════════════════════════════════════════════════ */
.stats {
  background: var(--forest);
  padding: 96px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 340px;
  box-sizing: border-box;
}


.stat {
  flex: 1 1 180px;
  text-align: center;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat .stat-icon:empty { display: none; }

/* Premium stat entrance — each .stat fades + lifts; number scales-in subtly. */
.stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 900ms cubic-bezier(.2,.7,.2,1),
              transform 900ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-num {
  font-family: 'Inter', serif;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  display: inline-block;
  white-space: nowrap;
  transform: scale(0.96);
  opacity: 0.35;
  filter: blur(2px);
  transition: transform 1100ms cubic-bezier(.2,.7,.2,1),
              opacity  900ms cubic-bezier(.2,.7,.2,1),
              filter   900ms cubic-bezier(.2,.7,.2,1),
              text-shadow 600ms ease-out;
}
.stat-num.is-counting {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
  text-shadow: 0 0 24px rgba(212,175,55,0.18);
}
.stat-num.is-counted {
  text-shadow: 0 0 0 rgba(212,175,55,0);
}

@media (prefers-reduced-motion: reduce) {
  .stat, .stat-num {
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }
}

.stat-lbl { font-family: 'Josefin Sans', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; }
.stat-div { width: 1px; height: 60px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── Stat Icons ── */
.stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  color: var(--gold);
  opacity: 0.7;
}
.stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
 *  9. GLOBAL: Footer
 * ═══════════════════════════════════════════════════════════════ */
footer { background: var(--forest); }
.footer-cols { margin: 0 auto; padding: 64px 64px 56px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr 1fr; gap: 52px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.f-col-title { font-family: 'Josefin Sans', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.f-nav { display: flex; flex-direction: column; gap: 12px; }
.f-nav a {   font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.3s; }
.f-nav a:hover { color: var(--gold); }
.f-locs { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.f-locs li {   font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.48); }
.f-locs li::before { display: none; }
.f-company { font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.5px; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.f-addr {   font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.36); line-height: 1.75; margin-bottom: 20px; }
.f-email-lbl { font-family: 'Josefin Sans', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 6px; }
.f-email a {   font-family: 'Poppins', sans-serif; font-size: 1.08rem; font-weight: 400; color: var(--gold-l); text-decoration: none; transition: color 0.3s; }
.f-email a:hover { color: var(--white); }
.f-socials-list { display: flex; flex-direction: column; gap: 14px; }
.f-socials-list a { display: flex; align-items: center; gap: 10px;   font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.3s; }
.f-socials-list a:hover { color: var(--gold); }
.f-socials-list svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.footer-wordmark { width: 100%; overflow: hidden; padding: 0 40px; line-height: 0.85; }
.footer-wordmark span {   font-family: 'Poppins', sans-serif; font-size: clamp(5rem,18vw,18rem); font-weight: 600; letter-spacing: -4px; color: rgba(255,255,255,0.05); display: block; white-space: nowrap; user-select: none; }
.footer-bar { padding: 18px 64px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bar p { font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.fbar-links { display: flex; gap: 24px; }
.fbar-links a { font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.3s; }
.fbar-links a:hover { color: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* ═══════════════════════════════════════════════════════════════
 *  9b. FOOTER V2 (ft- prefix)
 *  Editorial four-column footer:
 *    Row 1 — Navigation · Headquarters · India Office · Get in Touch
 *    Row 2 — Giant wordmark
 *    Row 3 — Legal bar
 * ═══════════════════════════════════════════════════════════════ */
.ft {
  background: var(--forest);
}

/* ── Logo + four-column grid ── */
.ft-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr 1.3fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(56px, 6vw, 88px) clamp(32px, 5vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-logo-col {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.ft-b-logo {
  height: clamp(28px, 2.6vw, 38px);
  width: auto;
  display: block;
  opacity: 0.55;
}
.ft-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Column heading — shared style */
.ft-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 24px;
}

/* ── Col 1: Navigation (stacked links) ── */
.ft-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ft-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.3s;
}
.ft-nav a:hover { color: var(--gold); }

/* ── Cols 2 & 3: Office addresses ── */
.ft-entity {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.ft-addr {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.84rem, 0.95vw, 0.95rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.3);
}

/* ── Col 4: Get in Touch — email, phone, socials ── */
.ft-link {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 14px;
  display: block;
}
.ft-link:hover { color: var(--gold); }

/* Social icons — inline row */
.ft-socials {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.ft-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.ft-socials a:hover {
  color: var(--gold);
}
.ft-socials svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  display: block;
}

/* ── Wordmark ── */
.ft-wordmark {
  width: 100%;
  overflow: hidden;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 40px) 0;
  line-height: 0.85;
}
.ft-wordmark span {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 600;
  letter-spacing: -4px;
  color: rgba(255,255,255,0.04);
  display: block;
  white-space: nowrap;
  user-select: none;
}

/* ── Legal bar ── */
.ft-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px clamp(32px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ft-legal p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
.ft-legal-links {
  display: flex;
  gap: 24px;
}
.ft-legal-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.3s;
}
.ft-legal-links a:hover { color: var(--gold); }

/* ── Footer V2: Responsive ── */
@media (max-width: 1100px) {
  .ft-cols {
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 40px 36px;
  }
  .ft-logo-col { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .ft-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
  }
  .ft-logo-col { grid-column: 1 / -1; }
  .ft-wordmark span { letter-spacing: -3px; }
}
@media (max-width: 540px) {
  .ft-cols {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 22px;
  }
  .ft-logo-col { grid-column: auto; }
  .ft-heading { margin-bottom: 16px; }
  .ft-legal {
    padding: 16px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ft-legal-links { gap: 18px; }
  .ft-wordmark {
    padding: clamp(18px, 4vw, 28px) 18px 0;
  }
  .ft-wordmark span {
    font-size: clamp(3.2rem, 22vw, 7rem);
    letter-spacing: -1.5px;
  }
}

/* ═══════════════════════════════════════════════════════════════
 *  10. GLOBAL: Responsive Breakpoints
 * ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .fcards { grid-template-columns: 1fr; }
  .about { padding: 72px 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; gap: 36px; padding: 52px 32px 44px; }
  .footer-bar { padding: 18px 32px; }
  .footer-wordmark { padding: 0 20px; }
}
@media (max-width: 768px) {
  #navbar { padding: 14px 20px; }
  .nav-links { display: none !important; }
  #hamburger { display: block; }
  /* Tagline holds its character on mobile: same hierarchy, tighter tracking
     so it never crowds the hamburger. */
  .nav-tagline {
    font-size: 9px;
    letter-spacing: 0.18em;
    padding-left: 30px;
  }
}
@media (max-width: 400px) {
  /* On very narrow screens the tagline takes a hairline rule instead of
     padding indent — keeps it readable when the wordmark compresses. */
  .nav-tagline {
    font-size: 8.5px;
    letter-spacing: 0.16em;
    padding-left: 26px;
  }
  .hero {
    /* Tablet / large phone framing */
    --hero-gif-scale: 1.10;
    --hero-gif-shift: -10%;
    --hero-gif-gap: 36px; /* breathing room between headline and GIF */
    --hero-text-pad: 36px 20px 0;
    padding: 80px 0 0;
    align-items: stretch;
  }
  .hero-text h1 {
    font-size: clamp(2.15rem, 9.4vw, 2.9rem);
    letter-spacing: -0.7px;
    line-height: 1.12;
  }
  .hero-gif {
    max-width: none;
    padding: 0;
    display: block;
  }
  .hero-gif img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
  }
  .hero-cta { margin: 32px 0 56px; align-self: center; }
  .about { padding: 56px 20px; }
  .fcard-body { padding: 22px 18px 26px; }
  .stats { padding: 56px 16px; gap: 36px 0; }
  .stat { flex: 1 1 44%; padding: 0 12px; min-width: 0; }
  .stat-num { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .stat-div { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 24px 36px; }
  .footer-bar { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
  .sdiv { width: calc(100% - 40px); }
  .footer-wordmark span { letter-spacing: -2px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero {
    /* Small phones — slightly larger framing for impact */
    --hero-gif-scale: 1.12;
    --hero-gif-shift: -11%;
    --hero-gif-gap: 28px;
    --hero-text-pad: 28px 18px 0;
    padding: 76px 0 0;
  }
  .hero-text h1 {
    font-size: clamp(1.95rem, 9vw, 2.4rem);
    letter-spacing: -0.5px;
  }
  .hero-cta { margin: 26px 0 48px; }
}

/* ═══════════════════════════════════════════════════════════════
 *  11. CONTACT PAGE
 *  Hero, form, FAQ, partners marquee, and page-specific responsive
 * ═══════════════════════════════════════════════════════════════ */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
  gap: 0;
}
.contact-info {
  flex: 1;
  min-width: 320px;
  padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.contact-form-container {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px) clamp(20px, 4vw, 60px);
}
.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: 300; line-height: 1.9; color: #888;
  max-width: 420px; margin-bottom: 0;
}
.contact-emails { display: flex; flex-direction: column; gap: 32px; }
.inquiry-block { display: flex; flex-direction: column; }
.inquiry-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 300; letter-spacing: 2.5px;
  text-transform: uppercase; color: #999; margin-bottom: 6px;
}
.inquiry-email {

  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400; color: var(--text);
  text-decoration: none; letter-spacing: -0.3px;
  transition: color 0.25s;
}
.inquiry-email:hover { color: var(--gold); }
.contact-form {
  background: var(--white);
  padding: clamp(24px, 3vw, 44px) clamp(20px, 3vw, 40px);
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 500; color: var(--text);
  margin-bottom: 6px;
}
.form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 300; color: #999; margin-bottom: 28px; line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; font-weight: 300; letter-spacing: 2.5px;
  text-transform: uppercase; color: #999; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #e5e2db; border-radius: 6px;
  padding: 10px 12px; background: #faf9f7;
  font-family: 'Poppins', sans-serif; font-size: 1rem;
  color: var(--text); outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #203B2A;
  box-shadow: 0 0 0 3px rgba(86,171,47,0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 300;
  color: #aaa; line-height: 1.6; margin-bottom: 20px;
}
.btn-submit {
  width: 100%; padding: 13px 24px;
  background: var(--forest); color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 400;
  letter-spacing: 0.3px; border: none; border-radius: 8px; cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(32,59,42,0.18);
}
.btn-submit:hover { background: #2d5440; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(32,59,42,0.25); }

/* ── FAQ Section ── */
.faq-section {
  background: var(--white);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 120px);
}
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-eyebrow {
  font-family: 'Josefin Sans', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.faq-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400;
  color: var(--text); letter-spacing: -0.3px; margin-bottom: 52px; line-height: 1.2;
}
.faq-list { border-top: 1px solid #e0ddd6; }
.faq-item { border-bottom: 1px solid #e0ddd6; }
.faq-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 20px;
}
.faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 400; color: var(--text);
  transition: color 0.15s;
}
.faq-header:hover .faq-question,
.faq-item.active .faq-question { color: #CCB560; font-weight: 500;}
.faq-icon {
  flex-shrink: 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.3rem; font-weight: 300;
  color: var(--text); line-height: 1;
  transition: color 0.15s;
  width: 22px; text-align: center;
}
.faq-item.active .faq-icon { color: #203B2A; }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-content { max-height: 300px; }
.faq-content p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem); font-weight: 300;
  line-height: 1.9; color: #888; padding-bottom: 22px;
}

/* Contact page responsive */
@media (max-width: 768px) {
  .contact-info { min-width: 100%; padding: 72px 20px 40px; }
  .contact-form-container { min-width: 100%; padding: 36px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .faq-section { padding: 56px 20px; }
}

/* ── Contact Class Name Aliases ── */

.contact-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 72px);
}

/* Ensure the text container doesn't stretch too wide */
.contact-text-content {
  width: 100%;
  max-width: 480px;
}

.contact-right {
  background: linear-gradient(135deg, #56ab2f 0%, #aee063 100%) !important;
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 3vw, 40px);
}

.contact-form-card {
  background: var(--white);
  padding: clamp(4px, 3vw, 44px) clamp(20px, 3vw, 40px);
  width: 100%;
  max-width: 580px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.contact-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block;
}
.contact-heading {
  font-family: 'Poppins', serif;
  font-size: clamp(3.2rem, 4.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 0;
}
.contact-heading em { font-style: italic; color: var(--gold); }
.contact-inq-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.contact-inq-email {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400; color: var(--text);
  text-decoration: none; letter-spacing: -0.3px;
  display: block; transition: color 0.25s;
}
.contact-inq-email:hover { color: var(--gold); }
.contact-emails { display: flex; flex-direction: column; gap: 32px; }

/* ── Contact Page Animations ──
   Staggered editorial reveals — each element enters
   on its own beat, nothing moves together. */

/* Eyebrow — first to appear, gentle fade */
.contact-eyebrow {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-eyebrow.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Heading — the hero moment, slow and confident */
.contact-heading {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.contact-heading.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Description — follows the heading */
.contact-desc {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}
.contact-desc.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Email block — last on the left, anchors the composition */
.contact-emails {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s,
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}
.contact-emails.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form card — slides up from the right, arrives with weight */
.contact-form-card {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              transform 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              box-shadow 0.3s ease;
}
.contact-form-card.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

/* On mobile the form is below the fold — show it immediately
   so the user never thinks the page is empty */
@media (max-width: 900px) {
  .contact-form-card {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ section — eyebrow + heading reveal */
.faq-eyebrow,
.faq-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-eyebrow.ct-visible { opacity: 1; transform: translateY(0); }
.faq-heading.ct-visible  { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }

/* FAQ items — stagger in one by one like a curtain */
.faq-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-left  { min-width: 100%; padding: 36px 20px 40px; }
  .contact-right { min-width: 100%; padding: 36px 16px; }
}

@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .contact-left {
    padding: 52px 32px 52px;
    gap: 20px;
    min-height: unset;
  }
  .contact-heading {
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: -1.5px;
    line-height: 1.05;
  }
  .contact-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 100%;
    color: #777;
  }
  .contact-inq-label {
    font-size: 11px;
  }
  .contact-inq-email {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
  .contact-right {
    /* background: linear-gradient(135deg, #56ab2f 0%, #aee063 100%) !important; */
    padding: 52px 32px 64px;
    justify-content: center;
    width: 100%;
  }
  .contact-form-card {
    width: 100%;
    max-width: 680px;
    padding: 36px 28px;
  }
  .form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .contact-left {
    padding: 36px 20px 36px;
  }
  .contact-heading {
    font-size: clamp(2.6rem, 10vw, 3.6rem);
  }
  .contact-right {
    padding: 40px 16px 52px;
  }
  .contact-form-card {
    max-width: 100%;
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}



/* ABOUT PAGE CSS */

   /* ── ABOUT PAGE HERO ── */
    .abt-hero {
      background: var(--cream);
      padding: 160px 64px 100px;
      text-align: center;
    }
    .abt-hero-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 10px; font-weight: 300; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      display: block; margin-bottom: 20px;
    }
    .abt-hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(3.4rem, 6vw, 7rem);
      font-weight: 400; line-height: 1.04;
      letter-spacing: -2.5px; color: var(--text);
      max-width: 900px; margin: 0 auto;
    }
    .abt-hero-title em { font-style: italic; color: var(--gold); }
    .abt-hero-sub {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.9rem, 1.2vw, 1.05rem);
      font-weight: 300; line-height: 1.85; color: #888;
      max-width: 560px; margin: 32px auto 0;
    }

    /* ── SPLIT SECTIONS (alternating) ── */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
      overflow: hidden;
    }
    .split.reverse { direction: rtl; }
    .split.reverse > * { direction: ltr; }

    .split-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
      background: var(--white);
    }
    .split.cream .split-text { background: var(--cream); }

    .split-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 10px; font-weight: 300; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      display: block; margin-bottom: 20px;
    }
    .split-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 3.2vw, 3.4rem);
      font-weight: 400; line-height: 1.18;
      letter-spacing: -0.8px; color: var(--text);
      margin-bottom: 24px;
    }
    .split-title em { font-style: italic; color: var(--gold); }
    .split-body {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.88rem, 1.1vw, 0.98rem);
      font-weight: 300; line-height: 2.0; color: #888;
      max-width: 480px;
    }
    .split-body p + p { margin-top: 18px; }


    /* ── ABOUT V2 PHOTO SLOTS ── */
.abt2-photo-full {
  width: 100%;
  min-height: 520px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.abt2-photo-full.short { min-height: 340px; }
.abt2-photo-split {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.abt2-photo-half {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.abt2-photo-half:first-child { border-right: 1px solid #2a2a2a; }
.abt2-photo-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 300; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  max-width: 320px;
  line-height: 1.8;
  padding: 24px;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 8px;
}
.abt2-photo-block {
  width: 100%;
  min-height: 280px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .abt2-photo-split { grid-template-columns: 1fr; }
  .abt2-photo-half:first-child { border-right: none; border-bottom: 1px solid #2a2a2a; }
  .abt2-photo-full { min-height: 320px; }
}

    /* Image placeholder */
    .split-img {
      position: relative;
      overflow: hidden;
      background: #e8e4dc;
      display: flex; align-items: center; justify-content: center;
      min-height: 520px;
    }
    .split-img img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .img-placeholder {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 12px; width: 100%; height: 100%; min-height: 520px;
    }
    .img-placeholder svg {
      width: 48px; height: 48px;
      color: rgba(32,59,42,0.2);
    }
    .img-placeholder span {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 9px; letter-spacing: 3px;
      text-transform: uppercase; color: rgba(32,59,42,0.3);
    }

    /* Forest-tinted placeholder variant */
    .split-img.forest-bg {
      background: var(--forest);
    }
    .split-img.forest-bg .img-placeholder svg { color: rgba(203,179,93,0.3); }
    .split-img.forest-bg .img-placeholder span { color: rgba(203,179,93,0.4); }

    /* ── CHECKLIST (How we work section) ── */
    .split-checklist {
      list-style: none;
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .split-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.88rem, 1.1vw, 0.97rem);
      font-weight: 300; color: #888; line-height: 1.7;
    }
    .split-checklist li::before {
      content: '';
      flex-shrink: 0;
      width: 18px; height: 18px;
      margin-top: 2px;
      border-radius: 50%;
      background: var(--gold);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23203B2A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-size: 11px;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* ── About Milestones ── */
    .milestones {
      background: var(--white);
      padding: clamp(80px, 10vw, 140px) clamp(40px, 8vw, 120px);
    }
    .milestones-inner { max-width: 820px; margin: 0 auto; }
    .milestones-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 10px; font-weight: 300; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      display: block; margin-bottom: 20px;
    }
    .milestones-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 400; letter-spacing: -0.8px;
      color: var(--text); margin-bottom: 64px; line-height: 1.18;
    }
    .timeline {
      position: relative;
      padding-left: 0;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 108px;
      top: 10px;
      bottom: 10px;
      width: 1px;
      background: var(--border);
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 108px 1fr;
      gap: 0;
      padding-bottom: 40px;
      position: relative;
      align-items: flex-start;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-year {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 11px; font-weight: 300; letter-spacing: 2px;
      color: var(--gold); padding-top: 2px;
      text-transform: uppercase;
    }
    .timeline-content {
      padding-left: 36px;
      position: relative;
    }
    .timeline-content::before {
      content: '';
      position: absolute;
      left: -4px;
      top: 9px;
      width: 9px; height: 9px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 3px rgba(203,179,93,0.18);
    }
    .timeline-event {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(0.95rem, 1.3vw, 1.1rem);
      font-weight: 400; color: var(--text);
      margin-bottom: 6px; line-height: 1.5;
    }
    .timeline-desc {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.82rem, 1vw, 0.9rem);
      font-weight: 300; color: #999; line-height: 1.75;
    }

    /* ── PRESENCE / MAP SECTION ── */
    .presence {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 560px;
      background: var(--forest);
      overflow: hidden;
    }
    .presence-visual {
      position: relative;
      min-height: 520px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .presence-map {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      padding: 60px 40px;
    }
    /* Simple SVG dot-map of BYUFUEL locations */
    .location-dots {
      position: relative;
      width: 100%;
      display: flex; flex-wrap: wrap;
      gap: 20px; align-items: center; justify-content: center;
    }
    .loc-pin {
      display: flex; flex-direction: column;
      align-items: center; gap: 8px;
      animation: pinFloat 3s ease-in-out infinite;
    }
    .loc-pin:nth-child(2) { animation-delay: 0.4s; }
    .loc-pin:nth-child(3) { animation-delay: 0.8s; }
    .loc-pin:nth-child(4) { animation-delay: 1.2s; }
    .loc-pin:nth-child(5) { animation-delay: 1.6s; }
    @keyframes pinFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
    .loc-circle {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(203,179,93,0.4);
      background: rgba(203,179,93,0.08);
      display: flex; align-items: center; justify-content: center;
    }
    .loc-circle svg { width: 20px; height: 20px; color: var(--gold); }
    .loc-name {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 9px; letter-spacing: 2.5px;
      text-transform: uppercase; color: rgba(203,179,93,0.65);
    }

    .presence-text {
      display: flex; flex-direction: column;
      justify-content: center;
      padding: clamp(60px, 7vw, 100px) clamp(40px, 6vw, 80px);
    }
    .presence-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 10px; font-weight: 300; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      display: block; margin-bottom: 20px;
    }
    .presence-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 3.2vw, 3.4rem);
      font-weight: 400; line-height: 1.18;
      letter-spacing: -0.8px; color: var(--white);
      margin-bottom: 24px;
    }
    .presence-body {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.88rem, 1.1vw, 0.98rem);
      font-weight: 300; line-height: 2.0;
      color: rgba(255,255,255,0.5);
      max-width: 440px;
    }
    .presence-locs {
      display: flex; flex-wrap: wrap;
      gap: 10px; margin-top: 36px;
    }
    .presence-loc-tag {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 9px; letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 7px 16px;
      border: 1px solid rgba(203,179,93,0.3);
      border-radius: 100px;
      color: rgba(203,179,93,0.8);
    }

    /* ── VALUES STRIP ── */
    .values {
      background: var(--cream);
      padding: clamp(80px, 10vw, 120px) clamp(40px, 6vw, 96px);
    }
    .values-inner { max-width: 1200px; margin: 0 auto; }
    .values-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; margin-bottom: 72px;
      align-items: end;
    }
    .values-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 10px; font-weight: 300; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      display: block; margin-bottom: 20px;
    }
    .values-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 3.2vw, 3.2rem);
      font-weight: 400; line-height: 1.18;
      letter-spacing: -0.8px; color: var(--text);
    }
    .values-intro {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.88rem, 1.1vw, 0.98rem);
      font-weight: 300; line-height: 2.0; color: #888;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
    }
    .value-card {
      background: var(--white);
      padding: 44px 36px 48px;
      transition: background 0.3s;
    }
    .value-card:hover { background: #fdfcfa; }
    .value-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(32,59,42,0.06);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px;
    }
    .value-icon svg { width: 20px; height: 20px; color: var(--forest); }
    .value-num {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 9px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 12px; display: block;
    }
    .value-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.35rem; font-weight: 500;
      color: var(--text); margin-bottom: 14px; line-height: 1.3;
    }
    .value-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem; font-weight: 300;
      line-height: 1.8; color: #888;
    }

    /* ── CTA STRIP ── */
    .abt-cta {
      background: var(--forest);
      padding: clamp(80px, 10vw, 120px) 64px;
      text-align: center;
    }
    .abt-cta-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 14px; font-weight: 600; letter-spacing: 4px;
      text-transform: uppercase; color: rgba(203,179,93,0.7);
      display: block; margin-bottom: 20px;
    }
    .abt-cta-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.4rem, 4vw, 4.8rem);
      font-weight: 400; line-height: 1.1;
      letter-spacing: -1.5px; color: var(--white);
      margin-bottom: 32px; max-width: 700px; margin-left: auto; margin-right: auto;
    }
    .abt-cta-title em { font-style: italic; color: var(--gold); }
    .abt-cta-btns {
      display: flex; gap: 16px;
      align-items: center; justify-content: center;
      flex-wrap: wrap;
    }
    .btn-ghost {
      display: inline-block; padding: 12px 36px;
      border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75);
      font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400;
      letter-spacing: 0.3px; text-decoration: none; border-radius: 100px;
      transition: border-color 0.3s, color 0.3s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
    .btn-gold {
      display: inline-block; padding: 12px 36px;
      background: var(--gold); color: var(--forest);
      font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 500;
      letter-spacing: 0.3px; text-decoration: none; border-radius: 100px;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .abt-hero { padding: 140px 32px 72px; }
      .split { grid-template-columns: 1fr; min-height: unset; }
      .split.reverse { direction: ltr; }
      .split-img { min-height: 360px; }
      .img-placeholder { min-height: 360px; }
      .split-text { padding: 56px 32px; }
      .split-body { max-width: 100%; }
      .values-header { grid-template-columns: 1fr; gap: 20px; }
      .values-grid { grid-template-columns: 1fr; }
      .presence { grid-template-columns: 1fr; }
      .presence-visual { min-height: 320px; }
      .milestones { padding: 72px 32px; }
      .abt-cta { padding: 80px 32px; }
      .timeline::before { left: 80px; }
      .timeline-item { grid-template-columns: 80px 1fr; }
    }
    @media (max-width: 600px) {
      .abt-hero { padding: 120px 20px 60px; }
      .split-text { padding: 48px 20px; }
      .values { padding: 64px 20px; }
      .milestones { padding: 64px 20px; }
      .presence-text { padding: 48px 20px; }
      .abt-cta { padding: 72px 20px; }
      .timeline::before { left: 68px; }
      .timeline-item { grid-template-columns: 68px 1fr; }
    }


/* ═══════════════════════════════════════════════════════════════
 *  12. ABOUT PAGE V2 (abt2- prefix)
 *  Hero, manifesto, story, process, milestones, values, presence
 * ═══════════════════════════════════════════════════════════════ */

/* ── About Hero ── */
.abt2-hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.abt2-hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(32px, 6vw, 80px);
}
.abt2-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px;
}
.abt2-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 48px;
}
.abt2-line {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.5rem, 8.5vw, 9.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.abt2-line.italic-gold {
  font-style: italic;
  color: var(--gold);
}
.abt2-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.abt2-rule {
  height: 1px;
  background: var(--border);
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
  margin-bottom: 28px;
}
.abt2-rule.expanded { width: 100%; }
.abt2-meta {
  display: flex;
  gap: 14px clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; color: #b5b0a5;
  opacity: 0;
  transition: opacity 0.6s ease 1s;
}
.abt2-meta.visible { opacity: 1; }
/* Each fact stays intact — line breaks happen between items,
   never mid-phrase. The · separator is drawn in CSS between
   items on the same row (flex gap handles the rest). */
.abt2-meta-item {
  white-space: nowrap;
  position: relative;
  display: inline-block;
}

/* ── About Manifesto ── */
.abt2-manifesto {
  background: var(--forest);
  padding: clamp(80px, 11vw, 140px) clamp(32px, 8vw, 140px);
  text-align: center;
}
.abt2-manifesto-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 900px;
  margin: 0 auto;
  border: none;
  padding: 0;
  letter-spacing: -0.3px;
}

/* ── About Our Story ── */
.abt2-story {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.abt2-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.abt2-story-left {
  position: sticky;
  top: 120px;
}
.abt2-section-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.abt2-pull {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.5px;
}
.abt2-pull em { font-style: italic; color: var(--gold); }
.abt2-story-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
}
.abt2-story-right p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 2.1;
  color: #777;
}

/* ── About Process ── */
.abt2-process {
  background: var(--white);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.abt2-process-inner { max-width: 1200px; margin: 0 auto; }
.abt2-process-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 72px;
  align-items: end;
}
.abt2-process-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--text);
}
.abt2-process-title em { font-style: italic; color: var(--gold); }
.abt2-steps {
  border-top: 1px solid var(--border);
  position: relative;
}
.abt2-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.abt2-step.visible {
  opacity: 1;
  transform: translateX(0);
}
.abt2-step-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: rgba(203,179,93,0.18);
  line-height: 1;
  letter-spacing: -1px;
  padding-top: 4px;
  transition: color 0.3s;
}
.abt2-step:hover .abt2-step-num { color: var(--gold); }
.abt2-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.abt2-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.85;
  color: #888;
}

/* ── About Milestones ── */
.abt2-milestones {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.abt2-milestones-inner { max-width: 1200px; margin: 0 auto; }
.abt2-timeline { margin-top: 48px; }
.abt2-tl-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  align-items: start;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.abt2-tl-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.abt2-tl-year {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  color: #E5DFCE;
  line-height: 0.85;
  letter-spacing: -3px;
  user-select: none;
  transition: color 0.4s ease;
}
.abt2-tl-item:hover .abt2-tl-year { color: #D6C37E; }
.abt2-tl-event {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.abt2-tl-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.85;
  color: #888;
}

/* ── About Values ── */
.abt2-values {
  background: var(--white);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.abt2-values-inner { max-width: 1200px; margin: 0 auto; }
.abt2-values-header {
  margin-bottom: 64px;
}
.abt2-values-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-top: 16px;
  max-width: 600px;
}
.abt2-values-list { border-top: 1px solid var(--border); }
.abt2-value-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.abt2-value-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.abt2-vrow-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 300; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 6px;
}
.abt2-vrow-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.abt2-vrow-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.9;
  color: #888;
}

/* ── About Presence ── */
.abt2-presence {
  background: var(--forest);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.abt2-presence-inner { max-width: 1200px; margin: 0 auto; }
.abt2-presence-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 300; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(203,179,93,0.6);
  margin-bottom: 16px;
}
.abt2-presence-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-bottom: 64px;
}
.abt2-countries { border-top: 1px solid rgba(255,255,255,0.06); }
.abt2-country {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.abt2-country.visible {
  opacity: 1;
  transform: translateY(0);
}
.abt2-cnum {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; font-weight: 300; letter-spacing: 2.5px;
  color: rgba(203,179,93,0.4);
  flex-shrink: 0;
  width: 24px;
}
.abt2-cname {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease, letter-spacing 0.4s ease;
}
.abt2-country:hover .abt2-cname {
  color: var(--gold);
  letter-spacing: -0.5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .abt2-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .abt2-story-left { position: static; }
  .abt2-story-right { padding-top: 0; }
  .abt2-process-header { grid-template-columns: 1fr; gap: 16px; }
  .abt2-step { grid-template-columns: 72px 1fr; gap: 20px; }
  .abt2-tl-item { grid-template-columns: 140px 1fr; gap: 24px; }
  .abt2-value-row { grid-template-columns: 48px 1fr; gap: 20px; }
  .abt2-vrow-desc { grid-column: 2; }
}
@media (max-width: 600px) {
  .abt2-line { letter-spacing: -1.5px; }
  .abt2-tl-item { grid-template-columns: 1fr; gap: 12px; }
  .abt2-tl-year { font-size: 4rem; line-height: 1; }
  .abt2-step { grid-template-columns: 1fr; }
  .abt2-step-num { font-size: 2.5rem; }
  .abt2-value-row { grid-template-columns: 1fr; gap: 12px; }
  .abt2-manifesto { padding: 72px 24px; }
}


/* ── About: Problem — Editorial Stats ── */
.prb-stats {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px) clamp(64px, 8vw, 96px);
}
.prb-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.prb-stats-left {
  position: sticky;
  top: 120px;
}
.prb-stats-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 24px;
}
.prb-stats-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: #999;
  max-width: 400px;
}

/* Right: stat blocks stacked */
.prb-stats-right {
  display: flex;
  flex-direction: column;
}
.prb-stat-block {
  display: grid;
  /* Fixed figure column so both stat blocks line up their text at the same x */
  grid-template-columns: clamp(180px, 22vw, 260px) 1fr;
  gap: 0 clamp(28px, 4vw, 48px);
  align-items: start;
  padding: clamp(40px, 5vw, 56px) 0;
}
.prb-stat-block:first-child { padding-top: 0; }
.prb-stat-figure {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.prb-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 0.85;
  letter-spacing: -4px;
}
.prb-stat-suffix {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.prb-stat-pa {
  font-size: 0.65em;
  letter-spacing: 1px;
  color: rgba(203,179,93,0.5);
}
.prb-stat-pct {
  font-size: 0.55em;
  color: var(--gold);
  letter-spacing: -1px;
}
.prb-stat-meta {
  padding-top: clamp(12px, 2vw, 20px);
}
.prb-stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}
.prb-stat-context {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.85;
  color: #888;
  max-width: 360px;
}
.prb-stat-rule {
  height: 1px;
  background: var(--border);
}

@media (max-width: 900px) {
  .prb-stats-inner { grid-template-columns: 1fr; gap: 48px; }
  .prb-stats-left { position: static; }
  .prb-stat-block { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .prb-stats { padding: 64px 20px 48px; }
  .prb-stat-number { letter-spacing: -2px; }
}


/* ── About: Problem — Industry Challenges (3-col) ── */
.prb-challenges {
  background: var(--white);
  padding-top: clamp(80px, 10vw, 120px);
}
.prb-challenges-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 clamp(32px, 6vw, 80px) clamp(48px, 6vw, 72px);
  max-width: 1360px;
  margin: 0 auto;
}
.prb-challenges-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: var(--text);
  max-width: 700px;
}

.prb-challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 clamp(32px, 6vw, 80px) clamp(52px, 7vw, 80px);
  background: var(--white);
  max-width: 1360px;
  margin: 0 auto;
}
.prb-ch-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.prb-ch-card.visible { opacity: 1; transform: translateY(0); }

.prb-ch-photo {
  width: 100%;
  aspect-ratio: 4 / 3.75;
  background: #e8e5de;
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  overflow: hidden;
  position: relative;
}
.prb-ch-photo-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 1.2px;
  color: rgba(32,59,42,0.22);
  line-height: 1.7;
}
/* When real image: <img src="..." class="prb-ch-img"/> */
.prb-ch-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.prb-ch-copy {
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.5vw, 28px) clamp(22px, 2.8vw, 30px);
  border-top: 1px solid var(--border);
  background: var(--white);
}
.prb-ch-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.prb-ch-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  font-weight: 300;
  line-height: 1.85;
  color: #888;
}

@media (max-width: 900px) {
  .prb-challenges-grid { grid-template-columns: 1fr; padding: 0 clamp(20px, 4vw, 40px) clamp(40px, 6vw, 64px); }
  .prb-ch-photo { aspect-ratio: 16 / 9; }
}


/* ── About: Problem — Hazards (2-col tall cards) ── */
.prb-hazards {
  background: var(--forest);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.prb-hazards-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.prb-hazards-eyebrow-col {
  padding-top: 8px;
}
.prb-hazards-content-col {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.prb-hazards-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: rgba(244,241,234,0.9);
  max-width: 640px;
}
.prb-hazards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

/* Individual hazard card */
.prb-hz-card {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.prb-hz-card.visible { opacity: 1; transform: translateY(0); }
.prb-hz-card:first-child { padding-right: 32px; }
.prb-hz-card:last-child  { padding-left: 32px; }

.prb-hz-visual {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}
.prb-hz-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.14);
  line-height: 1.7;
}
/* When real image: <img src="..." class="prb-hz-img"/> */
.prb-hz-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
}

.prb-hz-copy {
  padding: clamp(18px, 2.2vw, 24px) 0 0;
}
.prb-hz-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  color: rgba(244,241,234,0.85);
  line-height: 1.3;
  margin-bottom: 8px;
}
.prb-hz-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .prb-hazards-inner { grid-template-columns: 1fr; gap: 24px; }
  .prb-hazards-row { grid-template-columns: 1fr; gap: 40px; }
  .prb-hz-card:first-child { padding-right: 0; }
  .prb-hz-card:last-child  { padding-left: 0; }
  .prb-hz-visual { aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  .prb-hazards { padding: 64px 20px; }
}


/* ═══════════════════════════════════════════════════════════════
 *  13. ABOUT PAGE: What We Do — Editorial Tile Grid
 *  Legora-inspired layout. 3 cols → 2 cols → 1 col.
 * ═══════════════════════════════════════════════════════════════ */
.abt-wwd {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 96px);
}
.abt-wwd-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.abt-wwd-head {
  max-width: 880px;
  margin-bottom: clamp(48px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.abt-wwd-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.abt-wwd-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.9px;
  color: var(--text);
  margin: 0;
}

.abt-wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4.4vw, 64px) clamp(18px, 2vw, 28px);
}

/* ── Tile ─────────────────────────────────
   The art frame is silent — no hover lift.
   The image inside does the work (scale on hover),
   mirroring .fcard-img on the homepage. */
.abt-wwd-tile {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.6vw, 24px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt-wwd-tile.visible { opacity: 1; transform: translateY(0); }

/* Art frame — uniform size across all tiles.
   Every tile gets the same aspect-ratio so the grid
   stays even. Images fill via object-fit: cover. */
.abt-wwd-tile-art {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: #ece8dd;
  border: 1px solid rgba(32, 59, 42, 0.06);
  border-radius: 8px;
}
.abt-wwd-tile-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt-wwd-tile:hover .abt-wwd-tile-art img {
  transform: scale(1.04);
}

/* ── Variant: India coverage map tile
 *    The source PNG is a map with transparent / pale background — it should
 *    sit *on* a flat neutral surface, not be cropped like a photo. Switch to
 *    object-fit: contain on a #D9D9D9 ground and disable the photo hover-zoom
 *    (a map drifting under hover looks awkward). */
.abt-wwd-tile-art--map {
  background: #D9D9D9;
}
.abt-wwd-tile-art--map img {
  object-fit: contain;
  object-position: center center;
  padding: clamp(12px, 2vw, 24px);
}
.abt-wwd-tile:hover .abt-wwd-tile-art--map img {
  transform: none;
}

/* ── Variant: End-to-End Traceability tile
 *    The source PNG carries empty whitespace on its right edge. Scale the image
 *    up and anchor it left so the meaningful content fills the frame without
 *    revealing the blank area. Hover-zoom still respected, layered on top. */
.abt-wwd-tile-art--traceability img {
  transform: scale(1.18);
  transform-origin: 30% 50%;
}
.abt-wwd-tile:hover .abt-wwd-tile-art--traceability img {
  transform: scale(1.22);
}

/* Placeholder hint — visible while no photo is in.
   Sits underneath any future <img>, so dropping an
   image into .abt-wwd-tile-art automatically covers it. */
.abt-wwd-tile-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 26px;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.7;
  text-transform: uppercase;
  color: #a39d8e;
  pointer-events: none;
}

/* Meta block below the art */
.abt-wwd-tile-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 2px;
}
.abt-wwd-tile-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0;
}
.abt-wwd-tile-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.84rem, 0.92vw, 0.9rem);
  font-weight: 300;
  line-height: 1.75;
  color: #777;
  margin: 0;
  max-width: 44ch;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .abt-wwd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(36px, 4vw, 52px) clamp(18px, 2.4vw, 28px);
  }
  .abt-wwd-tile-art { aspect-ratio: 4 / 4.2; }
}
@media (max-width: 640px) {
  .abt-wwd { padding: 72px 16px; }
  .abt-wwd-grid { grid-template-columns: 1fr; gap: 44px; }
  /* Slightly larger imagery on mobile: taller aspect + tighter side padding (above) */
  .abt-wwd-tile-art { aspect-ratio: 4 / 4.1; }
  .abt-wwd-tile-hint { font-size: 10px; letter-spacing: 1.6px; }
}


/* ═══════════════════════════════════════════════════════════════
 *  14. ABOUT PAGE: Clients / Trusted By Grid
 *  Editorial logo wall — hairline borders, generous air
 * ═══════════════════════════════════════════════════════════════ */
.abt2-clients {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) clamp(32px, 6vw, 80px);
}
.abt2-clients-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.abt2-clients-header {
  margin-bottom: clamp(56px, 7vw, 88px);
  max-width: 880px;
}
.abt2-clients-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(32,59,42,0.5);
  display: block;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt2-clients-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--text);
  margin: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.abt2-clients-eyebrow.ct-visible,
.abt2-clients-title.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Logo grid — hairline borders that overlap into a single line */
.abt2-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(32,59,42,0.12);
  border-left: 1px solid rgba(32,59,42,0.12);
}
.abt2-client-cell {
  border-right: 1px solid rgba(32,59,42,0.12);
  border-bottom: 1px solid rgba(32,59,42,0.12);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 2.5vw, 36px);
  background: transparent;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
}
.abt2-client-cell.ct-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt2-client-cell:hover {
  background: rgba(32,59,42,0.04);
}
.abt2-client-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: -0.2px;
  color: rgba(32,59,42,0.78);
  text-align: center;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt2-client-cell:hover .abt2-client-name {
  color: var(--text);
  transform: scale(1.02);
}

/* Reserved slot for future <img> logos */
.abt2-client-cell img {
  max-width: 70%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.abt2-client-cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .abt2-clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .abt2-clients { padding: 64px 20px; }
  .abt2-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .abt2-client-cell { aspect-ratio: 4 / 3; }
}

/* ═══════════════════════════════════════════════════════════════
 *  15. ABOUT PAGE: Leadership / Our People
 * ═══════════════════════════════════════════════════════════════ */
.abt2-leadership {
  background: var(--forest);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.abt2-lead-inner { max-width: 1200px; margin: 0 auto; }
.abt2-eyebrow--light { color: rgba(203,179,93,0.55) !important; }
.abt2-lead-header { margin-bottom: clamp(56px, 7vw, 80px); max-width: 680px; }
.abt2-lead-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 400;
  line-height: 1.1; letter-spacing: -1px;
  color: rgba(244,241,234,0.9); margin-top: 16px; margin-bottom: 16px;
}
.abt2-lead-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 1rem); font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,0.32); max-width: 520px;
}

.abt2-founders {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; overflow: hidden;
  margin-bottom: clamp(64px, 8vw, 96px);
}
.abt2-founder-card {
  flex: 1; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.abt2-founder-card.visible { opacity: 1; transform: translateY(0); }
.abt2-founder-photo {
  width: 100%; aspect-ratio: 4 / 2.2;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: flex-end;
  padding: 16px 20px; overflow: hidden;
  transition: background 0.3s;
}
.abt2-founder-card:hover .abt2-founder-photo { background: rgba(255,255,255,0.06); }
.abt2-founder-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.abt2-founder-photo-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.14); line-height: 1.7;
}
.abt2-founder-body { padding: clamp(28px, 3.5vw, 44px); flex: 1; }
.abt2-founder-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 300; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 10px;
}
.abt2-founder-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 1.1vw, 1.05rem); font-weight: 400;
  letter-spacing: -0.3px; line-height: 1.1;
  color: rgba(244,241,234,0.9); margin-bottom: 16px;
}
.abt2-founder-bio {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem); font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,0.3);
}
.abt2-founder-divider { width: 1px; background: rgba(255,255,255,0.07); flex-shrink: 0; }

.abt2-board-header {
  margin-bottom: clamp(36px, 5vw, 52px);
  display: flex; align-items: baseline; gap: 32px; flex-wrap: wrap;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.abt2-board-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem); font-weight: 300;
  color: rgba(255,255,255,0.22);
}

.abt2-board-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; overflow: hidden;
}
.abt2-board-card {
  background: rgba(32,59,42,0.6);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s ease;
}
.abt2-board-card.visible { opacity: 1; transform: translateY(0); }
.abt2-board-card:hover { background: rgba(32,59,42,0.8); }
.abt2-board-num {
  display: block; font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; font-weight: 300; letter-spacing: 2.5px;
  color: rgba(203,179,93,0.35); padding: 20px 22px 0;
}
.abt2-board-photo {
  width: 100%; aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: flex-end;
  padding: 12px 16px; margin: 12px 0 0; overflow: hidden;
}
.abt2-board-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.abt2-board-photo-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8px; letter-spacing: 1.2px;
  color: rgba(255,255,255,0.1); line-height: 1.7;
}
.abt2-board-body { padding: 18px 22px 24px; flex: 1; }
.abt2-board-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem); font-weight: 500;
  color: rgba(244,241,234,0.78); margin-bottom: 4px; line-height: 1.3;
}
.abt2-board-affil {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; font-weight: 300; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(203,179,93,0.45); margin-bottom: 12px;
}
.abt2-board-note {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 0.85vw, 0.82rem); font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
  .abt2-founders { flex-direction: column; }
  .abt2-founder-divider { width: 100%; height: 1px; }
  .abt2-board-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .abt2-leadership { padding: 64px 20px; }
  .abt2-board-grid { grid-template-columns: 1fr; }
  .abt2-board-header { flex-direction: column; gap: 8px; }
}



/* ═══════════════════════════════════════════════════════════════
 *  16. INDEX: Certifications Section (idx-cert-)
 *  ISCC, RUCO, SAF Association — Legora-style compliance cards
 * ═══════════════════════════════════════════════════════════════ */
.idx-cert {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) clamp(32px, 6vw, 80px);
}

.idx-cert-header {
  max-width: 760px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  text-align: center;
}
.idx-cert-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(32,59,42,0.48);
  margin-bottom: 22px;
}
.idx-cert-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25; letter-spacing: -0.5px;
  color: var(--text);
}

/* Three-card grid */
.idx-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(32,59,42,0.12);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
}

/* Each card: flex column, text top, logo bottom-left */
.idx-cert-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 3.5vw, 56px) clamp(28px, 3vw, 48px);
  min-height: clamp(380px, 42vw, 500px);
  border-right: 1px solid rgba(32,59,42,0.12);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.idx-cert-card:last-child {
  border-right: none;
}
.idx-cert-card:hover {
  background: rgba(32,59,42,0.03);
}

/* Top: title + description */
.idx-cert-card-top {
  max-width: 380px;
}
.idx-cert-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 18px;
}
.idx-cert-card-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 0.95vw, 0.92rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(32,59,42,0.55);
  max-width: 340px;
}

/* Bottom-left: logo badge — confident, not decorative */
.idx-cert-card-badge {
  margin-top: auto;
  padding-top: clamp(56px, 7vw, 96px);
  display: flex;
  align-items: center;
  min-height: clamp(80px, 10vw, 130px);
}
.idx-cert-card-logo {
  width: clamp(72px, 8vw, 110px);
  height: auto;
  opacity: 0.72;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.idx-cert-card:hover .idx-cert-card-logo {
  opacity: 1;
  transform: translateY(-2px);
}
/* Wide-format logos (RUCO, SAF etc.) — match visual weight of circular marks */
.idx-cert-card-logo--wide {
  width: clamp(130px, 14vw, 200px);
}

/* Responsive — graceful collapse 3 → 1 */
@media (max-width: 1024px) {
  .idx-cert-grid { grid-template-columns: 1fr; }
  .idx-cert-card {
    border-right: none;
    border-bottom: 1px solid rgba(32,59,42,0.12);
    min-height: clamp(280px, 36vw, 360px);
  }
  .idx-cert-card:last-child { border-bottom: none; }
  .idx-cert-card-badge { padding-top: clamp(40px, 5vw, 64px); }
}
@media (max-width: 600px) {
  .idx-cert { padding: 64px 20px; }
  .idx-cert-card { padding: 36px 26px; min-height: 260px; }
  .idx-cert-card-top { max-width: 100%; }
  .idx-cert-card-body { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════
 *  16b. INDEX: App / Technology (idx-app-)
 *  Editorial centered layout — headline, sub, floating iPhone.
 *  Cream canvas. Restrained. Acne / Margiela cadence.
 * ═══════════════════════════════════════════════════════════════ */
.idx-app {
  background: var(--cream);
  padding: clamp(96px, 12vw, 160px) clamp(24px, 6vw, 80px) clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.idx-app-header {
  max-width: 860px;
  margin: 0 auto;
}

.idx-app-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.idx-app-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--text);
  margin-bottom: clamp(24px, 2.6vw, 36px);
}
.idx-app-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.idx-app-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(32, 59, 42, 0.52);
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: 0.005em;
}
.idx-app-sub strong {
  font-weight: 400;
  color: var(--text);
}

.idx-app-visual {
  margin-top: clamp(56px, 7vw, 96px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.idx-app-phone {
  width: auto;
  max-width: min(420px, 72vw);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  transform: translateZ(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.idx-app-phone:hover {
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  .idx-app { padding: 80px 22px 32px; }
  .idx-app-headline { letter-spacing: -0.6px; }
  .idx-app-phone { max-width: 72vw; }
}

/* ═══════════════════════════════════════════════════════════════
 *  17. INDEX: Press / Featured In (idx-press-)
 *  Full-bleed cream canvas with logo slots
 * ═══════════════════════════════════════════════════════════════ */
.idx-press {
  background: var(--cream);
  width: 100%;
  padding: clamp(72px, 9vw, 120px) clamp(32px, 6vw, 96px) clamp(80px, 10vw, 140px);
  text-align: center;
}

.idx-press-label {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--text);
  margin: 0 auto clamp(48px, 6vw, 80px);
  max-width: 720px;
}

.idx-press-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 72px);
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
/* Two-logo variant — wider slots, centered with a hairline divider. */
.idx-press-logos.idx-press-logos--duo {
  max-width: 880px;
  justify-content: center;
  gap: clamp(40px, 6vw, 96px);
  position: relative;
}
.idx-press-logos.idx-press-logos--duo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 56%;
  background: rgba(32,59,42,0.12);
  transform: translate(-50%, -50%);
}
.idx-press-logos.idx-press-logos--duo .idx-press-slot {
  flex: 0 1 320px;
  aspect-ratio: 5 / 2;
  min-height: 84px;
  max-height: 120px;
  border: none;
}

/* Empty canvas slots — ready for logos later.
   Each slot reserves a square-ish proportion so the row reads clean. */
.idx-press-slot {
  flex: 1 1 0;
  aspect-ratio: 5 / 2;
  min-height: 64px;
  max-height: 96px;
  border: 1px dashed rgba(32,59,42,0.14);
  border-radius: 6px;
  background: transparent;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.idx-press-slot:hover {
  border-color: rgba(32,59,42,0.28);
  background: rgba(32,59,42,0.02);
}

/* When you drop in <img> logos later, they'll sit centered and
   behave like the cert logos — greyscale resting, color on hover. */
.idx-press-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12% 8%;
  opacity: 0.78;
  filter: grayscale(1);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.idx-press-slot.is-filled { border: none; background: transparent; }
.idx-press-slot.is-filled:hover img {
  opacity: 1;
  filter: grayscale(0);
}
.idx-press-slot:hover img {
  opacity: 1;
}

/* Responsive — 6 → 3 → 2 cols with graceful wrap */
@media (max-width: 1024px) {
  .idx-press-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 3vw, 40px) clamp(24px, 4vw, 56px);
  }
  .idx-press-slot {
    flex: 0 0 calc(33.333% - 40px);
    min-width: 140px;
  }
}
@media (max-width: 640px) {
  .idx-press { padding: 56px 24px 72px; }
  .idx-press-slot {
    flex: 0 0 calc(50% - 20px);
    min-height: 56px;
  }
  .idx-press-logos.idx-press-logos--duo::before { display: none; }
}
@media (max-width: 420px) {
  .idx-press-slot { flex: 0 0 100%; }
}


/* ═══════════════════════════════════════════════════════════════
 *  18. IMPACT PAGE (imp- prefix)
 *  Hero, numbers wall, competitive edge, digital platform,
 *  CO₂ equivalency, partners, collaborations, responsive
 * ═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   NAVBAR OVERRIDE: light links on dark hero
   Add class="page--dark-hero" to <body>
───────────────────────────────────────── */
.page--dark-hero #navbar:not(.scrolled) .nav-links a {
  color: rgba(244,241,234,0.65);
}
.page--dark-hero #navbar:not(.scrolled) .nav-links a:hover,
.page--dark-hero #navbar:not(.scrolled) .nav-links a.active {
  color: var(--gold);
}
.page--dark-hero #navbar:not(.scrolled) .nav-links a::after {
  background: var(--gold);
}
/* Hamburger bars light on dark bg */
.page--dark-hero #navbar:not(.scrolled) #hamburger span {
  background: rgba(244,241,234,0.7);
}
/* Logo stays readable — add a subtle brightness filter so it pops on dark */
.page--dark-hero #navbar:not(.scrolled) .nav-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}


/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.imp-hero {
  background: var(--forest);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.imp-hero-ghost {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14rem, 32vw, 38rem);
  font-weight: 800;
  letter-spacing: -14px;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.imp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(32px, 6vw, 80px);
}

.imp-hero-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: rgba(203,179,93,0.55);
  margin-bottom: 40px;
}

.imp-hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.imp-hline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(4rem, 9.5vw, 11rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: clamp(-2px, -0.4vw, -5px);
  color: rgba(244,241,234,0.9);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.imp-hline.visible       { opacity: 1; transform: translateY(0); }
.imp-hline--gold         { color: var(--gold); font-style: italic; }

.imp-hero-rule {
  height: 1px;
  background: rgba(203,179,93,0.15);
  width: 0;
  margin: clamp(28px, 4vw, 52px) 0;
  transition: width 1.2s ease 0.5s;
}
.imp-hero-rule.expanded  { width: 100%; }

.imp-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(244,241,234,0.35);
  max-width: 560px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 0.85s, transform 0.7s ease 0.85s;
}
.imp-hero-sub.visible    { opacity: 1; transform: translateY(0); }

.imp-scroll-cue {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.imp-scroll-cue span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(244,241,234,0.14);
}
.imp-scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(203,179,93,0.45), transparent);
  animation: impScrollPulse 2.4s ease infinite;
}
@keyframes impScrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}


/* ─────────────────────────────────────────
   SHARED UTILITIES
───────────────────────────────────────── */
.imp-section-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #CCB45E;
  margin-bottom: 16px;
}
.imp-eyebrow--light { color: rgba(203,179,93,0.55); }


/* ─────────────────────────────────────────
   LEGORA-STYLE NUMBERS WALL
   Matches: tall cards, number top-left,
   description bottom-left, sage bg
───────────────────────────────────────── */
.imp-leg {
  background: var(--cream);
}

/* Header: map full-width above, eyebrow left + headline right below */
.imp-leg-header {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-bottom: 1px solid rgba(32,59,42,0.09);
}

/* ── MAP FRAME — full-width above the text row ── */
.imp-leg-map-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(48px, 7vw, 100px) clamp(60px, 10vw, 160px);
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.imp-leg-map-frame.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.imp-leg-map-img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  transform: scale(1.06);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.imp-leg-map-frame.visible .imp-leg-map-img {
  transform: scale(1);
}

/* ── Text row: eyebrow left, headline right ── */
.imp-leg-header-text {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: baseline;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(40px, 5vw, 60px) clamp(32px, 6vw, 80px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}
.imp-leg-header-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.imp-leg-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #CCB45E;
  padding-bottom: 0;
  display: block;
}

.imp-leg-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: var(--text);
  padding-bottom: 0;
  max-width: 100%;
}



/* 3-col × 2-row grid */
.imp-leg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.imp-leg-card {
  padding: clamp(40px, 5vw, 60px) clamp(32px, 4vw, 52px) clamp(40px, 5vw, 60px);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(32,59,42,0.09);
  border-bottom: 1px solid rgba(32,59,42,0.09);
  transition: background 0.25s ease;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.25s ease;
}
.imp-leg-card.visible    { opacity: 1; transform: translateY(0); }
.imp-leg-card:hover      { background: var(--cream); }
.imp-leg-card:nth-child(3n)         { border-right: none; }
.imp-leg-card:nth-child(n+4)        { border-bottom: none; }


.imp-leg-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(clamp(5.5rem, 5vw, 10rem));
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -2px;
}
.imp-leg-num--static {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.8rem, 4vw, 10rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -1px;
}

.imp-leg-bottom { margin-top: 28px; }

.imp-leg-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}

.imp-leg-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  font-weight: 300;
  line-height: 1.82;
  color: rgba(32,59,42,0.45);
  max-width: 280px;
}


/* ─────────────────────────────────────────
   INDIA COVERAGE
───────────────────────────────────────── */
.imp-coverage {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: stretch;
}

.imp-cov-left {
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.imp-cov-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 24px;
  margin-top: 16px;
}
.imp-cov-title em { font-style: italic; color: var(--gold); }
.imp-cov-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.97rem);
  font-weight: 300;
  line-height: 2.0;
  color: #888;
  max-width: 420px;
  margin-bottom: 44px;
}
.imp-cov-stats { display: flex; gap: 44px; }
.imp-cov-mini  { display: flex; flex-direction: column; gap: 6px; }
.imp-cov-mini-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -1px;
  line-height: 1;
}
.imp-cov-mini-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(32,59,42,0.35);
}

.imp-cov-right {
  padding: clamp(56px, 7vw, 88px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
}
.imp-city-region-group {
  padding: 28px 16px 28px 0;
  border-bottom: 1px solid var(--border);
}
.imp-city-region-group:nth-child(even) {
  padding-left: 28px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}
.imp-city-region-group:last-child,
.imp-city-region-group:nth-last-child(2) { border-bottom: none; }

.imp-city-region-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.imp-city-list {
  display: flex;
  flex-direction: column;
}
.imp-city-item {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 300;
  color: var(--text);
  cursor: default;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.2s ease;
}
.imp-city-item.visible  { opacity: 1; transform: translateX(0); }
.imp-city-item:hover    { color: var(--gold); }
.imp-city-item::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(203,179,93,0.3);
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.imp-city-item:hover::before { background: var(--gold); }


/* ─────────────────────────────────────────
   DIGITAL PLATFORM
───────────────────────────────────────── */
.imp-digital {
  background: var(--forest);
  padding: clamp(80px, 10vw, 100px) clamp(32px, 6vw, 80px);
}
.imp-digital-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.imp-digital-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: rgba(244,241,234,0.88);
  margin-bottom: 72px;
  margin-top: 16px;
  max-width: 560px;
}
.imp-dig-stats {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 56px;
}
.imp-dig-stat {
  flex: 1 1 200px;
  padding-right: 32px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.imp-dig-stat.visible { opacity: 1; transform: translateY(0); }
.imp-dig-divider {
  width: 1px;
  height: 88px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  margin-right: 32px;
  align-self: flex-start;
  margin-top: 8px;
}
.imp-dig-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 14px;
}
.imp-dig-num--text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 14px;
}
.imp-dig-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.imp-dig-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.22);
}


/* ─────────────────────────────────────────
   CO₂ EQUIVALENCY
   Fixed: number on own line, unit below,
   right-column text vertically centred
───────────────────────────────────────── */
.imp-co2 {
  background: var(--white);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.imp-co2-inner  { max-width: 1200px; margin: 0 auto; }
.imp-co2-header {
  max-width: 660px;
  margin-bottom: 72px;
}
.imp-co2-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 20px;
}
.imp-co2-intro {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: 300;
  line-height: 1.9;
  color: #aaa;
}

.imp-co2-rows { border-top: 1px solid var(--border); }

.imp-equiv-row {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.imp-equiv-row.visible { opacity: 1; transform: translateY(0); }

.imp-equiv-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 64px;
  border-right: 1px solid var(--border);
}
.imp-equiv-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 16px;
  filter: saturate(0.8);
}
.imp-equiv-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: clamp(-2px, -0.3vw, -3px);
  line-height: 0.95;
}
/* Unit label sits cleanly below the number */
.imp-equiv-unit {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

.imp-equiv-right {
  padding-left: 64px;
}
.imp-equiv-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.imp-equiv-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: #777;
  max-width: 520px;
}


/* ─────────────────────────────────────────
   CUSTOMER LOGO GRID
   Legora-inspired 5-column bordered cells
───────────────────────────────────────── */
.imp-trust {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.imp-trust-inner  { max-width: 1200px; margin: 0 auto; }
.imp-trust-header { margin-bottom: 56px; }
.imp-trust-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-top: 16px;
  max-width: 560px;
}

.imp-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.imp-trust-cell {
  aspect-ratio: 2.5 / 1;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  cursor: default;
  transition: background 0.2s ease;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s ease;
}
.imp-trust-cell.visible    { opacity: 1; transform: translateY(0); }
.imp-trust-cell:hover      { background: #fdfcfa; }
/* Remove right border from last in each row */
.imp-trust-cell:nth-child(5n)        { border-right: none; }
/* Remove bottom border from last row (rows 4–5 = cells 16–20) */
.imp-trust-cell:nth-child(n+16)      { border-bottom: none; }

/* Placeholder text — will be replaced with <img> logos */
.imp-trust-ph {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(8px, 0.85vw, 10px);
  font-weight: 300;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(32,59,42,0.3);
  text-align: center;
  padding: 8px;
  transition: color 0.2s ease;
}
.imp-trust-cell:hover .imp-trust-ph { color: rgba(32,59,42,0.55); }

/* When you add real logos, use this class on the <img> */
.imp-trust-logo {
  max-width: 60%;
  max-height: 40px;
  object-fit: contain;
  filter: saturate(0) opacity(0.4);
  transition: filter 0.3s ease;
}
.imp-trust-cell:hover .imp-trust-logo {
  filter: saturate(0) opacity(0.65);
}


/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .imp-leg-grid        { grid-template-columns: repeat(2, 1fr); }
  .imp-leg-card:nth-child(3n)  { border-right: 1px solid rgba(32,59,42,0.09); }
  .imp-leg-card:nth-child(2n)  { border-right: none; }
  .imp-leg-card:nth-child(n+4) { border-bottom: none; }
  .imp-leg-card:nth-child(n+3) { border-bottom: none; }
  /* recalculate: 2 cols, rows are 1-2, 3-4, 5-6 */
  .imp-leg-card:nth-child(n+5) { border-bottom: none; }
  .imp-leg-card                { border-bottom: 1px solid rgba(32,59,42,0.09); }
  .imp-leg-card:nth-child(2n)  { border-right: none; }
  .imp-leg-card:nth-last-child(-n+2) { border-bottom: none; }

  .imp-trust-grid      { grid-template-columns: repeat(4, 1fr); }
  .imp-trust-cell:nth-child(5n)        { border-right: 1px solid var(--border); }
  .imp-trust-cell:nth-child(4n)        { border-right: none; }
  .imp-trust-cell:nth-child(n+16)      { border-bottom: 1px solid var(--border); }
  .imp-trust-cell:nth-last-child(-n+4) { border-bottom: none; }
}

@media (max-width: 900px) {
  .imp-leg-eyebrow     { padding-bottom: 8px; }
  .imp-coverage        { grid-template-columns: 1fr; }
  .imp-cov-left        { border-right: none; border-bottom: 1px solid var(--border); }
  .imp-dig-stats       { gap: 32px; }
  .imp-dig-divider     { display: none; }
  .imp-dig-stat        { flex: 1 1 45%; padding-right: 0; }
  .imp-equiv-row       { grid-template-columns: 1fr; gap: 0; padding: 52px 0; }
  .imp-equiv-left      { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 36px; margin-bottom: 36px; }
  .imp-equiv-right     { padding-left: 0; }
}

@media (max-width: 768px) {
  .imp-hline           { letter-spacing: -2px; }
  .imp-leg-grid        { grid-template-columns: 1fr; }
  .imp-leg-card        { border-right: none !important; min-height: unset; padding: 40px 28px; }
  .imp-leg-card:nth-child(n) { border-bottom: 1px solid rgba(32,59,42,0.09) !important; }
  .imp-leg-card:last-child   { border-bottom: none !important; }
  .imp-cov-right       { grid-template-columns: 1fr; }
  .imp-city-region-group:nth-child(even) { border-left: none; padding-left: 0; }
  .imp-city-region-group:nth-last-child(2) { border-bottom: 1px solid var(--border); }
  .imp-dig-stat        { flex: 1 1 100%; }
  .imp-trust-grid      { grid-template-columns: repeat(3, 1fr); }
  .imp-trust-cell:nth-child(4n)        { border-right: 1px solid var(--border); }
  .imp-trust-cell:nth-child(3n)        { border-right: none; }
  .imp-trust-cell:nth-child(n+16)      { border-bottom: 1px solid var(--border); }
  .imp-trust-cell:nth-last-child(-n+3) { border-bottom: none; }
  /* Fix: last row has 2 cells (19, 20) on 3-col */
  .imp-trust-cell:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 600px) {
  .imp-hero-inner      { padding: 64px 20px; }
  .imp-scroll-cue      { display: none; }
  .imp-leg             { }
  .imp-leg-map-frame   { padding: 32px 20px; }
  .imp-leg-header-text { grid-template-columns: 1fr; gap: 12px; padding: 36px 20px; }
  .imp-leg-eyebrow     { padding-bottom: 0; }
  .imp-leg-card        { padding: 36px 20px; }
  .imp-co2             { padding: 64px 20px; }
  .imp-digital         { padding: 64px 20px; }
  .imp-coverage        { }
  .imp-cov-left        { padding: 64px 20px; }
  .imp-cov-right       { padding: 48px 20px; }
  .imp-trust           { padding: 64px 20px; }
  .imp-trust-grid      { grid-template-columns: repeat(2, 1fr); border-radius: 12px; }
  .imp-trust-cell:nth-child(3n) { border-right: 1px solid var(--border); }
  .imp-trust-cell:nth-child(2n) { border-right: none; }
  .imp-trust-cell:nth-last-child(-n+2) { border-bottom: none; }
  .imp-trust-cell:nth-last-child(-n+3) { border-bottom: none; }
}



/* ── Impact: Extended Sections ──
   imp-compete / imp-advantage / imp-lifecycle /
   imp-logo-grid / imp-testcards / imp-collab */

/* ─────────────────────────────────────────
   COMPETITIVE EDGE
───────────────────────────────────────── */
.imp-compete {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.imp-compete-inner { max-width: 1200px; margin: 0 auto; }
.imp-compete-header { margin-bottom: 64px; max-width: 860px; }
.imp-compete-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 400; font-style: italic;
  line-height: 1.4; color: var(--text);
  letter-spacing: -0.3px;
  border-left: 3px solid var(--gold);
  padding-left: 28px; margin-top: 20px;
}
.imp-compete-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; margin-bottom: 64px;
}
.imp-compete-col {
  padding: clamp(40px, 5vw, 56px) clamp(32px, 4vw, 52px);
  display: flex; flex-direction: column; gap: 32px;
}
.imp-compete-col--problems { background: #f0f0ee; }
.imp-compete-col--solution  { background: var(--forest); }
.imp-compete-col-hd {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 3.5px; color: red;
  text-transform: uppercase; margin-bottom: 8px;
}
.imp-compete-col--problems .imp-compete-col-hd { color: rgba(32,59,42,0.4); }
.imp-compete-col--solution  .imp-compete-col-hd { color: rgba(203,179,93,0.6); }
.imp-compete-issue { display: flex; gap: 20px; align-items: flex-start; }
.imp-compete-issue-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 2px;
  color: rgba(32,59,42,0.3); flex-shrink: 0; padding-top: 8px;
}
.imp-compete-issue p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.97rem); font-weight: 300;
  line-height: 1.9; color: rgba(32,59,42,0.6);
}
.imp-compete-solve { display: flex; gap: 20px; align-items: flex-start; }
.imp-compete-arrow {
  font-family: 'Poppins', sans-serif; font-size: 1.2rem;
  color: var(--gold); flex-shrink: 0; padding-top: 1px;
}
.imp-compete-solve p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.97rem); font-weight: 400;
  line-height: 1.9; color: rgba(244,241,234,0.82);
}
.imp-compete-visual { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(32,59,42,0.12); }
.imp-compete-img   { width: 100%; height: auto; display: block; }


/* ─────────────────────────────────────────
   COMPETITIVE EDGE — v2 (editorial)
───────────────────────────────────────── */
.ce {
  background: var(--cream);
  padding: clamp(96px, 12vw, 160px) clamp(28px, 6vw, 80px);
  color: var(--text);
}
.ce-inner { max-width: 1280px; margin: 0 auto; }

/* Header */
.ce-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px 48px;
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(32,59,42,0.18);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ce-head .imp-section-eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.ce-title {
  grid-column: 1 / 2;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
}
.ce-title-muted {
  display: block;
  color: rgba(32,59,42,0.34);
  font-style: italic;
  font-weight: 300;
}
.ce-title-bold {
  display: block;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.ce-meta {
  grid-column: 2 / 3;
  align-self: end;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(32,59,42,0.55);
  display: flex; gap: 12px; align-items: center;
  white-space: nowrap;
}
.ce-meta span:nth-child(even) { color: rgba(32,59,42,0.25); }

/* List */
.ce-list { list-style: none; margin: 0; padding: 0; }

.ce-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 9fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid rgba(32,59,42,0.14);
}
.ce-row:last-child { border-bottom: 0; }

/* Oversized outline numeral */
.ce-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(32,59,42,0.35);
  text-stroke: 1px rgba(32,59,42,0.35);
  user-select: none;
  transition: -webkit-text-stroke-color 0.6s ease, transform 0.8s cubic-bezier(.2,.7,.2,1);
}

/* Pair */
.ce-pair {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: clamp(20px, 2vw, 32px);
  align-items: stretch;
}
.ce-side {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 6px;
}
.ce-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
}
.ce-side--today .ce-tag    { color: rgba(32,59,42,0.4); }
.ce-side--byufuel .ce-tag  { color: var(--gold); position: relative; padding-left: 16px; }
.ce-side--byufuel .ce-tag::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px; background: var(--gold);
  transform: translateY(-50%);
}
.ce-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin: 0;
}
.ce-side--today .ce-text {
  color: rgba(32,59,42,0.42);
  font-style: italic;
}
.ce-side--byufuel .ce-text {
  color: var(--forest);
}

/* Connector rule (— → reveal) */
.ce-rule {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ce-rule span {
  display: block; width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(32,59,42,0.25), rgba(203,179,93,0.9));
  position: relative;
}
.ce-rule span::after {
  content: "→";
  position: absolute; right: -2px; top: 50%;
  transform: translate(0, -52%);
  font-family: 'Poppins', sans-serif;
  font-size: 14px; line-height: 1;
  color: var(--gold);
  background: var(--cream);
  padding: 0 6px;
}

/* Reveal animation */
.ce-row { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.ce-row.in-view { opacity: 1; transform: none; }
.ce-row.in-view .ce-num { -webkit-text-stroke-color: rgba(32,59,42,0.55); }

/* Footer */
.ce-foot {
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(32,59,42,0.14);
  display: flex; align-items: center; gap: 18px;
  max-width: 760px;
}
.ce-foot-mark {
  font-family: 'Poppins', sans-serif;
  color: var(--gold); font-size: 1.1rem; line-height: 1;
}
.ce-foot-text {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.5;
  color: rgba(32,59,42,0.7);
  letter-spacing: -0.005em;
}

/* Responsive */
@media (max-width: 900px) {
  .ce-head { grid-template-columns: 1fr; }
  .ce-meta { grid-column: 1 / -1; }
  .ce-row { grid-template-columns: 1fr; gap: 24px; }
  .ce-num { font-size: clamp(3.4rem, 14vw, 5rem); }
  .ce-pair { grid-template-columns: 1fr; gap: 28px; }
  .ce-rule { display: none; }
  .ce-side--byufuel { padding-top: 8px; border-top: 1px solid rgba(32,59,42,0.14); padding-top: 24px; }
}


/* ─────────────────────────────────────────
   BYUFUEL ADVANTAGE
───────────────────────────────────────── */
.imp-advantage {
  background: var(--white);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.imp-advantage-inner { max-width: 1200px; margin: 0 auto; }
.imp-advantage-header { margin-bottom: 56px; }
.imp-advantage-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem); font-weight: 400;
  line-height: 1.25; letter-spacing: -0.5px; color: var(--text);
  max-width: 680px; margin-top: 14px;
}
.imp-adv-table { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.imp-adv-thead {
  display: grid; grid-template-columns: 200px 1fr 1fr;
  background: var(--forest);
}
.imp-adv-th {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 300; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(244,241,234,0.5); padding: 20px 28px;
}
.imp-adv-th--diff { color: var(--gold); }
.imp-adv-row {
  display: grid; grid-template-columns: 200px 1fr 1fr;
  border-top: 1px solid var(--border);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s ease;
}
.imp-adv-row.visible { opacity: 1; transform: translateY(0); }
.imp-adv-row:hover { background: #fdfcfa; }
.imp-adv-cat {
  padding: 28px; display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px;
  border-right: 1px solid var(--border); background: #faf9f7;
}
.imp-adv-cat-icon { width: 28px; height: 28px; color: var(--gold); opacity: 0.7; }
.imp-adv-cat-icon svg { width: 100%; height: 100%; display: block; }
.imp-adv-cat-label {
  font-family: 'Josefin Sans', sans-serif; font-size: 10px;
  font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text);
}
.imp-adv-issue {
  padding: 28px; font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1vw, 0.93rem); font-weight: 300;
  line-height: 1.85; color: #888; border-right: 1px solid var(--border);
}
.imp-adv-diff {
  padding: 28px; font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1vw, 0.93rem); font-weight: 400;
  line-height: 1.85; color: var(--text);
  display: flex; gap: 10px; align-items: flex-start;
}
.imp-adv-diff-arrow { color: var(--gold); font-size: 1rem; flex-shrink: 0; padding-top: 2px; }


/* ─────────────────────────────────────────
   UCO LIFECYCLE / TECHNOLOGY PLATFORM
───────────────────────────────────────── */
.imp-lifecycle {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.imp-lifecycle-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px); align-items: center;
}
.imp-lifecycle-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400;
  line-height: 1.15; letter-spacing: -0.8px; color: var(--text);
  margin-top: 14px; margin-bottom: 20px;
}
.imp-lifecycle-title em { font-style: italic; color: var(--gold); }
.imp-lifecycle-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.97rem); font-weight: 300;
  line-height: 2.0; color: #888; margin-bottom: 40px;
}
.imp-lifecycle-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; margin-bottom: 36px; }
.imp-lc-feat-col { display: flex; flex-direction: column; gap: 12px; }
.imp-lc-feat {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem); font-weight: 300;
  color: var(--text); line-height: 1.5;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.imp-lc-feat.visible { opacity: 1; transform: translateX(0); }
.imp-lc-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; opacity: 0.7;
}
.imp-lc-tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.imp-lc-tag {
  font-family: 'Josefin Sans', sans-serif; font-size: 9px;
  font-weight: 300; letter-spacing: 2px; text-transform: uppercase;
  color: var(--forest); border: 1px solid rgba(32,59,42,0.2);
  border-radius: 100px; padding: 5px 14px; cursor: default;
  transition: background 0.2s, border-color 0.2s;
}
.imp-lc-tag:hover { background: rgba(32,59,42,0.06); border-color: var(--forest); }
.imp-lifecycle-visual { position: relative; }
.imp-lifecycle-img {
  width: 100%; height: auto; display: block;
  border-radius: 20px; box-shadow: 0 32px 80px rgba(32,59,42,0.14);
}


/* ─────────────────────────────────────────
   PARTNERS — LEGORA LOGO GRID
───────────────────────────────────────── */
.imp-logo-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; margin-bottom: 72px;
}
.imp-logo-cell {
  aspect-ratio: 2.8 / 1;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--white); cursor: default;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s ease;
}
.imp-logo-cell.visible   { opacity: 1; transform: translateY(0); }
.imp-logo-cell:hover     { background: #fdfcfa; }
.imp-logo-cell:nth-child(5n)        { border-right: none; }
.imp-logo-cell:nth-last-child(-n+5) { border-bottom: none; }
.imp-logo-ph {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(10px, 0.85vw, 13px); font-weight: 400;
  letter-spacing: 0.5px; color: rgba(32,59,42,0.35);
  text-align: center; padding: 8px 16px;
  transition: color 0.2s ease; line-height: 1.2;
}
.imp-logo-ph--bold  { font-weight: 600; letter-spacing: 1px; }
.imp-logo-ph--light { font-weight: 200; letter-spacing: 2px; font-size: clamp(9px, 0.75vw, 11px); text-transform: uppercase; }
.imp-logo-cell:hover .imp-logo-ph { color: rgba(32,59,42,0.65); }


/* ─────────────────────────────────────────
   TESTIMONIAL PHOTO CARDS (Legora style)
───────────────────────────────────────── */
.imp-testcards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
  border-radius: 16px; overflow: hidden;
}
.imp-testcard {
  background: var(--white); display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.imp-testcard.visible { opacity: 1; transform: translateY(0); }
.imp-testcard-img {
  width: 100%; aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  position: relative; display: flex;
  align-items: flex-end; padding: 16px 18px; overflow: hidden;
}
.imp-testcard-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(32,59,42,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.imp-testcard-img--forest { background-color: var(--forest); }
.imp-testcard-img--gold   { background-color: #2d4a35; }
.imp-testcard-org {
  font-family: 'Josefin Sans', sans-serif; font-size: 9px;
  font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(244,241,234,0.75); position: relative; z-index: 1;
}
.imp-testcard-body {
  padding: clamp(20px, 2.5vw, 32px) clamp(18px, 2.5vw, 28px) clamp(24px, 3vw, 36px);
  flex: 1; display: flex; flex-direction: column; gap: 12px;
}
.imp-testcard-mark {
  font-family: 'Poppins', sans-serif; font-size: 3.2rem;
  line-height: 0.7; color: var(--gold); opacity: 0.55; display: block;
}
.imp-testcard-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.92rem); font-weight: 300;
  line-height: 1.85; color: var(--text); flex: 1;
}
.imp-testcard-attr {
  margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--border);
}
.imp-testcard-role {
  font-family: 'Josefin Sans', sans-serif; font-size: 9px;
  font-weight: 300; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(32,59,42,0.38);
}


/* ─────────────────────────────────────────
   COLLABORATIONS / ECOSYSTEM
───────────────────────────────────────── */
.imp-collab {
  background: var(--white);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.imp-collab-inner { max-width: 1200px; margin: 0 auto; }
.imp-collab-header { margin-bottom: 56px; max-width: 720px; }
.imp-collab-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400;
  line-height: 1.18; letter-spacing: -0.8px; color: var(--text);
  margin-top: 14px; margin-bottom: 16px;
}
.imp-collab-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.97rem); font-weight: 300;
  line-height: 2.0; color: #888;
}
.imp-collab-table {
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; margin-bottom: 56px;
}
.imp-collab-thead {
  display: grid; grid-template-columns: 180px 1fr 1.4fr;
  background: var(--forest);
}
.imp-collab-thead span {
  font-family: 'Josefin Sans', sans-serif; font-size: 10px;
  font-weight: 300; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(244,241,234,0.4); padding: 18px 24px;
}
.imp-collab-thead span:last-child { color: rgba(203,179,93,0.55); }
.imp-collab-row {
  display: grid; grid-template-columns: 180px 1fr 1.4fr;
  border-top: 1px solid var(--border);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s ease;
}
.imp-collab-row.visible { opacity: 1; transform: translateY(0); }
.imp-collab-row:hover { background: #fdfcfa; }
.imp-collab-partner {
  padding: 28px 24px; display: flex; align-items: center;
  border-right: 1px solid var(--border); background: #faf9f7;
}
.imp-collab-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 500;
  color: var(--forest); letter-spacing: -0.2px;
}
.imp-collab-about {
  padding: 28px 24px; font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem); font-weight: 300;
  line-height: 1.85; color: #999; border-right: 1px solid var(--border);
}
.imp-collab-role {
  padding: 28px 24px; font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem); font-weight: 300;
  line-height: 1.85; color: var(--text);
}
.imp-collab-visual { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(32,59,42,0.1); }
.imp-collab-img    { width: 100%; height: auto; display: block; }


/* ─────────────────────────────────────────
   RESPONSIVE — all new impact sections
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .imp-lifecycle-inner  { grid-template-columns: 1fr; }
  .imp-logo-grid        { grid-template-columns: repeat(4, 1fr); }
  .imp-logo-cell:nth-child(5n)        { border-right: 1px solid var(--border); }
  .imp-logo-cell:nth-child(4n)        { border-right: none; }
  .imp-logo-cell:nth-last-child(-n+5) { border-bottom: 1px solid var(--border); }
  .imp-logo-cell:nth-last-child(-n+4) { border-bottom: none; }
  .imp-testcards        { grid-template-columns: repeat(2, 1fr); }
  .imp-adv-thead        { grid-template-columns: 140px 1fr; }
  .imp-adv-th--diff     { display: none; }
  .imp-adv-row          { grid-template-columns: 140px 1fr; }
  .imp-adv-diff         { display: none; }
  .imp-collab-thead     { grid-template-columns: 140px 1fr; }
  .imp-collab-thead span:last-child { display: none; }
  .imp-collab-row       { grid-template-columns: 140px 1fr; }
  .imp-collab-role      { display: none; }
  .imp-compete-cols     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .imp-logo-grid        { grid-template-columns: repeat(3, 1fr); border-radius: 12px; }
  .imp-logo-cell:nth-child(4n) { border-right: 1px solid var(--border); }
  .imp-logo-cell:nth-child(3n) { border-right: none; }
  .imp-logo-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .imp-logo-cell:nth-last-child(-n+3) { border-bottom: none; }
  .imp-testcards        { grid-template-columns: 1fr; }
  .imp-lifecycle-features { grid-template-columns: 1fr; }
  .imp-adv-thead        { display: none; }
  .imp-adv-row          { grid-template-columns: 1fr; }
  .imp-adv-cat          { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; align-items: center; padding: 16px 20px; gap: 12px; }
  .imp-adv-cat-icon     { width: 20px; height: 20px; }
  .imp-adv-issue        { display: none; }
  .imp-adv-diff         { display: flex; padding: 16px 20px; }
  .imp-collab-thead     { display: none; }
  .imp-collab-row       { grid-template-columns: 1fr; }
  .imp-collab-partner   { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 20px; }
  .imp-collab-about     { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 20px; }
  .imp-collab-role      { display: block; padding: 16px 20px; }
}
@media (max-width: 480px) {
  .imp-logo-grid        { grid-template-columns: repeat(2, 1fr); }
  .imp-logo-cell:nth-child(3n) { border-right: 1px solid var(--border); }
  .imp-logo-cell:nth-child(2n) { border-right: none; }
  .imp-logo-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .imp-logo-cell:nth-last-child(-n+2) { border-bottom: none; }
  .imp-logo-cell        { aspect-ratio: 3 / 1; }
}


/* ═══════════════════════════════════════════════════════════════
 *  19. TECHNOLOGY INDEX — Homepage Only (tch- prefix)
 *  Three zones: dark editorial / cream pipeline / dark app
 * ═══════════════════════════════════════════════════════════════ */
.tch { overflow: hidden; }

/* ── Shared label / utilities ── */
.tch-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 300; letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(203,179,93,0.6);
  margin-bottom: 18px;
}
.tch-label--muted { color: var(--gold); opacity: 0.45; }
.tch-label--gold  { color: var(--gold-l); }

/* ─────────────────────────────────────────
   ZONE 1 — Dark editorial + CSS dashboard
───────────────────────────────────────── */
.tch-intro {
  background: var(--forest);
  padding: clamp(72px, 9vw, 112px) clamp(32px, 6vw, 80px);
}
.tch-intro-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.tch-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5.8rem);
  font-weight: 300; font-style: italic;
  line-height: 1.08; letter-spacing: -1px;
  color: rgba(244,241,234,0.88);
  margin-bottom: 24px;
}
.tch-hl em { font-style: normal; color: var(--gold); }
.tch-intro-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 1rem); font-weight: 300;
  line-height: 2.0; color: rgba(244,241,234,0.38);
  max-width: 420px; margin-bottom: 36px;
}
.tch-intro-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 300; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; opacity: 0.7;
  transition: opacity 0.2s;
}
.tch-intro-link:hover { opacity: 1; }

/* CSS Dashboard card */
.tch-dash {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}
.tch-dash-bar {
  background: rgba(0,0,0,0.2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tch-dash-bar-dot { width: 8px; height: 8px; border-radius: 50%; }
.tch-dash-bar-dot--red    { background: #ff5f57; }
.tch-dash-bar-dot--yellow { background: #ffbd2e; }
.tch-dash-bar-dot--green  { background: #28c840; }
.tch-dash-bar-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25);
  margin-left: 8px; flex: 1;
}
.tch-dash-live {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(203,179,93,0.6);
}
.tch-dash-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0.08); }
}
.tch-dash-body { padding: 20px 20px 16px; }
.tch-dash-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.tch-dash-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.tch-dash-metric-val {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 500; color: rgba(244,241,234,0.88);
  letter-spacing: -0.3px;
}
.tch-dash-metric-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
}
.tch-dash-metric-delta {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 300;
}
.tch-delta--up   { color: rgba(74,222,128,0.6); }
.tch-delta--gold { color: rgba(203,179,93,0.5); }

/* Mini bar chart */
.tch-dash-chart { margin-bottom: 16px; }
.tch-dash-chart-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.15); margin-bottom: 10px;
}
.tch-dash-bars {
  display: flex; align-items: flex-end;
  gap: 5px; height: 52px;
}
.tch-dash-bar-col {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px; height: 100%;
  justify-content: flex-end;
}
.tch-dash-bar-fill {
  width: 100%;
  height: var(--h, 50%);
  background: rgba(203,179,93,0.18);
  border-radius: 3px 3px 0 0;
  transition: background 0.2s;
}
.tch-dash-bar-col--active .tch-dash-bar-fill { background: rgba(203,179,93,0.5); }
.tch-dash-bar-col:hover .tch-dash-bar-fill { background: rgba(203,179,93,0.35); }
.tch-dash-bar-col span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 7px; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.18);
}

/* Map dots row */
.tch-dash-map {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; padding: 12px 14px;
  position: relative; overflow: hidden;
}
.tch-dash-map-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-bottom: 10px;
}
.tch-dash-map-dots {
  position: relative; height: 64px;
}
.tch-dot {
  position: absolute;
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(203,179,93,0.35);
  transform: translate(-50%, -50%);
}
.tch-dot--gold { background: rgba(203,179,93,0.7); }
.tch-dot--pulse {
  background: rgba(203,179,93,0.8);
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(203,179,93,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(203,179,93,0); }
}
.tch-dash-map-caption {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 7.5px; letter-spacing: 1px;
  color: rgba(255,255,255,0.12);
  margin-top: 8px; line-height: 1.5;
}


/* ─────────────────────────────────────────
   ZONE 2 — Cream pipeline (text + icons)
───────────────────────────────────────── */
.tch-pipeline {
  background: var(--cream);
  padding: clamp(72px, 9vw, 100px) clamp(32px, 6vw, 80px);
}
.tch-pipeline-inner { max-width: 1280px; margin: 0 auto; }
.tch-pipe-hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 80px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.tch-pipe-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.5px;
  color: var(--text);
}
.tch-pipe-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1vw, 0.93rem); font-weight: 300;
  color: #aaa; line-height: 1.85;
}

/* Rail + steps wrapper */
.tch-rail-wrap { margin-bottom: clamp(56px, 7vw, 72px); }
.tch-rail {
  height: 1px;
  background: rgba(32,59,42,0.08);
  position: relative;
}
.tch-rail-track {
  position: absolute; top: 0; left: 0; height: 1px; width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-l), var(--gold));
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.tch-pipeline--active .tch-rail-track { width: 100%; }

.tch-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.tch-step {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 clamp(6px, 1.2vw, 18px);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tch-step.visible { opacity: 1; transform: translateY(0); }

/* Node on the rail */
.tch-step-node {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid rgba(203,179,93,0.5);
  display: flex; align-items: center; justify-content: center;
  margin-top: -19px; /* centred on rail */
  margin-bottom: 24px;
  position: relative; z-index: 2;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tch-step:hover .tch-step-node {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(203,179,93,0.12);
}
.tch-step-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 1.5px; color: var(--gold);
  transition: color 0.25s;
}
.tch-step:hover .tch-step-num { color: var(--forest); }

/* SVG icon */
.tch-step-icon {
  width: 28px; height: 28px; margin-bottom: 16px;
  color: rgba(32,59,42,0.25);
  transition: color 0.25s;
}
.tch-step-icon svg { width: 100%; height: 100%; display: block; }
.tch-step:hover .tch-step-icon { color: var(--gold); }

.tch-step-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.9rem); font-weight: 500;
  color: var(--text); text-align: center;
  margin-bottom: 8px; line-height: 1.3;
}
.tch-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 0.82vw, 0.78rem); font-weight: 300;
  color: #aaa; text-align: center; line-height: 1.7;
}

/* Wide single photo slot */
.tch-wide-photo {
  width: 100%;
  aspect-ratio: 21 / 7;
  border-radius: 16px;
  background: rgba(32,59,42,0.04);
  border: 1px dashed rgba(32,59,42,0.12);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.tch-wide-photo-inner { text-align: center; padding: 20px 32px; }
.tch-wide-photo-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 1.5px;
  color: rgba(32,59,42,0.22); line-height: 1.85;
}
/* When you add the real image: swap the inner div for <img src="..." class="tch-wide-img"/> */
.tch-wide-img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ─────────────────────────────────────────
   ZONE 3 — Dark app zone + CSS mock UI
───────────────────────────────────────── */
.tch-app {
  background: var(--forest);
  padding: clamp(72px, 9vw, 100px) clamp(32px, 6vw, 80px);
}
.tch-app-inner { max-width: 1280px; margin: 0 auto; }
.tch-app-hd { text-align: center; margin-bottom: clamp(52px, 7vw, 72px); }
.tch-app-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 400;
  line-height: 1.18; letter-spacing: -0.5px;
  color: rgba(244,241,234,0.88);
  margin-top: 12px; margin-bottom: 14px;
}
.tch-app-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem); font-weight: 300;
  color: rgba(255,255,255,0.28); max-width: 460px; margin: 0 auto; line-height: 1.9;
}

/* Phone frames */
.tch-phones {
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(20px, 4vw, 48px); margin-bottom: clamp(52px, 7vw, 72px);
}
.tch-phone {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.tch-phone.visible { opacity: 1; transform: translateY(0); }
.tch-phone-badge {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(203,179,93,0.3);
  border-radius: 100px; padding: 4px 12px; margin-bottom: 4px;
}
.tch-phone-frame {
  width: clamp(140px, 14vw, 185px);
  border-radius: 36px; padding: 14px 10px 20px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tch-phone-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 52px 100px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
}
.tch-phone--featured .tch-phone-frame {
  width: clamp(155px, 16vw, 205px);
  border-color: rgba(203,179,93,0.22);
  box-shadow: 0 48px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(203,179,93,0.08), inset 0 1px 0 rgba(255,255,255,0.08);
}
.tch-phone-notch {
  width: 40px; height: 5px; border-radius: 100px;
  background: rgba(255,255,255,0.1); flex-shrink: 0;
}
.tch-phone-screen {
  width: 100%; aspect-ratio: 9 / 18; border-radius: 20px;
  background: #0f1f14; overflow: hidden;
  border: 1px solid rgba(203,179,93,0.06);
}
.tch-phone-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.9rem); font-weight: 500;
  color: rgba(244,241,234,0.65); text-align: center;
}
.tch-phone-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 0.82vw, 0.78rem); font-weight: 300;
  color: rgba(255,255,255,0.22); text-align: center; margin-top: -6px;
}

/* ── CSS Mock UIs ── */
.tch-mock {
  padding: 12px 10px;
  height: 100%;
  display: flex; flex-direction: column; gap: 8px;
  font-family: 'Inter', sans-serif;
}
.tch-mock-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tch-mock-title {
  font-family: 'Poppins', sans-serif;
  font-size: 9px; font-weight: 500; color: rgba(244,241,234,0.7);
}
.tch-mock-sub { font-size: 7px; color: rgba(255,255,255,0.22); }

/* Calendar mock */
.tch-mock-cal {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 3px; text-align: center;
}
.tch-mock-cal-day {
  font-size: 7px; color: rgba(203,179,93,0.4); padding-bottom: 4px;
}
.tch-mock-cal-n {
  font-size: 8px; color: rgba(255,255,255,0.3);
  padding: 3px; border-radius: 4px;
}
.tch-cal-sel {
  background: var(--gold); color: var(--forest); font-weight: 600;
  border-radius: 50%;
}
.tch-cal-dot { position: relative; color: rgba(255,255,255,0.6); }
.tch-cal-dot::after {
  content: ''; position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 50%; background: var(--gold);
}
.tch-mock-slot {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 6px 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.tch-mock-slot--booked { background: rgba(203,179,93,0.08); border-color: rgba(203,179,93,0.15); }
.tch-mock-slot-time { font-size: 8px; color: rgba(255,255,255,0.45); }
.tch-mock-slot-tag { font-size: 7px; letter-spacing: 1px; color: rgba(255,255,255,0.25); }
.tch-slot-booked { color: rgba(203,179,93,0.7); }
.tch-mock-btn {
  background: var(--gold); color: var(--forest);
  font-size: 8px; font-weight: 600; letter-spacing: 0.5px;
  border-radius: 6px; padding: 6px; text-align: center; margin-top: auto;
}
.tch-btn--outline {
  background: transparent; color: rgba(203,179,93,0.6);
  border: 1px solid rgba(203,179,93,0.2);
}

/* Map mock */
.tch-mock--map { gap: 6px; }
.tch-live-badge {
  display: flex; align-items: center; gap: 4px;
  font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(74,222,128,0.6);
}
.tch-live-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #4ade80;
  animation: livePulse 2s ease-in-out infinite;
}
.tch-mock-maparea {
  flex: 1; background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
  position: relative; overflow: hidden; min-height: 80px;
}
.tch-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 14px 14px;
}
.tch-veh {
  position: absolute; font-size: 9px;
  filter: grayscale(0.5) opacity(0.6);
  transform: translate(-50%, -50%);
}
.tch-veh--active { filter: none; font-size: 11px; }
.tch-route-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.tch-mock-mapstats {
  display: flex; gap: 6px;
}
.tch-mstat {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px; padding: 4px 6px; text-align: center;
  font-size: 7px; color: rgba(255,255,255,0.3);
}
.tch-mstat b { display: block; font-size: 10px; color: rgba(203,179,93,0.7); font-weight: 600; }

/* Payment mock */
.tch-mock--pay { align-items: center; justify-content: center; }
.tch-pay-check {
  width: 44px; height: 44px;
  margin: 8px auto 4px;
}
.tch-pay-check svg { width: 100%; height: 100%; }
.tch-pay-amount {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 500;
  color: rgba(244,241,234,0.88); text-align: center; letter-spacing: -0.3px;
}
.tch-pay-label {
  font-size: 8px; color: rgba(203,179,93,0.5);
  text-align: center; margin-bottom: 8px;
}
.tch-pay-rows {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px; margin-top: 4px;
  display: flex; flex-direction: column; gap: 5px;
}
.tch-pay-row {
  display: flex; justify-content: space-between;
  font-size: 7.5px; color: rgba(255,255,255,0.28); padding: 0 2px;
}
.tch-pay-row--hi span:last-child { color: rgba(74,222,128,0.6); }

/* ── Capability strip ── */
.tch-caps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: clamp(28px, 4vw, 44px);
}
.tch-cap {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 0 clamp(14px, 2.5vw, 28px);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.tch-cap:first-child { padding-left: 0; }
.tch-cap:last-child  { border-right: none; }
.tch-cap-icon {
  color: var(--gold); opacity: 0.55;
  font-size: 1rem; flex-shrink: 0; padding-top: 1px;
}
.tch-cap-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 0.88vw, 0.82rem); font-weight: 300;
  color: rgba(255,255,255,0.32); line-height: 1.75;
}

/* ─────────────────────────────────────────
   RESPONSIVE — tch-
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .tch-intro-inner  { grid-template-columns: 1fr; }
  .tch-dash         { max-width: 580px; }
  .tch-steps        { grid-template-columns: repeat(3, 1fr); gap: 24px 0; }
  .tch-pipe-hd      { grid-template-columns: 1fr; gap: 16px; }
  .tch-caps         { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .tch-cap          { border-right: none; padding-left: 0; }
  .tch-cap:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); padding-right: 20px; }
}
@media (max-width: 768px) {
  .tch-steps  { grid-template-columns: 1fr; }
  .tch-rail   { display: none; }
  .tch-step   {
    flex-direction: row; align-items: flex-start; gap: 14px;
    padding: 16px 0; border-bottom: 1px solid var(--border);
    text-align: left;
  }
  .tch-step:last-child { border-bottom: none; }
  .tch-step-node  { margin-top: 0; margin-bottom: 0; flex-shrink: 0; }
  .tch-step-icon  { margin-bottom: 0; flex-shrink: 0; }
  .tch-step-name, .tch-step-desc { text-align: left; }
  .tch-phones     { flex-direction: column; align-items: center; gap: 44px; }
  .tch-caps       { grid-template-columns: 1fr; }
  .tch-cap:nth-child(odd) { border-right: none; padding-right: 0; }
  .tch-dash-metrics { grid-template-columns: 1fr 1fr; }
  .tch-wide-photo { aspect-ratio: 16/6; }
}

/* ═══════════════════════════════════════════════════════════════
 *  20. TECHNOLOGY PAGE (tpl- prefix)
 *  Full technology page: hero, pipeline steps, grid, capabilities,
 *  benefits strip, wide photo slot, responsive
 * ═══════════════════════════════════════════════════════════════ */

/* ── Shared eyebrow ── */
.tpl-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(203,179,93,0.65);
  margin-bottom: 20px;
}
.tpl-eyebrow--muted { color: rgba(32,59,42,0.35); }

/* ── Shared photo hint ── */
.tpl-photo-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.14);
  text-align: center; line-height: 1.8; padding: 20px;
}
.tpl-photo-hint--dark { color: rgba(32,59,42,0.2); }


/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.tpl-hero {
  background: var(--forest);
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tpl-hero-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(32px, 6vw, 80px);
}
.tpl-hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.tpl-hline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.5rem, 8.5vw, 9.5rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: clamp(-2px, -0.4vw, -5px);
  color: rgba(244,241,234,0.9);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  padding: 8px 0px;
}
.tpl-hline--gold { color: var(--gold); font-style: italic; }
.tpl-hline.visible { opacity: 1; transform: translateY(0); }

.tpl-hero-rule {
  height: 1px;
  background: rgba(203,179,93,0.15);
  width: 0;
  margin: clamp(28px, 4vw, 52px) 0;
  transition: width 1.2s ease 0.5s;
}
.tpl-hero-rule.visible { width: 100%; }

.tpl-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 2.0;
  color: rgba(255,255,255,0.36);
  max-width: 540px;
  opacity: 0;
  transition: opacity 0.7s ease 0.9s;
}

.tpl-hero-sub.visible { opacity: 1; }



/* ── App Showcase below hero ── */
.tpl-app-showcase {
  background: var(--forest);
  padding: 0 clamp(32px, 6vw, 80px) clamp(64px, 8vw, 100px);
}
.tpl-app-showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.tpl-app-placeholder {
  width: 100%;
  aspect-ratio: 16 / 6;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.tpl-app-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
  .tpl-app-placeholder { aspect-ratio: 4 / 3; }
}

/* Scroll cue */
.tpl-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.tpl-scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(203,179,93,0.5), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .tpl-hline     { letter-spacing: -1.5px; }
  .tpl-scroll-cue { display: none; }
}

/* ─────────────────────────────────────────
   LIFECYCLE STATEMENT
───────────────────────────────────────── */
.tpl-statement {
  background: var(--cream);
  padding: clamp(72px, 9vw, 100px) clamp(32px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
}
.tpl-statement-inner {
  max-width: 840px; margin: 0 auto; text-align: center;
}
.tpl-statement-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 400; font-style: italic;
  line-height: 1.1; letter-spacing: -1px; color: var(--text);
  margin-top: 4px; margin-bottom: 20px;
}
.tpl-statement-hl em { color: var(--gold); font-style: normal; }
.tpl-statement-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 1rem); font-weight: 300;
  line-height: 1.9; color: #888; max-width: 580px; margin: 0 auto;
}


/* ─────────────────────────────────────────
   PIPELINE — 5 STEPS
───────────────────────────────────────── */

/* ─────────────────────────────────────────
   STEPS 01–03 : PHOTO GRID  (Legora ref 1)
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   STEPS 01–03 : LEGORA PHOTO GRID
───────────────────────────────────────── */
.tpl-grid {
  background: var(--white);
  padding-top: clamp(80px, 10vw, 120px);
  /* NO side padding — grid is full bleed */
}

/* Header has its own side padding */
.tpl-grid-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px) clamp(48px, 6vw, 72px);
  border-bottom: none;
  margin-bottom: 0;
}
.tpl-grid-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: var(--text);
}

/* Full-bleed 3-column grid — flush to page edges */
.tpl-grid-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 clamp(32px, 6vw, 80px) clamp(52px, 7vw, 80px);
  background: var(--white);
}

.tpl-grid-col {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tpl-grid-col.visible { opacity: 1; transform: translateY(0); }
.tpl-grid-col:last-child { border-right: none; }
.tpl-grid-col.visible { opacity: 1; transform: translateY(0); }

/* Visual zone — uniform frame on a neutral ground. Images are product
   screenshots / phone mockups, so we *contain* (show the whole frame)
   rather than cover-crop. Padding lives on the <img> with box-sizing:
   border-box so object-fit honours the inner content box correctly —
   absolute-position + inset alone does not work reliably for replaced
   elements without explicit width/height. */
.tpl-grid-photo {
  width: 100%;
  /* Taller frame matches portrait phone screenshots so the image fills
     the box instead of leaving large mat space top/bottom. */
  aspect-ratio: 4 / 4.4;
  background: #F5F5F7;
  overflow: hidden;
  position: relative;
}
.tpl-grid-photo .tpl-photo-hint {
  position: absolute;
  inset: auto 20px 6px;
  color: rgba(32,59,42,0.22);
  font-size: 8.5px;
  letter-spacing: 1.2px;
  line-height: 1.7;
}
.tpl-grid-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Minimal mat — image dominates the frame. Zero bottom padding so
     phones/devices touch the floor of the frame. */
  padding: clamp(10px, 1.2vw, 16px) 0 0;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tpl-grid-photo:hover .tpl-grid-img {
  transform: scale(1.03);
  transform-origin: center bottom;
}


/* Text below — on white, with padding */
.tpl-grid-copy {
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.5vw, 28px) clamp(22px, 2.8vw, 30px);
  border-top: 1px solid var(--border);
  background: var(--white);
}
.tpl-grid-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tpl-grid-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  font-weight: 300;
  line-height: 1.85;
  color: #888;
}

@media (max-width: 1100px) {
  .tpl-grid-cols   { grid-template-columns: repeat(2, 1fr); }
  .tpl-grid-photo  { aspect-ratio: 4 / 3.2; }
}
@media (max-width: 900px) {
  .tpl-grid-header { grid-template-columns: 1fr; gap: 16px; padding-bottom: 32px; }
  .tpl-grid-cols   { grid-template-columns: 1fr; padding: 0 clamp(20px, 4vw, 40px) clamp(40px, 6vw, 64px); }
  /* Tall, near-edge-to-edge on mobile so screenshots read as large as
     the About Us tile photos. Bottom-anchored to keep phones grounded. */
  .tpl-grid-photo  { aspect-ratio: 4 / 4.5; }
  .tpl-grid-img    { padding: 12px 6px 0; }
}
@media (max-width: 480px) {
  .tpl-grid-photo  { aspect-ratio: 4 / 4.6; }
  .tpl-grid-img    { padding: 10px 4px 0; }
}


/* ─────────────────────────────────────────
   STEPS 04–05 : LARGE CARDS  (Legora ref 2)
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   STEPS 04–05 : TALL CARDS  (Legora ref 2)
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   STEPS 04–05 : TALL CARDS  (Legora layout)
───────────────────────────────────────── */
.tpl-cards {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.tpl-cards-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

/* Left column — eyebrow only */
.tpl-cards-eyebrow-col {
  padding-top: 8px;
}

/* Right column — headline + cards */
.tpl-cards-content-col {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.tpl-cards-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--text);
  max-width: 640px;
}

/* Card row — two equal columns, flush, no gap */
.tpl-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

/* Individual card */
.tpl-lcard {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tpl-lcard:first-child {
  /* border-right: 1px solid var(--border); */
  padding-right: 32px;
}
.tpl-lcard:last-child {
  padding-left: 32px;
}
.tpl-lcard.visible { opacity: 1; transform: translateY(0); }

/* Visual zone — tall portrait, sits on page background. Like the upper
   tiles, these hold product imagery (certificates, payment screens), so
   we contain rather than cover-crop. Padding on the img (with
   box-sizing: border-box) gives the mat-style breathing room. */
.tpl-lcard-visual {
  width: 100%;
  /* Taller, near-square frame so the certificate / payment screen
     reads at a confident scale. */
  aspect-ratio: 4 / 4;
  background: #203B2A;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}
.tpl-lcard-hint {
  position: absolute;
  inset: auto 18px 16px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 1.2px;
  color: rgba(32,59,42,0.2);
  line-height: 1.7;
}
.tpl-lcard-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Slim mat — certificate dominates the frame. */
  padding: clamp(6px, 0.8vw, 12px);
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 4px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tpl-lcard-visual:hover .tpl-lcard-img {
  transform: scale(1.025);
}

/* Text below visual — on page, not in card */
.tpl-lcard-copy {
  padding: clamp(18px, 2.2vw, 24px) 0 0;
}
.tpl-lcard-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.tpl-lcard-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  font-weight: 300;
  line-height: 1.85;
  color: #888;
}

@media (max-width: 900px) {
  .tpl-cards-inner  { grid-template-columns: 1fr; gap: 24px; }
  .tpl-cards-row    { grid-template-columns: 1fr; gap: 40px; }
  .tpl-lcard:first-child { border-right: none; padding-right: 0; }
  .tpl-lcard:last-child  { padding-left: 0; }
  /* Match About Us tile scale — taller frame, near-zero mat. */
  .tpl-lcard-visual { aspect-ratio: 4 / 4.3; }
  .tpl-lcard-img    { padding: 8px; }
}
@media (max-width: 480px) {
  .tpl-lcard-visual { aspect-ratio: 4 / 4.4; }
  .tpl-lcard-img    { padding: 6px; }
}


/* ─────────────────────────────────────────
   CAPABILITIES GRID
───────────────────────────────────────── */
.tpl-caps {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
}
.tpl-caps-inner { max-width: 1280px; margin: 0 auto; }

.tpl-caps-header {
  margin-bottom: clamp(56px, 7vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.tpl-caps-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 400;
  line-height: 1.1; letter-spacing: -1px; color: var(--text);
  margin-top: 4px;
}
.tpl-caps-hl em { font-style: italic; color: var(--gold); }

.tpl-caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.tpl-cap-card {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s ease;
}
.tpl-cap-card.visible { opacity: 1; transform: translateY(0); }
.tpl-cap-card:hover { background: #fdfcfa; }

.tpl-cap-icon {
  width: 28px; height: 28px; color: var(--gold); opacity: 0.7;
  flex-shrink: 0;
}
.tpl-cap-icon svg { width: 100%; height: 100%; display: block; }
.tpl-cap-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem); font-weight: 500;
  color: var(--text); line-height: 1.3;
}
.tpl-cap-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.9vw, 0.88rem); font-weight: 300;
  line-height: 1.85; color: #aaa;
}


/* ─────────────────────────────────────────
   BENEFITS STRIP
───────────────────────────────────────── */
.tpl-benefits {
  background: var(--forest);
  padding: clamp(64px, 8vw, 96px) clamp(32px, 6vw, 80px);
}
.tpl-benefits-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: stretch;
  flex-wrap: wrap;
}
.tpl-ben {
  flex: 1 1 200px;
  padding: 0 clamp(24px, 3.5vw, 48px);
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tpl-ben:first-child { padding-left: 0; }
.tpl-ben:last-child  { padding-right: 0; }
.tpl-ben.visible { opacity: 1; transform: translateY(0); }
.tpl-ben-div {
  width: 1px; background: rgba(255,255,255,0.1);
  flex-shrink: 0; margin: 8px 0;
}
.tpl-ben-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 2.5px;
  color: rgba(203,179,93,0.4);
}
.tpl-ben-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem); font-weight: 500;
  color: rgba(244,241,234,0.85); line-height: 1.35;
}
.tpl-ben-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.9vw, 0.85rem); font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.3);
}


/* ─────────────────────────────────────────
   WIDE PHOTO SLOT
───────────────────────────────────────── */
.tpl-wide-photo {
  width: 100%;
  aspect-ratio: 21 / 7;
  background: rgba(32,59,42,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}


/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .tpl-caps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .tpl-hero-inner { grid-template-columns: 1fr; min-height: unset; }
  .tpl-hero-left  { padding: 60px 24px 40px; }
  .tpl-hero-right { padding: 0 24px 48px; }
  .tpl-phones-placeholder { aspect-ratio: 4 / 3; }
  .tpl-pipe-step  { grid-template-columns: 1fr; min-height: unset; direction: ltr; }
  .tpl-pipe-step--reverse > * { direction: ltr; }
  .tpl-pipe-step-left { border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--border); }
  .tpl-pipe-photo { min-height: 260px; }
  .tpl-benefits   { padding: 56px 28px; }
  .tpl-benefits-inner { gap: 28px 0; flex-direction: column; align-items: stretch; }
  .tpl-ben-div    { width: 100%; height: 1px; margin: 0; flex: 0 0 auto; }
  .tpl-ben        { flex: 0 0 auto; padding: 0; gap: 10px; }
  .tpl-ben-title  { font-size: 1.15rem; }
  .tpl-ben-desc   { font-size: 0.9rem; line-height: 1.65; }
  .tpl-caps-header { flex-direction: column; align-items: flex-start; }
  .tpl-wide-photo { aspect-ratio: 16 / 6; }
}
@media (max-width: 600px) {
  .tpl-caps-grid { grid-template-columns: 1fr; }
  .tpl-hline     { letter-spacing: -1.5px; }
  .tpl-scroll-cue { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   JOURNEY — cinematic scroll narrative
   Pinned sticky viewport with cross-fading full-bleed frames.
   Editorial overlay, vertical progress, four-act captions.
   ═══════════════════════════════════════════════════════════ */
.jny {
  position: relative;
  background: #F4F1EA;
  color: #1a1a1a;
  isolation: isolate;
  font-family: 'Poppins', sans-serif;
}

/* ---- Intro panel — editorial masthead ---- */
.jny-intro {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(88px, 11vw, 180px) clamp(32px, 7vw, 120px) clamp(72px, 9vw, 140px);
  background: #F4F1EA;
}
.jny-intro::before {
  content: '';
  position: absolute;
  left: clamp(32px, 7vw, 120px);
  right: clamp(32px, 7vw, 120px);
  top: clamp(72px, 9vw, 140px);
  height: 1px;
  background: rgba(26,26,26,0.12);
}
.jny-intro-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.jny-intro-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.jny-intro-side {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
}
.jny-intro-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(24px, 3vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.jny-intro-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.jny-intro-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(28px, 3.5vw, 48px);
  color: #1a1a1a;
}
.jny-intro-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.jny-intro-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  line-height: 1.7;
  max-width: 50ch;
  color: rgba(26,26,26,0.6);
  margin: 0 0 clamp(60px, 8vw, 120px);
  font-weight: 300;
}
.jny-intro-cue {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(26,26,26,0.45);
  position: relative;
  padding-left: 52px;
}
.jny-intro-cue::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 40px; height: 1px;
  background: rgba(26,26,26,0.4);
  animation: jny-cue 2.4s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes jny-cue {
  0%,100% { transform: scaleX(0.4); opacity: 0.3; }
  50%     { transform: scaleX(1);   opacity: 0.9; }
}

/* Poster — small editorial still pulled from Act I.
   A framed cinematic teaser with hairline border and overlaid caption. */
.jny-intro-poster {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e7e2d6;
  border: 1px solid rgba(26,26,26,0.08);
}
.jny-intro-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.92) contrast(0.98);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.jny-intro-poster:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1);
}
.jny-intro-poster figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(16px, 1.6vw, 22px) clamp(18px, 1.8vw, 24px);
  background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.55) 100%);
  color: #f4f1ea;
  pointer-events: none;
}
.jny-intro-poster-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}
.jny-intro-poster-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* Acts manifest — hairline list, one row per act.
   Reads as a contents page: number / name / setting. */
.jny-intro-acts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(26,26,26,0.14);
}
.jny-intro-act {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: baseline;
  gap: clamp(14px, 1.6vw, 22px);
  padding: clamp(14px, 1.6vw, 20px) 0;
  border-bottom: 1px solid rgba(26,26,26,0.10);
  transition: padding-left 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.jny-intro-act:hover {
  padding-left: 6px;
}
.jny-intro-act-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2.4px;
  color: rgba(26,26,26,0.45);
}
.jny-intro-act-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.1px;
}
.jny-intro-act-where {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: 300;
  color: rgba(26,26,26,0.5);
  letter-spacing: 0.1px;
}
.jny-intro-act.is-current .jny-intro-act-num {
  color: var(--gold);
}
.jny-intro-act.is-current .jny-intro-act-name {
  color: var(--gold);
  font-style: italic;
}

@media (max-width: 900px) {
  .jny-intro { padding: 88px 24px 64px; align-items: flex-start; }
  .jny-intro::before { display: none; }
  .jny-intro-grid {
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 64px);
  }
  .jny-intro-side { order: 2; }
  .jny-intro-poster { aspect-ratio: 4 / 4.6; max-width: 460px; }
}

/* ---- Track + pinned stage ---- */
.jny-track {
  position: relative;
  height: 500vh;           /* 4 frames × ~1 viewport each + lead */
}
.jny-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* ---- Frame stack ---- */
.jny-frames {
  position: absolute;
  inset: 0;
}
.jny-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.jny-frame.is-active {
  opacity: 1;
  transform: scale(1.02);
}
.jny-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}

/* ---- Veil for legibility ---- */
.jny-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,10,0.55) 0%, rgba(7,7,10,0.15) 28%, rgba(7,7,10,0.25) 62%, rgba(7,7,10,0.85) 100%),
    linear-gradient(90deg, rgba(7,7,10,0.45) 0%, rgba(7,7,10,0) 45%);
  pointer-events: none;
}

/* ---- Top chrome ---- */
.jny-chrome-top {
  position: absolute;
  top: clamp(28px, 3.5vw, 48px);
  left: clamp(28px, 5vw, 72px);
  right: clamp(28px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 3;
}
.jny-section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.jny-section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold, #c9a961);
}
.jny-counter {
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.55);
}
.jny-counter-current {
  color: var(--gold);
  transition: opacity 0.4s ease;
}
.jny-counter-sep { margin: 0 8px; opacity: 0.5; }

/* ---- Progress (right edge, vertical) ---- */
.jny-progress {
  position: absolute;
  right: clamp(28px, 4vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  height: clamp(180px, 26vh, 280px);
  width: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 3;
}
.jny-progress-bar {
  position: absolute;
  left: 0; top: 0;
  width: 1px;
  height: 0%;
  background: var(--gold, #c9a961);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}
.jny-tick {
  position: absolute;
  left: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #07070a;
  border: 1px solid rgba(255,255,255,0.35);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.jny-tick[data-index="0"] { top: 0%; }
.jny-tick[data-index="1"] { top: 33.33%; }
.jny-tick[data-index="2"] { top: 66.66%; }
.jny-tick[data-index="3"] { top: 100%; margin-top: -7px; }
.jny-tick.is-active {
  background: var(--gold, #c9a961);
  border-color: var(--gold, #c9a961);
  transform: scale(1.35);
  box-shadow: 0 0 12px rgba(201,169,97,0.5);
}

/* ---- Captions ---- */
.jny-captions {
  position: absolute;
  left: clamp(28px, 5vw, 72px);
  bottom: clamp(48px, 7vw, 96px);
  right: clamp(80px, 12vw, 200px);
  max-width: 620px;
  z-index: 3;
}
.jny-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.jny-caption.is-active {
  opacity: 1;
  transform: translateY(0);
}
.jny-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3.5px;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}
.jny-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-left: 16px;
  position: relative;
}
.jny-eyebrow::before {
  content: '/';
  position: absolute;
  left: -12px;
  color: rgba(255,255,255,0.35);
}
.jny-head {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 10px 0 18px;
  color: #fff;
  max-width: 18ch;
}
.jny-head em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.jny-body {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ---- Outro removed — section now flows seamlessly into STATS ---- */

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .jny-progress { display: none; }
  .jny-captions {
    right: clamp(28px, 5vw, 60px);
  }
  .jny-head { font-size: clamp(1.6rem, 6vw, 2.6rem); }
  .jny-intro-title { font-size: clamp(2.6rem, 11vw, 4.8rem); }
}
@media (max-width: 600px) {
  .jny-track { height: 420vh; }
  .jny-chrome-top {
    top: 20px; left: 20px; right: 20px;
    font-size: 9px;
    letter-spacing: 3px;
  }
  .jny-captions {
    left: 20px; right: 20px; bottom: 36px;
  }
  .jny-body { font-size: 0.92rem; }
  .jny-intro { padding: 80px 24px; min-height: 72vh; }
  .jny-outro-line { width: 40px; }
}


/* ═══════════════════════════════════════════════════════════════
 *  LEGORA-STYLE PROBLEM ACCORDION
 *  Sticky image panel paired with a 5-item accordion (about.html)
 * ═══════════════════════════════════════════════════════════════ */
.lgr {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) clamp(32px, 6vw, 80px);
}
.lgr-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: clamp(40px, 4.5vw, 72px);
  align-items: start;
}
.lgr-visual {
  position: sticky;
  top: 110px;
  height: fit-content;
}
.lgr-visual-card {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 4px;
  background: #ECE8DF;
  overflow: hidden;
}
.lgr-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 450ms ease;
}
.lgr-img.is-active { opacity: 1; }

.lgr-content {
  display: flex;
  flex-direction: column;
}
.lgr-content .lgr-acc { margin-top: clamp(28px, 3.5vw, 44px); }

.lgr-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.lgr-hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--text);
  margin: 14px 0 0;
  max-width: 14ch;
}
.lgr-hl em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.lgr-acc {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(28,46,32,0.12);
}
.lgr-item {
  border-bottom: 1px solid rgba(28,46,32,0.12);
  position: relative;
}
.lgr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: clamp(16px, 1.4vw, 20px) 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: color 0.3s ease;
}
.lgr-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text);
  transition: color 0.3s ease;
}
.lgr-item.is-open .lgr-title { font-weight: 600; }
.lgr-item:not(.is-open) .lgr-row:hover .lgr-title { color: var(--gold); }
.lgr-item:not(.is-open) .lgr-row:hover .lgr-icon { opacity: 1; }

/* Icon — pure CSS plus/cross, never keyboard characters */
.lgr-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 14px;
  color: rgba(28,46,32,0.55);
  opacity: 0.85;
  transition: transform 300ms ease, color 300ms ease, opacity 300ms ease;
}
.lgr-icon::before,
.lgr-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
}
.lgr-icon::before {
  width: 11px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.lgr-icon::after {
  width: 1px;
  height: 11px;
  transform: translate(-50%, -50%);
}
.lgr-item.is-open .lgr-icon {
  color: var(--gold);
  opacity: 1;
  transform: rotate(45deg);
}

.lgr-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 400ms ease, opacity 300ms ease, padding 400ms ease;
  padding: 0;
}
.lgr-body p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 0.9vw, 0.92rem);
  font-weight: 300;
  line-height: 1.7;
  color: #6b6b6b;
  max-width: 44ch;
  margin: 0;
}
.lgr-item.is-open .lgr-body {
  max-height: 400px;
  opacity: 1;
  padding: 0 0 clamp(20px, 2vw, 28px) 0;
}

.lgr-row:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

/* Auto-advance progress bar — rides the TOP border of the active item,
   visually replacing the hairline divider as it fills left-to-right. */
.lgr-progress {
  position: absolute;
  left: 0;
  top: -1px;
  height: 1.5px;
  width: 100%;
  background: #0a0a0a;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}
.lgr-item.is-open .lgr-progress { opacity: 1; }
/* Progress fill is driven by JS (Web Animations API) for deterministic
   restart on each item swap. CSS only declares the resting state. */

@media (max-width: 900px) {
  .lgr {
    padding: clamp(48px, 8vw, 80px) clamp(16px, 5vw, 32px);
  }
  /* Mobile rebuild: eyebrow + headline first, then a prominent image,
     then the accordion. Use display:contents on .lgr-content so its
     children become direct flex children and can be reordered. */
  .lgr-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    align-items: stretch;
  }
  .lgr-content { display: contents; }

  .lgr-eyebrow {
    order: 1;
    font-size: 10px;
    letter-spacing: 3px;
  }
  .lgr-hl {
    order: 2;
    font-size: clamp(1.9rem, 6.6vw, 2.4rem);
    letter-spacing: -0.8px;
    line-height: 1.1;
    max-width: none;
    margin: 10px 0 clamp(18px, 4vw, 26px);
  }
  .lgr-visual {
    order: 3;
    position: static;
    height: auto;
    width: 100%;
    margin: 0 0 clamp(18px, 4vw, 28px);
  }
  .lgr-visual-card {
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    box-shadow: 0 24px 50px -28px rgba(28,46,32,0.35);
  }
  .lgr-acc {
    order: 4;
    margin-top: 0;
  }

  .lgr-title { font-size: 1rem; }
  .lgr-body p {
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: none;
  }
  .lgr-row { padding: 16px 0; }
  .lgr-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }
  .lgr-icon::before { width: 13px; height: 1.25px; }
  .lgr-icon::after  { width: 1.25px; height: 13px; }
  .lgr-item.is-open .lgr-body {
    max-height: 600px;
    padding: 0 0 18px 0;
  }
}
@media (max-width: 560px) {
  .lgr-hl { font-size: clamp(1.7rem, 7.6vw, 2.05rem); margin-bottom: 16px; }
  .lgr-visual-card { aspect-ratio: 4 / 5; }
  .lgr-row { padding: 14px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lgr-img,
  .lgr-row,
  .lgr-title,
  .lgr-icon,
  .lgr-body {
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
 *  CONTACT FORM — submission helpers (additive)
 *  Honeypot stays in the DOM (Netlify reads it) but is hidden
 *  from real users. Status text appears only when populated.
 * ═══════════════════════════════════════════════════════════════ */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  margin: 8px 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 0;
  color: var(--forest, #203B2A);
}
.form-status.is-error   { color: #b3261e; }
.form-status.is-success { color: #1f7a3a; }