    /* ─── RESET & BASE ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:   #0f5c20;
      --green:        #1a8c32;
      --green-mid:    #22a83d;
      --green-light:  #d6f0dc;
      --gold:         #c8a44a;
      --gold-light:   #f0d78e;
      --cream:        #faf7f2;
      --cream-dark:   #f0ead8;
      --charcoal:     #1c1c1c;
      --warm-gray:    #6b6459;
      --white:        #ffffff;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-heading: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', sans-serif;
      --radius:       14px;
      --transition:   0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; }
    a   { text-decoration: none; color: inherit; }
    ul  { list-style: none; }

    /* ─── SCROLLBAR ─────────────────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream-dark); }
    ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

    /* ─── UTILITY ───────────────────────────────────────────────────────── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 18px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--charcoal);
    }
    .section-title span { color: var(--green); }

    .section-subtitle {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--warm-gray);
      max-width: 580px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 30px;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      cursor: pointer;
      border: none;
      transition: all var(--transition);
      text-decoration: none;
    }
    .btn-primary {
      background: var(--green);
      color: #fff;
      box-shadow: 0 4px 24px rgba(26,140,50,0.35);
    }
    .btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(26,140,50,0.45);
    }
    .btn-outline {
      background: transparent;
      color: var(--green-dark);
      border: 2px solid var(--green-dark);
    }
    .btn-outline:hover {
      background: var(--green-dark);
      color: #fff;
      transform: translateY(-2px);
    }

    .placeholder-img {
      background: linear-gradient(135deg, #d0e8d4 0%, #b8dbbf 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-align: center;
      padding: 10px;
    }
    
    .hero-img {
      border-radius: 12%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-align: center;
      padding: 10px;
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12%;
    }

    .vision-img {
      border-radius: 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-align: center;
      padding: 10px;
    }

    .vision-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 5%;
    }

    .about-img {
      border-radius: 3%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-align: center;
      padding: 10px;
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10%;
    }

    /* ─── NAV ───────────────────────────────────────────────────────────── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 18px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.3s ease;
    }
    #navbar.scrolled {
      background: rgba(250,247,242,0.96);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 2px 30px rgba(0,0,0,0.08);
      padding: 12px 5%;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 24px;
    }
    .nav-logo img {
      height: 78px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
    }
    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--green-dark);
      letter-spacing: 0.05em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--charcoal);
      letter-spacing: 0.04em;
      position: relative;
      transition: color var(--transition);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 2px;
      background: var(--green);
      transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--green); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      padding: 10px 22px;
      font-size: 0.82rem;
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--charcoal);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(250,247,242,0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 600;
      color: var(--green-dark);
      letter-spacing: 0.06em;
    }
    .mobile-close {
      position: absolute;
      top: 22px; right: 22px;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--charcoal);
    }

    /* ─── HERO ──────────────────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }

    .hero-bg-leaf {
      position: absolute;
      top: -120px; right: -100px;
      width: 680px;
      height: 680px;
      background: radial-gradient(ellipse at center, rgba(26,140,50,0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-bg-dots {
      position: absolute;
      bottom: 60px; left: 5%;
      width: 180px;
      height: 180px;
      background-image: radial-gradient(circle, var(--green-mid) 1.5px, transparent 1.5px);
      background-size: 20px 20px;
      opacity: 0.15;
      pointer-events: none;
    }

    .hero-content {
      padding: 120px 5% 80px 8%;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-light);
      color: var(--green-dark);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hero-badge::before {
      content: '●';
      font-size: 8px;
      color: var(--green);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero-headline {
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 900;
      line-height: 1.06;
      color: var(--charcoal);
      margin-bottom: 24px;
    }
    .hero-headline .accent {
      color: var(--green);
      font-style: italic;
    }
    .hero-headline .gold { color: var(--gold); }

    .hero-sub {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--warm-gray);
      margin-bottom: 40px;
      max-width: 480px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    .hero-stat-num {
      font-family: var(--font-heading);
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--green-dark);
    }
    .hero-stat-label {
      font-size: 0.75rem;
      color: var(--warm-gray);
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-top: 2px;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      overflow: hidden;
    }

    .hero-img-container {
      position: relative;
      width: 85%;
      max-width: 560px;
    }
    .hero-main-img {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 28px 28px 100px 28px;
      object-fit: cover;
      overflow: hidden;
    }
    .hero-main-img .placeholder-img {
      width: 100%;
      height: 100%;
      font-size: 15px;
    }

    .hero-float-card {
      position: absolute;
      background: white;
      border-radius: var(--radius);
      padding: 14px 20px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
      animation: float 4s ease-in-out infinite;
    }
    .hero-float-card.card-1 {
      top: 18%;
      left: -60px;
      animation-delay: 0s;
    }
    .hero-float-card.card-2 {
      bottom: 22%;
      right: -50px;
      animation-delay: 1.5s;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .float-card-icon { font-size: 1.5rem; margin-bottom: 4px; }
    .float-card-title { font-size: 0.78rem; font-weight: 600; color: var(--charcoal); }
    .float-card-sub   { font-size: 0.68rem; color: var(--warm-gray); margin-top: 2px; }

    .hero-green-bg {
      position: absolute;
      top: 8%; bottom: 8%;
      right: 0;
      width: 90%;
      background: linear-gradient(160deg, #1a8c32 0%, #0f5c20 100%);
      border-radius: 40px 0 0 40px;
      z-index: -1;
    }

    /* ─── ABOUT ─────────────────────────────────────────────────────────── */
    #about {
      padding: 110px 8%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      background: white;
    }

    .about-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .about-img-item {
      border-radius: 18px;
      overflow: hidden;
    }
    .about-img-item:first-child {
      grid-row: span 2;
      border-radius: 18px 18px 100px 18px;
    }
    .about-img-item .placeholder-img {
      width: 100%;
      height: 100%;
      min-height: 160px;
    }
    .about-img-item:first-child .placeholder-img { min-height: 340px; }

    .about-year-badge {
      background: var(--green);
      color: white;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: -20px;
      left: -20px;
      box-shadow: 0 8px 30px rgba(26,140,50,0.4);
    }
    .about-img-wrapper { position: relative; }

    .about-since { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
    .about-year  { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }

    .about-content { }
    .about-desc {
      margin: 20px 0 32px;
      font-size: 1rem;
      line-height: 1.85;
      color: var(--warm-gray);
    }

    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 36px;
    }
    .about-value-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 20px;
      border-left: 3px solid var(--gold);
      transition: transform var(--transition);
    }
    .about-value-card:hover { transform: translateY(-4px); }
    .about-value-icon { font-size: 1.4rem; margin-bottom: 8px; }
    .about-value-title { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 4px; }
    .about-value-desc  { font-size: 0.78rem; color: var(--warm-gray); line-height: 1.6; }

    /* ─── JOURNEY / TIMELINE ─────────────────────────────────────────────── */
    #journey {
      padding: 110px 8%;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }
    #journey::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--green), var(--gold), transparent);
    }

    .journey-header {
      text-align: center;
      margin-bottom: 70px;
    }
    .journey-header .section-label { justify-content: center; }

    .timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--green-light), var(--green), var(--green-light));
      transform: translateX(-50%);
    }

    .timeline-item {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      margin-bottom: 60px;
      position: relative;
    }
    .timeline-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .timeline-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green);
      border: 4px solid var(--cream);
      box-shadow: 0 0 0 2px var(--green);
      top: 10px;
      z-index: 1;
    }
    .timeline-dot.gold { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }

    .timeline-content {
      width: calc(50% - 40px);
      background: white;
      border-radius: var(--radius);
      padding: 26px 28px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      position: relative;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .timeline-content:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }
    .timeline-item:nth-child(even) .timeline-content {
      margin-right: calc(50% + 40px);
    }
    .timeline-item:nth-child(odd) .timeline-content {
      margin-left: calc(50% + 40px);
    }

    .timeline-year {
      font-family: var(--font-heading);
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .timeline-title {
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--charcoal);
      margin-bottom: 8px;
    }
    .timeline-desc {
      font-size: 0.85rem;
      color: var(--warm-gray);
      line-height: 1.7;
    }

    /* ─── STORES ─────────────────────────────────────────────────────────── */
    #stores {
      padding: 110px 8%;
      background: var(--green-dark);
      color: white;
      position: relative;
      overflow: hidden;
    }
    #stores::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200,164,74,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .stores-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      gap: 30px;
    }
    .stores-header .section-label { color: var(--gold-light); }
    .stores-header .section-title { color: white; }
    .stores-header .section-subtitle { color: rgba(255,255,255,0.65); }

    .stores-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .store-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      overflow: hidden;
      transition: all var(--transition);
      backdrop-filter: blur(10px);
    }
    .store-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .store-img {
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .store-img .placeholder-img {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(26,140,50,0.3) 0%, rgba(15,92,32,0.5) 100%);
      color: rgba(255,255,255,0.6);
    }

    .store-info { padding: 24px; }
    .store-badge {
      display: inline-block;
      background: rgba(200,164,74,0.2);
      color: var(--gold-light);
      border: 1px solid rgba(200,164,74,0.4);
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .store-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; color: white; }
    .store-location { font-size: 0.82rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; }

    /* ─── PRODUCTS ───────────────────────────────────────────────────────── */
    #products {
      padding: 110px 8%;
      background: white;
    }

    .products-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .products-header .section-label { justify-content: center; }
    .products-header .section-subtitle { margin: 16px auto 0; }

    .products-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 48px;
    }
    .products-tab {
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      cursor: pointer;
      border: 2px solid var(--cream-dark);
      background: transparent;
      color: var(--warm-gray);
      transition: all 0.25s ease;
    }
    .products-tab.active,
    .products-tab:hover {
      background: var(--green);
      color: white;
      border-color: var(--green);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .product-card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--cream);
      transition: all var(--transition);
      cursor: pointer;
      group: true;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    }

    .product-img {
      aspect-ratio: 1;
      overflow: hidden;
      position: relative;
    }
    .product-img .placeholder-img {
      width: 100%;
      height: 100%;
      font-size: 13px;
      overflow: hidden;
    }
    .product-img .placeholder-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.10);
        display: block;
    }
    .product-img-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,140,50,0.0);
      transition: background 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-card:hover .product-img-overlay { background: rgba(26,140,50,0.15); }

    .product-info {
      padding: 20px;
    }
    .product-category {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--green);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .product-name {
      font-weight: 600;
      font-size: 1rem;
      color: var(--charcoal);
      margin-bottom: 6px;
    }
    .product-desc {
      font-size: 0.78rem;
      color: var(--warm-gray);
      line-height: 1.6;
    }

    /* ─── TEAM ──────────────────────────────────────────────────────────── */
#team {
  padding: 100px 8%;
  background: white;
}

.team-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.11);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.04);
}

.team-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--green);
  color: white;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.team-info {
  padding: 22px 22px 26px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.team-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────── */
#testimonials {
  padding: 100px 8%;
  background: var(--cream);
}

.testi-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.testi-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Video embed */
.testi-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--charcoal);
}

.testi-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Image variant */
.testi-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--cream-dark) 100%);
}

.testi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.testi-card:hover .testi-img-wrap img {
  transform: scale(1.04);
}

.testi-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,92,32,0.15) 0%, transparent 60%);
}

/* Shared body */
.testi-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.testi-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testi-location {
  font-size: 0.76rem;
  color: var(--warm-gray);
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #team { padding: 70px 5%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  #testimonials { padding: 70px 5%; }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

    /* ─── STATS ──────────────────────────────────────────────────────────── */
    #stats {
      padding: 90px 8%;
      background: linear-gradient(135deg, var(--green-dark) 0%, #0a4015 100%);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #stats::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(200,164,74,0.12) 0%, transparent 60%);
    }

    .stats-tagline {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      font-style: italic;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      margin-bottom: 60px;
    }

    .stats-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

    .stat-item { }
    .stat-number {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 10px;
    }
    .stat-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .stat-separator {
      width: 1px;
      height: 120px;
      background: rgba(255,255,255,0.15);
      flex-shrink: 0;
    }

    .stat-item {
      flex: 1;
    }

    /* ─── WHY MONKIS ──────────────────────────────────────────────────────── */
    #why {
      padding: 110px 8%;
      background: var(--cream);
    }

    .why-header { margin-bottom: 60px; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .why-card {
      background: white;
      border-radius: 20px;
      padding: 36px 30px;
      transition: all var(--transition);
      border-bottom: 3px solid transparent;
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--gold));
      opacity: 0;
      transition: opacity var(--transition);
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    .why-card:hover::before { opacity: 1; }

    .why-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      transition: background var(--transition);
    }
    .why-card:hover .why-icon { background: var(--green); }

    .why-title {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--charcoal);
      margin-bottom: 10px;
    }
    .why-desc {
      font-size: 0.85rem;
      color: var(--warm-gray);
      line-height: 1.75;
    }

    /* ─── VISION ──────────────────────────────────────────────────────────── */
    #vision {
      padding: 110px 8%;
      background: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .vision-content { }

    .vision-quote {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-style: italic;
      line-height: 1.6;
      color: var(--charcoal);
      margin: 28px 0;
      padding-left: 24px;
      border-left: 3px solid var(--gold);
    }

    .vision-desc {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--warm-gray);
      margin-bottom: 32px;
    }

    .vision-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 36px;
    }
    .vision-pillar {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px;
      background: var(--cream);
      border-radius: var(--radius);
    }
    .vision-pillar-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .vision-pillar-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
    .vision-pillar-desc  { font-size: 0.78rem; color: var(--warm-gray); line-height: 1.6; }

    .vision-visual {
      position: relative;
    }
    .vision-main-img {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 28px;
      overflow: hidden;
    }
    .vision-main-img .placeholder-img {
      width: 100%;
      height: 100%;
    }

    .vision-expansion-card {
      position: absolute;
      bottom: -24px;
      left: -36px;
      background: var(--green-dark);
      color: white;
      border-radius: 18px;
      padding: 24px 28px;
      box-shadow: 0 16px 50px rgba(15,92,32,0.4);
      max-width: 240px;
    }
    .vision-expansion-num {
      font-family: var(--font-heading);
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }
    .vision-expansion-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.7);
      margin-top: 6px;
      line-height: 1.5;
    }

    /* ─── CONTACT ─────────────────────────────────────────────────────────── */
    #contact {
      padding: 110px 8%;
      background: var(--cream);
    }

    .contact-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .contact-header .section-label { justify-content: center; }
    .contact-header .section-subtitle { margin: 16px auto 0; }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 48px;
      align-items: start;
      max-width: 1100px;
      margin: 0 auto;
    }

    .contact-info { }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .contact-item:last-child { border-bottom: none; }

    .contact-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-item-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
    .contact-item-value { font-size: 0.85rem; color: var(--warm-gray); }

    .contact-social {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }
    .social-btn {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: white;
      border: 1px solid var(--cream-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      color: var(--charcoal);
    }
    .social-btn:hover {
      background: var(--green);
      color: white;
      border-color: var(--green);
      transform: translateY(-3px);
    }

    .contact-form {
      background: white;
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    }
    .form-title {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 6px;
    }
    .form-subtitle {
      font-size: 0.85rem;
      color: var(--warm-gray);
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--charcoal);
      letter-spacing: 0.04em;
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--cream-dark);
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--charcoal);
      background: var(--cream);
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 4px rgba(26,140,50,0.1);
      background: white;
    }
    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }
    .form-submit {
      width: 100%;
      padding: 15px;
      font-size: 0.9rem;
      border-radius: var(--radius);
    }

    /* ─── FOOTER ─────────────────────────────────────────────────────────── */
    #footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.7);
      padding: 60px 8% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 30px;
    }

    .footer-brand {}
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      /* margin-bottom: 18px; */
    }
    .footer-logo img {
      height: 108px;
      /* filter: brightness(0) invert(1); */
      opacity: 0.85;
    }
    .footer-logo-text {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 600;
      color: white;
    }
    .footer-tagline {
      font-style: italic;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 18px;
    }
    .footer-brand p {
      font-size: 0.82rem;
      line-height: 1.75;
    }

    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: white;
      margin-bottom: 18px;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      transition: color 0.2s ease;
    }
    .footer-col ul li a:hover { color: var(--gold-light); }

    .footer-social {
      display: flex;
      gap: 16px;
      margin-top: 14px; /* controls distance from email */
    }

    .footer-social a {
        color: rgba(255,255,255,0.55);
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .footer-social a:hover {
        color: var(--gold-light);
        transform: translateY(-2px);
    }

    .footer-bottom {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding-top: 2px;
    }

    .footer-copy {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.55);
    }

    .footer-monkis {
        color: rgba(255,255,255,0.55);
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .footer-monkis:hover {
        color: var(--gold-light);
    }

    /* ─── WHATSAPP FLOAT ─────────────────────────────────────────────────── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 56px;
      height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      font-size: 1.5rem;
      cursor: pointer;
      text-decoration: none;
      color: white;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: wapPulse 3s ease-in-out infinite;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 35px rgba(37,211,102,0.55);
    }
    @keyframes wapPulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
      50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
    }

    /* ─── SCROLL ANIMATIONS ──────────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-visual { height: 60vw; max-height: 500px; }
      .hero-float-card.card-1 { left: 10px; }
      .hero-float-card.card-2 { right: 10px; }
      #about { grid-template-columns: 1fr; gap: 48px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .stat-separator { display: none; }
      #vision { grid-template-columns: 1fr; }
      .vision-expansion-card { position: relative; left: auto; bottom: auto; margin-top: 20px; max-width: 100%; }
      .contact-wrapper { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }

      .hero-content { padding: 100px 5% 40px; }
      .hero-visual { width: 100%; margin: 0 auto; padding: 0 5%; box-sizing: border-box; }
      .hero-green-bg { display: none; }
      .hero-stats { gap: 20px; }

      #about { padding: 70px 5%; }
      .about-values { grid-template-columns: 1fr; }

      #journey { padding: 70px 5%; }
      .timeline::before { left: 20px; }
      .timeline-item,
      .timeline-item:nth-child(even) { flex-direction: column; }
      .timeline-dot { left: 20px; }
      .timeline-content,
      .timeline-item:nth-child(even) .timeline-content,
      .timeline-item:nth-child(odd) .timeline-content {
        width: 100%;
        margin-left: 50px;
        margin-right: 0;
      }

      .stores-grid { grid-template-columns: 1fr; }
      #stores { padding: 70px 5%; }
      .stores-header { flex-direction: column; align-items: flex-start; }

      .products-grid { grid-template-columns: repeat(2, 1fr); }
      #products { padding: 70px 5%; }

      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      #stats { padding: 70px 5%; }

      .why-grid { grid-template-columns: 1fr; }
      #why { padding: 70px 5%; }

      #vision { padding: 70px 5%; }
      .vision-pillars { grid-template-columns: 1fr; }

      .contact-form { padding: 28px 20px; }
      .form-row { grid-template-columns: 1fr; }
      #contact { padding: 70px 5%; }

      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
      #footer { padding: 50px 5% 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .products-grid { grid-template-columns: 1fr; }
      .hero-headline { font-size: 2.4rem; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }