/*
Theme Name: My Custom Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme with WooCommerce support.
Version: 1.09
License: GPL v2 or later
Text Domain: my-custom-theme
*/
 :root {
    --green-deep: #2d5016;
    --green-mid: #4a7c2f;
    --green-fresh: #6db33f;
    --green-light: #a8d672;
    --green-pale: #e8f5d0;
    --brown-dark: #5c3d1e;
    --brown-mid: #8b5e3c;
    --brown-warm: #c4956a;
    --yellow-soft: #f5e6a3;
    --yellow-warm: #f0c040;
    --cream: #faf6ee;
    --white: #ffffff;
    --text-dark: #000;
    --text-mid: #333;
    --text-light: #7a8c60;
    --shadow-soft: 0 4px 24px rgba(45,80,22,0.10);
    --shadow-hover: 0 12px 40px rgba(45,80,22,0.18);
    --radius: 16px;
    --radius-sm: 10px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }
  body{font-family:'DM Sans',sans-serif;color:var(--text-dark);overflow-x:hidden}
  .container.error-404-page{background:#faf8f3 url(assets/images/4o4.png) right top/contain no-repeat}
 /* ── NAVBAR ── */
  
  nav.scrolled { box-shadow: var(--shadow-soft); }
  .nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
  .nav-logo-icon{width:40px;height:40px;background:var(--green-fresh);border-radius:50%;display:grid;place-items:center;font-size:20px}
  .nav-logo-text { font-family: 'Quicksand', 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-deep); font-weight: 700; line-height: 1.1; }
  .nav-logo-text span { display: block; font-size: .7rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--text-light); letter-spacing: .05em; }
  

  #menu-primary-menu { display: flex; gap: 32px; list-style: none; }
  #menu-primary-menu a { text-decoration: none; color: var(--text-mid); font-weight: 500; font-size: .95rem; transition: color .2s; }
  #menu-primary-menu a:hover { color: var(--green-fresh); }

  .nav-cta {
    background: #ccdf6c; color: var(--white);
    padding: 10px 24px; border-radius: 50px; font-weight: 600;
    text-decoration: none; font-size: .9rem;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(107,179,63,.35);
    color: #fff;
    background-image: linear-gradient(45deg,#08ae08,#003463);  
  }
  .nav-cta:hover { background: #93ad03; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(107,179,63,.4); background-image: linear-gradient(45deg,#003463,#08ae08);  }
  .nav-cta img{ vertical-align: middle;}

  /* ── HERO ── */
  .hero{min-height:100vh;display:grid;grid-template-columns:1fr 1fr;align-items:center;padding:100px 5% 60px;position:relative;overflow:hidden}
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(168,214,114,.22) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,230,163,.30) 0%, transparent 60%);
  }
  .hero-content { position: relative; z-index: 2; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-pale); color: var(--green-mid);
    padding: 6px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600;
    margin-bottom: 24px; letter-spacing: .03em;
  }
  .hero-badge::before { content: '🌿'; }
  h1.hero-heading {
    font-family:  'Urbanist','Quicksand', 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1.12;
    color: var(--green-deep);
    margin-bottom: 20px;
  }
  h1.hero-heading em { font-style: italic; color: var(--green-fresh); }
  .hero-sub {
    font-size: 1.08rem; color: var(--text-mid); line-height: 1.7;
    max-width: 480px; margin-bottom: 40px;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green-fresh); color: #fff;
    padding: 14px 32px; border-radius: 50px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none; border: none; cursor: pointer;
    transition: all .25s; box-shadow: 0 6px 20px rgba(107,179,63,.4);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(107,179,63,.45); }
  .btn-secondary {
    background: transparent; color: var(--green-deep);
    padding: 14px 32px; border-radius: 50px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none; border: 2px solid var(--green-light);
    transition: all .25s; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { background: var(--green-pale); border-color: var(--green-fresh); }

  .hero-stats {
    display: flex; gap: 32px; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid rgba(107,179,63,.2);
  }
  .stat-item { text-align: center; }
  .stat-num { font-family: 'Quicksand', 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--green-deep); }
  .stat-label { font-size: .8rem; color: var(--text-light); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }

  .hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
  .hero-image-wrap {
    position: relative; width: 100%; max-width: 520px;
  }
  .hero-main-img {
    width: 100%; border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
    background: linear-gradient(135deg, var(--green-pale) 0%, #c8e89a 50%, var(--yellow-soft) 100%);
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 10rem;
    box-shadow: 0 24px 60px rgba(45,80,22,.15);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
  }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

  .hero-bubble {
    position: absolute;
    background: white; border-radius: var(--radius);
    padding: 12px 16px; box-shadow: var(--shadow-hover);
    display: flex; align-items: center; gap: 10px;
    font-size: .85rem; font-weight: 500; color: var(--text-dark);
    animation: floatB 5s ease-in-out infinite;
  }
  .hero-bubble.b1 { top: 10%; right: -5%; animation-delay: 1s; }
  .hero-bubble.b2 { bottom: 20%; left: -8%; animation-delay: 2s; }
  .hero-bubble.b3 { top: 50%; right: -12%; animation-delay: .5s; }
  @keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .bubble-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--green-pale); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
  .bubble-text strong { display: block; font-size: .78rem; color: var(--text-light); font-weight: 400; }

  /* ── SECTION COMMON ── */
  section { padding: 90px 5%; }
  .section-tag {
    display: inline-block; background: var(--green-pale); color: var(--green-mid);
    padding: 5px 14px; border-radius: 50px; font-size: .82rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Urbanist', 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--green-deep); line-height: 1; margin-bottom: 16px; letter-spacing: -1px;
  }
  .section-sub { color: var(--text-mid); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-header .section-sub { margin: 0 auto; }

  /* ── ABOUT ── */
  .about { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about-image-wrap {
    position: relative;
  }
  .about-img-main {
    width: 100%; border-radius: 32px;
    /* aspect-ratio: 4/5; */
    background: linear-gradient(160deg, #c8e89a 0%, #8bc34a 40%, var(--brown-warm) 100%);
    display: flex; align-items: center; justify-content: center; font-size: 8rem;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
  }
  .about-img-main img{max-width: 100%;}
  .about-img-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--yellow-warm); color: var(--brown-dark);
    width: 110px; height: 110px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; font-weight: 700; box-shadow: 0 8px 24px rgba(240,192,64,.4);
    border: 4px solid white;
  }
  .about-img-badge strong { font-size: 1.6rem; font-family: 'Quicksand', 'Playfair Display', serif; line-height: 1; }
  .about-img-badge span { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
  .about-content { }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .about-feat {
    display: flex; align-items: center; gap: 12px;
    background: var(--green-pale); border-radius: var(--radius-sm);
    padding: 14px 16px; font-weight: 500; font-size: .9rem; color: var(--green-deep);
  }
  .about-feat-icon { font-size: 1.3rem; }

  /* ── PRODUCTS ── */
  .container-fluid.shop-page {
    padding: 100px 0%;
    width: 90%;
    margin: 0 auto;
}
 
  .products { background: var(--cream); }
  .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
  .product-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-soft);
    transition: transform .3s, box-shadow .3s;
    display: flex; flex-direction: column;
  }
  .product-img img {
    max-width: 100%;
    aspect-ratio: 4 / 5;
}
  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .product-img {
    aspect-ratio: 1; background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; position: relative; overflow: hidden;
  }
  .product-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.06));
  }
  .product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--green-fresh); color: white;
    font-size: .7rem; font-weight: 700; letter-spacing: .04em;
    padding: 4px 10px; border-radius: 50px;
    text-transform: uppercase;
  }
  .product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
  .product-name { font-family: 'Urbanist', 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 6px; }
  .product-desc { font-size: .85rem; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 16px; }
  .product-footer { display: flex; align-items: center; justify-content: space-between; }
  .product-price { font-size: 1.15rem; font-weight: 700; color: var(--green-mid); }
  .product-price span { font-size: .75rem; color: var(--text-light); font-weight: 400; text-decoration: line-through; margin-left: 4px; }
  .btn-buy {
    background: var(--green-fresh); color: white;
    border: none; border-radius: 50px; padding: 8px 18px;
    font-size: .85rem; font-weight: 600; cursor: pointer;
    transition: all .2s;
  }
  .btn-buy:hover { background: var(--green-mid); transform: scale(1.04); }

  /* ── GALLERY ── */
  .gallery { background: var(--green-deep); }
  .gallery .section-title { color: white; }
  .gallery .section-tag { background: rgba(255,255,255,.12); color: var(--green-light); }
  .gallery .section-sub { color: rgba(255,255,255,.65); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 16px;
  }
  .gallery-item {
    border-radius: var(--radius-sm); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; cursor: pointer;
    transition: transform .3s, filter .3s;
    position: relative;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; font-size: 6rem; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-item:hover { transform: scale(1.03); filter: brightness(1.08); }
  .gallery-item::after {
    content: attr(data-label);
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.55));
    color: white; font-size: .82rem; font-weight: 600;
    padding: 24px 14px 12px;
    opacity: 0; transition: opacity .3s;
    font-family: 'DM Sans', sans-serif;
  }
  .gallery-item:hover::after { opacity: 1; }

  .g1 { background: linear-gradient(135deg, #a8d672, #6db33f); }
  .g2 { background: linear-gradient(135deg, #d4e8a0, #8bc34a); }
  .g3 { background: linear-gradient(135deg, #f5e6a3, #f0c040); }
  .g4 { background: linear-gradient(135deg, #c4956a, #8b5e3c); }
  .g5 { background: linear-gradient(135deg, #e8f5d0, #a8d672); }
  .g6 { background: linear-gradient(135deg, #fff3cd, #ffd700); }
  .g7 { background: linear-gradient(135deg, #c8e6a0, #4a7c2f); }
  .g8 { background: linear-gradient(135deg, #f0e4d0, #c4956a); }
  .g5 img, .g6 img, .g7 img, .g8 img {object-fit: cover; max-width: 100%;}
  /* ── WHY CHOOSE US ── */
  .why { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .why-card {
    background: var(--cream); border-radius: var(--radius);
    padding: 36px 28px; text-align: center;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid transparent;
  }
  .why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--green-light); }
  .why-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--green-pale); margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; transition: background .3s;
  }
  .why-card:hover .why-icon { background: var(--green-light); }
  .why-title { font-family: 'Urbanist', 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-deep); margin-bottom: 10px; }
  .why-text { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, #5a9e2f 100%);
    text-align: center; padding: 100px 5%;
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .cta-banner .section-tag { background: rgba(255,255,255,.15); color: var(--green-light); }
  .cta-banner h2 {
    font-family: 'Urbanist', 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem); color: white; margin-bottom: 20px; line-height: 1.2;
  }
  .cta-banner p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: white; color: var(--green-deep);
    padding: 15px 36px; border-radius: 50px;
    font-weight: 700; font-size: 1rem; text-decoration: none;
    transition: all .25s; box-shadow: 0 6px 20px rgba(0,0,0,.2);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.25); }
  .btn-outline-white {
    background: transparent; color: white;
    padding: 15px 36px; border-radius: 50px;
    font-weight: 600; font-size: 1rem; text-decoration: none;
    border: 2px solid rgba(255,255,255,.5);
    transition: all .25s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--cream); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .testi-card {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow-soft); transition: transform .3s, box-shadow .3s;
    display: flex; flex-direction: column; gap: 20px;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
  .testi-stars { color: var(--yellow-warm); font-size: 1.1rem; letter-spacing: 2px; }
  .testi-text { font-size: .95rem; color: var(--text-mid); line-height: 1.75; font-style: italic; flex: 1; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--green-pale); display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; flex-shrink: 0;
  }
  .testi-name { font-weight: 700; color: var(--green-deep); font-size: .95rem; }
  .testi-loc { font-size: .82rem; color: var(--text-light); }
  .testi-verified { font-size: .75rem; color: var(--green-fresh); font-weight: 600; }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,.75);
    padding: 72px 5% 28px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
  .footer-brand {}
  .footer-logo {
    display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
    text-decoration: none;
  }
  .footer-logo-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--green-fresh); display: grid; place-items: center; font-size: 20px; }
  .footer-logo-text { font-family: 'Quicksand', 'Playfair Display', serif; font-size: 1.2rem; color: white; }
  .footer-desc { font-size: .9rem; line-height: 1.75; margin-bottom: 24px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: grid; place-items: center; font-size: 1rem;
    text-decoration: none; transition: background .2s;
  }
  .social-btn:hover { background: var(--green-fresh); }

  .footer-col h4 { color: white; font-weight: 700; margin-bottom: 20px; font-size: 1rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; transition: color .2s; }
  .footer-links a:hover { color: var(--green-light); }

  .footer-contact { display: flex; flex-direction: column; gap: 14px; }
  .contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; }
  .contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

  .newsletter-form { display: flex; gap: 10px; margin-top: 8px; }
  .newsletter-form input {
    flex: 1; padding: 11px 16px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.08); color: white;
    font-size: .9rem; font-family: 'DM Sans', sans-serif;
    outline: none; transition: border .2s;
    flex:0 0 80%;
  }
  .newsletter-form input.submitbtn {
    flex: 0 0 20%;
    margin-left: 10px;
}
  .newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
  .newsletter-form input:focus { border-color: var(--green-light); }
  .newsletter-form button, .newsletter-form .submitbtn {
    background: var(--green-fresh); color: white;
    border: none; border-radius: 50px; padding: 11px 20px;
    font-weight: 600; cursor: pointer; white-space: nowrap;
    transition: background .2s;
  }
 .newsletter-form button:hover, .newsletter-form .submitbtn:hover { background: var(--green-mid); }
.newsletter-form p {    display: flex;    justify-content: space-between;}
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom a { color: var(--green-light); text-decoration: none; }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-up.visible { opacity: 1; transform: none; }
  .fade-up:nth-child(2) { transition-delay: .1s; }
  .fade-up:nth-child(3) { transition-delay: .2s; }
  .fade-up:nth-child(4) { transition-delay: .3s; }
  .fade-up:nth-child(5) { transition-delay: .4s; }
 
  @media(min-width:1025px){
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-hamburger span { width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: .3s; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 180px 180px; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-hamburger { display: flex; }
    .menu-primary-menu-container{display: none;}
  }
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding: 100px 5% 60px; text-align: center; }
    .hero-sub { max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .nav-links, .nav-cta { display: none; }    
  }
  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: var(--white); padding: 80px 8% 40px;
    flex-direction: column; gap: 24px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 1.4rem; font-weight: 600; color: var(--green-deep); text-decoration: none; }
  .mobile-close { position: absolute; top: 22px; right: 5%; font-size: 1.8rem; cursor: pointer; background: none; border: none; color: var(--text-dark); }

  /* ── LEAF DECO ── */
  .leaf-deco {
    position: absolute; opacity: .07; font-size: 8rem; pointer-events: none;
    user-select: none;
  }