/* =========================================
   1. CSS VARIABLES
   ========================================= */
   :root {
    --clr-bg-main:       #FFFDEE;
    --clr-bg-alt:        #E9EDC9;
    --clr-bg-dark:       #1A3022;
    --clr-primary:       #1A3022;
    --clr-secondary:     #FCBD16;
    --clr-highlight:     #E26204;
    --clr-support:       #076653;
    --clr-support-alt:   #C28E40;
    --clr-text-body:     #3D2B1A;
    --clr-soil-tape:     #C9A97A;
    --clr-soil-tape-hover: #A07848;
    --font-primary:      'Poppins', sans-serif;
  }
  
  /* =========================================
     2. RESET & BASE
     ========================================= */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { background-color: var(--clr-bg-main); }
  body {
    font-family: var(--font-primary);
    background-color: var(--clr-bg-main);
    color: var(--clr-text-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    scroll-behavior: smooth;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  
  .container { padding: 90px 5%; max-width: 1400px; margin: 0 auto; }
  .bg-alt { background-color: var(--clr-bg-alt); }
  
  /* Typography */
  .text-hero       { font-size: 96px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--clr-primary); }
  .text-h1         { font-size: 64px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; color: var(--clr-primary); }
  .text-h2         { font-size: 48px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; color: var(--clr-primary); }
  .text-h3         { font-size: 32px; font-weight: 600; line-height: 1.3; color: var(--clr-support); }
  .text-subheading { font-size: 24px; font-weight: 500; line-height: 1.5; color: var(--clr-text-body); }
  .text-tag        { font-size: 14px; font-weight: 500; letter-spacing: 0.02em; line-height: 1.4; }
  .text-special    { font-size: 16px; font-weight: 400; letter-spacing: 0.01em; line-height: 1.8; }
  
  /* Shared headings & section labels */
  .sec-heading {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1.18;
    margin-bottom: 20px;
  }
  .sec-heading em { font-style: italic; color: var(--clr-support); }
  
  .sec-sub {
    font-size: 20px;
    color: var(--clr-soil-tape-hover);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto;
  }
  
  .section-center {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  /* =========================================
     BUTTONS — All use single #btn-rough filter
     ========================================= */
  
  /* ── Base tape-paper button ── */
  .btn {
    position: relative;
    display: inline-block;
    padding: 11px 36px 12px;
    background: transparent;
    /* color: #1E0E02; */
    color: var(--clr-bg-alt);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    isolation: isolate;
    transition: color 0.2s, transform 0.15s;
    -webkit-font-smoothing: antialiased;
  }
  .btn::before {
    content: '';
    position: absolute;
    inset: -2px -3px;
    background-color: var(--clr-bg-dark);
    filter: url(#btn-rough);
    z-index: -1;
    transition: background 0.25s;
  }
  .btn:hover { transform: scale(1.03) rotate(-0.3deg); }
  .btn:hover::before { background-color: var(--clr-support); }
  
  /* ── Raw label-style button (product & story CTAs) ── */
  .btn-raw {
    position: relative;
    display: inline-block;
    padding: 13px 38px 14px;
    background: transparent;
    color: var(--clr-primary);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.18s ease, color 0.2s;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    align-self: flex-start;
  }
  .btn-raw::before {
    content: '';
    position: absolute;
    inset: -2px -4px;
    background: var(--clr-soil-tape);
    filter: url(#btn-rough);
    z-index: -1;
    transition: background 0.22s;
  }
  .btn-raw:hover { transform: scale(1.04) rotate(-0.4deg); color: var(--clr-bg-main); }
  .btn-raw:hover::before { background: var(--clr-support); }
  
  /* ── WhatsApp CTA ── */
  .btn-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 44px 17px;
    background: transparent;
    color: var(--clr-primary);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.18s ease, color 0.2s;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
  }
  .btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: -2px -4px;
    background: #25D366;
    filter: url(#btn-rough);
    z-index: -1;
    transition: background 0.22s;
  }
  .btn-whatsapp:hover { transform: scale(1.04) rotate(-0.3deg); color: #0A1F0F; }
  .btn-whatsapp:hover::before { background: #1EBF5A; }
  
  /* ── Call button ── */
  .btn-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: rgba(245,239,228,0.75);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.18s ease, color 0.2s;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
  }
  .btn-call::before {
    content: '';
    position: absolute;
    inset: -2px -3px;
    background: rgba(245,239,228,0.1);
    filter: url(#btn-rough);
    z-index: -1;
    transition: background 0.22s;
  }
  .btn-call:hover { transform: scale(1.03) rotate(0.3deg); color: var(--clr-bg-main); }
  .btn-call:hover::before { background: rgba(245,239,228,0.18); }
  
  /* =========================================
     3. NAVBAR
     ========================================= */
  .logo-header {
    text-align: center;
    padding: 20px 5%;
    background-color: var(--clr-bg-main);
    position: relative;
    z-index: 1000;
  }
  .logo-main {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--clr-primary);
    letter-spacing: 2px;
  }
  .logo-sub {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 3px;
    margin-top: 5px;
  }
  
  .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1010;
    background-color: var(--clr-bg-main);
    border-top: 1px solid rgba(26,48,34,0.4);
    border-bottom: 1px solid rgba(26,48,34,0.4);
    padding: 8px 5%;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
  }
  .nav-links a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-primary);
    transition: color 0.3s ease;
  }
  .nav-links li.active a,
  .nav-links a:hover { color: var(--clr-support); }
  
  .hamburger-btn,
  .mobile-menu-overlay { display: none; }
  
  /* ── Mobile menu ── */
  @media (max-width: 900px) {
    .logo-main { font-size: 42px; }
    .logo-sub  { font-size: 18px; }
    .desktop-only { display: none !important; }
    .sticky-navbar { justify-content: flex-end; padding: 8px 5%; }
  
    .hamburger-btn {
      display: flex;
      background: transparent;
      border: none;
      color: var(--clr-primary);
      cursor: pointer;
      padding: 4px;
    }
  
    .mobile-menu-overlay {
      display: flex;
      position: fixed;
      inset: 0;
      height: 100vh;
      background-color: var(--clr-bg-main);
      z-index: 9999;
      flex-direction: column;
      padding: 30px 5% 40px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.3s ease;
    }
    body.menu-open .mobile-menu-overlay {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
  
    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(26,48,34,0.4);
    }
    .mobile-logo-box { text-align: left; color: var(--clr-primary); }
  
    .close-btn {
      display: flex !important;
      background: transparent;
      border: none;
      color: var(--clr-primary) !important;
      cursor: pointer;
      padding: 4px;
      z-index: 10000;
    }
    .close-btn svg { stroke: var(--clr-primary) !important; pointer-events: none; }
    .hamburger-btn svg { pointer-events: none; }
  
    .mobile-links-list { flex-direction: column; align-items: flex-start; gap: 32px; }
    .mobile-links-list a { font-size: 16px; }
  
    .mobile-socials {
      display: flex;
      gap: 24px;
      margin-top: auto;
    }
    .mobile-socials a {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--clr-primary);
    }
  }
  
  /* =========================================
     4. HERO
     ========================================= */
  .hero {
    background-image:
      linear-gradient(to bottom, rgba(255,253,238,0.2) 0%, rgba(255,253,238,1) 95%),
      url('Images/hero-img.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--clr-text-body);
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 5% 120px;
    gap: 60px;
  }
  .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hero-btns { display: flex; gap: 1.5rem; justify-content: center; }
  
  /* =========================================
     5. STATS BAR
     ========================================= */
  .stats-bar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    padding: 2rem 0 4rem;
    overflow: visible;
    margin-bottom: 100px;
  }
  
  .card-outer {
    position: relative;
    width: 240px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card-bg {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    filter: url(#raw-paper);
    box-shadow: 3px 6px 18px rgba(26,48,34,0.13);
  }
  .stats-label-cell .card-bg { background-color: var(--clr-bg-main); }
  .stat-cell        .card-bg { background-color: var(--clr-soil-tape); }
  
  .card-tape {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 58px;
    background-color: var(--clr-soil-tape-hover);
    filter: url(#tape-rough);
    z-index: 5;
    opacity: 0.9;
  }
  
  .card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.8rem 2rem;
    gap: 0.6rem;
    width: 100%;
  }
  
  /* card rotations */
  .stats-bar .card-outer:nth-child(1) { transform: rotate(-2.2deg); margin-top: -8px; }
  .stats-bar .card-outer:nth-child(2) { transform: rotate(1.1deg);  margin-top: 12px; }
  .stats-bar .card-outer:nth-child(3) { transform: rotate(-1.4deg); margin-top: 4px; }
  .stats-bar .card-outer:nth-child(4) { transform: rotate(2deg);    margin-top: 16px; }
  .stats-bar .card-outer:nth-child(1) .card-tape { transform: translateX(-50%) rotate(-1.5deg); }
  .stats-bar .card-outer:nth-child(2) .card-tape { transform: translateX(-50%) rotate(2deg); }
  .stats-bar .card-outer:nth-child(3) .card-tape { transform: translateX(-50%) rotate(-0.5deg); }
  .stats-bar .card-outer:nth-child(4) .card-tape { transform: translateX(-50%) rotate(1.8deg); }
  
  .stats-label-icon svg { stroke: var(--clr-support); margin-bottom: 0.3rem; }
  .text-h3 { font-family: var(--font-primary); font-size: 18px; font-weight: 700; color: var(--clr-text-body); line-height: 1.25; }
  .text-h2 { font-family: var(--font-primary); font-size: 42px; font-weight: 700; color: var(--clr-text-body); line-height: 1; }
  .text-tag { font-family: var(--font-primary); font-size: 16px; font-weight: 500; color: var(--clr-bg-main); letter-spacing: 0.04em; max-width: 85%; line-height: 1.5; }
  
  /* =========================================
     6. PRODUCT SECTION
     ========================================= */
  .product-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 5% 120px;
  }
  
  .section-heading {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1.1;
    margin-bottom: 64px;
    max-width: 520px;
  }
  .section-heading em { font-style: italic; color: var(--clr-support); }
  
  .product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  /* Product visual / card */
  .product-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .product-card-wrap { position: relative; width: 100%; }
  .product-card-bg {
    position: absolute;
    inset: 0;
    background: var(--clr-soil-tape);
    filter: url(#card-rough);
    border-radius: 4px;
  }
  .product-card-inner {
    position: relative;
    z-index: 2;
    padding: 48px 40px 44px;
    text-align: center;
  }
  .turmeric-art { margin-bottom: 28px; }
  .product-name-big { font-family: var(--font-primary); font-size: 26px; font-weight: 700; color: var(--clr-primary); line-height: 1.2; margin-bottom: 6px; }
  .product-brand { font-family: var(--font-primary); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-soil-tape-hover); margin-bottom: 24px; }
  .card-divider { width: 100%; height: 1px; background: var(--clr-text-body); opacity: 0.2; margin: 0 auto 22px; }
  .product-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; text-align: left; }
  .meta-item label { display: block; font-size: 10px; font-weight: bolder; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clr-muted); margin-bottom: 2px; }
  .meta-item span  { font-size: 12px; font-weight: 500; color: var(--clr-primary); line-height: 1.4; }
  
  .stamp-wrap { position: absolute; top: -18px; right: -18px; z-index: 10; }
  
  /* Product details */
  .product-details { display: flex; flex-direction: column; gap: 36px; }
  
  .detail-block-title {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-support);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .detail-block-title::after { content: ''; flex: 1; height: 1px; background: var(--clr-support); opacity: 0.25; }
  
  .nutrition-wrap { position: relative; }
  .nutrition-bg { position: absolute; inset: 0; background: var(--clr-soil-tape); filter: url(#card-rough2); border-radius: 4px; }
  .nutrition-inner { position: relative; z-index: 2; padding: 22px 24px; }
  .nutrition-header { font-family: var(--font-primary); font-size: 16px; font-weight: 700; color: var(--clr-primary); margin-bottom: 4px; }
  .nutrition-sub  { font-size: 10px; color: var(--clr-muted); margin-bottom: 12px; font-weight: 500; letter-spacing: 0.05em; }
  .nutrition-row  { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(26,48,34,0.1); font-size: 13px; }
  .nutrition-row:last-child { border-bottom: none; }
  .nutrition-row .nut-label { color: var(--clr-text-body); font-weight: 500; }
  .nutrition-row .nut-val   { font-weight: 700; color: var(--clr-primary); font-size: 14px; }
  
  .features-list { display: flex; flex-direction: column; gap: 12px; }
  .feature-item  { display: flex; align-items: flex-start; gap: 12px; }
  .feature-dot   { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: var(--clr-accent); display: flex; align-items: center; justify-content: center; }
  .feature-item p { font-size: 13px; font-weight: 400; color: var(--clr-text-body); line-height: 1.55; }
  .feature-item p strong { color: var(--clr-primary); font-weight: 600; }
  
  .cta-wrap { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
  
  /* ════════════════════════════════════════════
   PRODUCT SECTION RESPONSIVE DESIGN
════════════════════════════════════════════ */

/* Tablet & Standard Mobile (max 900px) */
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr; /* Stack left and right sides */
    gap: 48px;
  }
  
  .section-heading {
    margin-bottom: 40px;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .product-section {
    padding: 60px 5% 80px;
  }

  /* Shrink image height so it doesn't dominate the whole screen */
  .turmeric-art img {
    height: 300px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .product-card-inner {
    padding: 32px 24px;
  }

  /* Pull the stamp in and scale it down to prevent horizontal scrolling */
  .stamp-wrap {
    right: -5px;
    top: -20px;
    transform: scale(0.85);
  }
}

/* ════════════════════════════════════════════
   EXTRA SMALL MOBILE (320px - 400px devices)
════════════════════════════════════════════ */
@media (max-width: 400px) {
  .product-section {
    padding: 40px 5% 60px;
  }

  .section-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .product-card-inner {
    padding: 24px 16px;
  }

  .product-name-big {
    font-size: 22px;
  }

  .turmeric-art img {
    height: 250px;
  }

  /* Shrink stamp further for tiny 320px screens */
  .stamp-wrap {
    right: -10px;
    top: -25px;
    transform: scale(0.7);
  }

  /* Stack the Type, Weight, Best Before details so text doesn't overlap */
  .product-meta-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nutrition-inner {
    padding: 20px 16px;
  }

  /* Make the button full width for easier tapping */
  .cta-wrap {
    width: 100%;
  }
  .cta-wrap .btn {
    width: 100%;
    text-align: center;
  }
}


  /* =========================================
     7. WHY US
     ========================================= */
  #why {
    margin: 0 auto;
    padding: 100px 5% 120px;
    position: relative;
    overflow: visible;
  }
  
  .why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1430px;
    margin: 0 auto;
  }
  
  .why-card { position: relative; isolation: isolate; }
  .why-card:nth-child(1) { transform: rotate(-0.6deg); }
  .why-card:nth-child(2) { transform: rotate(0.4deg);  }
  .why-card:nth-child(3) { transform: rotate(-0.3deg); }
  .why-card:nth-child(4) { transform: rotate(0.5deg);  }
  .why-card:nth-child(5) { transform: rotate(-0.5deg); }
  .why-card:nth-child(6) { transform: rotate(0.3deg);  }
  
  .why-card-bg {
    position: absolute;
    inset: 0;
    background: var(--clr-soil-tape);
    filter: url(#why-card-rough);
    border-radius: 3px;
    z-index: 0;
    transition: background 0.25s;
  }
  .why-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding-top: 4px;
  }
  .why-card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0px; right: 0px;
    height: 2px;
    background: var(--clr-soil-tape);
    filter: url(#stroke-rough);
    opacity: 0.7;
    z-index: 3;
    transition: opacity 0.25s;
  }
  .why-card:hover .why-card-inner::before { opacity: 1; }
  
  .why-img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative; padding: 5px; }
  .why-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center; display: block;
    filter: sepia(18%) contrast(1.05) brightness(0.97);
    transition: transform 0.5s ease, filter 0.4s ease;
  }
  .why-card:hover .why-img-wrap img { transform: scale(1.04); filter: sepia(8%) contrast(1.08) brightness(1.0); }
  .why-img-placeholder { width: 100%; height: 100%; background: var(--clr-bg-alt); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
  .why-img-placeholder svg { opacity: 0.35; }
  .why-img-placeholder span { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
  
  .why-text { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; position: relative; }
  .why-title { font-size: 16px; font-weight: 700; color: var(--clr-primary); line-height: 1.3; letter-spacing: 0.01em; }
  .why-desc  { font-size: 14px; font-weight: 400; color: var(--clr-bg-main); line-height: 1.72; }
  .why-card-num { position: absolute; bottom: 12px; right: 18px; font-family: var(--font-primary); font-size: 44px; font-weight: 700; color: var(--clr-text-body); opacity: 0.05; line-height: 1; pointer-events: none; user-select: none; }
  
  /* =========================================
     8. STORY
     ========================================= */
  #story {
    position: relative;
    background-color: var(--clr-bg-main);
    padding: 110px 5% 0;
  }
  #story::before {
    content: 'TODKAR';
    position: absolute;
    top: 60px; right: 3%;
    font-family: var(--font-primary);
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 700;
    color: var(--clr-primary);
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  
  .story-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 100px;
    position: relative;
  }
  
  .story-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    margin-bottom: 80px;
  }
  
  .story-img-col  { position: relative; }
  .story-img-frame-bg {
    position: absolute;
    inset: -12px -10px -16px -10px;
    background: var(--clr-soil-tape);
    filter: url(#frame-rough);
    border-radius: 3px;
    z-index: 0;
  }
  .story-img-wrap { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/4; overflow: hidden; }
  .story-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; filter: sepia(12%) contrast(1.04) brightness(0.98); }
  .story-img-placeholder { width: 100%; height: 100%; background: var(--clr-bg-alt); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
  .story-img-placeholder svg { opacity: 0.2; }
  .story-img-placeholder span { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clr-soil-tape-hover); opacity: 0.5; }
  .story-img-caption { position: relative; z-index: 2; margin-top: 16px; text-align: center; font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-bg-main); }
  
  .story-right { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
  
  .story-name  { font-family: var(--font-primary); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--clr-primary); line-height: 1.15; margin-bottom: 10px; }
  .story-from  { font-size: 13px; color: var(--clr-soil-tape-hover); margin-bottom: 22px; }
  .story-from strong { color: var(--clr-support); }
  
  .story-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
  .story-pill  { position: relative; display: inline-block; isolation: isolate; }
  .story-pill-bg { position: absolute; inset: 0; background: var(--clr-soil-tape); filter: url(#pill-rough); border-radius: 2px; z-index: 0; }
  .story-pill span { position: relative; z-index: 1; display: block; padding: 6px 14px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clr-bg-main); }
  
  .story-quote { position: relative; margin-bottom: 36px; border: none; }
  .story-quote p { font-family: var(--font-primary); font-size: clamp(16px, 2vw, 20px); font-style: italic; font-weight: 600; color: var(--clr-primary); line-height: 1.5; }
  
  .story-numbers {
    display: flex; gap: 32px; flex-wrap: wrap;
    margin-bottom: 40px; padding: 24px 0;
    border-top: 1px solid rgba(26,48,34,0.1);
    border-bottom: 1px solid rgba(26,48,34,0.1);
  }
  .story-num-item { display: flex; flex-direction: column; gap: 2px; }
  .story-num-val   { font-family: var(--font-primary); font-size: 32px; font-weight: 700; color: var(--clr-primary); line-height: 1; }
  .story-num-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-soil-tape-hover); }
  
  .story-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    margin-bottom: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(26,48,34,0.1);
  }
  .story-body-label { grid-column: 1 / -1; font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--clr-support); margin-bottom: -28px; }
  .story-body p { font-size: 14px; color: var(--clr-text-body); line-height: 1.8; }
  .story-body p strong { color: var(--clr-primary); font-weight: 600; }
  
  .cred-section { position: relative; }
  .cred-heading { font-family: var(--font-primary); font-size: 22px; font-weight: 700; color: var(--clr-primary); margin-bottom: 28px; display: flex; align-items: center; gap: 16px; }
  .cred-heading::after { content: ''; flex: 1; height: 1px; background: var(--clr-support); opacity: 0.2; }
  
  .trained-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .trained-card { position: relative; isolation: isolate; }
  .trained-card-bg { position: absolute; inset: 0; background: var(--clr-soil-tape); filter: url(#cred-rough); border-radius: 3px; z-index: 0; }
  .trained-card-inner { position: relative; z-index: 1; padding: 28px 20px 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
  .trained-icon-wrap { width: 36px; height: 36px; border-radius: 50%; background: var(--clr-bg-main); display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
  .trained-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-bg-alt); }
  .trained-name  { font-size: 12px; font-weight: 600; color: var(--clr-primary); line-height: 1.4; }


  /* ════════════════════════════════════════════
   CERTIFICATE MODAL
════════════════════════════════════════════ */

/* The hidden overlay */
.cert-modal {
  position: fixed;
  inset: 0; /* covers top, left, right, bottom */
  background-color: rgba(26, 48, 34, 0.85); /* Dark earthy green overlay */
  backdrop-filter: blur(4px); /* Slight glass effect */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Hidden state */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* The active (visible) state */
.cert-modal.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* The box holding the image */
.cert-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  background: var(--clr-bg-main, #FFFDEE); /* Paper background border */
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.cert-modal.active .cert-modal-content {
  transform: translateY(0);
}

.cert-modal-content img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 24px); /* Keeps image inside the viewport */
  object-fit: contain;
  border-radius: 2px;
}

/* The Close Button */
.cert-modal-close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: none;
  border: none;
  color: #FFFDEE;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.cert-modal-close:hover {
  color: var(--clr-accent, #D2C6AF);
  transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .cert-modal-close {
    top: -45px;
    right: 0;
  }
}
  

/* ════════════════════════════════════════════
   GALLERY SECTION (UPDATED 11-SLOT GRID + SLIDERS)
════════════════════════════════════════════ */
#gallery {
  position: relative;
  background-color: var(--clr-bg-main, #FFFDEE);
  overflow: hidden;
}

.gallery-top-wave {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 1;
}
.gallery-top-wave svg { display: block; width: 100%; height: auto; }

.gallery-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px; /* Widened slightly for extra images */
  margin: 0 auto;
  padding: 72px 5% 96px;
}

.section-center {
  text-align: center;
  margin-bottom: 56px;
}
.sec-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--clr-primary, #2C3E2D);
  margin-bottom: 12px;
}
.sec-sub {
  font-size: 14px;
  color: var(--clr-muted, #666);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── EXPANDED COLLAGE GRID (5 Rows) ── */
.gallery-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 250px 200px 220px 200px 240px;
  gap: 16px;
}

/* Grid Mappings */
.g-item-1 { grid-column: 1 / 6;  grid-row: 1 / 3; }  /* Big top-left */
.g-item-2 { grid-column: 6 / 9;  grid-row: 1 / 2; }  /* Top mid */
.g-item-3 { grid-column: 9 / 13; grid-row: 1 / 3; }  /* Top right tall */
.g-item-4 { grid-column: 6 / 9;  grid-row: 2 / 3; }  /* Mid square */
.g-item-5 { grid-column: 1 / 5;  grid-row: 3 / 5; }  /* Mid left tall */
.g-item-6 { grid-column: 5 / 9;  grid-row: 3 / 4; }  /* Center square */
.g-item-7 { grid-column: 9 / 13; grid-row: 3 / 5; }  /* Mid right tall */
.g-item-8 { grid-column: 5 / 9;  grid-row: 4 / 5; }  /* Lower center square */
.g-item-9 { grid-column: 1 / 5;  grid-row: 5 / 6; }  /* Bottom left wide */
.g-item-10{ grid-column: 5 / 8;  grid-row: 5 / 6; }  /* Bottom mid */
.g-item-11{ grid-column: 8 / 13; grid-row: 5 / 6; }  /* Bottom right wide */

/* ── EACH PHOTO ITEM ── */
.gallery-item {
  position: relative;
  isolation: isolate;
  cursor: pointer;
}

/* Random Organic Tilts */
.g-item-1 { transform: rotate(-0.5deg); }
.g-item-2 { transform: rotate(0.8deg);  }
.g-item-3 { transform: rotate(-0.3deg); }
.g-item-4 { transform: rotate(0.6deg);  }
.g-item-5 { transform: rotate(-0.7deg); }
.g-item-6 { transform: rotate(0.4deg);  }
.g-item-7 { transform: rotate(-0.4deg); }
.g-item-8 { transform: rotate(0.7deg);  }
.g-item-9 { transform: rotate(-0.5deg); }
.g-item-10{ transform: rotate(0.3deg);  }
.g-item-11{ transform: rotate(-0.6deg); }

/* Raw paper frame bg */
.gallery-frame-bg {
  position: absolute;
  inset: -6px -5px;
  background: var(--clr-bg-main, #FFFDEE);
  filter: url(#gallery-rough);
  border-radius: 2px;
  z-index: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Added subtle shadow for depth */
  transition: background 0.3s;
}
.gallery-item:hover .gallery-frame-bg { background: #FAF6EE; }

.gallery-img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #E8E3D9; /* Fallback color */
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(15%) contrast(1.05) brightness(0.96);
  transition: transform 0.55s ease, filter 0.4s ease;
}
.gallery-item:hover .gallery-img-wrap > img {
  transform: scale(1.06);
  filter: sepia(5%) contrast(1.08) brightness(1.0);
}

/* ── CSS AUTO-SLIDERS ── */
.auto-slider-3 img, .auto-slider-2 img {
  position: absolute;
  top: 0; 
  left: 0;
  opacity: 0;
}

/* 3-Image Slider (12s total loop) */
.auto-slider-3 .slide-1 { animation: fade3 12s infinite 0s; }
.auto-slider-3 .slide-2 { animation: fade3 12s infinite 4s; }
.auto-slider-3 .slide-3 { animation: fade3 12s infinite 8s; }

@keyframes fade3 {
  0%   { opacity: 0; transform: scale(1); }
  10%  { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.03); }
  43%  { opacity: 0; }
  100% { opacity: 0; }
}

/* 2-Image Slider (10s total loop) */
.auto-slider-2 .slide-1 { animation: fade2 10s infinite 0s; }
.auto-slider-2 .slide-2 { animation: fade2 10s infinite 5s; }

@keyframes fade2 {
  0%   { opacity: 0; transform: scale(1); }
  15%  { opacity: 1; }
  50%  { opacity: 1; transform: scale(1.03); }
  65%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Hover effect on sliders */
.gallery-item:hover .auto-slider-3 img,
.gallery-item:hover .auto-slider-2 img {
  filter: sepia(5%) contrast(1.08) brightness(1.0);
}


/* Caption tape strip */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--clr-primary, #2C3E2D);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Washi-tape */
.gallery-item::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 24px;
  background: rgba(210, 198, 175, 0.85); /* Taped color */
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  filter: url(#tape-rough);
  z-index: 5;
}

/* Randomise tape position per item */
.g-item-1::before { left: 30%;  transform: translateX(-50%) rotate(-2deg); }
.g-item-2::before { left: 60%;  transform: translateX(-50%) rotate(1.5deg); }
.g-item-3::before { left: 40%;  transform: translateX(-50%) rotate(-1deg);  }
.g-item-4::before { left: 55%;  transform: translateX(-50%) rotate(2deg);   }
.g-item-5::before { left: 25%;  transform: translateX(-50%) rotate(-1.5deg);}
.g-item-6::before { left: 50%;  transform: translateX(-50%) rotate(1deg);   }
.g-item-7::before { left: 65%;  transform: translateX(-50%) rotate(-2deg);  }
.g-item-8::before { left: 45%;  transform: translateX(-50%) rotate(3deg);   }
.g-item-9::before { left: 35%;  transform: translateX(-50%) rotate(-1deg);  }
.g-item-10::before{ left: 50%;  transform: translateX(-50%) rotate(1.5deg); }
.g-item-11::before{ left: 70%;  transform: translateX(-50%) rotate(-2.5deg);}

/* ════════════════════════════════════════════
   RESPONSIVE DESIGN
════════════════════════════════════════════ */

/* Tablet Layout (1024px) - Switch to 8 Columns */
@media (max-width: 1024px) {
  .gallery-collage {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 200px);
    gap: 14px;
  }
  .g-item-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
  .g-item-2 { grid-column: 6 / 9; grid-row: 1 / 2; }
  .g-item-3 { grid-column: 6 / 9; grid-row: 2 / 4; }
  .g-item-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
  .g-item-5 { grid-column: 3 / 6; grid-row: 3 / 5; }
  .g-item-6 { grid-column: 1 / 3; grid-row: 4 / 5; }
  .g-item-7 { grid-column: 6 / 9; grid-row: 4 / 6; }
  .g-item-8 { grid-column: 1 / 4; grid-row: 5 / 6; }
  .g-item-9 { grid-column: 4 / 6; grid-row: 5 / 6; }
  .g-item-10{ grid-column: 1 / 5; grid-row: 6 / 7; }
  .g-item-11{ grid-column: 5 / 9; grid-row: 6 / 7; }
}

/* Mobile Layout (640px) - Switch to 2 Columns */
@media (max-width: 640px) {
  .gallery-inner { padding: 60px 5% 72px; }
  .sec-heading { font-size: 26px; }
  
  .gallery-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 12px;
  }
  
  /* Reset all complex spans to basic block masonry for mobile */
  .g-item-1 { grid-column: 1 / 3; grid-row: span 2; transform: none !important; }
  .g-item-2 { grid-column: 1 / 2; grid-row: span 1; transform: none !important; }
  .g-item-3 { grid-column: 2 / 3; grid-row: span 2; transform: none !important; }
  .g-item-4 { grid-column: 1 / 2; grid-row: span 1; transform: none !important; }
  .g-item-5 { grid-column: 1 / 3; grid-row: span 2; transform: none !important; }
  .g-item-6 { grid-column: 1 / 2; grid-row: span 1; transform: none !important; }
  .g-item-7 { grid-column: 2 / 3; grid-row: span 2; transform: none !important; }
  .g-item-8 { grid-column: 1 / 2; grid-row: span 1; transform: none !important; }
  .g-item-9 { grid-column: 1 / 3; grid-row: span 1; transform: none !important; }
  .g-item-10{ grid-column: 1 / 2; grid-row: span 1; transform: none !important; }
  .g-item-11{ grid-column: 2 / 3; grid-row: span 1; transform: none !important; }

  /* Simplify visuals on mobile */
  .gallery-item::before { display: none; } /* Hide tape to save space */
  .gallery-caption { 
    opacity: 1; 
    transform: none; 
    font-size: 9px; 
    padding: 6px 8px;
  }
}

/* ════════════════════════════════════════════
   EXTRA SMALL MOBILE (320px - 400px devices)
   Prevents aggressive image cropping
════════════════════════════════════════════ */
@media (max-width: 400px) {
  .gallery-inner { 
    padding: 40px 5% 50px; 
  }
  
  .sec-heading { 
    font-size: 22px; 
  }

  .gallery-collage {
    /* Switch to 1 single column so images have room to breathe */
    grid-template-columns: 1fr;
    
    /* Make the boxes taller so landscape/portrait images don't get chopped */
    grid-auto-rows: 240px; 
    gap: 16px;
  }
  
  /* Reset all items to stack vertically one after the other */
  .g-item-1, .g-item-2, .g-item-3, .g-item-4, 
  .g-item-5, .g-item-6, .g-item-7, .g-item-8, 
  .g-item-9, .g-item-10 {
    grid-column: 1 / -1;
    grid-row: span 1; /* Every image takes exactly 1 row */
  }

   .g-item-11{
    visibility: hidden;
   }


  /* Optional: If you want ABSOLUTELY zero cropping (letterboxing instead), 
     uncomment the lines below. Note: this leaves empty space inside the paper frame. 
     Usually, the 1-column fix above is enough to make it look great! */
     
  /*
  .gallery-img-wrap img {
    object-fit: contain;
    background-color: #E8E3D9;
  }
  */
}


  /* =========================================
     9. PRACTICES
     ========================================= */
  #practices {
    position: relative;
    background-color: var(--clr-bg-alt);
    overflow: hidden;
  }
  .practices-top-illo,
  .practices-bottom-illo { width: 100%; line-height: 0; position: relative; z-index: 1; }
  .practices-top-illo svg,
  .practices-bottom-illo svg { display: block; width: 100%; height: auto; }
  .practices-bottom-illo { margin-top: -4px; }
  
  .practices-inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 5% 0;
  }
  
  .practices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 80px;
  }
  
  .practice-card { position: relative; isolation: isolate; }
  .practice-card:nth-child(1) { transform: rotate(-0.5deg); }
  .practice-card:nth-child(2) { transform: rotate(0.3deg);  }
  .practice-card:nth-child(3) { transform: rotate(-0.4deg); }
  .practice-card:nth-child(4) { transform: rotate(0.4deg);  }
  .practice-card:nth-child(5) { transform: rotate(-0.3deg); }
  .practice-card:nth-child(6) { transform: rotate(0.5deg);  }
  
  .prac-card-bg { position: absolute; inset: 0; background: var(--clr-bg-main); filter: url(#prac-rough); border-radius: 3px; z-index: 0; transition: background 0.25s; }
  .practice-card:hover .prac-card-bg { background: #FAF5EE; }
  .prac-card-inner {
    position: relative;
    z-index: 2;
    padding: 32px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .prac-card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 22px; right: 22px;
    height: 2px;
    background: var(--clr-soil-tape);
    filter: url(#stroke-rough);
    opacity: 0.65;
    z-index: 3;
    transition: opacity 0.25s;
  }
  .practice-card:hover .prac-card-inner::before { opacity: 1; }
  
  .prac-icon-wrap { width: 48px; height: 48px; border-radius: 50%; background: var(--clr-bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .prac-title { font-family: var(--font-primary); font-size: 16px; font-weight: 700; color: var(--clr-primary); line-height: 1.3; }
  .prac-desc  { font-size: 14px; color: var(--clr-soil-tape-hover); line-height: 1.72; }
  .prac-num   { position: absolute; bottom: 14px; right: 18px; font-family: var(--font-primary); font-size: 42px; font-weight: 700; color: var(--clr-primary); opacity: 0.045; line-height: 1; pointer-events: none; user-select: none; z-index: 1; }
  
  /* =========================================
     10. ORDER
     ========================================= */
  #order {
    position: relative;
    background-color: var(--clr-primary);
    overflow: hidden;
  }
  .order-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 5% 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .order-label   { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--clr-soil-tape); margin-bottom: 20px; opacity: 0.85; }
  .order-heading { font-family: var(--font-primary); font-size: clamp(30px, 5vw, 54px); font-weight: 700; color: var(--clr-bg-main); line-height: 1.15; margin-bottom: 20px; max-width: 700px; }
  .order-heading em { font-style: italic; color: var(--clr-soil-tape); }
  .order-sub { font-size: 14px; color: rgba(245,239,228,0.62); line-height: 1.78; max-width: 560px; margin-bottom: 64px; }
  
  .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; max-width: 860px; margin-bottom: 56px; }
  .contact-card { position: relative; isolation: isolate; text-align: left; }
  .contact-card-bg { position: absolute; inset: 0; background: var(--clr-bg-alt); filter: url(#contact-rough); border-radius: 3px; z-index: 0; transition: background 0.25s; }
  .contact-card:hover .contact-card-bg { background: var(--clr-bg-main); }
  .contact-card-inner {
    position: relative;
    z-index: 2;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .contact-card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 18px; right: 18px;
    height: 2px;
    background: var(--clr-support);
    filter: url(#stroke-rough);
    opacity: 0.5;
    z-index: 3;
    transition: opacity 0.25s;
  }
  .contact-card:hover .contact-card-inner::before { opacity: 0.85; }
  .contact-icon-wrap { width: 40px; height: 40px; border-radius: 50%; background: rgba(26,48,34,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
  .visit-label { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-support); }
  .contact-card-title { font-family: var(--font-primary); font-size: 13px; font-weight: 700; color: var(--clr-primary); line-height: 1.3; }
  .contact-card-val { font-size: 14px; font-weight: 600; color: var(--clr-text-body); line-height: 1.5; }
  .contact-card-val a { color: var(--clr-support); transition: color 0.2s; }
  .contact-card-val a:hover { color: var(--clr-primary); }
  
  .order-divider { width: 100%; max-width: 860px; height: 1px; background: rgba(245,239,228,0.1); margin-bottom: 48px; filter: url(#stroke-rough); }
  
  .trust-row { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; color: rgba(245,239,228,0.5); letter-spacing: 0.06em; }
  .trust-item svg { flex-shrink: 0; opacity: 0.55; }
  
  .cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
  
  .order-bottom-illo { width: 100%; line-height: 0; position: relative; z-index: 1; }
  .order-bottom-illo svg { display: block; width: 100%; height: auto; }
  
  /* =========================================
     11. FOOTER
     ========================================= */
  .main-footer { position: relative; background-color: #0F1E14; overflow: hidden; }
  
  .footer-top-wave { width: 100%; line-height: 0; position: relative; z-index: 1; }
  .footer-top-wave svg { display: block; width: 100%; height: auto; }
  
  .footer-body { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 72px 5% 0; }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px 60px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(245,239,228,0.08);
  }
  
  .footer-brand-col { display: flex; flex-direction: column; gap: 14px; }
  .footer-logo-wrap { display: flex; flex-direction: column; gap: 2px; margin-bottom: 4px; }
  .footer-name     { font-family: var(--font-primary); font-size: 36px; font-weight: 700; letter-spacing: 3px; color: var(--clr-bg-main); line-height: 1; }
  .footer-name-sub { font-family: var(--font-primary); font-size: 13px; font-weight: 400; letter-spacing: 5px; color: var(--clr-soil-tape); text-transform: uppercase; }
  .footer-logo-rule { width: 48px; height: 1px; background: var(--clr-soil-tape); opacity: 0.4; filter: url(#foot-stroke); margin: 2px 0 6px; }
  .footer-about { font-size: 12.5px; color: rgba(245,239,228,0.45); line-height: 1.8; max-width: 300px; }
  
  .footer-col { display: flex; flex-direction: column; gap: 18px; }
  .footer-col-title { font-family: var(--font-primary); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clr-soil-tape); padding-bottom: 10px; border-bottom: 1px solid rgba(245,239,228,0.08); }
  .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a { font-size: 12.5px; font-weight: 400; color: rgba(245,239,228,0.45); transition: color 0.2s, padding-left 0.2s; display: inline-block; }
  .footer-col ul li a:hover { color: var(--clr-bg-main); padding-left: 4px; }
  
  .footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
  .footer-contact-item { display: flex; flex-direction: column; gap: 3px; }
  .footer-contact-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,239,228,0.3); }
  .footer-contact-val { font-size: 12.5px; font-weight: 500; color: rgba(245,239,228,0.55); }
  .footer-contact-val a { color: rgba(245,239,228,0.55); transition: color 0.2s; }
  .footer-contact-val a:hover { color: var(--clr-soil-tape); }
  
  .footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 5% 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copy { font-size: 10.5px; color: rgba(245,239,228,0.25); letter-spacing: 0.05em; line-height: 1.6; }
  
  .footer-tag { position: relative; isolation: isolate; display: inline-block; }
  .footer-tag-bg { position: absolute; inset: 0; background: rgba(201,169,122,0.12); filter: url(#badge-rough); border-radius: 2px; z-index: 0; }
  .footer-tag span { position: relative; z-index: 1; display: block; padding: 5px 14px; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-soil-tape); opacity: 0.75; }
  
  .Developed-by { font-size: 10.5px; color: rgba(245,239,228,0.25); letter-spacing: 0.05em; line-height: 1.6; display: flex; align-items: end; }
  .Developed-by a:hover { color: var(--clr-soil-tape); }
  
  .footer-ground { position: relative; z-index: 1; width: 100%; line-height: 0; }
  .footer-ground svg { display: block; width: 100%; height: auto; }
  
  /* =========================================
     12. RESPONSIVE
     ========================================= */
  @media (max-width: 1024px) {
    .stats-bar { gap: 2rem; }
    .product-section, .story-top { gap: 40px; }
    .text-hero { font-size: 72px; }
  }
  
  @media (max-width: 900px) {
    html, body { overflow-x: hidden; width: 100%; }
    .container { padding: 60px 5%; }
    .product-intro, .story-top, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .story-img-placeholder { height: 350px; }
    .logo-main { font-size: 42px; }
    .logo-sub  { font-size: 18px; }
    .text-hero { font-size: 56px; }
    .text-h1   { font-size: 42px; }
    .text-h2   { font-size: 32px; }
    .text-h3   { font-size: 24px; }
    .sticky-navbar { justify-content: flex-end; padding: 12px 5%; }
    .story-body { grid-template-columns: 1fr; }
    .trained-row { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 600px) {
    html, body { overflow-x: hidden; width: 100%; }
  
    .text-hero       { font-size: 36px !important; font-weight: bolder; line-height: 1.2; }
    .text-h1         { font-size: 36px; }
    .text-h2         { font-size: 28px; }
    .text-h3         { font-size: 22px; }
    .text-subheading { font-size: 18px; line-height: 1.5; }
  
    .section-heading { font-size: clamp(32px, 5vw, 58px); }
  
    .hero { padding-top: 40px; min-height: auto; }
    .hero-btns { flex-direction: column; width: 100%; gap: 1rem; padding: 0 10%; }
    .hero-btns .btn { width: 100%; text-align: center; font-size: 12px; }
  
    .product-layout { grid-template-columns: 1fr; gap: 40px; }
    .product-card-inner { padding: 36px 28px 32px; }
    .stamp-wrap { top: -12px; right: -10px; }
  
    #why { padding: 72px 5% 90px; }
    .why-grid { grid-template-columns: 1fr; gap: 22px; }
    .why-card { transform: none !important; }
  
    #story { padding-top: 72px; }
    #story::before { display: none; }
    .trained-row { grid-template-columns: 1fr; }
    .story-numbers { gap: 20px; }
  
    .practices-grid { grid-template-columns: 1fr; gap: 18px; }
    .practice-card  { transform: none !important; }
  
    .order-heading { font-size: 28px; }
    .contact-grid  { grid-template-columns: 1fr; }
    .btn-whatsapp  { padding: 14px 28px; font-size: 11px; }
  
    .footer-grid   { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }
