/* Ammaji Agro — Premium design tokens (2026 corporate luxury) */
:root {
    --color-bg: #edf2ec;
    --color-surface: #ffffff;
    --color-surface-alt: #fff9e8;
    --color-highlight: #f7faf6;
    --color-text: #0a1208;
    --color-muted: #1e2820;
    --color-primary: #5b8c51;
    --color-primary-dark: #0a2803;
    --color-primary-light: #63ab52;
    --color-primary-mid: #244f0b;
    --color-accent: #eddd5e;
    --color-accent-rich: #d4c84a;
    --color-accent-soft: #fff9e8;
    --color-accent-muted: #f5f0d8;
    --color-accent-on: #0a2803;
    --color-cta: #5b8c51;
    --color-cta-hover: #4a7342;
    --color-brand-red: #5b8c51;
    --color-brand-red-soft: rgba(91, 140, 81, 0.1);
    --color-agri-green: #244f0b;
    --color-agri-green-dark: #0a2803;
    --color-logo-black: #0a2803;
    --color-border: rgba(202, 210, 210, 0.75);
    --shadow-soft: 0 8px 32px rgba(10, 40, 3, 0.06);
    --shadow-sm: 0 2px 8px rgba(10, 40, 3, 0.04);
    --shadow-md: 0 12px 40px rgba(10, 40, 3, 0.08);
    --shadow-lg: 0 24px 64px rgba(10, 40, 3, 0.12);
    --shadow-glow: 0 8px 28px rgba(91, 140, 81, 0.22);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --font-display: "Plus Jakarta Sans", var(--font);
    --font-hero: "Bebas Neue", var(--font-display);
    --text-base: 1.0625rem;
    --text-sm: 0.9375rem;
    --text-xs: 0.75rem;
    --text-lede: 1.125rem;
    --heading-xl: clamp(2.25rem, 5.5vw, 3.5rem);
    --heading-lg: clamp(1.875rem, 3.5vw, 2.5rem);
    --heading-md: 1.25rem;
    --heading-sm: 1.0625rem;
    --section-y: clamp(2rem, 4vw, 3.25rem);
    --section-y-sm: clamp(1.25rem, 2.5vw, 2rem);
    --container: min(1200px, 92vw);
    --header-h: 80px;
    --topbar-h: 42px;
    --rgb-primary: 91 140 81;
    --rgb-accent: 237 221 94;
    --gradient-brand: linear-gradient(135deg, #5b8c51 0%, #244f0b 100%);
    --gradient-accent: linear-gradient(135deg, #eddd5e 0%, #d4c84a 100%);
    --gradient-surface: linear-gradient(180deg, #fff 0%, #edf2ec 100%);
    --gradient-hero: linear-gradient(88deg, rgba(10, 40, 3, 0.88) 0%, rgba(10, 40, 3, 0.55) 45%, rgba(10, 40, 3, 0.25) 100%);
    --hero-overlay: var(--gradient-hero);
    --hero-overlay-radial: radial-gradient(ellipse 80% 60% at 75% 100%, rgba(237, 221, 94, 0.12) 0%, transparent 55%);
    --hero-bg-image: url("../images/home-who-we-bg.png");
    --anim-reveal-duration: 700ms;
    --anim-reveal-easing: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

::selection {
    background: rgb(var(--rgb-accent) / 0.35);
    color: var(--color-text);
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

:where(h1, h2, h3, h4, h5, h6) {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container {
    width: var(--container);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 24px rgba(15, 36, 25, 0.06);
}

.site-header__inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand__logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    box-shadow: var(--shadow-soft);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav a {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav a:hover,
.nav a.is-active {
    background: rgba(125, 78, 40, 0.1);
    color: var(--color-primary);
    text-decoration: none;
    box-shadow: none;
}

.nav__toggle {
    display: none;
    position: relative;
    z-index: 70;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    border-radius: 12px;
    padding: 0.55rem;
    width: 2.65rem;
    height: 2.65rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav__toggle:hover {
    border-color: rgb(var(--rgb-primary) / 0.35);
    background: #fff;
}

.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
    display: block;
    width: 1.15rem;
    height: 2px;
    border-radius: 2px;
    background: var(--color-text);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav__toggle-bars {
    position: relative;
    margin: 0 auto;
}

.nav__toggle-bars::before,
.nav__toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav__toggle-bars::before {
    top: -6px;
}

.nav__toggle-bars::after {
    top: 6px;
}

body.is-nav-open .nav__toggle-bars {
    background: transparent;
}

body.is-nav-open .nav__toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
}

body.is-nav-open .nav__toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.nav-drawer-head {
    display: none;
}

.nav-drawer-scroll {
    display: contents;
}

/* Products mega dropdown */
.nav-dropdown {
    position: relative;
    align-self: center;
}

.nav-dropdown__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown__btn:hover,
.nav-dropdown__btn.is-active,
.nav-dropdown.is-open .nav-dropdown__btn {
    background: rgba(125, 78, 40, 0.08);
    color: var(--color-primary);
}

.nav-dropdown__caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.7;
}

.nav-dropdown__panel {
    position: absolute;
    left: 0;
    top: calc(100% + 0.35rem);
    min-width: 240px;
    max-width: min(340px, 92vw);
    padding: 0.5rem 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--color-text);
    text-decoration: none;
}

.nav-dropdown__link:hover {
    background: rgba(125, 78, 40, 0.08);
    text-decoration: none;
}

.nav-dropdown__link--all {
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.25rem;
    padding-bottom: 0.65rem;
}

.nav-dropdown__group {
    padding: 0.35rem 0;
}

.nav-dropdown__group-label {
    display: block;
    padding: 0.35rem 1rem 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.nav-dropdown__sublink {
    display: block;
    padding: 0.4rem 1rem 0.4rem 1.25rem;
    font-size: 0.88rem;
    color: var(--color-muted);
    text-decoration: none;
}

.nav-dropdown__sublink--parent {
    font-weight: 500;
    color: var(--color-primary);
}

.nav-dropdown__sublink:hover {
    background: rgba(125, 78, 40, 0.06);
    color: var(--color-primary);
    text-decoration: none;
}

/* Two-column mega menu (parents left, subcategories right) */
.nav-dropdown__panel.nav-mega {
    /* Center under “Products” so wide panel doesn’t spill off the right edge */
    left: 50%;
    right: auto;
    width: min(520px, calc(100vw - 1.5rem));
    min-width: min(280px, calc(100vw - 1.5rem));
    max-width: min(520px, calc(100vw - 1.5rem));
    padding: 0;
    overflow: hidden;
    transform: translate(-50%, -6px);
}

.nav-dropdown:hover .nav-dropdown__panel.nav-mega,
.nav-dropdown:focus-within .nav-dropdown__panel.nav-mega,
.nav-dropdown.is-open .nav-dropdown__panel.nav-mega {
    transform: translate(-50%, 0);
}

.nav-mega__top {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(135deg, rgba(251, 192, 5, 0.99), rgba(226, 172, 0, 0.38));
}

.nav-mega__all-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-mega__all-link:hover {
    text-decoration: underline;
}

.nav-mega__empty {
    margin: 0;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.nav-mega__body {
    display: grid;
    grid-template-columns: minmax(132px, 230px) 1fr;
    min-height: 180px;
    max-height: min(70vh, 420px);
}

.nav-mega__parents {
    display: flex;
    flex-direction: column;
    padding: 0.35rem 0;
    background: var(--color-highlight);
    border-right: 1px solid var(--color-border);
    overflow-y: auto;
}

.nav-mega__parent {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.nav-mega__parent:hover,
.nav-mega__parent:focus-visible {
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-primary);
    outline: none;
}

.nav-mega__parent.is-active {
    background: #fff;
    color: var(--color-primary);
    box-shadow: inset 3px 0 0 var(--color-accent);
}

.nav-mega__divider {
    display: none;
}

.nav-mega__panels {
    position: relative;
    overflow-y: auto;
    background: var(--color-surface);
}

.nav-mega__panel {
    display: none;
    flex-direction: column;
    min-height: 100%;
}

.nav-mega__panel.is-active {
    display: flex;
    background: var(--color-surface);
}

.nav-mega__line {
    display: block;
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text) !important;
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.15s, color 0.15s;
}

.nav-mega__line:last-child {
    border-bottom: none;
}

.nav-mega__line:hover {
    background: rgba(125, 78, 40, 0.06);
    color: var(--color-primary);
    text-decoration: none;
}

.nav-mega__line--all {
    font-weight: 600;
    color: var(--color-text) !important;
}

@media (max-width: 960px) {
    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.is-nav-open {
        overflow: hidden;
        touch-action: none;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 65;
        background: rgba(12, 18, 15, 0.48);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.is-nav-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(20rem, 88vw);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 0;
        z-index: 68;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        align-self: auto;
        background: linear-gradient(180deg, #f6faf7 0%, #ffffff 28%);
        border: none;
        border-radius: 0;
        border-left: 1px solid var(--color-border);
        box-shadow: -12px 0 40px rgba(15, 36, 25, 0.18);
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
        opacity: 1;
        pointer-events: none;
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
    }

    .nav.is-open {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        flex-shrink: 0;
        padding: calc(env(safe-area-inset-top, 0px) + 0.85rem) 1rem 0.85rem;
        border-bottom: 1px solid var(--color-border);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(8px);
    }

    .nav-drawer-title {
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--color-text);
    }

    .nav-drawer-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border: none;
        border-radius: 12px;
        background: rgba(125, 78, 40, 0.08);
        color: var(--color-primary);
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .nav-drawer-close:hover {
        background: rgba(125, 78, 40, 0.14);
    }

    .nav-drawer-scroll {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0.75rem 0.85rem calc(1rem + env(safe-area-inset-bottom, 0px));
        gap: 0.2rem;
    }

    .nav-drawer-scroll > a {
        display: flex;
        align-items: center;
        padding: 0.85rem 1rem;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-text);
        text-decoration: none;
        transition: background 0.15s ease;
    }

    /* Light header + light drawer — consistent link colors */
    .nav.is-open .nav-drawer-scroll > a {
        color: var(--color-text);
    }

    .nav-drawer-scroll > a:hover,
    .nav-drawer-scroll > a.is-active {
        background: rgba(125, 78, 40, 0.1);
        color: var(--color-primary);
        text-decoration: none;
        box-shadow: none;
    }

    .nav-dropdown {
        width: 100%;
        align-self: stretch;
    }

    .nav-dropdown__btn {
        width: 100%;
        justify-content: space-between;
        border-radius: 12px;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-text);
        background: rgba(125, 78, 40, 0.06);
        border: 1px solid transparent;
    }

    .nav-dropdown__btn:hover,
    .nav-dropdown.is-open .nav-dropdown__btn {
        color: var(--color-primary);
        background: rgba(125, 78, 40, 0.1);
        border-color: rgba(125, 78, 40, 0.12);
    }

    .nav-dropdown__panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0.35rem 0 0.5rem;
        max-width: none;
        display: none;
        background: transparent;
    }

    .nav-dropdown.is-open .nav-dropdown__panel {
        display: block;
        transform: none !important;
    }

    .nav-dropdown__panel.nav-mega {
        left: auto;
        right: auto;
        width: 100%;
        min-width: 0;
        max-width: none;
        transform: none;
        overflow: visible;
    }

    .nav-mega__body {
        display: block;
        max-height: none;
    }

    .nav-mega__parents {
        display: none;
    }

    .nav-mega__parent {
        width: auto;
        flex: 1 1 auto;
        min-width: calc(50% - 0.35rem);
        padding: 0.55rem 0.65rem;
        border-radius: 10px;
        font-size: 0.82rem;
        text-align: center;
    }

    .nav-mega__parent.is-active {
        box-shadow: none;
        background: rgba(125, 78, 40, 0.14);
        color: var(--color-primary);
    }

    .nav-mega__panels {
        max-height: none;
        overflow: visible;
        padding-top: 0.15rem;
    }

    .nav-mega__panel,
    .nav-mega__panel.is-active {
        display: block;
        min-height: 0;
        margin-bottom: 0.5rem;
        border: 1px solid var(--color-border);
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
    }

    .nav-mega__line {
        padding: 0.72rem 0.9rem;
    }

    .nav-mega__line--all {
        background: rgba(125, 78, 40, 0.06);
    }

    /* Header: logo was taller than bar — keep tap targets without overflow */
    .site-header__inner {
        height: auto;
        min-height: var(--header-h);
        padding-block: 0.4rem;
    }

    .brand__logo {
        height: auto;
        max-height: 52px;
        width: auto;
        max-width: min(220px, 62vw);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s;
    text-decoration: none;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
    background: var(--color-cta);
    color: var(--color-accent-on);
    box-shadow: var(--shadow-soft), 0 4px 18px rgb(var(--rgb-accent) / 0.35);
}

.btn--primary:hover {
    background: var(--color-cta-hover);
    text-decoration: none;
    color: var(--color-accent-on);
    filter: none;
}

.btn--ghost {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn--ghost:hover {
    border-color: var(--color-accent-rich);
    color: var(--color-primary);
    background: rgb(var(--rgb-accent) / 0.06);
    text-decoration: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: min(78vh, 820px);
    display: grid;
    align-items: end;
    color: #fff;
    overflow: hidden;
}

.hero--slider {
    display: block;
    min-height: min(78vh, 820px);
    isolation: isolate;
}

.hero__slides {
    position: relative;
    z-index: 1;
    min-height: min(78vh, 820px);
}

.hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.65s ease, visibility 0.65s;
    z-index: 0;
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    animation: hero-zoom 18s ease-in-out infinite alternate;
}

.hero__slide:not(.is-active) .hero__media {
    animation: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay-radial);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 4.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.1;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
    max-width: 18ch;
}

/* Banner overline: white on photo (global .pill is green — revert inside hero only) */
.hero .pill {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin: 0 0 1rem;
}

.hero p {
    max-width: 52ch;
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0 0 1.75rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero .btn--ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.hero .btn--ghost:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero__slider-nav {
    position: absolute;
    inset: 0;
    z-index: 12;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.75rem;
}

.hero__arrow {
    pointer-events: auto;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(12, 40, 25, 0.55);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hero__arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

.hero__arrow:hover {
    background: rgba(12, 40, 25, 0.55);
    border-color: rgba(255, 255, 255, 0.75);
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    z-index: 13;
    display: flex;
    gap: 0.45rem;
    pointer-events: auto;
}

.hero__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.hero__dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

@media (max-width: 640px) {
    .hero__arrow {
        width: 2.35rem;
        height: 2.35rem;
    }

    .hero__arrow svg {
        width: 1.1rem;
        height: 1.1rem;
    }
}

@keyframes hero-zoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: fade-up var(--anim-reveal-duration) var(--anim-reveal-easing) both;
}

.section {
    padding: var(--section-y) 0;
    background: var(--color-bg);
}

.section--alt {
    background: var(--color-bg);
}

.section__head {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.section__head h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.section__head p {
    margin: 0;
    color: var(--color-muted);
}

.grid {
    display: grid;
    gap: 1.25rem;
}

.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    padding: 1.35rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-muted);
}

.pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(125, 78, 40, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.logo-strip span {
    border: 1px dashed var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.cta-band {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.cta-band h2 {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
}

.cta-band p {
    margin: 0;
    opacity: 0.9;
}

/* —— Home page (creative layout) —— */
.home-trust {
    background: var(--color-surface);
    border-block: 1px solid var(--color-border);
    padding: 0.85rem 0;
}

.home-trust__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.home-trust__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary-light);
    opacity: 0.55;
}

.front-home .section {
    padding: var(--section-y) 0;
}

.home-eyebrow {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin: 0 0 0.5rem;
}

.home-eyebrow--on-dark {
    color: rgba(255, 255, 255, 0.75);
}

.home-block-head {
    max-width: 720px;
    margin-bottom: 2.75rem;
}

.home-block-head__title {
    font-family: var(--font-display);
    font-size: var(--heading-lg);
    font-weight: 800;
    margin: 0 0 0.65rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--color-text);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.home-block-head__lede {
    margin: 0;
    font-size: var(--text-lede);
    color: var(--color-muted);
    line-height: 1.65;
}

/* Home — Why choose us (settings key home_why_choose JSON) */
.home-why {
    scroll-margin-top: calc(var(--header-h, 72px) + 0.5rem);
}

.home-why__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0 0 1.5rem;
}

.home-why__star {
    color: var(--color-accent-rich);
    font-size: 1.05rem;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(184, 134, 11, 0.25);
}

.home-why__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-why__figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--color-border);
    box-shadow: 0 12px 40px rgba(15, 36, 25, 0.1);
}

.home-why__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-why__body {
    max-width: 640px;
    margin-bottom: 2.25rem;
}

.home-why__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
    line-height: 1.25;
}

.home-why__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, 1fr);
}

.home-why__item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
}

.home-why__check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(125, 78, 40, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-why__check svg {
    width: 0.9rem;
    height: 0.9rem;
}

.home-why__scroll-wrap {
    margin: 2rem 0 0;
    text-align: center;
}

.home-why__scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(15, 36, 25, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-why__scroll:hover {
    transform: translateY(3px);
    background: rgba(125, 78, 40, 0.06);
    box-shadow: 0 6px 20px rgba(15, 36, 25, 0.12);
}

.home-why__scroll svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 900px) {
    .home-why__gallery {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }
}

/* About page — emotional connect (settings key about_emotional_connect JSON) */
.about-emotional {
    scroll-margin-top: calc(var(--header-h, 72px) + 0.5rem);
}

.about-emotional__heading {
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: var(--color-text);
    text-transform: uppercase;
}

.about-emotional__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.about-emotional__figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--color-border);
    box-shadow: 0 12px 40px rgba(15, 36, 25, 0.1);
}

.about-emotional__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-emotional__label {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text);
}

.about-emotional__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
    max-width: 52rem;
}

.about-emotional__item {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 500;
    color: var(--color-text);
}

@media (max-width: 900px) {
    .about-emotional__gallery {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
        margin-bottom: 1.5rem;
    }
}

.section--mesh {
    position: relative;
    background: var(--color-bg);
}

.home-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.home-feature {
    position: relative;
    padding-top: 1.75rem;
    border: 1px solid var(--color-border);
    background: linear-gradient(165deg, #fff 0%, #fafcf9 100%);
    overflow: hidden;
}

.home-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    opacity: 0.85;
}

.home-feature__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
    background: linear-gradient(145deg, rgba(125, 78, 40, 0.12), rgba(90, 56, 32, 0.08));
    border: 1px solid rgba(125, 78, 40, 0.12);
}

.home-feature__title {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.home-feature__text {
    margin: 0;
    font-size: 0.93rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.home-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    text-decoration: none;
}

.home-link-arrow::after {
    content: "→";
    transition: transform 0.2s ease;
}

.home-link-arrow:hover {
    text-decoration: none;
}

.home-link-arrow:hover::after {
    transform: translateX(4px);
}

/* Home — Who we are (split banner) */
.home-who-we {
    margin: 0;
    padding: 0rem 0rem;
    overflow: hidden;
}

.home-who-we__split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
}

@media (min-width: 960px) {
    .home-who-we__split {
        grid-template-columns: 1fr 1fr;
        min-height: 420px;
    }
}

.home-who-we__visual {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 1.25rem 2.5rem;
}

@media (min-width: 960px) {
    .home-who-we__visual {
        min-height: 100%;
    }
}

.home-who-we__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(0, 0, 0, 0.12) 0%, rgba(12, 45, 32, 0.5) 100%);
    pointer-events: none;
}

.home-who-we__badge {
    position: relative;
    z-index: 2;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    max-width: 12.5rem;
    margin: 0 auto 1.35rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #1e3a5f;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.25;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.home-who-we__badge-star {
    font-size: 0.95rem;
    line-height: 1;
    color: #2563eb;
}

.home-who-we__badge-text {
    display: block;
}

.home-who-we__bubble-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 0.75rem;
}

.home-who-we__bubble {
    margin: 0;
    width: min(17.5rem, 78vw);
    height: min(17.5rem, 78vw);
    max-width: 100%;
    border-radius: 50%;
    background: rgba(18, 75, 50, 0.82);
    backdrop-filter: blur(6px);
    color: #e8e288;
    font-size: clamp(1.05rem, 3.2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.22;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    letter-spacing: -0.02em;
}

.home-who-we__panel {
    background: #d4ecc4;
    padding: 2rem 1.35rem 2.25rem;
}

@media (min-width: 960px) {
    .home-who-we__panel {
        padding: 2.5rem 2rem 2.75rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.home-who-we__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #145236;
    margin: 0 0 1.15rem;
}

.home-who-we__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 1.15rem;
}

@media (min-width: 520px) {
    .home-who-we__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.home-who-we__item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.home-who-we__ico {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d412c;
    color: #fff;
    box-shadow: 0 2px 8px rgba(20, 82, 54, 0.25);
}

.home-who-we__ico svg {
    display: block;
}

.home-who-we__text {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.45;
    color: #0f2a1c;
}

.home-who-we__cta {
    margin: 1.65rem 0 0;
}

.home-cta-inline {
    margin: 2.25rem 0 0;
    text-align: left;
}

.home-cta-inline--center {
    text-align: center;
}

.home-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .home-cat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-cat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

.home-cat-card {
    position: relative;
    background: var(--color-surface);
    border-radius: calc(var(--radius) + 2px);
    border: 1px solid var(--color-border);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(125, 78, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(125, 78, 40, 0.12);
    border-color: rgba(125, 78, 40, 0.25);
}

.home-cat-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8ede9;
}

.home-cat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.home-cat-card:hover .home-cat-card__media img {
    transform: scale(1.05);
}

.home-cat-card__num {
    position: absolute;
    bottom: 0.65rem;
    right: 0.65rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    user-select: none;
    pointer-events: none;
}

.home-cat-card__body {
    padding: 0.85rem 1rem 1.05rem;
}

.home-cat-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.home-cat-card__link:hover .home-cat-card__title {
    color: var(--color-primary-light);
}

.home-cat-card__title {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.home-cat-card__desc {
    margin: 0;
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-cat-card__subs {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.home-cat-chip {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--color-primary);
    background: rgba(125, 78, 40, 0.1);
    border: 1px solid rgba(125, 78, 40, 0.12);
    transition: background 0.2s ease, transform 0.15s ease;
}

.home-cat-chip:hover {
    background: rgba(125, 78, 40, 0.16);
    text-decoration: none;
    transform: translateY(-1px);
}

.home-certs {
    background: #dbf0d1;
}

.home-certs-panel {
    display: grid;
    gap: 1.5rem 2.25rem;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 960px) {
    .home-certs-panel {
        grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
    }
}

.home-certs-panel__copy .home-eyebrow {
    margin-bottom: 0.35rem;
}

.home-certs-panel__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    letter-spacing: -0.02em;
}

.home-certs-panel__text {
    margin: 0;
    max-width: 30ch;
    color: var(--color-muted);
    line-height: 1.55;
    font-size: 0.98rem;
}

.home-certs-panel__logos {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

@media (min-width: 700px) {
    .home-certs-panel__logos {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.home-cert-logo {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(125, 78, 40, 0.08);
    padding: 0.5rem;
}

.home-cert-logo img {
    width: auto;
    max-width: 100%;
    max-height: 78px;
    object-fit: contain;
    filter: saturate(0.95);
}

.home-cert-logo__fallback {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.home-certs-panel__cta {
    margin: 1.35rem 0 0;
    text-align: center;
}

.home-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.home-industry {
    padding: 1.35rem 1.35rem 1.35rem 1.25rem;
    border-radius: var(--radius);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.home-industry__title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.home-industry__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.home-featured-carousel {
    position: relative;
    margin-top: 0.25rem;
}

.home-featured-carousel__viewport {
    overflow: hidden;
}

.home-featured-carousel__track {
    display: flex;
    gap: 1.35rem;
    transition: transform 0.4s ease;
    will-change: transform;
}

.home-featured-carousel__slide {
    flex: 0 0 calc((100% - (1.35rem * 3)) / 4);
}

@media (max-width: 1200px) {
    .home-featured-carousel__slide {
        flex-basis: calc((100% - (1.35rem * 2)) / 3);
    }
}

@media (max-width: 900px) {
    .home-featured-carousel__slide {
        flex-basis: calc((100% - 1.35rem) / 2);
    }
}

@media (max-width: 520px) {
    .home-featured-carousel__slide {
        flex-basis: 100%;
    }
}

.home-product-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(125, 78, 40, 0.12);
}

.home-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #e8ede9;
}

.home-product-card__media img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.5s ease;
}

.home-product-card:hover .home-product-card__media img {
    transform: scale(1.06);
}

.home-product-card__shine {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.home-product-card:hover .home-product-card__shine {
    opacity: 1;
}

.home-product-card__body {
    padding: 1rem 1.15rem 1.2rem;
}

.home-product-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 0.35rem;
}

.home-product-card__name {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}

.home-product-card__name a {
    color: var(--color-text);
    text-decoration: none;
}

.home-product-card__name a:hover {
    color: var(--color-primary);
}

.home-featured-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.home-featured-carousel__arrow svg {
    width: 18px;
    height: 18px;
}

.home-featured-carousel__arrow--prev {
    left: -0.85rem;
}

.home-featured-carousel__arrow--next {
    right: -0.85rem;
}

.home-featured-carousel__arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 700px) {
    .home-featured-carousel__arrow {
        display: none;
    }
}

.cta-band--creative {
    position: relative;
    overflow: hidden;
    align-items: center;
    background:
        radial-gradient(ellipse 70% 80% at 100% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.cta-band--creative::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 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");
    opacity: 0.9;
    pointer-events: none;
}

.cta-band__copy,
.cta-band__actions {
    position: relative;
    z-index: 1;
}

.cta-band--creative .cta-band__copy p:last-of-type {
    margin: 0;
    opacity: 0.92;
    max-width: 42ch;
}

.cta-band--creative h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: #fff;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.cta-band--creative .btn--ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.cta-band--creative .btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 640px) {
    .home-trust__inner {
        flex-direction: column;
        gap: 0.35rem;
    }

    .home-trust__dot {
        display: none;
    }

    .home-block-head__title {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        color: var(--color-text);
    }
}

/* —— About page (NK Agro–inspired story layout) —— */
.page-about {
    overflow-x: hidden;
}

.about-hero {
    position: relative;
    min-height: min(52vh, 520px);
    display: flex;
    align-items: flex-end;
    padding: 3rem 0 4rem;
    color: #fff;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 35, 22, 0.94) 0%, rgba(15, 61, 38, 0.75) 42%, rgba(102, 125, 112, 0.45) 100%),
        url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1920&q=75") center / cover no-repeat;
}

.about-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.06'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3Cpath d='M40 0v80M0 40h80'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.9;
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
 
}

.about-hero__kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 0.75rem;
}

.about-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: #fff;
}

.about-hero__lede {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 40ch;
}

.about-chapter {
    padding: 4rem 0;
    background: var(--color-bg);
}

.about-chapter--emphasis {
    background:
        radial-gradient(ellipse 70% 80% at 0% 50%, rgba(125, 78, 40, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #f6f8f5 0%, var(--color-bg) 100%);
}

.about-chapter__grid {
    display: grid;
    grid-template-columns: minmax(3rem, 5rem) 1fr;
    gap: 1.5rem 2.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-chapter__grid--reverse {
    grid-template-columns: 12px 1fr;
    max-width: 920px;
}

.about-chapter__index {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(125, 78, 40, 0.15);
    user-select: none;
    padding-top: 0.2rem;
}

.about-chapter__accent {
    display: flex;
    justify-content: center;
    padding-top: 0.35rem;
}

.about-chapter__accent-line {
    width: 4px;
    align-self: stretch;
    min-height: 6rem;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary));
}

.about-chapter__heading {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.about-chapter__text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
}

.about-stats {
    padding: 3rem 0 4rem;
    background: var(--color-surface);
    border-block: 1px solid var(--color-border);
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.about-stat {
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius);
    background: linear-gradient(165deg, #fafcf9, #fff);
    border: 1px solid var(--color-border);
}

.about-stat__value {
    display: block;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.about-stat__label {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.45;
}

.about-cms {
    padding-top: 3.5rem;
}

.about-cms__head {
    margin-bottom: 1.75rem;
}

.about-cms__title {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    letter-spacing: -0.02em;
}

.about-cms__prose {
    max-width: 720px;
}

.about-query {
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 48%, #163d28 100%);
    color: #fff;
}

.about-query__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.about-query__heading {
    margin: 0 0 0.5rem;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-query__text {
    margin: 0;
    max-width: 42ch;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.about-query__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.about-query__ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.about-query__ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

.nav-dropdown__panel--promise {
    min-width: min(260px, 92vw);
    max-width: min(320px, 94vw);
    padding: 0.35rem 0;
}

.nav-dropdown__panel .nav-dropdown__link.is-active {
    background: rgba(125, 78, 40, 0.1);
    color: var(--color-primary);
    font-weight: 600;
}

/* CMS: Quality Assurance & Certifications (NK Agro–style story pages) */
.page-qa {
    overflow-x: hidden;
}

.page-qa-hero {
    position: relative;
    min-height: min(46vh, 480px);
    display: flex;
    align-items: flex-end;
    padding: 3.5rem 0 3.25rem;
    color: #fff;
}

.page-qa-hero--compact {
    min-height: min(38vh, 380px);
    padding: 3.75rem 0 2.75rem;
}

.page-qa-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay), var(--page-breadcrumb-hero-image, var(--hero-bg-image)) center / cover no-repeat;
}

.page-qa--cert .page-qa-hero__bg {
    background: var(--hero-overlay), var(--page-breadcrumb-hero-image, var(--hero-bg-image)) center / cover no-repeat;
}

.page-qa-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay-radial);
    pointer-events: none;
}

.page-qa-hero__inner {
    position: relative;
    z-index: 1;
}

.page-qa-hero__kicker {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 0.65rem;
}

.page-qa-hero__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: var(--heading-xl);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #fff;
}

.page-qa-hero__lede {
    margin: 0;
    font-size: var(--text-lede);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48ch;
}

.page-qa-shell {
    padding: 3.5rem 0 2rem;
    background: var(--color-bg);
}

.page-qa-shell--tight {
    padding: 2.5rem 0 1rem;
}

.page-qa-article {
    max-width: 760px;
    margin: 0 auto;
}

.page-qa-prose h2 {
    margin-top: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.page-qa-prose h3 {
    margin-top: 2.25rem;
    font-size: 1.15rem;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.page-qa-prose h4 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1rem;
    color: var(--color-text);
}

.page-qa-prose ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
    color: var(--color-muted);
}

.page-qa-prose li {
    margin-bottom: 0.45rem;
    line-height: 1.6;
}

.page-qa-prose p {
    margin: 0.85rem 0 0;
    line-height: 1.75;
    color: var(--color-muted);
}

.page-qa-prose p:first-of-type {
    margin-top: 1.25rem;
    font-size: 1.06rem;
    color: var(--color-text);
}

.page-qa-cta {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #f0f4f1 0%, var(--color-bg) 100%);
    border-top: 1px solid var(--color-border);
}

.page-qa-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.page-qa-cta__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    letter-spacing: -0.02em;
    color: #fff;
}

.page-qa-cta__text {
    margin: 0 0 1.25rem;
    color: #fff;
    line-height: 1.6;
}

.page-qa-cert-grid {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.page-qa-cert-head {
    max-width: 560px;
    margin-bottom: 2rem;
}

.page-qa-cert-head__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    letter-spacing: -0.02em;
}

.page-qa-cert-head__lede {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.6;
}

.page-qa-cert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.15rem;
}

.page-qa-cert-card {
    padding: 1.35rem 1.25rem;
    border-radius: var(--radius);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 28px rgba(125, 78, 40, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-qa-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.page-qa-cert-card__logo {
    height: 74px;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.page-qa-cert-card__logo img {
    max-width: 140px;
    max-height: 74px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.page-qa-cert-card__name {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
    color: var(--color-primary);
}

.page-qa-cert-card__issuer {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
}

.page-qa-cert-card__desc {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.55;
}

@media (max-width: 720px) {
    .about-stats__grid {
        grid-template-columns: 1fr;
    }

    .about-chapter__grid,
    .about-chapter__grid--reverse {
        grid-template-columns: 1fr;
    }

    .about-chapter__index {
        font-size: 2rem;
    }

    .about-chapter__accent-line {
        min-height: 4rem;
        width: 100%;
        height: 4px;
        min-height: 0;
    }

    .about-chapter__accent {
        justify-content: flex-start;
    }
}

/* —— Contact page —— */
.page-contact {
    overflow-x: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-hero {
    position: relative;
    min-height: min(42vh, 440px);
    display: flex;
    align-items: flex-end;
    padding: 3.5rem 0 3.25rem;
    color: #fff;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay), var(--hero-bg-image) center / cover no-repeat;
}

.contact-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay-radial);
    pointer-events: none;
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
 
}

.contact-hero__kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 0.65rem;
}

.contact-hero__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #fff;
}

.contact-hero__lede {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 38ch;
}

.contact-shell {
    padding: 3rem 0 3.5rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.contact-alert {
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.contact-alert--success {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.contact-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-alert--inline {
    margin-bottom: 0;
    align-self: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    align-items: stretch;
}

.contact-form-card {
    background: var(--color-surface);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 48px rgba(125, 78, 40, 0.08);
    padding: 1.75rem 1.85rem 2rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

.contact-form-card__head {
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--color-border);
}

.contact-form-card__title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.contact-form-card__hint {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.contact-form .contact-input,
.contact-form .contact-input--textarea {
    border-radius: 11px;
    border: 1px solid var(--color-border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .contact-input:focus,
.contact-form .contact-input--textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(125, 78, 40, 0.12);
}

.contact-form-card .form-grid.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
}

.contact-form__message-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.contact-form__message-field .contact-input--textarea {
    flex: 1;
    min-height: 9rem;
    resize: vertical;
}

.contact-form__submit {
    margin-top: auto;
    align-self: flex-start;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-height: 0;
    height: 100%;
}

.contact-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.contact-pill {
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #f6faf7, #fff);
    border: 1px solid var(--color-border);
}

.contact-pill__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.contact-pill__meta {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.35;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact-info-card {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    border-radius: var(--radius);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.contact-info-card__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: rgba(125, 78, 40, 0.1);
}

.contact-info-card__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.15rem;
}

.contact-info-card__value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
}

.contact-info-card__value:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-info-card__value--multiline {
    font-weight: 500;
    line-height: 1.5;
}

.contact-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #128c7e;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.contact-wa:hover {
    filter: brightness(1.06);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.contact-map {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    min-height: 200px;
    background: #e8ede9;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.contact-newsletter {
    padding: 2.5rem 0 3.5rem;
    background:
        radial-gradient(ellipse 80% 100% at 0% 50%, rgba(125, 78, 40, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, #f0f4f1 0%, var(--color-bg) 100%);
    border-top: 1px solid var(--color-border);
}

.contact-newsletter__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-newsletter__title {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.contact-newsletter__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-muted);
    max-width: 36ch;
}

.contact-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.contact-newsletter__input {
    min-width: min(100%, 240px);
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    font: inherit;
    background: var(--color-surface);
}

.contact-newsletter__input:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(125, 78, 40, 0.1);
}

@media (max-width: 960px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        order: -1;
    }

    .contact-shell {
        margin-top: 0;
        padding-top: 2rem;
    }

    .contact-pills {
        grid-template-columns: 1fr;
    }

    .contact-map {
        flex: 0 0 auto;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 520px) {
    .contact-newsletter__form {
        width: 100%;
    }

    .contact-newsletter__input {
        width: 100%;
    }
}

/* Footer — Ammaji Agro rich layout */
.site-footer--rich {
    position: relative;
    /* margin-top: 3rem; */
    background: linear-gradient(
        175deg,
        var(--color-primary-dark) 0%,
        var(--color-primary-dark) 28%,
        var(--color-primary-mid) 52%,
        var(--color-primary) 88%,
        var(--color-primary-dark) 100%
    );
    color: var(--color-accent-soft);
    border-top: 2px solid var(--color-accent);
    overflow: hidden;
}

.site-footer--rich a {
    color: var(--color-accent-soft);
    text-decoration: none;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.site-footer--rich a:hover {
    color: #fff;
}

.site-footer__decor {
    position: absolute;
    pointer-events: none;
    opacity: 0.14;
    z-index: 0;
}

.site-footer__decor--left {
    width: 140px;
    height: 140px;
    top: 1.25rem;
    left: -2rem;
    background: radial-gradient(circle at 40% 40%, var(--color-accent-soft) 0%, transparent 72%);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
}

.site-footer__decor--right {
    width: 100px;
    height: 100px;
    top: 3rem;
    right: -1.5rem;
    background: radial-gradient(circle at 60% 30%, var(--color-accent) 0%, transparent 70%);
    border-radius: 55% 45% 40% 60% / 55% 50% 50% 45%;
    transform: rotate(18deg);
}

.site-footer__main {
    position: relative;
    z-index: 1;
    padding: 3rem 0 2.75rem;
}

.site-footer--rich .site-footer__grid {
    display: grid;
    gap: 2.25rem 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 720px) {
    .site-footer--rich .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .site-footer--rich .site-footer__grid {
        grid-template-columns: minmax(240px, 1.15fr) minmax(140px, 0.9fr) minmax(140px, 0.9fr) minmax(200px, 1fr);
        gap: 2rem 2.5rem;
        align-items: start;
    }
}

.site-footer__col {
    min-width: 0;
}

.site-footer__col--brand {
    padding-right: 0.5rem;
}

.site-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.site-footer__logo {
    display: block;
    max-height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.site-footer__logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: #f5edb8;
}

.site-footer__tagline {
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(245, 237, 184, 0.92);
    max-width: 28rem;
}

.site-footer__web-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
    font-size: 0.88rem;
}

.site-footer__web-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    opacity: 0.85;
}

.site-footer__link-muted {
    word-break: break-word;
    color: rgba(245, 237, 184, 0.95) !important;
}

.site-footer__link-muted:hover {
    color: #fff !important;
}

.site-footer__qr-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.25rem 0 1.5rem;
}

.site-footer__qr {
    margin: 0;
    text-align: center;
}

.site-footer__qr img {
    display: block;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
}

.site-footer__qr figcaption {
    margin-top: 0.35rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 237, 184, 0.75);
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.site-footer__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(232, 226, 136, 0.45);
    color: #f5edb8 !important;
    background: rgba(0, 0, 0, 0.12);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.site-footer__social-btn:hover {
    background: rgba(232, 226, 136, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.site-footer__social-btn.is-disabled {
    /* opacity: 0.45; */
    pointer-events: none;
}

.site-footer__heading {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    color: #f5edb8;
    border-bottom: 2px solid rgba(232, 226, 136, 0.35);
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__list li {
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
}

.site-footer__list a {
    display: inline-block;
    padding: 0.1rem 0;
}

.site-footer__muted {
    opacity: 0.75;
    font-size: 0.88rem;
}

.site-footer__office {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.site-footer__office-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    opacity: 0.9;
}

.site-footer__office-title {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #fff8c4;
}

.site-footer__office-text {
    margin: 0 0 0.4rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(245, 237, 184, 0.9);
}

.site-footer__bar {
    position: relative;
    z-index: 1;
    background: #e8e288;
    color: #fff;
    padding: 0.85rem 0;
    font-size: 0.82rem;
    border-top: 1px solid rgba(15, 36, 25, 0.08);
}

.site-footer__bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: space-between; */
    gap: 0.75rem 1.5rem;
}

.site-footer__bar a {
    color: #fff !important;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer__bar a:hover {
    color: #1b5e3f !important;
}

.site-footer__copyright {
    font-weight: 600;
}

.site-footer__bar-links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
}

.site-footer__bar-end {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: flex-end; */
    gap: 0.75rem 1.25rem;
    /* margin-left: auto; */
    margin: 0 auto;
}

.site-footer__credit {
    font-weight: 600;
    color: #fff;
}

.site-footer__bar-sep {
    opacity: 0.5;
}

.footer-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

/* Forms */
.form-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 720px) {
    .form-grid--2 { grid-template-columns: 1fr 1fr; }
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    font: inherit;
    background: var(--color-surface);
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid rgba(125, 78, 40, 0.35);
    border-color: var(--color-primary-light);
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.alert--success {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
}

/* Page article */
.article {
    max-width: 720px;
    margin: 0 auto;
}

.article h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.5rem;
}

.prose {
    font-size: 0.875rem;
}

.prose h2 {
    margin-top: 2rem;
    font-size: 1.35rem;
}

/* Product grid */
.product-card__img {
    /* aspect-ratio: 4/3; */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    background: #e8ede9;
    min-height: 230px;
    /* max-height: 330px; */
}

.product-card__img img {
    width: 100%;
    height: 100%;
    padding: 30px;
    /* object-fit: cover; */
}

/* Keep category products compact even with a single item */
.category-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .category-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .category-product-grid {
        grid-template-columns: 1fr;
    }
}

/* —— Creative: category + product catalog —— */
.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.page-breadcrumb a {
    color: var(--color-muted);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: var(--color-primary);
}

.page-breadcrumb__sep {
    opacity: 0.4;
    user-select: none;
}

.page-breadcrumb__current {
    color: var(--color-text);
    font-weight: 600;
}

/* Reusable image hero for pages using page-breadcrumb */
.page-breadcrumb-hero {
    position: relative;
}

.page-breadcrumb-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay), var(--page-breadcrumb-hero-image, var(--hero-bg-image)) center / cover no-repeat;
}

.page-breadcrumb-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay-radial);
    pointer-events: none;
}

.page-breadcrumb-hero--default .page-breadcrumb-hero__bg {
    background: var(--hero-overlay), var(--hero-bg-image) center / cover no-repeat;
}

.page-breadcrumb--hero {
    justify-content: flex-start;
    margin-bottom: 0.65rem;
}

.page-breadcrumb--hero a {
    color: rgba(255, 255, 255, 0.76);
}

.page-breadcrumb--hero a:hover {
    color: #fff;
}

.page-breadcrumb--hero .page-breadcrumb__sep {
    opacity: 0.55;
}

.page-breadcrumb--hero .page-breadcrumb__current {
    color: rgba(255, 255, 255, 0.98);
}

.category-page {
    overflow: clip;
}

.category-hero {
    position: relative;
    /* min-height: min(42vw, 340px); */
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(12, 42, 28, 0.92) 0%, rgba(20, 70, 48, 0.88) 45%, rgba(10, 28, 20, 0.94) 100%),
        var(--category-hero-image, none) center / cover no-repeat;
    color: #fff;
    text-align: center;
}

.category-hero--gradient {
    background:
        radial-gradient(ellipse 90% 80% at 20% 20%, rgba(90, 56, 32, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 90% 60%, rgba(184, 134, 11, 0.12) 0%, transparent 50%),
        linear-gradient(155deg, #0d2418 0%, var(--color-primary) 48%, #0a1812 100%);
}

.category-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.category-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.category-hero__inner {
    position: relative;
    z-index: 1;
    padding: 2.75rem 1rem 2.5rem;
    width: 100%;
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
}

.category-hero .page-breadcrumb {
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 0.65rem;
}

.category-hero .page-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
}

.category-hero .page-breadcrumb a:hover {
    color: #fff;
}

.category-hero .page-breadcrumb__current {
    color: rgba(255, 255, 255, 0.95);
}

.category-hero__eyebrow {
    margin: 0.35rem auto 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8e8d4;
    text-align: center;
}

.category-hero__title {
    margin: 0 auto 0.65rem;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.category-hero__desc {
    margin: 0 auto 1.25rem;
    max-width: 52ch;
    font-size: 1.02rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
}

.category-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.category-hero__chip--soft {
    font-weight: 500;
    opacity: 0.95;
}

.category-catalog {
    padding-top: 2.5rem;
}

.catalog-grid {
    gap: 1.35rem 1.15rem;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(125, 78, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(125, 78, 40, 0.12);
    border-color: rgba(125, 78, 40, 0.22);
}

.catalog-card__media {
    position: relative;
    display: block;
    /* aspect-ratio: 4 / 3; */
    overflow: hidden;
    background: #e8ede9;
    min-height: 230px;
    max-height: 330px;
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-card__media img {
    transform: scale(1.06);
}

.catalog-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.catalog-card:hover .catalog-card__shine {
    opacity: 1;
}

.catalog-card__view {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%) translateY(8px);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.catalog-card:hover .catalog-card__view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.catalog-card__body {
    padding: 1.1rem 1.2rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catalog-card__title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.catalog-card__title a {
    color: inherit;
    text-decoration: none;
}

.catalog-card__title a:hover {
    color: var(--color-primary-light);
}

.catalog-card__excerpt {
    margin: 0.45rem 0 0;
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.45;
}

.category-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: var(--radius);
    border: 1px dashed var(--color-border);
    background: rgba(255, 255, 255, 0.6);
}

.category-empty p {
    margin: 0 0 1rem;
    color: var(--color-muted);
}

.catalog-pagination {
    margin-top: 2.25rem;
}

/* Product detail — creative layout */
.product-detail-page .product-detail {
    padding-top: 2rem;
}

.product-detail__grid {
    display: grid;
    gap: 2rem 2.75rem;
    grid-template-columns: 1fr;
    align-items: start;
}

@media (min-width: 900px) {
    .product-detail__grid {
        grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    }
}

.product-detail__gallery {
    position: relative;
}

@media (min-width: 900px) {
    .product-detail__gallery {
        position: sticky;
        top: 5.5rem;
        align-self: start;
    }
}

.product-detail__frame {
    position: relative;
    padding: 0.5rem;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(125, 78, 40, 0.12), rgba(90, 56, 32, 0.06));
    box-shadow: var(--shadow-soft);
}

.product-detail__frame-deco {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 226, 136, 0.45) 0%, transparent 70%);
    pointer-events: none;
}

.product-detail .product-card__img {
    /* aspect-ratio: 3 / 4; */
    margin-bottom: 0;
    border-radius: 16px;
    border: 1px solid rgba(125, 78, 40, 0.1);
}

.product-detail__header {
    margin-bottom: 1.25rem;
}

.product-detail__cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-primary);
    background: rgba(125, 78, 40, 0.1);
    border: 1px solid rgba(125, 78, 40, 0.15);
}

.product-detail__cat-pill:hover {
    background: rgba(125, 78, 40, 0.16);
    text-decoration: none;
}

.product-detail__title {
    margin: 0.65rem 0 0.35rem;
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.product-detail__sku {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-detail__sku-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.product-detail__sku code {
    font-family: ui-monospace, monospace;
    font-size: 0.88rem;
    padding: 0.2rem 0.55rem;
    border-radius: 8px;
    background: rgba(125, 78, 40, 0.08);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.product-detail__lead {
    margin: 0 0 1.15rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.25rem;
}

.product-detail__prose {
    margin-top: 0.5rem;
}

.product-detail__block {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
}

.product-detail__h {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-detail__specs {
    margin: 0;
    display: grid;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.product-detail__spec-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.38fr) 1fr;
    gap: 1rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.92rem;
}

.product-detail__spec-row:last-child {
    border-bottom: none;
}

.product-detail__spec-row:nth-child(even) {
    background: rgba(125, 78, 40, 0.03);
}

.product-detail__spec-row dt {
    margin: 0;
    font-weight: 700;
    color: var(--color-text);
}

.product-detail__spec-row dd {
    margin: 0;
    color: var(--color-muted);
}

@media (max-width: 520px) {
    .product-detail__spec-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

.product-detail__apps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.product-detail__apps li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    background: rgba(125, 78, 40, 0.06);
    border: 1px solid rgba(125, 78, 40, 0.1);
    font-size: 0.93rem;
    line-height: 1.45;
}

.product-detail__app-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--color-primary);
}

.product-sample {
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
    background-image: url('../images/product-sample-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-sample::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.product-sample__panel {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 1.75rem 2.25rem;
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, #fff 0%, #fafcf9 100%);
    box-shadow: 0 16px 48px rgba(125, 78, 40, 0.07);
}

.product-sample__head {
    margin-bottom: 1.5rem;
}

.product-sample__title {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.product-sample__sub {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.product-sample__form {
    gap: 1rem;
}

.product-related {
    padding-top: 2.5rem;
}

.product-related__head {
    margin-bottom: 1.5rem;
    max-width: 40rem;
}

.product-related__title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.product-related__sub {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-muted);
}

/* Pagination (default Laravel markup) */
nav .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    justify-content: center;
}

nav .pagination li a,
nav .pagination li span {
    display: inline-flex;
    min-width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    font-size: 0.88rem;
}

nav .pagination li.active span {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

nav .pagination li.disabled span {
    opacity: 0.45;
}

/* Home — first hero image loader (homepage only; sessionStorage skips repeat) */
.home-hero-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 70% 55% at 50% 42%, #fbfcfb 0%, #eef3ee 52%, #e2e9e3 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.55s ease, visibility 0s linear;
    pointer-events: auto;
}

.home-hero-loader.is-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.55s ease, visibility 0s linear 0.55s;
}

.home-hero-loader__inner {
    position: relative;
    width: min(11.5rem, 42vw);
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 2;
}

.home-hero-loader__logo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 5.5rem;
    object-fit: contain;
    animation: home-hero-loader-pulse 2.2s ease-in-out infinite;
    filter: drop-shadow(0 10px 28px rgba(125, 78, 40, 0.14));
}

.home-hero-loader__orbit {
    position: absolute;
    inset: -14%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(125, 78, 40, 0.38);
    border-right-color: rgba(184, 134, 11, 0.5);
    animation: home-hero-loader-spin 4.2s linear infinite;
    z-index: 1;
}

.home-hero-loader__shine {
    position: absolute;
    inset: -22%;
    border-radius: 50%;
    background: conic-gradient(
        from 210deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.65) 42deg,
        transparent 78deg,
        transparent 360deg
    );
    animation: home-hero-loader-spin 9s linear infinite reverse;
    opacity: 0.42;
    pointer-events: none;
    z-index: 0;
}

@keyframes home-hero-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes home-hero-loader-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.045);
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-loader {
        transition-duration: 0.22s;
    }

    .home-hero-loader.is-out {
        transition-duration: 0.22s;
    }

    .home-hero-loader__orbit,
    .home-hero-loader__shine,
    .home-hero-loader__logo {
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .home-hero-loader__inner {
        width: min(10rem, 72vw);
    }
}

/* Fixed bottom social icons (Vinsark style) */
.vk-social-float {
    position: fixed;
    bottom: 1rem;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 9999;
    padding: 0 0.5rem;
    pointer-events: none;
}

.vk-social-float__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #6b8e23;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
}

.vk-social-float__icon img {
    width: 60%;
    height: auto;
    display: block;
}

.vk-social-float__icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.vk-social-float__icon.is-disabled {
    opacity: 0.55;
}

.vk-social-float__icon--whatsapp { background: #25d366; }
.vk-social-float__icon--whatsapp:hover { background: #1da851; }

.vk-social-float__icon--channel { background: #c9ded1; }

.vk-social-float__icon--facebook { background: #3b5998; }
.vk-social-float__icon--facebook:hover { background: #2d4373; }

.vk-social-float__icon--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.vk-social-float__icon--instagram:hover { filter: brightness(1.2); }

.vk-social-float__icon--linkedin { background: #0075b4; }
.vk-social-float__icon--linkedin:hover { background: #005f94; }

@media (max-width: 480px) {
    .vk-social-float {
        bottom: 0.75rem;
        gap: 8px;
    }

    .vk-social-float__icon {
        width: 44px;
        height: 44px;
    }
}

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.muted { color: var(--color-muted); }

/* ============================================================
   Products menu — nested sub-dropdowns
   ============================================================ */

.nav-dropdown--products .nav-dropdown__panel.nav-mega--nested {
    left: 0;
    width: min(260px, calc(100vw - 1.5rem));
    min-width: min(220px, calc(100vw - 1.5rem));
    max-width: min(260px, calc(100vw - 1.5rem));
    padding: 0.45rem 0;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: visible;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.nav-mega--nested .nav-mega__all-link {
    display: block;
    padding: 0.55rem 1rem 0.65rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-mega--nested .nav-mega__all-link:hover {
    color: var(--color-brand-red, #ed1c24);
    text-decoration: none;
    background: rgba(125, 78, 40, 0.04);
}

.nav-mega--nested .nav-mega__menu {
    margin: 0;
    padding: 0.25rem 0;
    list-style: none;
}

.nav-mega--nested .nav-mega__empty {
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.nav-subdropdown {
    position: relative;
}

.nav-subdropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.6rem 1rem;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-subdropdown__trigger:hover,
.nav-subdropdown__trigger:focus-visible {
    background: rgba(125, 78, 40, 0.06);
    color: var(--color-primary);
    outline: none;
}

.nav-subdropdown__caret {
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    opacity: 0.55;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-subdropdown:hover > .nav-subdropdown__trigger,
.nav-subdropdown:focus-within > .nav-subdropdown__trigger,
.nav-subdropdown.is-open > .nav-subdropdown__trigger {
    background: rgba(125, 78, 40, 0.08);
    color: var(--color-primary);
}

.nav-subdropdown:hover > .nav-subdropdown__trigger .nav-subdropdown__caret,
.nav-subdropdown:focus-within > .nav-subdropdown__trigger .nav-subdropdown__caret,
.nav-subdropdown.is-open > .nav-subdropdown__trigger .nav-subdropdown__caret {
    opacity: 1;
    color: var(--color-primary);
}

.nav-subdropdown__panel {
    display: none;
    min-width: 240px;
    padding: 0.4rem 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.nav-subdropdown__all {
    display: block;
    padding: 0.55rem 1rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-subdropdown__all:hover {
    background: rgba(125, 78, 40, 0.04);
    color: var(--color-brand-red, #ed1c24);
    text-decoration: none;
}

.nav-subdropdown__link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.86rem;
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.nav-subdropdown__link:hover {
    background: rgba(125, 78, 40, 0.06);
    color: var(--color-primary);
    padding-left: 1.15rem;
    text-decoration: none;
}

@media (min-width: 961px) {
    .nav-subdropdown__panel {
        position: absolute;
        left: calc(100% + 0.35rem);
        top: 0;
        z-index: 110;
        max-height: min(70vh, 420px);
        overflow-y: auto;
    }

    .nav-subdropdown:hover > .nav-subdropdown__panel,
    .nav-subdropdown:focus-within > .nav-subdropdown__panel {
        display: block;
    }

    /* Flip sub-menu left when near viewport edge */
    .nav-subdropdown__panel--flip {
        left: auto;
        right: calc(100% + 0.35rem);
    }
}

@media (max-width: 960px) {
    .nav-dropdown--products .nav-dropdown__panel.nav-mega--nested {
        left: auto;
        width: 100%;
        min-width: 0;
        max-width: none;
        transform: none;
        overflow: hidden;
    }

    .nav-subdropdown__panel {
        position: static;
        min-width: 0;
        margin: 0 0.65rem 0.35rem;
        border-radius: 10px;
        box-shadow: none;
        background: rgba(125, 78, 40, 0.04);
    }

    .nav-subdropdown.is-open > .nav-subdropdown__panel {
        display: block;
    }

    .nav-subdropdown.is-open > .nav-subdropdown__trigger .nav-subdropdown__caret {
        transform: rotate(90deg);
    }
}
