/* ===== SUNCRAVE — Shared Styles ===== */
:root {
    --orange: #F5A623;
    --orange-deep: #E8820E;
    --orange-dark: #D4691A;
    --red-accent: #C0392B;
    --brown: #3A2A1A;
    --brown-soft: #6B5844;
    --cream: #FFFBF4;
    --cream-2: #FDF3E3;
    --white: #ffffff;
    --line: #EFE2CE;
    --shadow: 0 12px 40px rgba(180, 120, 30, 0.12);
    --shadow-sm: 0 6px 20px rgba(180, 120, 30, 0.10);
    --radius: 18px;
    --max: 1180px;
    --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--brown);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

.section { padding: 78px 0; }
.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange-dark);
    background: var(--cream-2);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-title span { color: var(--orange-deep); }
.section-sub {
    color: var(--brown-soft);
    max-width: 620px;
    margin-top: 12px;
    font-size: 1.02rem;
}
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 13px 28px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #fff;
    box-shadow: 0 10px 24px rgba(232, 130, 14, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232, 130, 14, 0.45); }
.btn-ghost {
    background: transparent;
    color: var(--brown);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }

/* ===== Scroll reveal (animate on scroll) ===== */
.sr { opacity: 0; transform: translateY(30px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.sr.sr-in { opacity: 1; transform: none; }

/* ===== Announcement top bar ===== */
.topbar {
    background: linear-gradient(135deg, var(--brown), #5a3d22);
    color: #fff;
    font-size: 0.84rem;
}
.topbar-in {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; height: 40px; white-space: nowrap;
}
.topbar a { color: #FCD9A0; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar-contact { display: flex; gap: 18px; }

/* ===== Header ===== */
/* wrapper must not create a box, else sticky stops after scrolling past it */
#site-header { display: contents; }

/* floating shell: creates top + side gap and keeps it sticky */
.header-shell {
    position: sticky;
    top: 12px;
    z-index: 100;
    margin-top: 16px;
    padding: 0 16px;
}
.header {
    max-width: 1240px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(150, 90, 20, 0.13);
    transition: box-shadow .25s, transform .25s;
}
.header.scrolled { box-shadow: 0 18px 44px rgba(150, 90, 20, 0.20); }
.nav { position: relative; display: flex; align-items: center; gap: 18px; height: 100px; padding: 0 22px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 84px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.nav-links > a, .nav-drop {
    font-family: inherit;
    font-weight: 500; font-size: 0.95rem; color: var(--brown);
    padding: 10px 14px; border-radius: 10px;
    background: none; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color .15s, background .15s;
}
.nav-links > a:hover, .nav-drop:hover { color: var(--orange-deep); background: var(--cream-2); }
.nav-links > a.active { color: var(--orange-deep); font-weight: 600; }
.nav-drop .caret { width: 11px; height: 11px; transition: transform .2s; }
.has-mega { position: relative; }
.has-mega:hover .nav-drop { color: var(--orange-deep); background: var(--cream-2); }
.has-mega:hover .nav-drop .caret { transform: rotate(180deg); }

/* mega dropdown */
.mega {
    position: absolute; top: calc(100% + 12px); left: 0;
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 22px 55px rgba(150, 90, 20, 0.16);
    padding: 12px; min-width: 330px;
    display: grid; gap: 4px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s; z-index: 60;
}
.has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; } /* hover bridge */
.mega-item { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 11px; transition: background .15s; }
.mega-item:hover { background: var(--cream-2); }
.mega-item .mi-ic { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--cream-2); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.mega-item b { display: block; font-size: 0.94rem; color: var(--brown); line-height: 1.2; }
.mega-item small { color: var(--brown-soft); font-size: 0.8rem; }

/* right side actions */
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 16px; flex: none; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; line-height: 1; font-weight: 600; font-size: 0.92rem; color: var(--brown); white-space: nowrap; }
.nav-phone .phone-ic { flex: none; display: block; }
.nav-phone span { display: inline-block; line-height: 1; }
.nav-phone:hover { color: var(--orange-deep); }
.btn-sm { padding: 11px 22px; font-size: 0.92rem; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--brown); border-radius: 2px; margin: 5px 0; transition: .2s; }

/* ===== Header mobile ===== */
@media (max-width: 980px) {
    .topbar-contact { display: none; }
    .topbar-in { justify-content: center; }
    .nav-phone { display: none; }
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute; top: calc(100% + 10px); left: 0; right: 0;
        background: #fff; flex-direction: column; align-items: stretch;
        padding: 12px 16px 18px; gap: 2px; margin-left: 0;
        border: 1px solid var(--line); border-radius: 16px;
        box-shadow: var(--shadow);
        max-height: calc(100vh - 130px); overflow-y: auto;
        opacity: 0; visibility: hidden;
        transform: translateY(-12px); transition: opacity .22s ease, transform .22s ease, visibility .22s;
    }
    .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-links.open { transform: translateY(0); }
    .nav-links > a, .nav-drop { padding: 13px 14px; width: 100%; justify-content: space-between; border-radius: 10px; }
    .has-mega { width: 100%; }
    .mega {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; border-radius: 0;
        padding: 0 0 8px 10px; min-width: 0; display: none;
    }
    .has-mega.open-sub .mega { display: grid; }
    .has-mega.open-sub .nav-drop .caret { transform: rotate(180deg); }
    .mega-item { padding: 10px; }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% -10%, rgba(245, 166, 35, 0.22), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(212, 105, 26, 0.12), transparent 40%),
        var(--cream);
}
/* soft moving glow */
.hero::before {
    content: "";
    position: absolute;
    top: -30%; left: 55%;
    width: 60vw; height: 60vw;
    max-width: 820px; max-height: 820px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.16), transparent 62%);
    border-radius: 50%;
    animation: glowFloat 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-4%, 4%) scale(1.08); }
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 70px 0 84px;
}

/* ===== Hero slider ===== */
.hero-slides { position: relative; transition: height .5s ease; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%;
    opacity: 0; visibility: hidden;
    transition: opacity .9s ease, visibility .9s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-tagline { font-size: 0.34em; font-weight: 600; color: var(--brown); display: inline-block; margin-top: 12px; letter-spacing: 0; line-height: 1.3; }
/* rotating hero heading */
#heroHeading { transition: opacity .45s ease; min-height: 2.3em; }
.hero-cutout--man { max-width: 480px; width: 100%; }
.hero-dots {
    position: absolute; bottom: 16px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 9px; z-index: 6;
}
.hero-dot {
    width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
    background: rgba(58, 42, 26, 0.22); cursor: pointer; transition: .25s;
}
.hero-dot.is-active { background: var(--orange-deep); width: 26px; border-radius: 5px; }

/* ---- entrance reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); animation: revealUp .8s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--d, 0s); }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* ---- waving sun emoji ---- */
.wave-emoji { display: inline-block; transform-origin: 60% 70%; animation: sunSpin 9s linear infinite; }
@keyframes sunSpin { to { transform: rotate(360deg); } }

/* ---- drifting spice particles ---- */
.spice-field { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.spice {
    position: absolute;
    top: 110%;
    opacity: 0;
    animation: floatUp 14s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(150, 90, 20, 0.18));
}
@keyframes floatUp {
    0%   { transform: translateY(0) rotate(0deg);      opacity: 0; }
    10%  { opacity: .8; }
    90%  { opacity: .8; }
    100% { transform: translateY(-118vh) rotate(320deg); opacity: 0; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brown-soft);
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero h1 {
    font-size: clamp(2.3rem, 5.2vw, 3.7rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.2px;
    color: var(--brown);
}
.hero h1 .grad {
    background: linear-gradient(120deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p.lead {
    font-size: 1.12rem;
    color: var(--brown-soft);
    margin: 22px 0 30px;
    max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; align-items: center; gap: 12px; }
.stat-ic {
    width: 46px; height: 46px; flex: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(232, 130, 14, 0.30);
}
.stat-ic.stat-ic-soft { background: linear-gradient(135deg, #FBC66B, var(--orange)); }
.stat-ic svg { width: 22px; height: 22px; }
.hero-stats .stat-txt b {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.05;
}
.hero-stats .stat-txt span { font-size: 0.82rem; color: var(--brown-soft); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 440px; }
.hero-glow {
    position: absolute;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.28), rgba(245, 166, 35, 0) 62%);
    border-radius: 50%;
    z-index: 0;
    animation: sunPulse 5s ease-in-out infinite;
}
.hero-rays-soft {
    position: absolute;
    width: 560px; height: 560px;
    z-index: 0;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, rgba(245,166,35,0.10) 0deg 5deg, transparent 5deg 16deg);
    -webkit-mask: radial-gradient(circle, transparent 34%, #000 35%, #000 72%, transparent 74%);
            mask: radial-gradient(circle, transparent 34%, #000 35%, #000 72%, transparent 74%);
    animation: raySpin 60s linear infinite;
    opacity: .6;
}
.hero-cutout {
    position: relative;
    z-index: 1;
    width: 108%;
    max-width: 680px;
    height: auto;
    filter: drop-shadow(0 22px 40px rgba(120, 70, 15, 0.24));
}
/* 3 masala packets — pop in after the image */
.hero-packets {
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-46%);
    display: flex; align-items: flex-end;
    z-index: 4;
}
.hpk {
    width: 108px;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(120, 70, 15, 0.28);
    opacity: 0;
    animation: popIn .7s cubic-bezier(.22,1.2,.4,1) forwards;
}
.hpk-1 { transform: rotate(-9deg); margin-right: -20px; z-index: 1; animation-delay: 1.15s; }
.hpk-2 { width: 120px; z-index: 3; animation-delay: 1.35s; }
.hpk-3 { transform: rotate(9deg); margin-left: -20px; z-index: 1; animation-delay: 1.55s; }
@keyframes popIn {
    0%   { opacity: 0; transform: translateY(34px) scale(.7) rotate(var(--r, 0deg)); }
    60%  { opacity: 1; transform: translateY(-6px) scale(1.05) rotate(var(--r, 0deg)); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotate(var(--r, 0deg)); }
}
.hpk-1 { --r: -9deg; }
.hpk-2 { --r: 0deg; }
.hpk-3 { --r: 9deg; }
.hero-sun {
    position: absolute;
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.30), rgba(245, 166, 35, 0) 62%);
    border-radius: 50%;
    z-index: 0;
    animation: sunPulse 5s ease-in-out infinite;
}
@keyframes sunPulse {
    0%, 100% { transform: scale(1); opacity: .9; }
    50% { transform: scale(1.08); opacity: 1; }
}
/* rotating conic rays behind packs */
.hero-rays {
    position: absolute;
    width: 520px; height: 520px;
    z-index: 0;
    border-radius: 50%;
    background:
        repeating-conic-gradient(
            from 0deg,
            rgba(245, 166, 35, 0.16) 0deg 6deg,
            transparent 6deg 18deg
        );
    -webkit-mask: radial-gradient(circle, transparent 30%, #000 31%, #000 70%, transparent 72%);
            mask: radial-gradient(circle, transparent 30%, #000 31%, #000 70%, transparent 72%);
    animation: raySpin 46s linear infinite;
    opacity: .7;
}
@keyframes raySpin { to { transform: rotate(360deg); } }

.hero-packs { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: center; }
.hero-packs .pack {
    width: 220px;
    filter: drop-shadow(0 24px 34px rgba(150, 90, 20, 0.30));
    border-radius: 12px;
    opacity: 0;
    animation: packIn .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-packs .pack-left   { width: 178px; margin-right: -38px; z-index: 1; --rot: -7deg; animation-delay: .35s; }
.hero-packs .pack-center { z-index: 3; --rot: 0deg; animation-delay: .15s; }
.hero-packs .pack-right  { width: 178px; margin-left: -38px; z-index: 1; --rot: 7deg; animation-delay: .55s; }

@keyframes packIn {
    0%   { opacity: 0; transform: translateY(40px) rotate(var(--rot)) scale(.9); }
    100% { opacity: 1; transform: translateY(0)    rotate(var(--rot)) scale(1); }
}
/* gentle continuous float once revealed */
.hero-packs .pack-center { animation: packIn .9s cubic-bezier(.2,.8,.2,1) forwards, floatPack 4.5s ease-in-out 1.1s infinite; }
.hero-packs .pack-left   { animation: packIn .9s cubic-bezier(.2,.8,.2,1) forwards, floatPack 5.2s ease-in-out 1.3s infinite; }
.hero-packs .pack-right  { animation: packIn .9s cubic-bezier(.2,.8,.2,1) forwards, floatPack 4.8s ease-in-out 1.5s infinite; }
@keyframes floatPack {
    0%, 100% { transform: translateY(0)    rotate(var(--rot)); }
    50%      { transform: translateY(-12px) rotate(var(--rot)); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .hpk { animation: none !important; opacity: 1 !important; }
    .hero::before, .hero-rays, .hero-rays-soft, .hero-sun, .hero-glow, .wave-emoji, .spice { animation: none !important; }
    .spice { display: none; }
}

/* ===== Trust bar ===== */
.trust {
    background: linear-gradient(135deg, var(--orange-deep), var(--orange-dark));
    color: #fff;
}
.trust-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 18px;
    padding: 24px 0;
    text-align: center;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.98rem; }
.trust-item .ic { font-size: 1.3rem; }

/* ===== Ranges / cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.range-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}
.range-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.range-card .img-box {
    height: 210px;
    background: var(--cream-2);
    display: flex; align-items: center; justify-content: center;
    padding: 18px;
}
.range-card .img-box img { max-height: 100%; width: auto; filter: drop-shadow(0 12px 20px rgba(150,90,20,0.2)); }
.range-card .body { padding: 22px 24px 26px; }
.range-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.range-card p { color: var(--brown-soft); font-size: 0.95rem; }
.range-card .tag { font-size: 0.8rem; color: var(--orange-dark); font-weight: 600; margin-top: 14px; display: inline-block; }

/* ===== Featured products ===== */
.prod-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px; }
.prod {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.prod:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.prod img { height: 130px; width: auto; margin: 0 auto 12px; object-fit: contain; }
.prod h4 { font-size: 0.95rem; font-weight: 600; }
.prod span { font-size: 0.8rem; color: var(--brown-soft); }

/* ===== Story split ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.story-card {
    background: linear-gradient(150deg, var(--cream-2), #fff);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.story-card .quote {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1.5;
}
.story-card .quote em { color: var(--orange-deep); font-style: normal; }
.story-card .sign { margin-top: 20px; font-size: 0.92rem; color: var(--brown-soft); }

/* ===== Quality promise grid ===== */
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.q-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: transform .2s, box-shadow .2s;
}
.q-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.q-card .ic {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    background: var(--cream-2);
    border-radius: 14px;
    margin-bottom: 16px;
}
.q-card h4 { font-size: 1.08rem; font-weight: 600; margin-bottom: 6px; }
.q-card p { font-size: 0.92rem; color: var(--brown-soft); }

/* ===== B2B CTA banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--brown), #5a3d22);
    border-radius: 26px;
    padding: 54px 48px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.cta-banner::after {
    content: "";
    position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(245,166,35,0.35), transparent 65%);
    border-radius: 50%;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.2; }
.cta-banner h2 span { color: var(--orange); }
.cta-banner p { color: rgba(255,255,255,0.82); margin-top: 12px; }
.cta-banner .actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.cta-banner .actions .btn { justify-content: center; }
.cta-banner .btn-white { background: #fff; color: var(--brown); }
.cta-banner .btn-white:hover { transform: translateY(-2px); }

/* ===== B2B page specifics ===== */
.b2b-hero {
    background:
        radial-gradient(circle at 15% 0%, rgba(245,166,35,0.18), transparent 40%),
        linear-gradient(160deg, var(--brown), #4a3320);
    color: #fff;
    padding: 74px 0 84px;
}
.b2b-hero .section-tag { background: rgba(255,255,255,0.12); color: #FCD9A0; }
.b2b-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 700; line-height: 1.12; letter-spacing: -1px; }
.b2b-hero h1 span { color: var(--orange); }
.b2b-hero p { color: rgba(255,255,255,0.82); max-width: 620px; margin: 18px 0 28px; font-size: 1.08rem; }
.b2b-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.b2b-pills span {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.offer {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
}
.offer .ic {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.55rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    margin-bottom: 18px;
}
.offer h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.offer p { color: var(--brown-soft); font-size: 0.94rem; }

/* categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.cat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
    transition: transform .2s, box-shadow .2s;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.cat .num { font-size: 0.8rem; font-weight: 700; color: var(--orange-dark); letter-spacing: 1px; }
.cat h4 { font-size: 1.15rem; font-weight: 600; margin: 6px 0 12px; }
.cat ul { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.cat li { font-size: 0.82rem; background: var(--cream-2); color: var(--brown-soft); padding: 5px 12px; border-radius: 999px; }
.cat .more { font-size: 0.82rem; color: var(--orange-dark); font-weight: 600; }

/* packaging */
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.pack {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 20px;
    transition: transform .2s, box-shadow .2s;
}
.pack:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--orange); }
.pack b { display: block; font-size: 1.9rem; font-weight: 700; color: var(--orange-deep); }
.pack span { font-size: 0.9rem; color: var(--brown-soft); }

/* why us checklist */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 34px; margin-top: 36px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-item .tick {
    flex: none;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--cream-2); color: var(--orange-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; margin-top: 2px;
}
.check-item p { font-size: 0.98rem; color: var(--brown); }

/* ===== Under construction ===== */
.uc {
    min-height: calc(100vh - 76px);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 60px 22px;
    background:
        radial-gradient(circle at 50% 0%, rgba(245,166,35,0.16), transparent 45%),
        var(--cream);
}
.uc-inner { max-width: 560px; }
.uc .emoji { font-size: 4.5rem; margin-bottom: 18px; animation: bob 2.6s ease-in-out infinite; }
.uc h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -1px; }
.uc h1 span { color: var(--orange-deep); }
.uc p { color: var(--brown-soft); font-size: 1.1rem; margin: 16px 0 30px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Footer ===== */
.footer { background: var(--brown); color: rgba(255,255,255,0.78); padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand img { height: 54px; background: #fff; padding: 8px 12px; border-radius: 12px; }
.footer p.desc { margin-top: 16px; font-size: 0.94rem; max-width: 320px; }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a, .footer .contact-line { font-size: 0.94rem; transition: color .15s; }
.footer ul li a:hover { color: var(--orange); }
.footer .contact-line { display: flex; gap: 10px; margin-bottom: 12px; align-items: center; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 44px; padding-top: 22px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-grid, .split, .cta-banner { grid-template-columns: 1fr; }
    .grid-3, .grid-6, .offer-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .pack-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { min-height: 320px; margin-top: 10px; }
    .cta-banner .actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .grid-3, .grid-6, .offer-grid, .cat-grid, .check-grid { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 22px; }
    .story-card { padding: 30px 26px; }
    .cta-banner { padding: 40px 30px; }
}

/* ===================================================================
   ADVANCED B2B PAGE
=================================================================== */
.b2b-hero .wrap { position: relative; z-index: 1; }
.b2b-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 46px; align-items: center; }
.b2b-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #FCD9A0; margin-bottom: 18px; }
.b2b-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.b2b-hero .lead-b2b { color: rgba(255,255,255,0.82); max-width: 560px; margin: 18px 0 26px; font-size: 1.08rem; }
.b2b-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.b2b-collage { position: relative; min-height: 340px; }
.b2b-collage { min-height: 400px; }
.b2b-collage img {
    position: absolute; top: 50%; left: 50%; width: 52%;
    border-radius: 16px; box-shadow: 0 22px 44px rgba(0,0,0,0.35);
    transform: translate(-50%, -50%);
    transition: transform .9s cubic-bezier(.45,0,.2,1), filter .9s ease;
    will-change: transform;
}
.b2b-collage img.pos-center { transform: translate(-50%, -50%) scale(1) rotate(0deg); z-index: 3; filter: none; }
.b2b-collage img.pos-left   { transform: translate(-118%, -46%) scale(.8) rotate(-9deg); z-index: 1; filter: brightness(.88); }
.b2b-collage img.pos-right  { transform: translate(18%, -46%)  scale(.8) rotate(9deg);  z-index: 2; filter: brightness(.88); }

.b2b-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.14); }
.b2b-stats .st b { display: block; font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.b2b-stats .st span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* credential strip */
.cred-strip { border-bottom: 1px solid var(--line); background: #fff; }
.cred-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding: 22px 0; }
.cred { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; color: var(--brown); }
.cred .cdot { width: 30px; height: 30px; border-radius: 8px; background: var(--cream-2); display: flex; align-items: center; justify-content: center; color: var(--orange-dark); flex: none; }

/* capabilities */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 46px; }
.cap { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px 30px; box-shadow: var(--shadow-sm); overflow: hidden; }
.cap .cap-num { font-size: 2.6rem; font-weight: 800; color: var(--cream-2); position: absolute; top: 14px; right: 22px; line-height: 1; }
.cap h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; position: relative; }
.cap p { color: var(--brown-soft); font-size: 0.96rem; position: relative; }
.cap ul { list-style: none; margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; position: relative; }
.cap ul li { font-size: 0.8rem; background: var(--cream-2); color: var(--brown-soft); padding: 5px 12px; border-radius: 999px; }

/* full catalogue */
.catalogue { display: flex; flex-direction: column; gap: 16px; margin-top: 44px; }
.cat-block { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; display: grid; grid-template-columns: 240px 1fr; gap: 26px; align-items: start; box-shadow: var(--shadow-sm); }
.cat-block .cat-head .k { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; color: var(--orange-dark); }
.cat-block .cat-head h4 { font-size: 1.35rem; font-weight: 700; margin: 4px 0 8px; }
.cat-block .cat-head p { font-size: 0.88rem; color: var(--brown-soft); }
.cat-block .cat-head .count { display: inline-block; margin-top: 12px; font-size: 0.8rem; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-deep)); padding: 5px 14px; border-radius: 999px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-size: 0.84rem; background: var(--cream); border: 1px solid var(--line); color: var(--brown); padding: 6px 13px; border-radius: 8px; transition: background .15s, border-color .15s; }
.chips span:hover { background: var(--cream-2); border-color: var(--orange); }

/* process timeline */
.process { position: relative; margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; text-align: left; }
.step .snum { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--brown), #5a3d22); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.step h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 0.88rem; color: var(--brown-soft); }

/* industries */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.ind { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 24px; display: flex; gap: 14px; align-items: flex-start; transition: transform .2s, box-shadow .2s; }
.ind:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.ind .iic { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--cream-2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.ind b { display: block; font-size: 1rem; color: var(--brown); }
.ind span { font-size: 0.85rem; color: var(--brown-soft); }

/* contact block */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 44px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 20px; }
.contact-line2 { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-line2 .cl-ic { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--cream-2); display: flex; align-items: center; justify-content: center; color: var(--orange-dark); }
.contact-line2 .cl-t b { display: block; font-size: 0.98rem; color: var(--brown); }
.contact-line2 .cl-t span, .contact-line2 .cl-t a { font-size: 0.92rem; color: var(--brown-soft); }
.contact-line2 .cl-t a:hover { color: var(--orange-deep); }
.contact-cta { background: linear-gradient(150deg, var(--brown), #4a3320); color: #fff; border-radius: var(--radius); padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.contact-cta h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.contact-cta h3 span { color: var(--orange); }
.contact-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.contact-cta .btn { justify-content: center; margin-bottom: 12px; }
.contact-cta .btn-white { background: #fff; color: var(--brown); }

@media (max-width: 900px) {
    .b2b-hero-grid { grid-template-columns: 1fr; }
    .b2b-collage { min-height: 300px; margin-top: 20px; }
    .cap-grid { grid-template-columns: 1fr; }
    .cat-block { grid-template-columns: 1fr; gap: 16px; }
    .process { grid-template-columns: repeat(2, 1fr); }
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .cred-row { justify-content: flex-start; gap: 14px 22px; }
    .process { grid-template-columns: 1fr; }
    .ind-grid { grid-template-columns: 1fr; }
    .b2b-stats { gap: 22px; }
}

/* gmail icon for email links */
.gmail-ic { width: 18px; height: 18px; vertical-align: middle; display: inline-block; flex: none; }
.contact-line2 .cl-ic .gmail-ic { width: 22px; height: 22px; }

/* ===== Clean line icons (replace emoji) ===== */
.svic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; width: 22px; height: 22px; }
.trust-item .ic .svic { width: 24px; height: 24px; }
.q-card .ic { color: var(--orange-dark); }
.q-card .ic .svic { width: 26px; height: 26px; }
.cdot .svic { width: 17px; height: 17px; }
.iic { color: var(--orange-dark); }
.iic .svic { width: 22px; height: 22px; }
.contact-line .svic { width: 16px; height: 16px; flex: none; }
.contact-line2 .cl-ic .svic { width: 22px; height: 22px; }
.btn .svic { width: 18px; height: 18px; }
.b2b-eyebrow .svic { width: 16px; height: 16px; }

/* ===== B2B enquiry form ===== */
.enq-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); position: relative; }
.enq-form h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.enq-form .enq-sub { color: var(--brown-soft); font-size: 0.92rem; margin-bottom: 20px; }
.enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.enq-form input, .enq-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--brown); background: var(--cream); outline: none; transition: border-color .15s, background .15s; box-sizing: border-box; }
.enq-form input:focus, .enq-form textarea:focus { border-color: var(--orange); background: #fff; }
.enq-form textarea { margin-bottom: 16px; resize: vertical; }
.enq-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.enq-form .btn { width: 100%; justify-content: center; }
.enq-success { display: none; background: #E9F7EF; border: 1px solid #B7E0C7; color: #1E7D45; padding: 13px 16px; border-radius: 10px; font-size: 0.92rem; font-weight: 500; margin-bottom: 18px; }
.enq-success.show { display: block; }
@media (max-width: 640px) { .enq-row { grid-template-columns: 1fr; } }

/* shop button on bestseller cards */
.prod > span { display: block; }
.prod .shop-btn { display: inline-block; margin-top: 14px; font-size: 0.85rem; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-deep)); padding: 8px 20px; border-radius: 999px; transition: transform .15s, box-shadow .15s; }
.prod .shop-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(232,130,14,0.32); color: #fff; }

/* maintenance page icon */
.uc-ic { width: 96px; height: 96px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--orange-deep); }
.uc-ic svg { width: 44px; height: 44px; }
