
    /* ── Base Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #1c1917;
      min-width: 320px;
    }
    * { word-break: break-word; overflow-wrap: break-word; }
    img { max-width: 100%; height: auto; display: block; }

    .site-wrapper {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
    }

    /* ── Navbar ── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 120px;
    }
    .nav-links-desktop {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    #navbar.scrolled {
      background: rgba(255,255,255,0.97);
      box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    }
    .nav-logo-text { color: #fff; }
    #navbar.scrolled .nav-logo-text { color: #1e4d17; }
    #navbar.scrolled .nav-link { color: #292524; }
    #navbar.scrolled .nav-link:hover { color: #2d7a23; }
    #navbar.scrolled .nav-cta { background: #2d7a23; color: #fff; }

    .nav-link {
      color: rgba(255,255,255,0.92);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-decoration: none;
      padding: 6px 2px;
      position: relative;
      transition: color 0.25s;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: #5fb550;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-link.active { color: #8fd07f; }
    #navbar.scrolled .nav-link.active { color: #2d7a23; }

    .nav-cta {
      background: rgba(255,255,255,0.18);
      border: 1.5px solid rgba(255,255,255,0.5);
      color: #fff;
      padding: 10px 28px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.25s;
      backdrop-filter: blur(6px);
      text-decoration: none;
    }
    .nav-cta:hover { background: rgba(255,255,255,0.30); border-color: rgba(255,255,255,0.8); }

    /* ── Mobile Menu Button ── */
    #mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px; height: 40px;
      cursor: pointer;
      z-index: 200;
      background: transparent;
      border: none;
      padding: 4px;
    }
    #mobile-menu-btn .bar {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }
    #navbar.scrolled #mobile-menu-btn .bar { background: #292524; }
    #mobile-menu-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #mobile-menu-btn.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    #mobile-menu-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    #mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 150;
      background: rgba(15, 42, 11, 0.97);
      backdrop-filter: blur(16px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 8px;
      opacity: 0;
      transition: opacity 0.3s ease;
      padding: 40px 32px;
    }
    #mobile-nav.open { display: flex; opacity: 1; }
    .mobile-nav-link {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      padding: 12px 0;
      letter-spacing: -0.01em;
      transition: color 0.2s;
      text-align: center;
    }
    .mobile-nav-link:hover { color: #8fd07f; }
    .mobile-nav-cta {
      margin-top: 20px;
      background: #3d9930;
      color: #fff;
      padding: 14px 40px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.25s;
    }
    .mobile-nav-cta:hover { background: #2d7a23; }

    /* ── Shared Typography ── */
    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #3d9930;
      margin-bottom: 16px;
    }
    .section-label-light { color: #8fd07f; }
    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 800;
      line-height: 1.2;
      color: #183f12;
      letter-spacing: -0.02em;
    }
    .section-title-light { color: #fff; }
    .section-body {
      font-size: 16px;
      line-height: 1.8;
      color: #57534e;
    }
    .divider-accent {
      width: 56px;
      height: 4px;
      background: linear-gradient(90deg, #3d9930, #8fd07f);
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .btn-green {
      background: linear-gradient(135deg, #3d9930, #24611c);
      color: #fff;
      padding: 14px 36px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(61,153,48,0.35);
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.01em;
    }
    .btn-green:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(61,153,48,0.45);
    }

    /* ── Fade-up Animations ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }
    .fade-up-delay-4 { transition-delay: 0.4s; }
    .fade-up-delay-5 { transition-delay: 0.5s; }

    /* ══════════════════════════════════════
       HERO — PAGE BANNER
    ══════════════════════════════════════ */
    #page-hero {
      position: relative;
      width: 100%;
      height: 520px;
      min-height: 420px;
      overflow: hidden;
    }
    #page-hero .site-wrapper {
      height: 100%;
    }
    .page-hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/large_15504_1778494822629_8tpx7ewmfik_5880e4834d.webp');
      background-size: cover;
      background-position: center 40%;
      transform: scale(1.04);
      transition: transform 8s ease;
    }
    #page-hero.loaded .page-hero-bg { transform: scale(1); }
    .page-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(24,63,18,0.80) 0%,
        rgba(30,77,23,0.62) 50%,
        rgba(0,0,0,0.30) 100%
      );
    }
    .page-hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      height: 100%;
      padding: 0 120px;
      text-align: left;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: #8fd07f; }
    .breadcrumb span { color: #8fd07f; }
    .page-hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(36px, 5vw, 72px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.1;
      text-shadow: 0 4px 32px rgba(0,0,0,0.25);
      margin: 0;
    }
    .page-hero-title span { color: #8fd07f; }
    .page-hero-sub {
      margin-top: 16px;
      font-size: clamp(14px, 1.4vw, 17px);
      color: rgba(255,255,255,0.75);
      max-width: min(560px, 100%);
      line-height: 1.75;
    }

    /* ══════════════════════════════════════
       SECTION A — WHO WE ARE (intro text)
    ══════════════════════════════════════ */
    #who-we-are {
      padding: 100px 120px;
      background: #fff;
    }
    /* Two-column layout: left text + right image grid */
    .who-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }
    .who-text-col {
      /* left column: all text content */
    }
    .who-intro-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(24px, 2.6vw, 38px);
      font-weight: 800;
      color: #183f12;
      letter-spacing: -0.02em;
      line-height: 1.22;
      margin-bottom: 28px;
    }
    .who-intro-title span { color: #3d9930; }
    .who-text-col p {
      font-size: 15.5px;
      line-height: 1.85;
      color: #57534e;
      margin-bottom: 20px;
    }
    .who-body-full {
      padding: 28px 36px;
      background: linear-gradient(135deg, #f2f9f0, #e8f5e3);
      border-left: 4px solid #3d9930;
      border-radius: 0 16px 16px 0;
      margin-top: 12px;
    }
    .who-body-full p {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(15px, 1.4vw, 18px);
      font-weight: 600;
      color: #1e4d17;
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 0;
    }
    /* Right column: image grid */
    .who-img-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
      align-self: start;
    }
    /* Large hero image spans both columns at top */
    .who-img-hero {
      grid-column: 1 / 3;
      border-radius: 18px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      box-shadow: 0 20px 56px rgba(24,63,18,0.14), 0 4px 16px rgba(0,0,0,0.08);
      position: relative;
    }
    /* Two smaller images below */
    .who-img-small {
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      box-shadow: 0 12px 36px rgba(24,63,18,0.12), 0 2px 8px rgba(0,0,0,0.07);
      position: relative;
    }
    /* Shared image styles */
    .who-img-hero img,
    .who-img-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    /* Hover: slight zoom */
    .who-img-hero:hover img,
    .who-img-small:hover img {
      transform: scale(1.06);
    }
    /* Subtle gradient overlay on images */
    .who-img-hero::after,
    .who-img-small::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(24,63,18,0.22) 0%, transparent 55%);
      pointer-events: none;
      border-radius: inherit;
    }
    .who-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
      padding-top: 60px;
      border-top: 1px solid #e0f2d8;
    }
    .who-stat {
      text-align: center;
    }
    .who-stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(30px, 3.5vw, 52px);
      font-weight: 900;
      background: linear-gradient(135deg, #3d9930, #24611c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .who-stat-label {
      margin-top: 8px;
      font-size: 13px;
      color: #57534e;
      font-weight: 500;
      line-height: 1.5;
    }

    /* ══════════════════════════════════════
       SECTION B — OUR VALUES
    ══════════════════════════════════════ */
    #our-values {
      padding: 100px 120px;
      background: linear-gradient(160deg, #123f25 0%, #1f6335 56%, #2d7d3d 100%);
      position: relative;
      overflow: hidden;
    }
    #our-values::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(143,208,127,0.22) 0%, transparent 70%);
      border-radius: 50%;
    }
    #our-values::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -100px;
      width: 450px; height: 450px;
      background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
      border-radius: 50%;
    }
    .values-header {
      text-align: center;
      margin-bottom: 72px;
      position: relative;
      z-index: 2;
    }
    .values-header .section-label { color: #bce7ad; }
    .values-header .section-title { color: #f4fff0; }
    .values-header .divider-accent {
      background: linear-gradient(90deg, #bce7ad, #ffffff);
      margin: 0 auto 24px;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
      position: relative;
      z-index: 2;
    }
    .value-card {
      position: relative;
      min-height: 340px;
      background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 20px;
      padding: 34px 22px 58px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 18px 48px rgba(5,28,14,0.20);
      backdrop-filter: blur(4px) saturate(1.08);
      -webkit-backdrop-filter: blur(4px) saturate(1.08);
      display: flex;
      flex-direction: column;
      transition: all 0.35s;
    }
    .value-card::before {
      content: none;
    }
    .value-card::after {
      content: none;
    }
    .value-card:hover {
      background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
      border-color: rgba(255,255,255,0.32);
      transform: translateY(-5px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 24px 60px rgba(5,28,14,0.30);
    }
    .value-icon {
      width: 96px; height: 96px;
      background: transparent;
      border: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(5,28,14,0.18);
      padding: 0;
    }
    .value-icon img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }
    .value-card:hover .value-icon img { transform: scale(1.06); }
    .value-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: #f4fff0;
      margin-bottom: 12px;
    }
    .value-card p {
      font-size: 14px;
      color: rgba(244,255,240,0.78);
      line-height: 1.75;
    }
    .value-card .value-tag {
      display: inline-block;
      align-self: flex-start;
      margin-top: auto;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #f4fff0;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.24);
      padding: 4px 12px;
      border-radius: 100px;
    }

    /* ══════════════════════════════════════
       SECTION C — OUR GROWTH (Timeline)
    ══════════════════════════════════════ */
    #our-growth {
      padding: 100px 120px;
      background: #fff;
    }
    .growth-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-bottom: 80px;
    }
    .growth-header-right p {
      font-size: 16px;
      line-height: 1.85;
      color: #57534e;
    }

    /* Timeline layout */
    .timeline {
      position: relative;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #3d9930, #bde5b0, #3d9930);
      transform: translateX(-50%);
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      gap: 0;
      margin-bottom: 64px;
      align-items: start;
      position: relative;
    }
    .timeline-item:last-child { margin-bottom: 0; }

    /* Even items: content on left, empty on right */
    .timeline-item.left .tl-content { grid-column: 1; text-align: right; padding-right: 48px; }
    .timeline-item.left .tl-node   { grid-column: 2; }
    .timeline-item.left .tl-empty  { grid-column: 3; }

    /* Odd items: empty on left, content on right */
    .timeline-item.right .tl-empty   { grid-column: 1; }
    .timeline-item.right .tl-node    { grid-column: 2; }
    .timeline-item.right .tl-content { grid-column: 3; text-align: left; padding-left: 48px; }

    .tl-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .tl-dot {
      width: 20px; height: 20px;
      background: #3d9930;
      border-radius: 50%;
      border: 4px solid #fff;
      box-shadow: 0 0 0 3px #3d9930;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .tl-phase-badge {
      margin-top: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, #3d9930, #24611c);
      padding: 4px 10px;
      border-radius: 100px;
      white-space: nowrap;
    }

    /* ── Timeline tail: vertical ellipsis + "To be continued" ── */
    .timeline-tail {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 40px;
      position: relative;
      z-index: 2;
    }
    .tl-tail-dots {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
    }
    .tl-tail-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #3d9930;
      opacity: 0;
      animation: tailDotFade 1.6s ease-in-out infinite;
    }
    .tl-tail-dot:nth-child(1) { animation-delay: 0s; }
    .tl-tail-dot:nth-child(2) { animation-delay: 0.3s; }
    .tl-tail-dot:nth-child(3) { animation-delay: 0.6s; }
    @keyframes tailDotFade {
      0%   { opacity: 0.15; transform: scaleX(1); }
      40%  { opacity: 1;    transform: scaleX(1.25); }
      80%  { opacity: 0.15; transform: scaleX(1); }
      100% { opacity: 0.15; transform: scaleX(1); }
    }
    .tl-tail-label {
      margin-top: 18px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #8fd07f;
      font-family: 'Outfit', sans-serif;
      opacity: 0;
      animation: tailLabelReveal 1.2s ease-out 0.9s forwards;
    }
    @keyframes tailLabelReveal {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0);   }
    }
    .tl-card {
      background: #fff;
      border: 1.5px solid #e0f2d8;
      border-radius: 20px;
      padding: 36px 36px;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }
    .tl-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #3d9930, #8fd07f);
    }
    .tl-card:hover {
      border-color: #bde5b0;
      box-shadow: 0 24px 60px rgba(30,77,23,0.10);
      transform: translateY(-4px);
    }
    .tl-card-phase {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #3d9930;
      margin-bottom: 10px;
    }
    .tl-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(16px, 1.6vw, 20px);
      font-weight: 800;
      color: #183f12;
      line-height: 1.25;
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }
    .tl-card p {
      font-size: 14px;
      color: #57534e;
      line-height: 1.8;
    }
    .tl-card .tl-highlight {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .tl-highlight span {
      font-size: 12px;
      font-weight: 600;
      color: #2d7a23;
      background: #f2f9f0;
      border: 1px solid #bde5b0;
      padding: 4px 12px;
      border-radius: 100px;
    }
    /* Future phase styling */
    .tl-card.future {
      background: linear-gradient(135deg, #f2f9f0, #edf7e5);
      border-color: #bde5b0;
    }
    .tl-card.future::before {
      background: linear-gradient(90deg, #8fd07f, #bde5b0);
    }

    /* ── Timeline image frame ── */
    .tl-img-frame {
      padding-left: 48px;
      display: flex;
      align-items: center;
    }
    .timeline-item.left .tl-img-frame {
      padding-left: 48px;
      padding-right: 0;
    }
    .timeline-item.right .tl-img-frame {
      padding-left: 0;
      padding-right: 48px;
      justify-content: flex-end;
    }
    .tl-img-inner {
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      border: 1.5px solid #e0f2d8;
      box-shadow: 0 16px 48px rgba(30,77,23,0.10);
      position: relative;
      aspect-ratio: 4/3;
      background: #f2f9f0;
      transition: all 0.35s;
    }
    .tl-img-inner:hover {
      box-shadow: 0 28px 72px rgba(30,77,23,0.16);
      transform: translateY(-4px);
    }
    .tl-img-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.6s ease;
    }
    .tl-img-inner:hover img { transform: scale(1.06); }
    .tl-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(24,63,18,0.50) 0%,
        transparent 55%
      );
    }
    .tl-img-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 20px 24px;
      color: #fff;
    }
    .tl-img-caption span {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #8fd07f;
      display: block;
      margin-bottom: 4px;
    }
    .tl-img-caption p {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      color: #fff;
      margin: 0;
    }

    /* ══════════════════════════════════════
       SECTION D — OUR TEAM
    ══════════════════════════════════════ */
    #our-team {
      padding: 100px 120px;
      background: #f2f9f0;
    }
    .team-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .team-tagline {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #3d9930;
      margin-bottom: 16px;
    }
    .team-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 900;
      color: #183f12;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 24px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    /* Paragraph above photo */
    .team-body-top {
      max-width: 780px;
      margin: 0 auto 48px;
      text-align: center;
    }
    .team-body-top p {
      font-size: 15.5px;
      line-height: 1.9;
      color: #57534e;
    }
    /* Paragraph below photo */
    .team-body-bottom {
      max-width: 780px;
      margin: 48px auto 0;
      text-align: center;
    }
    .team-body-bottom p {
      font-size: 15.5px;
      line-height: 1.9;
      color: #57534e;
    }
    .team-photo-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      max-width: 1000px;
      margin: 0 auto;
      box-shadow: 0 40px 100px rgba(30,77,23,0.16);
      aspect-ratio: 16/9;
    }
    .team-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.7s ease;
    }
    .team-photo-wrap:hover img { transform: scale(1.03); }
    .team-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(24,63,18,0.55) 0%,
        transparent 60%
      );
    }
    .team-photo-caption {
      position: absolute;
      bottom: 32px;
      left: 40px;
      right: 40px;
      color: #fff;
    }
    .team-photo-caption h4 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 700;
    }
    .team-photo-caption p {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      margin-top: 4px;
    }
    .team-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 48px auto 0;
    }
    .team-pillar {
      background: #fff;
      border-radius: 16px;
      padding: 28px 24px;
      border: 1.5px solid #e0f2d8;
      text-align: center;
      transition: all 0.3s;
    }
    .team-pillar:hover {
      border-color: #8fd07f;
      box-shadow: 0 16px 48px rgba(30,77,23,0.10);
      transform: translateY(-4px);
    }
    .team-pillar .tp-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #e0f2d8, #bde5b0);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2d7a23;
      margin: 0 auto 14px;
    }
    .team-pillar h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #183f12;
      margin-bottom: 6px;
    }
    .team-pillar p {
      font-size: 13px;
      color: #57534e;
      line-height: 1.6;
    }

    /* ══════════════════════════════════════
       SECTION E — OUR BRANDS
    ══════════════════════════════════════ */
    #our-brands {
      padding: 100px 120px;
      background: #fff;
    }
    .brands-header {
      margin-bottom: 64px;
    }
    .brands-header .section-label { margin-bottom: 16px; }
    .brands-header .section-title { margin-bottom: 12px; }
    .brands-header-sub {
      font-size: 16px;
      color: #57534e;
      line-height: 1.7;
      max-width: 560px;
    }
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      align-items: center;
    }
    .brand-card {
      border: none;
      border-radius: 0;
      overflow: hidden;
      transition: all 0.35s;
      position: relative;
      background: transparent;
    }
    .brand-card::before {
      content: none;
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #3d9930, #8fd07f);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .brand-card:hover {
      transform: translateY(-6px);
    }
    .brand-card:hover::before { transform: scaleX(1); }
    .brand-img-wrap {
      width: min(82%, 300px);
      aspect-ratio: 4/2.4;
      overflow: hidden;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }
    .brand-img-wrap img {
      width: 88%;
      height: 88%;
      object-fit: contain;
      transition: transform 0.55s ease;
    }
    .brand-img-wrap img.c158272 {
      width: 118%;
      height: 118%;
    }
    .brand-card:hover .brand-img-wrap img { transform: scale(1.04); }
    .brand-logo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: transparent;
    }
    .brand-logo-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, #3d9930, #24611c);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }
    .brand-logo-name {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #183f12;
      letter-spacing: -0.02em;
    }
    .brand-logo-name span { color: #3d9930; }
    .brand-info {
      padding: 28px 32px 32px;
    }
    .brand-info h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #183f12;
      margin-bottom: 10px;
    }
    .brand-info p {
      font-size: 14px;
      color: #57534e;
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .brand-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .brand-tags span {
      font-size: 11px;
      font-weight: 600;
      color: #2d7a23;
      background: #f2f9f0;
      border: 1px solid #bde5b0;
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    #footer {
      background: #0f2a0b;
      padding: 80px 120px 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      margin-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 60px;
    }
    .footer-brand h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .footer-brand h2 span { color: #5fb550; }
    .footer-brand p {
      margin-top: 16px;
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      line-height: 1.8;
      max-width: min(300px, 100%);
    }
    .footer-socials { display: flex; gap: 12px; margin-top: 28px; }
    .social-btn {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      cursor: pointer;
      transition: all 0.25s;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .social-btn:hover {
      background: #3d9930;
      color: #fff;
      border-color: #3d9930;
      transform: translateY(-2px);
    }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #5fb550; }
    .footer-contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 16px;
    }
    .footer-contact-item .icon { color: #5fb550; flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
    .footer-bottom a {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      margin-left: 24px;
      transition: color 0.2s;
    }
    .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1439px) {
      .nav-inner { padding: 20px 60px; }
      #page-hero .page-hero-content { padding: 0 60px 72px; }
      #who-we-are, #our-values, #our-growth, #our-team, #our-brands { padding: 80px 60px; }
      #footer { padding: 72px 60px 36px; }
      .timeline::before { left: 50%; }
    }
    @media (max-width: 1023px) {
      .nav-inner { padding: 16px 40px; }
      .nav-links-desktop { display: none; }
      #mobile-menu-btn { display: flex; }
      #page-hero .page-hero-content { padding: 0 40px 60px; }
      #who-we-are, #our-values, #our-growth, #our-team, #our-brands { padding: 72px 40px; }
      #footer { padding: 64px 40px 32px; }

      .who-layout { grid-template-columns: 1fr; gap: 40px; }
      .who-img-col { grid-template-columns: 1fr 1fr; }
      .who-stats { grid-template-columns: repeat(2, 1fr); }
      .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .growth-header { grid-template-columns: 1fr; gap: 32px; }

      /* Flatten timeline on tablet */
      .timeline::before { display: none; }
      .timeline-item { grid-template-columns: 1fr; }
      .timeline-item.left .tl-content,
      .timeline-item.right .tl-content { grid-column: 1; text-align: left; padding: 0; }
      .timeline-item.left .tl-node,
      .timeline-item.right .tl-node { grid-column: 1; flex-direction: row; gap: 12px; justify-content: flex-start; margin-bottom: 16px; order: -1; }
      .timeline-item.left .tl-img-frame,
      .timeline-item.right .tl-img-frame { grid-column: 1; padding: 0; margin-top: 16px; justify-content: flex-start; }
      .tl-dot { margin-top: 2px; }

      /* team-body-top / bottom responsive — no changes needed, already single column */
      .team-pillars { grid-template-columns: repeat(2, 1fr); }
      .brands-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 767px) {
      .nav-inner { padding: 14px 20px; }
      #page-hero { height: 380px; }
      #page-hero .page-hero-content { padding: 0 20px 48px; }
      #who-we-are, #our-values, #our-growth, #our-team, #our-brands { padding: 56px 20px; }
      #footer { padding: 56px 20px 28px; }

      .who-img-col { grid-template-columns: 1fr; }
      .who-img-hero { grid-column: 1; }
      .who-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .values-grid { grid-template-columns: 1fr; }
      .brands-grid { grid-template-columns: 1fr; }
      .team-pillars { grid-template-columns: 1fr 1fr; gap: 12px; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .footer-bottom div { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
      .footer-bottom a { margin-left: 0; }
      .tl-card { padding: 24px 20px; }
    }
    @media (max-width: 399px) {
      .who-stats { grid-template-columns: 1fr 1fr; }
      .team-pillars { grid-template-columns: 1fr; }
    }
  

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

#ib9mt {
  top: 200px;
}

#i0uvn {
  color: #2d7a23;
}

#ihi3ni {
  font-family: Times New Roman;
}

.c210561 {
  color: #fff;
  width: 26px;
  height: 26px;
}

.c210600 {
  color: #8fd07f;
}

.c210558 {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #3d9930, #24611c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c210587 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.c210555 {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 200;
  position: relative;
}

.c211259 {
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 700;
  color: #2d7a23;
  margin-bottom: 20px;
}

.c211147 {
  margin-bottom: 48px;
}

.c211558 {
  max-width: 580px;
  margin: 0 auto;
}

.c211616 {
  width: 26px;
  height: 26px;
}

.c211709 {
  width: 26px;
  height: 26px;
}

.c211802 {
  width: 26px;
  height: 26px;
}

.c211914 {
  width: 26px;
  height: 26px;
}

.c212007 {
  width: 26px;
  height: 26px;
}

.c211903 {
  margin-top: 24px;
}

.c212180 {
  margin-bottom: 16px;
}

.c212198 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3d9930;
  text-transform: uppercase;
}

.c212368 {
  margin-top: 12px;
}

.c212789 {
  margin-top: 12px;
}

.c212971 {
  margin-top: 12px;
}

.c213233 {
  color: #8fd07f;
}

.c213221 {
  background: linear-gradient(to top, rgba(24, 63, 18, 0.55) 0%, transparent 55%);
}

.c213211 {
  border-color: #bde5b0;
}

.c213323 {
  background: #8fd07f;
  box-shadow: 0 0 0 3px #8fd07f;
}

.c213332 {
  background: linear-gradient(135deg, #5fb550, #3d9930);
}

.c213385 {
  color: #5fb550;
}

.c213439 {
  margin-top: 12px;
}

.c213949 {
  margin-bottom: 12px;
}

.c214050 {
  width: 30px;
  height: 30px;
}

.c214161 {
  width: 30px;
  height: 30px;
}

.c214387 {
  width: 17px;
  height: 17px;
}

.c214416 {
  width: 17px;
  height: 17px;
}

.c214445 {
  width: 17px;
  height: 17px;
}

.c214869 {
  width: 16px;
  height: 16px;
}

.c214971 {
  width: 16px;
  height: 16px;
}

.c215018 {
  width: 16px;
  height: 16px;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

#iu4n8 {
  background-image: unset;
  background-repeat: unset;
  background-position: unset;
  background-attachment: unset;
  background-size: unset;
}

#ikaza8 {
  text-align: left;
}

#iwdafa {
  text-align: left;
}

#i9vhzp {
  text-align: left;
}

#i8k4ss {
  text-align: left;
}

#iw7oti {
  text-align: left;
}

#inkt9l {
  text-align: left;
}

#ivkkuv {
  text-align: left;
}

#ixl4sn {
  text-align: left;
}

.c155446 {
  background-repeat: repeat;
  background-position: left center;
  background-attachment: scroll;
  background-size: cover;
  background-image: url('../images/large_15504_1778494822629_8tpx7ewmfik_5880e4834d.webp');
}

.c158219 {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.c158272 {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.c284619 {
  color: black;
}

.c501774 {
  color: black;
}
