/* SIBALUB SARL — Premium export landing */
:root {
    --cream: #f7f3ea;
    --cream-dark: #ebe4d6;
    --shea: #d4b896;
    --shea-deep: #b8956a;
    --olive: #3d4f2f;
    --olive-light: #556b45;
    --earth: #2c2218;
    --earth-soft: #4a3d32;
    --gold: #c9a227;
    --gold-soft: #e8d48b;
    --white: #fffefc;
    --text: #2a241c;
    --text-muted: #5c5348;
    --shadow: 0 18px 50px rgba(44, 34, 24, 0.12);
    --shadow-sm: 0 8px 24px rgba(44, 34, 24, 0.08);
    --radius: 14px;
    --radius-lg: 22px;
    --header-h: 76px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

section[id] {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

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

a {
    color: var(--olive);
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
}

a:hover {
    color: var(--gold);
}

h1,
h2,
h3,
.section__title {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--earth);
    letter-spacing: 0.01em;
}

.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;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 1.25rem;
    background: var(--olive);
    color: var(--cream);
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    width: min(1180px, 100% - 2.5rem);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(247, 243, 234, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 79, 47, 0.08);
    transition: box-shadow 0.3s var(--ease-out), background 0.3s;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    color: var(--earth);
}

.logo:hover {
    opacity: 0.92;
}

.logo--brand {
    padding: 0.35rem 0.65rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(61, 79, 47, 0.1);
    box-shadow: 0 1px 4px rgba(44, 34, 24, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.logo--brand:hover {
    opacity: 1;
    border-color: rgba(61, 79, 47, 0.18);
    box-shadow: 0 4px 14px rgba(44, 34, 24, 0.1);
}

.logo__img {
    display: block;
    height: auto;
    max-height: 46px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 480px) {
    .logo__img {
        max-height: 40px;
        max-width: min(168px, 48vw);
    }

    .logo--brand {
        padding: 0.28rem 0.5rem;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    color: var(--earth);
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-toggle__bar {
    display: block;
    height: 2px;
    width: 22px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.site-header.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

.site-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--earth-soft);
    position: relative;
    padding: 0.35rem 0;
}

.site-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--shea-deep));
    transition: width 0.3s var(--ease-out);
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after {
    width: 100%;
}

.site-nav__cta {
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 0 0;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        background: var(--cream);
        border-top: 1px solid rgba(61, 79, 47, 0.1);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s var(--ease-out), opacity 0.3s, visibility 0.3s;
    }

    .site-header.nav-open .site-nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .site-nav__list a {
        font-size: 1.1rem;
    }

    .site-nav__cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, #a8841a 100%);
    color: var(--earth);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.btn--gold:hover {
    color: var(--earth);
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255, 254, 252, 0.55);
}

.btn--outline:hover {
    background: rgba(255, 254, 252, 0.12);
    color: var(--cream);
}

.section .btn--outline {
    color: var(--olive);
    border-color: var(--olive);
}

.section .btn--outline:hover {
    background: var(--olive);
    color: var(--cream);
}

.contact-card .btn--outline {
    margin-top: 1rem;
}

.btn--sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
}

.btn--lg {
    padding: 0.95rem 1.85rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--earth) var(--hero-bg) center / cover no-repeat;
    color: var(--cream);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(44, 34, 24, 0.82) 0%, rgba(44, 34, 24, 0.45) 45%, rgba(61, 79, 47, 0.55) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding-block: 4rem 5rem;
}

.hero__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-soft);
    margin: 0 0 1rem;
}

.hero__title {
    font-size: clamp(2.35rem, 5vw, 3.65rem);
    color: var(--cream);
    margin: 0 0 1rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(247, 243, 234, 0.92);
    margin: 0 0 2rem;
    max-width: 38ch;
}

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

.hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold-soft), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scaleY(0.85);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Marquee */
.marquee-wrap {
    background: var(--olive);
    color: var(--cream);
    border-block: 1px solid rgba(201, 162, 39, 0.2);
    overflow: hidden;
}

.marquee {
    padding: 0.85rem 0;
}

.marquee__track {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.marquee__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(247, 243, 234, 0.92);
}

.marquee__list li {
    position: relative;
    padding-left: 1.25rem;
}

.marquee__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

/* Sections */
.section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--muted {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 0.75rem;
}

.section__title span {
    color: var(--olive);
}

.section__intro {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin: 0 0 1.5rem;
}

/* Split layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.split--reverse .split__media {
    order: 2;
}

.split--reverse .split__content {
    order: 1;
}

@media (max-width: 900px) {
    .split,
    .split--reverse {
        grid-template-columns: 1fr;
    }

    .split--reverse .split__media,
    .split--reverse .split__content {
        order: unset;
    }
}

.split__figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split__figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.split__figure:hover img {
    transform: scale(1.03);
}

.split__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(44, 34, 24, 0.85);
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
}

.split__figure--stack {
    display: grid;
    gap: 1rem;
    background: transparent;
    box-shadow: none;
}

.split__figure--stack .split__img-primary {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.split__img-secondary {
    width: min(100%, 420px);
    margin-left: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 4px solid var(--cream);
}

.split__media--mfg {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.split__media--mfg .split__figure--stack {
    width: 100%;
    max-width: min(100%, 440px);
    margin-inline: auto;
    gap: 0.75rem;
}

.split__media--mfg .split__img-primary {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.split__media--mfg .split__img-secondary {
    width: min(100%, 320px);
    max-height: 160px;
    margin-left: auto;
    margin-right: 0;
    object-fit: cover;
    border-width: 3px;
}

@media (max-width: 900px) {
    .split__media--mfg .split__figure--stack {
        max-width: 400px;
    }

    .split__media--mfg .split__img-primary {
        max-height: 200px;
    }

    .split__media--mfg .split__img-secondary {
        max-height: 140px;
        width: min(100%, 280px);
    }
}

/* CEO + stats */
.ceo-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(61, 79, 47, 0.12);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.ceo-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive), var(--olive-light));
    color: var(--gold-soft);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.ceo-card__role {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.ceo-card__name {
    margin: 0.15rem 0 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--earth);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
}

.stat {
    padding: 1rem 1.15rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 184, 150, 0.45);
}

.stat dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin: 0 0 0.35rem;
}

.stat dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--olive);
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.product-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

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

.product-card {
    grid-column: span 4;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(61, 79, 47, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.product-grid--three .product-card {
    grid-column: auto;
}

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

@media (max-width: 1024px) {
    .product-grid:not(.product-grid--three) .product-card {
        grid-column: span 6;
    }
}

@media (max-width: 640px) {
    .product-grid:not(.product-grid--three) .product-card {
        grid-column: span 12;
    }
}

.product-card__image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.products-footnote {
    margin: 2.5rem 0 0;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(255, 254, 252, 0.65);
    border-radius: var(--radius);
    border: 1px solid rgba(61, 79, 47, 0.08);
    max-width: 52rem;
    margin-inline: auto;
}

.products-footnote a {
    font-weight: 600;
}

.product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card__image-wrap img {
    transform: scale(1.06);
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--earth);
    background: var(--gold-soft);
    border-radius: 999px;
    border: 1px solid var(--gold);
}

.product-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.product-card__title {
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
}

.product-card__body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 1.5rem 1.35rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(61, 79, 47, 0.08);
    transition: border-color 0.3s, box-shadow 0.3s var(--ease-out);
}

.feature-card:hover {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: var(--shadow-sm);
}

.feature-card__icon.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-size: 32px;
    color: var(--olive);
    display: block;
    margin-bottom: 0.75rem;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

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

/* Manufacturing section bg */
.section--manufacturing {
    background: radial-gradient(ellipse 120% 80% at 100% 0%, rgba(212, 184, 150, 0.35), transparent 55%), var(--cream);
}

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

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
}

.check-list li strong {
    color: var(--earth);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

/* Operations */
.section--operations {
    background: linear-gradient(165deg, var(--earth) 0%, #1a1510 55%, var(--olive) 100%);
    color: var(--cream);
}

.section--operations .section__title,
.section--operations .section__title span {
    color: var(--cream);
}

.section--operations .section__intro {
    color: rgba(247, 243, 234, 0.78);
}

.section__head--light .section__title {
    color: var(--cream);
}

.operations-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}

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

.world-map {
    position: relative;
    min-height: 280px;
    border-radius: var(--radius-lg);
    background: rgba(255, 254, 252, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.2);
    overflow: hidden;
}

.world-map__dots {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: radial-gradient(rgba(232, 212, 139, 0.5) 1px, transparent 1px);
    background-size: 14px 14px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 75%);
}

.world-map__arc {
    position: absolute;
    inset: 10% 5%;
    border: 2px dashed rgba(232, 212, 139, 0.35);
    border-radius: 50%;
    transform: rotateX(62deg);
    pointer-events: none;
}

.industry-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.industry-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 254, 252, 0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 254, 252, 0.1);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.25s, transform 0.25s var(--ease-out);
}

.industry-list li:hover {
    background: rgba(201, 162, 39, 0.15);
    transform: translateX(6px);
}

.industry-list__icon {
    color: var(--gold-soft);
    font-size: 0.75rem;
}

/* Clients */
.client-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .client-grid {
        grid-template-columns: 1fr;
    }
}

.client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 1rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--earth-soft);
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(61, 79, 47, 0.1);
    transition: color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.client-card:hover {
    color: var(--olive);
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

/* Packaging list */
.pack-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pack-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(61, 79, 47, 0.1);
    color: var(--text-muted);
}

.pack-list li:last-child {
    border-bottom: 0;
}

.pack-list strong {
    display: block;
    color: var(--earth);
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

/* Packaging — constrain image only (split column width unchanged) */
#packaging .split__media {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#packaging .split__figure {
    width: 100%;
    max-width: min(420px, 100%);
    margin-inline: auto;
}

#packaging .split__figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(220px, 32vw, 320px);
    object-fit: cover;
    object-position: center;
}

@media (min-width: 901px) {
    #packaging .split__figure {
        max-width: min(400px, 92%);
    }

    #packaging .split__figure img {
        max-height: 300px;
    }
}

/* Pricing */
.section--pricing {
    padding-block: clamp(3.5rem, 6vw, 5rem);
}

.pricing-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    background: linear-gradient(135deg, var(--olive) 0%, #2d3d24 50%, var(--earth-soft) 100%);
    color: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 640px) {
    .pricing-panel {
        grid-template-columns: 1fr;
    }
}

.pricing-panel__content {
    padding: clamp(2rem, 5vw, 3rem);
}

.section__title--light {
    color: var(--cream);
}

.pricing-panel__dl {
    margin: 0 0 2rem;
}

.pricing-panel__dl > div {
    margin-bottom: 1.25rem;
}

.pricing-panel__dl dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(247, 243, 234, 0.65);
    margin-bottom: 0.35rem;
}

.pricing-panel__dl dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gold-soft);
}

.pricing-panel__fob {
    display: block;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(247, 243, 234, 0.85);
    margin-top: 0.35rem;
}

.pricing-panel__accent {
    width: min(160px, 100%);
    background: linear-gradient(180deg, var(--gold) 0%, var(--shea-deep) 100%);
    opacity: 0.9;
}

.pricing-panel .btn--gold {
    color: var(--earth);
}

/* Gallery — uniform grid, export documentation style */
.section--gallery {
    padding-bottom: clamp(4.5rem, 9vw, 6.5rem);
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 35%, var(--cream) 100%);
}

.section--gallery .section__head {
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.gallery-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: clamp(10px, 1.8vw, 16px);
    max-width: 1200px;
    margin-inline: auto;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    background: rgba(255, 254, 252, 0.55);
    border: 1px solid rgba(61, 79, 47, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.gallery-tile {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--earth);
    border: 1px solid rgba(61, 79, 47, 0.12);
    box-shadow: 0 4px 18px rgba(44, 34, 24, 0.06);
    transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out), border-color 0.3s;
}

.gallery-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(44, 34, 24, 0.12);
    border-color: rgba(201, 162, 39, 0.35);
}

.gallery-tile:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.gallery-tile__media {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.55s var(--ease-out);
}

.gallery-tile:hover .gallery-tile__media img {
    transform: scale(1.08);
}

.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(44, 34, 24, 0.55) 0%, transparent 48%);
    opacity: 0.75;
    transition: opacity 0.35s var(--ease-out);
}

.gallery-tile:hover::after {
    opacity: 0.95;
}

.gallery-tile__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0.65rem 0.85rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: rgba(247, 243, 234, 0.96);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.gallery-tile:hover .gallery-tile__label,
.gallery-tile:focus-visible .gallery-tile__label {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-tile,
    .gallery-tile__media img,
    .gallery-tile__label {
        transition: none;
    }

    .gallery-tile:hover {
        transform: none;
    }

    .gallery-tile__label {
        opacity: 1;
        transform: none;
    }
}

/* Contact */
.section--contact {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.form-notice {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.form-notice--success {
    background: rgba(61, 79, 47, 0.12);
    color: var(--olive);
    border: 1px solid rgba(61, 79, 47, 0.25);
}

.form-notice--error {
    background: rgba(139, 47, 47, 0.1);
    color: #6b2a2a;
    border: 1px solid rgba(139, 47, 47, 0.25);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
}

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

.contact-card {
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(61, 79, 47, 0.1);
    box-shadow: var(--shadow-sm);
}

.contact-card__title {
    font-size: 1.5rem;
    margin: 0 0 1.25rem;
}

.contact-dl {
    margin: 0;
}

.contact-dl > div {
    margin-bottom: 1rem;
}

.contact-dl dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-dl dd {
    margin: 0;
    color: var(--earth);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(61, 79, 47, 0.1);
    box-shadow: var(--shadow-sm);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field--full {
    grid-column: 1 / -1;
}

.contact-form .btn {
    grid-column: 1 / -1;
    justify-self: start;
}

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

.field__label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.field input,
.field textarea {
    font: inherit;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(61, 79, 47, 0.18);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(61, 79, 47, 0.15);
}

.map-placeholder {
    grid-column: 1 / -1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 280px;
    border: 1px solid rgba(61, 79, 47, 0.12);
    box-shadow: var(--shadow-sm);
}

.map-placeholder iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* Footer — ExportersWay-style export bar (#111, space-between, gold accents) */
.site-footer.site-footer--ew {
    background: #111111;
    color: #cccccc;
    margin-top: 0;
    padding: 0;
}

.site-footer__bar {
    padding: 2.5rem clamp(1.25rem, 10vw, 5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__bar-inner {
    max-width: 1320px;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.site-footer__bar-left {
    flex: 1 1 280px;
    min-width: min(100%, 260px);
}

.site-footer__copyright {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.45;
    color: #cccccc;
}

.site-footer__credit {
    margin: 0.4rem 0 0;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.5;
    color: #999999;
}

.site-footer__social-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.site-footer__soc {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #333333;
    color: #b8b8b8;
    background: transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer__soc:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.65);
    background: rgba(212, 175, 55, 0.08);
}

.site-footer__soc svg {
    display: block;
}

.site-footer__brandmark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 0;
    padding: 0.5rem 0.85rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    opacity: 0.98;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
}

.site-footer__brandmark:hover {
    opacity: 1;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

.site-footer__logo-img {
    display: block;
    height: auto;
    max-height: 72px;
    width: auto;
    max-width: min(200px, 55vw);
    object-fit: contain;
    object-position: right center;
}

@media (max-width: 640px) {
    .site-footer__bar {
        padding: 2rem clamp(1rem, 5vw, 1.5rem);
    }

    .site-footer__bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__brandmark {
        align-self: flex-end;
        width: 100%;
        justify-content: flex-end;
    }

    .site-footer__logo-img {
        max-height: 58px;
        max-width: min(180px, 70vw);
    }
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 950;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    color: #fff;
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

/* Gallery lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(44, 34, 24, 0.92);
    display: grid;
    place-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: min(1100px, 100%);
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    transform: scale(0.94);
    transition: transform 0.4s var(--ease-out);
}

.lightbox.is-open .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(247, 243, 234, 0.15);
    color: var(--cream);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox__close:hover {
    background: rgba(247, 243, 234, 0.28);
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
