  :root {
    --green: #3a7d44;
    --green-light: #5aad68;
    --green-dark: #2c5f35;
    --cream: #fdf8ef;
    --cream2: #f5ede0;
    /* Mustard / gold — pair with greens like logo “DD” */
    --gold: #e8a827;
    --gold-dark: #c9921a;
    --gold-soft: rgba(232, 168, 39, 0.22);
    --brown: #5c3d1e;
    --text: #2a2a2a;
    --text-mid: #5a5a5a;
    --white: #ffffff;
    /* Widen on large / ultrawide displays (see min-width blocks below) */
    --content-max: 1200px;
    --section-inline-pad: 2rem;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
  body.is-nav-open { overflow: hidden; }

  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10001;
    padding: 0.75rem 1.25rem;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 4px 0;
  }
  .skip-link:focus {
    left: 0;
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.72rem, 0.15vw + 0.68rem, 0.84rem);
    font-weight: 500;
    padding: 0.22rem 0;
    border-bottom: 2px solid rgba(232, 168, 39, 0.45);
  }
  .topbar .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0.2rem var(--section-inline-pad);
    flex-wrap: wrap;
    row-gap: 0.25rem;
    column-gap: 1.25rem;
  }
  .topbar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem 1.15rem;
    min-width: 0;
  }
  .topbar a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s;
  }
  .topbar a:hover,
  .topbar a:focus-visible {
    color: var(--gold);
  }
  .topbar-left span i { margin-right: .3rem; }
  .topbar-left a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
  }
  .topbar-left a:hover,
  .topbar-left a:focus-visible {
    color: var(--gold);
  }

  /* ── NAVBAR ── */
  nav {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
  }
  nav::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green) 40%, var(--gold) 40%, var(--gold) 100%);
    pointer-events: none;
  }
  .nav-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0.65rem var(--section-inline-pad) 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.75rem, 1.5vw, 2rem);
    min-height: 120px;
    height: auto;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    max-width: min(100%, 880px);
    min-width: 0;
  }
  .logo-icon {
    flex-shrink: 0;
    height: 108px;
    width: auto;
    max-width: min(740px, 68vw);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
  }
  .logo-icon img {
    height: 100%;
    width: auto;
    max-height: 108px;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
  }
  .footer-brand .logo-icon {
    max-width: min(500px, 96%);
    height: 118px;
    background: rgba(255, 255, 255, .96);
    border-radius: 12px;
    padding: 10px 18px;
  }
  .footer-brand .logo-icon img {
    max-height: 100px;
    object-position: left center;
  }
  .logo-text { line-height: 1.15; min-width: 0; }
  .logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
    color: var(--green-dark);
    letter-spacing: .02em;
  }
  .logo-text span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mid); }
  .nav-cluster {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 1.5vw, 2.25rem);
    margin-left: auto;
    flex-shrink: 1;
    min-width: 0;
  }
  .nav-links {
    display: flex;
    gap: clamp(0.85rem, 1.1vw, 1.65rem);
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  .nav-links a {
    text-decoration: none; font-size: .92rem; font-weight: 600;
    color: var(--text); letter-spacing: .04em; text-transform: uppercase;
    position: relative; padding-bottom: 4px;
    transition: color .25s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width .3s;
  }
  .nav-links a:hover { color: var(--green-dark); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--gold); color: var(--brown);
    padding: .55rem 1.4rem; border-radius: 4px;
    font-size: .85rem; font-weight: 700; text-decoration: none;
    text-transform: uppercase; letter-spacing: .06em;
    transition: background .25s, transform .2s, color .2s;
    box-shadow: 0 2px 12px rgba(232, 168, 39, 0.35);
  }
  .nav-cta:hover { background: var(--gold-dark); color: var(--brown); transform: translateY(-1px); }
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0.5rem;
    margin: -0.5rem -0.25rem -0.5rem 0;
    border-radius: 4px;
  }
  .hamburger:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 2px;
  }
  .hamburger span { display: block; width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, #1a3d22 0%, #264d30 38%, #3a7d44 62%, #4d7030 82%, #6f8228 100%);
    display: flex; align-items: center; overflow: hidden;
  }
  .hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
  .hero-circle {
    position: absolute; border-radius: 50%; opacity: .07; background: var(--white);
  }
  .hero-circle.c1 { width: 600px; height: 600px; top: -200px; right: -150px; }
  .hero-circle.c2 { width: 350px; height: 350px; bottom: -100px; left: 10%; }
  .hero-circle.c3 { width: 150px; height: 150px; top: 30%; left: 5%; opacity: .05; }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 3rem var(--section-inline-pad) 4rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
  }
  .hero-content {
    position: relative;
    max-width: none;
    margin: 0;
    padding: 0;
    width: auto;
  }
  .hero-photo {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp .8s .5s both;
    width: 100%;
  }
  .hero-slider {
    position: relative;
    width: 100%;
    max-width: min(550px, 100%);
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    overflow: hidden;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.14));
  }
  .hero-slider .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    opacity: 0;
    transform: translateX(100%);
    z-index: 0;
    will-change: transform, opacity;
  }
  .hero-slider .hero-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
  }
  .hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: .85rem;
    transform: translateX(-50%);
    display: flex;
    gap: .4rem;
    z-index: 2;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    transition: transform .2s, background-color .2s;
  }
  .hero-dot.is-active {
    background: var(--gold);
    transform: scale(1.2);
  }
  .hero-slider-dots {
    display: none !important;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    color: var(--gold); border-radius: 30px;
    padding: .35rem 1rem; font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s .2s both;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--white); line-height: 1.1;
    max-width: 650px;
    animation: fadeUp .8s .4s both;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-sub {
    color: rgba(255,255,255,.8); font-size: 1.1rem; line-height: 1.7;
    max-width: 500px; margin: 1.5rem 0 2.5rem;
    animation: fadeUp .8s .6s both;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .8s both; }
  .btn-primary {
    background: var(--gold); color: var(--brown);
    padding: .85rem 2.2rem; border-radius: 4px;
    font-weight: 800; font-size: .92rem; text-decoration: none;
    letter-spacing: .05em; text-transform: uppercase;
    transition: all .25s; box-shadow: 0 4px 20px rgba(232,168,39,.4);
  }
  .btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,168,39,.5); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,.6); color: var(--white);
    padding: .85rem 2.2rem; border-radius: 4px;
    font-weight: 700; font-size: .92rem; text-decoration: none;
    letter-spacing: .05em; text-transform: uppercase;
    transition: all .25s;
  }
  .btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    animation: fadeUp .8s 1s both;
  }
  .stat { border-left: 3px solid var(--gold); padding-left: 1rem; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white); font-weight: 800; line-height: 1; }
  .stat-label { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }

  /* ── MARQUEE ── */
  .marquee-bar { background: var(--gold); padding: .75rem 0; overflow: hidden; }
  .marquee-track {
    display: flex; gap: 3rem; white-space: nowrap;
    animation: marquee 52s linear infinite;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: .6rem;
    font-weight: 700; font-size: .88rem; text-transform: uppercase;
    letter-spacing: .08em; color: var(--brown);
  }
  .marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brown); opacity: .5; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* Anchor offset for sticky nav (tied to header + logo height) */
  section[id],
  footer#contact,
  main#main {
    scroll-margin-top: 136px;
  }

  /* ── SECTION COMMON ── */
  section { padding: 6rem var(--section-inline-pad); }
  .container { width: 100%; max-width: var(--content-max); margin: 0 auto; }
  .section-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .15em; color: var(--green);
    margin-bottom: .8rem;
  }
  .section-tag::before { content: ''; width: 28px; height: 2px; background: var(--green); }
  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2; color: var(--text);
    margin-bottom: 1rem;
  }
  h2.section-title em { font-style: italic; color: var(--green); }
  /* Mustard section labels / accents (balance with green) */
  section#about .section-tag,
  section#why .section-tag {
    color: #8a5a10;
  }
  section#about .section-tag::before,
  section#why .section-tag::before {
    background: var(--gold);
  }
  section#about h2.section-title em,
  section#why h2.section-title em {
    color: var(--gold-dark);
  }
  section.testimonials .section-tag {
    color: #8a5a10;
  }
  section.testimonials .section-tag::before {
    background: var(--gold);
  }
  section.testimonials h2.section-title em {
    color: var(--gold-dark);
  }
  .section-desc { color: var(--text-mid); font-size: 1rem; line-height: 1.75; max-width: 560px; }

  /* ── ABOUT ── */
  .about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-imgs { position: relative; }
  .about-img-main {
    width: 75%; border-radius: 8px;
    overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.15);
  }
  .about-img-main img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
  .about-img-float {
    position: absolute; bottom: -2rem; right: 0;
    width: 55%; border-radius: 8px;
    overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.2);
    border: 6px solid var(--white);
  }
  .about-img-float img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
  .about-badge {
    position: absolute; top: 2rem; right: 1rem;
    background: var(--green); color: var(--white);
    border-radius: 50%; width: 110px; height: 110px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(58,125,68,.45), 0 0 0 3px var(--gold);
    z-index: 2;
  }
  .about-badge strong { font-family: 'Playfair Display', serif; font-size: 1.8rem; line-height: 1; }
  .about-badge span { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .9; line-height: 1.2; }
  .about-text .section-desc { max-width: 100%; margin-bottom: 1.5rem; }
  .about-checks { list-style: none; margin: 1.8rem 0; }
  .about-checks li {
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .95rem; margin-bottom: .8rem; color: var(--text-mid);
  }
  .about-checks li::before {
    content: '✓'; flex-shrink: 0; width: 22px; height: 22px;
    background: var(--green); color: var(--white);
    border-radius: 50%; font-size: .7rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .about-checks li:nth-child(even)::before {
    background: var(--gold);
    color: var(--brown);
  }
  .about-cta-row { display: flex; align-items: center; gap: 2rem; margin-top: 2rem; }
  .about-cta-row .btn-green {
    background: var(--green); color: var(--white);
    padding: .8rem 2rem; border-radius: 4px;
    font-weight: 700; font-size: .88rem; text-decoration: none;
    letter-spacing: .06em; text-transform: uppercase;
    transition: all .25s;
  }
  .about-cta-row .btn-green:hover { background: var(--green-dark); }
  .about-cta-row .play-btn {
    display: flex; align-items: center; gap: .7rem;
    text-decoration: none; color: var(--text); font-weight: 700; font-size: .88rem;
    background: none; border: 0; font: inherit; cursor: pointer; text-align: left;
    padding: 0;
  }
  .about-cta-row .play-btn:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 4px;
    border-radius: 4px;
  }
  .play-circle {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem;
    box-shadow: 0 4px 20px rgba(232,168,39,.4);
    transition: transform .25s;
  }
  .play-btn:hover .play-circle { transform: scale(1.1); }

  /* ── FEATURES BAR ── */
  .features-bar {
    background: linear-gradient(120deg, var(--green-dark) 0%, #2a4a32 42%, #354428 100%);
    padding: 0;
    border-top: 3px solid var(--gold);
  }
  .features-bar .container { display: grid; grid-template-columns: repeat(4,1fr); }
  .feat-item {
    padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: flex-start; gap: 1rem;
    transition: background .25s;
  }
  .feat-item:last-child { border-right: none; }
  .feat-item:hover { background: rgba(255,255,255,.05); }
  .feat-icon {
    flex-shrink: 0; width: 52px; height: 52px;
    background: rgba(255,255,255,.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
  }
  .feat-item:nth-child(odd) .feat-icon {
    background: var(--gold-soft);
    border: 1px solid rgba(232, 168, 39, 0.45);
  }
  .feat-text strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: .3rem; }
  .feat-text span { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.5; }

  /* ── PRODUCTS ── */
  .products { background: var(--white); }
  .products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
  .products-header .view-all {
    color: var(--green-dark); font-weight: 700; text-decoration: none; font-size: .88rem;
    text-transform: uppercase; letter-spacing: .08em;
    border-bottom: 2px solid var(--gold); padding-bottom: 2px;
    transition: color .2s, border-color .2s;
  }
  .products-header .view-all:hover { color: #8a5a10; border-bottom-color: var(--gold-dark); }
  .products-tabs { display: flex; gap: .5rem; margin-bottom: 3rem; flex-wrap: wrap; }
  .tab-btn {
    padding: .45rem 1.2rem; border-radius: 30px;
    font-size: .82rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; cursor: pointer;
    border: 2px solid #e0e0e0; background: transparent; color: var(--text-mid);
    transition: all .2s;
    font: inherit;
  }
  .tab-btn:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 2px;
  }
  .tab-btn.active, .tab-btn:hover {
    background: var(--gold); color: var(--brown); border-color: var(--gold);
  }
  .tab-btn.active {
    box-shadow: 0 2px 10px rgba(232, 168, 39, 0.35);
  }
  .products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
  .product-card {
    background: white; border-radius: 10px; overflow: hidden;
    transition: transform .28s ease, box-shadow .3s ease;
    cursor: pointer;
    will-change: transform, opacity, filter;
  }
  .product-card.product-pop-init {
    opacity: 0;
    transform: translateY(56px) scale(.86);
    filter: blur(3px);
  }
  .product-card.product-pop-in {
    animation: productPopupUp .66s cubic-bezier(.2,.9,.25,1.2) both;
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.12); }
  .product-img-wrap { position: relative; overflow: hidden; }
  .product-img-wrap img { width: 100%; display: block; aspect-ratio: 1; object-fit: cover; transition: transform .5s; }
  .product-card:hover .product-img-wrap img { transform: scale(1.07); }
  .product-badge-wrap {
    position: absolute; top: .8rem; left: .8rem; display: flex; gap: .4rem; flex-direction: column;
  }
  .badge { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .2rem .55rem; border-radius: 3px; }
  .badge-new { background: var(--green); color: var(--white); }
  .badge-sale { background: var(--gold); color: var(--brown); }
  .badge-organic { background: var(--green-dark); color: var(--white); }
  .product-actions {
    position: absolute; bottom: -50px; left: 0; right: 0;
    display: flex; justify-content: center; gap: .5rem; padding: .8rem;
    background: rgba(255,255,255,.9);
    transition: bottom .3s;
  }
  .product-card:hover .product-actions { bottom: 0; }
  .action-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--white); border: 1px solid #e0e0e0;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: .9rem; transition: all .2s;
    font: inherit;
    color: inherit;
    appearance: none;
    line-height: 1;
  }
  .action-btn:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
  }
  .action-btn:hover { background: var(--gold); color: var(--brown); border-color: var(--gold); }
  .product-info { padding: 1rem 1.2rem 1.2rem; }
  .product-cat { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green); font-weight: 700; margin-bottom: .3rem; }
  .product-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
  .product-price { font-weight: 800; font-size: 1.1rem; color: var(--green-dark); }
  .product-price del { font-size: .85rem; color: #aaa; font-weight: 400; margin-left: .4rem; }
  .product-rating { display: flex; align-items: center; gap: .3rem; margin-top: .4rem; }
  .stars { color: var(--gold); font-size: .8rem; }
  .rating-count { font-size: .75rem; color: var(--text-mid); }

  /* ── WHY US ── */
  .why { background: var(--cream); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .why-img {
    position: relative; border-radius: 12px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
  }
  .why-img img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
  .why-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(42,93,52,.7) 0%, transparent 50%);
  }
  .why-img-caption {
    position: absolute; bottom: 2rem; left: 2rem; right: 2rem; color: var(--white);
  }
  .why-img-caption strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; display: block; margin-bottom: .3rem; }
  .why-img-caption span { font-size: .85rem; opacity: .85; }
  .why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .why-card {
    background: var(--white); border-radius: 10px; padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: transform .3s, box-shadow .3s;
  }
  .why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
  .why-card-icon {
    width: 50px; height: 50px; border-radius: 10px;
    background: var(--cream); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1rem;
  }
  .why-card:nth-child(even) .why-card-icon {
    background: var(--gold-soft);
    border: 1px solid rgba(232, 168, 39, 0.35);
  }
  .why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
  .why-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

  /* ── PROCESS ── */
  .process { background: var(--green-dark); }
  .process .section-tag { color: var(--gold); }
  .process .section-tag::before { background: var(--gold); }
  .process h2.section-title { color: var(--white); }
  .process h2.section-title em { color: var(--gold); }
  .process .section-desc { color: rgba(255,255,255,.7); }
  .process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 4rem; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, rgba(232,168,39,.28) 0%, rgba(255,255,255,.14) 50%, rgba(232,168,39,.28) 100%);
    z-index: 0;
  }
  .process-step { text-align: center; position: relative; z-index: 1; padding: 0 1rem; }
  .step-num {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--green); border: 3px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800;
    color: var(--white); margin: 0 auto 1.5rem;
    transition: all .3s;
  }
  .process-step:hover .step-num { background: var(--gold); border-color: var(--gold); color: var(--brown); }
  .process-step h4 { color: var(--white); font-size: .95rem; margin-bottom: .5rem; }
  .process-step p { color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--white); }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .testi-card {
    background: var(--cream); border-radius: 12px; padding: 2rem;
    position: relative; transition: transform .3s, box-shadow .3s;
  }
  .testi-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,.1); }
  .testi-card::before {
    content: '"'; position: absolute; top: .5rem; right: 1.5rem;
    font-family: 'Playfair Display', serif; font-size: 6rem; color: var(--green);
    opacity: .12; line-height: 1;
  }
  .testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
  .testi-text { font-size: .93rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
  .testi-author { display: flex; align-items: center; gap: .8rem; }
  .testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--green);
  }
  .testi-name { font-weight: 700; font-size: .9rem; }
  .testi-role { font-size: .78rem; color: var(--text-mid); }

  /* ── GALLERY ── */
  .gallery { padding: 0; overflow: hidden; }
  .gallery-grid { display: grid; grid-template-columns: repeat(5,1fr); grid-template-rows: repeat(2,220px); }
  .gallery-item { overflow: hidden; position: relative; cursor: pointer; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 2; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-overlay {
    position: absolute; inset: 0; background: rgba(42,93,52,.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s; font-size: 2rem; color: var(--white);
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }

  /* ── BLOG ── */
  .blog { background: var(--cream); }
  .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 3rem; }
  .blog-card { background: var(--white); border-radius: 10px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
  .blog-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,.1); }
  .blog-img { overflow: hidden; }
  .blog-img img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; transition: transform .5s; }
  .blog-card:hover .blog-img img { transform: scale(1.06); }
  .blog-info { padding: 1.5rem; }
  .blog-meta { display: flex; align-items: center; gap: 1rem; font-size: .75rem; color: var(--text-mid); margin-bottom: .8rem; }
  .blog-meta span { display: flex; align-items: center; gap: .3rem; }
  .blog-cat { background: var(--green); color: var(--white); padding: .18rem .6rem; border-radius: 3px; font-size: .68rem; font-weight: 700; text-transform: uppercase; }
  .blog-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text); margin-bottom: .8rem; line-height: 1.4; }
  .blog-title a { text-decoration: none; color: inherit; }
  .blog-title a:hover { color: var(--green); }
  .blog-desc { font-size: .85rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.2rem; }
  .blog-link { color: var(--green); font-weight: 700; font-size: .85rem; text-decoration: none; text-transform: uppercase; letter-spacing: .06em; }
  .blog-link:hover { color: var(--green-dark); }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 100%);
    text-align: center; padding: 6rem var(--section-inline-pad);
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1484557052118-f32bd25b45b5?w=1400&q=50') center/cover;
    opacity: .08;
  }
  .cta-banner .container { position: relative; z-index: 1; }
  .cta-banner h2 {
    font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white); margin-bottom: 1rem;
  }
  .cta-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2.5rem; }
  .cta-banner .btn-primary { font-size: 1rem; padding: 1rem 2.8rem; }

  /* ── FOOTER ── */
  footer { background: #111; color: rgba(255,255,255,.7); }
  .footer-top { padding: 5rem var(--section-inline-pad) 3rem; }
  .footer-top .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
  .footer-brand .logo { margin-bottom: 1.2rem; }
  .footer-brand .logo-text strong { color: var(--white); }
  .footer-brand .logo-text span { color: rgba(255,255,255,.5); }
  .footer-brand p { font-size: .88rem; line-height: 1.75; margin-bottom: 1.5rem; }
  .footer-social { display: flex; gap: .6rem; }
  .social-link {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: .85rem; text-decoration: none;
    transition: all .2s;
  }
  .social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }
  .footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: .6rem; }
  .footer-links a {
    color: rgba(255,255,255,.6); text-decoration: none; font-size: .87rem;
    transition: color .2s; display: flex; align-items: center; gap: .4rem;
  }
  .footer-links a::before { content: '›'; color: var(--green); font-size: 1rem; }
  .footer-links a:hover { color: var(--white); }
  .footer-contact li { display: flex; gap: .8rem; font-size: .87rem; margin-bottom: .8rem; align-items: flex-start; }
  .footer-contact li span:first-child { color: var(--green); flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
  .footer-contact a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
  }
  .footer-contact a:hover { color: var(--white); border-bottom-color: rgba(255,255,255,.35); }
  .footer-col--wide { flex: 0 0 auto; width: clamp(220px, 28%, 340px); }
  .footer-branches {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .footer-branches li {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    line-height: 1.3;
    min-height: 2.4rem;
    padding: .3rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .footer-branches li:last-child {
    grid-column: 1 / -1;
    border-bottom: none;
  }
  .branch-pin { font-size: .75rem; flex-shrink: 0; filter: grayscale(30%); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.5rem var(--section-inline-pad);
  }
  .footer-bottom .container {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .82rem;
  }
  .footer-bottom a { color: var(--green); text-decoration: none; }
  .footer-bottom a:hover { text-decoration: underline; }

  /* ── WHATSAPP ORDER CTA (number + prefilled message in script) ── */
  .whatsapp-float {
    position: fixed;
    bottom: 1.15rem;
    right: 1.15rem;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3.35rem;
    padding: 0.55rem 1.15rem 0.55rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(145deg, #2fe676 0%, #22c55e 42%, #16a34a 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    box-shadow:
      0 4px 6px rgba(0, 0, 0, 0.12),
      0 10px 28px rgba(22, 163, 74, 0.45),
      0 0 0 2px rgba(255, 255, 255, 0.22) inset;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    animation: wa-pulse-glow 2.6s ease-in-out infinite;
  }
  @keyframes wa-pulse-glow {
    0%, 100% {
      box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.12),
        0 10px 28px rgba(22, 163, 74, 0.45),
        0 0 0 0 rgba(47, 230, 118, 0.45),
        0 0 0 2px rgba(255, 255, 255, 0.22) inset;
    }
    55% {
      box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.12),
        0 12px 32px rgba(22, 163, 74, 0.55),
        0 0 0 10px rgba(47, 230, 118, 0),
        0 0 0 2px rgba(255, 255, 255, 0.28) inset;
    }
  }
  .whatsapp-float:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.02);
    filter: brightness(1.05);
    box-shadow:
      0 6px 10px rgba(0, 0, 0, 0.14),
      0 14px 36px rgba(22, 163, 74, 0.55),
      0 0 0 2px rgba(232, 168, 39, 0.55) inset;
  }
  .whatsapp-float:active {
    transform: translateY(-1px) scale(0.99);
  }
  .whatsapp-float:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
  }
  .whatsapp-float__icon {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whatsapp-float__icon svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
  }
  .whatsapp-float__lines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    text-align: left;
  }
  .whatsapp-float__title {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    opacity: 0.95;
  }
  .whatsapp-float__sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    opacity: 0.88;
    max-width: 11.5rem;
    line-height: 1.25;
  }

  /* ── SCROLL TOP ── */
  .scroll-top {
    position: fixed; bottom: 7.25rem; right: 1.15rem;
    width: 46px; height: 46px; background: var(--green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem; cursor: pointer;
    box-shadow: 0 4px 20px rgba(58,125,68,.4);
    transition: all .25s; z-index: 999;
    opacity: 0; pointer-events: none;
    border: 0;
    font: inherit;
    appearance: none;
  }
  .scroll-top.visible { opacity: 1; pointer-events: all; }
  .scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }
  .scroll-top:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }

  /* ── BRANCH POPUP ── */
  .branch-popup[hidden] {
    display: none;
  }
  .branch-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1rem;
  }
  .branch-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 26, 17, 0.65);
    backdrop-filter: blur(2px);
  }
  .branch-popup__dialog {
    position: relative;
    width: min(94vw, 640px);
    max-height: min(88vh, 760px);
    overflow: auto;
    background: linear-gradient(180deg, #fffef9 0%, #f8f3e8 100%);
    border: 1px solid rgba(44, 95, 53, 0.25);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
    padding: 1.2rem 1.15rem 1rem;
  }
  .branch-popup__close {
    position: absolute;
    top: .6rem;
    right: .6rem;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(44, 95, 53, 0.09);
    color: var(--green-dark);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
  }
  .branch-popup__close:hover {
    background: rgba(44, 95, 53, 0.16);
  }
  .branch-popup__dialog h3 {
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    margin-bottom: .35rem;
    padding-right: 2rem;
  }
  .branch-popup__dialog p {
    color: var(--text-mid);
    font-size: .92rem;
    margin-bottom: .8rem;
  }
  .branch-popup__label {
    display: block;
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .45rem;
  }
  .branch-popup__select {
    width: 100%;
    border: 1px solid rgba(44, 95, 53, 0.3);
    background: #fff;
    border-radius: 10px;
    min-height: 44px;
    padding: .55rem .7rem;
    font-family: 'Nunito', sans-serif;
    font-size: .93rem;
    color: var(--text);
    margin-bottom: .9rem;
  }
  .branch-popup__select:focus-visible,
  .branch-popup__btn:focus-visible,
  .branch-popup__close:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }
  .branch-popup__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: .95rem;
  }
  .branch-popup__btn {
    border: 0;
    border-radius: 10px;
    min-height: 42px;
    padding: .5rem 1.2rem;
    font-family: 'Nunito', sans-serif;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 100%);
    cursor: pointer;
  }

  @media (max-width: 640px) {
    .branch-popup__dialog {
      width: min(96vw, 520px);
      max-height: 90vh;
      padding: 1rem .9rem .9rem;
    }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes productPopupUp {
    0% { opacity: 0; transform: translateY(56px) scale(.86); filter: blur(3px); }
    72% { opacity: 1; transform: translateY(-6px) scale(1.02); filter: blur(0); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top .container { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .about-grid, .why-grid { grid-template-columns: 1fr; }
    .testi-grid, .blog-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .hero-inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding-top: 2.5rem;
      padding-bottom: 3rem;
    }
    .hero-content { max-width: 36rem; margin-left: auto; margin-right: auto; }
    .hero h1 { font-size: 2.5rem; margin-left: auto; margin-right: auto; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 1.5rem !important; }
    .hero .stat {
      border-left: none;
      border-top: 3px solid var(--gold);
      padding-left: 0;
      padding-top: 0.65rem;
      text-align: center;
      min-width: 5.5rem;
    }
    .hero-photo { animation: fadeUp .8s .35s both; }
    .hero-slider { max-width: min(300px, 85vw); }
    .features-bar .container { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(2) { grid-column: span 1; }
    .footer-top .container { grid-template-columns: 1fr; gap: 2rem; }
    .nav-inner {
      flex-wrap: wrap;
      height: auto;
      min-height: 100px;
      padding-top: 0.6rem;
      padding-bottom: 0.6rem;
      row-gap: 0;
      justify-content: space-between;
    }
    .logo { gap: 0.65rem; max-width: none; }
    .logo-icon {
      height: 80px;
      max-width: min(380px, 76vw);
    }
    .logo-icon img { max-height: 80px; }
    .hamburger { display: flex; }
    .nav-cluster {
      display: none;
      flex-basis: 100%;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      margin-left: 0;
      margin-top: 0.5rem;
      padding-top: 0.25rem;
      border-top: 1px solid rgba(0,0,0,.08);
    }
    nav.nav-open .nav-cluster {
      display: flex;
    }
    .nav-links {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 0;
      width: 100%;
      padding: 0 0 0.5rem;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .nav-links a::after { display: none; }
    .nav-cta {
      display: inline-flex;
      align-self: center;
      width: auto;
      min-width: 12rem;
      justify-content: center;
      margin-top: 0.35rem;
      text-align: center;
    }
    .why-cards { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 1.5rem; }
  }
  @media (max-width: 640px) {
    .topbar .inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  @media (max-width: 520px) {
    .whatsapp-float {
      padding: 0.5rem 0.85rem 0.5rem 0.55rem;
      gap: 0.45rem;
      font-size: 0.72rem;
      right: 0.85rem;
      bottom: 1rem;
    }
    .whatsapp-float__sub {
      display: none;
    }
    .whatsapp-float__title {
      font-size: 0.7rem;
    }
    .scroll-top {
      bottom: 6.5rem;
      right: 0.85rem;
    }
  }
  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .features-bar .container { grid-template-columns: 1fr; }
    .logo-icon {
      height: 70px;
      max-width: min(300px, 84vw);
    }
    .logo-icon img { max-height: 70px; }
  }

  /* ── LARGE & ULTRAWIDE (e.g. 30–65" / 4K) ── */
  @media (min-width: 1400px) {
    :root {
      --content-max: 1320px;
      --section-inline-pad: clamp(1.5rem, 3vw, 3rem);
    }
    .nav-inner {
      min-height: 128px;
      padding-top: 0.7rem;
      padding-bottom: 0.7rem;
    }
    .logo-icon {
      height: 118px;
      max-width: min(780px, 54vw);
    }
    .logo-icon img {
      max-height: 118px;
    }
    section[id],
    footer#contact,
    main#main {
      scroll-margin-top: 146px;
    }
    .about-grid,
    .why-grid {
      gap: clamp(4rem, 5vw, 6.5rem);
    }
  }
  @media (min-width: 1680px) {
    :root {
      --content-max: 1480px;
    }
    h2.section-title {
      font-size: clamp(2rem, 3.2vw, 3.65rem);
    }
    .topbar .inner {
      padding-top: 0.28rem;
      padding-bottom: 0.28rem;
    }
    .nav-inner {
      min-height: 134px;
    }
    .logo-icon {
      height: 128px;
      max-width: min(820px, 48vw);
    }
    .logo-icon img {
      max-height: 128px;
    }
    section[id],
    footer#contact,
    main#main {
      scroll-margin-top: 154px;
    }
    .nav-links a {
      font-size: 0.95rem;
    }
  }
  @media (min-width: 1920px) {
    :root {
      --content-max: 1640px;
    }
    section[id],
    footer#contact,
    main#main {
      scroll-margin-top: 162px;
    }
    .nav-inner {
      min-height: 142px;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    }
    .logo-icon {
      height: 136px;
      max-width: min(860px, 44vw);
    }
    .logo-icon img {
      max-height: 136px;
    }
    .nav-links a {
      font-size: 0.98rem;
    }
    .nav-cta {
      padding: 0.6rem 1.55rem;
      font-size: 0.88rem;
    }
    .products-grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 1.75rem;
    }
    .hero-slider {
      max-width: min(540px, 36vw);
    }
    .hero h1 {
      max-width: 760px;
      font-size: clamp(2.8rem, 4.25vw, 6rem);
    }
    .hero-sub {
      max-width: 36rem;
      font-size: 1.15rem;
    }
    .testi-grid {
      gap: 2rem;
    }
  }
  @media (min-width: 2200px) {
    :root {
      --content-max: 1780px;
      --section-inline-pad: clamp(2rem, 3.5vw, 4rem);
    }
    section[id],
    footer#contact,
    main#main {
      scroll-margin-top: 172px;
    }
    .nav-inner {
      min-height: 150px;
      padding-top: 0.8rem;
      padding-bottom: 0.8rem;
    }
    .logo-icon {
      height: 144px;
      max-width: min(920px, 40vw);
    }
    .logo-icon img {
      max-height: 144px;
    }
    .nav-links {
      gap: 1.5rem;
    }
    .nav-links a {
      font-size: 1rem;
      letter-spacing: 0.045em;
    }
    .nav-cta {
      padding: 0.62rem 1.85rem;
      font-size: 0.9rem;
    }
    .products-grid {
      grid-template-columns: repeat(6, 1fr);
      gap: 2rem;
    }
    .hero-slider {
      max-width: min(600px, 32vw);
    }
    .footer-top .container {
      gap: clamp(3rem, 4vw, 5rem);
    }
  }
  @media (min-width: 2560px) {
    :root {
      --content-max: 1920px;
      --section-inline-pad: clamp(2rem, 4vw, 5rem);
    }
    section[id],
    footer#contact,
    main#main {
      scroll-margin-top: 180px;
    }
    .topbar {
      font-size: clamp(0.76rem, 0.28vw + 0.68rem, 0.88rem);
    }
    .topbar .inner {
      row-gap: 0.3rem;
    }
    .nav-inner {
      min-height: 158px;
      padding-top: 0.85rem;
      padding-bottom: 0.85rem;
    }
    .logo-icon {
      height: 156px;
      max-width: min(980px, 38vw);
    }
    .logo-icon img {
      max-height: 156px;
    }
    .nav-cluster {
      gap: 2.5rem;
    }
    .hero-slider {
      max-width: min(680px, 30vw);
    }
    .feat-item {
      padding-left: clamp(2rem, 3vw, 3.5rem);
      padding-right: clamp(2rem, 3vw, 3.5rem);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee-track { animation: none !important; }
    .hero-badge, .hero h1, .hero-sub, .hero-btns, .hero-stats, .hero-photo { animation: none !important; opacity: 1 !important; transform: none !important; }
    .hero-slider .hero-slide { transition: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .reveal.visible { transition: none !important; }
    .scroll-top:hover { transform: none; }
    .whatsapp-float:hover { transform: none; filter: none; }
    .whatsapp-float { animation: none !important; }
    .product-card:hover { transform: none; }
    .product-card.product-pop-init,
    .product-card.product-pop-in {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      animation: none !important;
    }
    .gallery-item:hover img { transform: none; }
  }
