/* ==========================================================================
   Kalara Borneo — Bean-to-Bar West Kalimantan
   ========================================================================== */

:root {
    --color-noir: #0f0806;
    --color-cacao: #1f140e;
    --color-espresso: #2a1a12;
    --color-mocha: #3d261a;
    --color-caramel: #8a5a3b;
    --color-forest: #2d3f2a;
    --color-gold: #c9a961;
    --color-gold-light: #e4c988;
    --color-cream: #f5efe4;
    --color-ivory: #faf6ef;
    --color-sand: #ede3d0;
    --color-ash: #807670;
    --color-line: rgba(201, 169, 97, 0.15);
    --color-line-light: rgba(31, 20, 14, 0.1);

    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-serif: 'Italiana', serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --ease: cubic-bezier(0.65, 0, 0.05, 1);
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

    --section-y: clamp(5rem, 10vw, 9rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.005em;
    color: var(--color-cacao);
    background: var(--color-ivory);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

p {
    font-feature-settings: "kern", "liga", "calt";
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1360px; margin: 0 auto; padding: 0 2.5rem; }

/* Typography */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-caramel);
    display: inline-block;
    margin-bottom: 1.4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.022em;
    color: var(--color-noir);
    margin-bottom: 1.5rem;
}

.section-title em { letter-spacing: -0.025em; }

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-caramel);
}

.section-title--light { color: var(--color-cream); }
.section-title--light em { color: var(--color-gold); }

.section-subtitle {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 1.05rem;
    color: var(--color-ash);
    max-width: 580px;
    line-height: 1.85;
    font-weight: 300;
    text-wrap: balance;
}

.section-title--light + .section-subtitle { color: rgba(245, 239, 228, 0.7); margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.1rem 2.25rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.5s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
}

.btn--primary {
    background: var(--color-noir);
    color: var(--color-cream);
    border-color: var(--color-noir);
}

.btn--primary:hover {
    background: var(--color-caramel);
    border-color: var(--color-caramel);
    color: var(--color-cream);
}

.btn--ghost {
    background: transparent;
    color: var(--color-cream);
    border-color: rgba(245, 239, 228, 0.3);
}

.btn--ghost:hover {
    background: var(--color-cream);
    color: var(--color-noir);
    border-color: var(--color-cream);
}

.btn--cream {
    background: var(--color-cream);
    color: var(--color-noir);
    border-color: var(--color-cream);
}
.btn--cream:hover {
    background: var(--color-gold);
    color: var(--color-noir);
    border-color: var(--color-gold);
}

.btn--full { width: 100%; }
.btn--flex { flex: 1; }

/* ==========================================================================
   Announcement
   ========================================================================== */
.announce {
    background: var(--color-noir);
    color: var(--color-gold);
    overflow: hidden;
    padding: 0.7rem 0;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.announce__track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
/* Header wrapper: sticky scope = body (full page) */
header[data-kb-header],
.header,
header.header {
    position: sticky;
    top: 0;
    z-index: 90;
    display: block;
}

.nav {
    background: rgba(250, 246, 239, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-line-light);
    transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.nav--scrolled {
    box-shadow: 0 1px 30px rgba(15, 8, 6, 0.08);
    background: rgba(250, 246, 239, 0.97);
}

.nav__container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    color: var(--color-noir);
    transition: opacity 0.4s var(--ease);
}

.nav__logo:hover { opacity: 0.7; }

.nav__logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.nav__menu {
    display: flex;
    justify-content: center;
    gap: 1.85rem;
    list-style: none;
}

.nav__link {
    font-size: 0.74rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-noir);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link--drop {
    cursor: pointer;
    user-select: none;
}
.nav__link--drop svg {
    transition: transform 0.3s var(--ease);
    margin-top: 1px;
}

.nav__item--drop { position: relative; }

.nav__item--drop:hover .nav__link--drop svg,
.nav__item--drop:focus-within .nav__link--drop svg {
    transform: rotate(180deg);
}

.nav__sub {
    position: absolute;
    top: calc(100% + 8px);
    left: -1.25rem;
    min-width: 220px;
    padding: 0.75rem 0;
    background: var(--color-ivory);
    border: 1px solid var(--color-line-light);
    box-shadow: 0 18px 45px rgba(15, 8, 6, 0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.35s var(--ease);
    z-index: 95;
}

.nav__item--drop:hover .nav__sub,
.nav__item--drop:focus-within .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__sub::before {
    content: '';
    position: absolute;
    top: -8px; left: 2rem;
    width: 14px; height: 14px;
    background: var(--color-ivory);
    border-top: 1px solid var(--color-line-light);
    border-left: 1px solid var(--color-line-light);
    transform: rotate(45deg);
}

.nav__sub li { list-style: none; }

.nav__sub a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-noir);
    transition: all 0.3s;
    font-weight: 400;
}

.nav__sub a:hover {
    background: var(--color-cream);
    color: var(--color-caramel);
    padding-left: 1.75rem;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--color-caramel);
    transition: all 0.4s var(--ease);
    transform: translateX(-50%);
}

.nav__link:hover { color: var(--color-caramel); }
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 0.25rem; }

.nav__icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    color: var(--color-noir);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}

.nav__icon:hover { background: var(--color-cream); color: var(--color-caramel); }

.nav__cart-count {
    position: absolute;
    top: 4px; right: 4px;
    min-width: 18px; height: 18px;
    padding: 0 4px;
    border-radius: 10px;
    background: var(--color-caramel);
    color: var(--color-cream);
    font-size: 0.62rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s var(--ease);
}

.nav__cart-count.is-active { transform: scale(1); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav__toggle span {
    display: block;
    width: 22px; height: 1px;
    background: var(--color-noir);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    color: var(--color-cream);
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        url('../hero/hero.webp') center / cover no-repeat,
        url('../hero/hero-poster.webp') center / cover no-repeat,
        var(--color-noir);
    filter: saturate(1.05);
}
/* Dark overlay layer for text readability */
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 8, 6, 0.45) 0%, rgba(15, 8, 6, 0.35) 40%, rgba(15, 8, 6, 0.65) 100%),
        radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(15, 8, 6, 0.35) 80%);
    z-index: 1;
}

/* No CSS zoom animation: video loop sudah memberi gerakan natural */

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 3px),
        radial-gradient(circle at 75% 30%, rgba(201, 169, 97, 0.06) 0%, transparent 3px),
        radial-gradient(circle at 45% 65%, rgba(245, 239, 228, 0.04) 0%, transparent 3px),
        radial-gradient(circle at 85% 80%, rgba(201, 169, 97, 0.07) 0%, transparent 3px);
    background-size: 60px 60px, 90px 90px, 70px 70px, 80px 80px;
    pointer-events: none;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, transparent 30%, rgba(15, 8, 6, 0.4) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.hero__eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-smooth) 0.2s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero__line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.4s var(--ease-smooth) forwards;
}

.hero__line:nth-child(1) { animation-delay: 0.4s; }
.hero__line:nth-child(2) { animation-delay: 0.6s; }

.hero__line--accent {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
    padding-left: 1.2rem;
}

.hero__description {
    max-width: 500px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245, 239, 228, 0.75);
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-smooth) 0.8s forwards;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-smooth) 1s forwards;
}

.hero__trust {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(245, 239, 228, 0.12);
    max-width: 620px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-smooth) 1.2s forwards;
}

.hero__trust-item { display: flex; flex-direction: column; gap: 0.2rem; }

.hero__trust-num {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
}

.hero__trust-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, 0.65);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   Hero — Editorial single-message variant
   ========================================================================== */
.hero--editorial { min-height: 88vh; padding: 6rem 0 5rem; }

/* SVG botanical decorations */
.hero__leaf {
    position: absolute;
    color: var(--color-gold);
    pointer-events: none;
    z-index: 1;
}
.hero__leaf--tl {
    top: 4%; left: 3%;
    width: 220px; height: 220px;
    transform: rotate(-15deg);
    opacity: 0;
    animation: leafFade 2s var(--ease-smooth) 1s forwards, leafSway 14s ease-in-out infinite alternate;
}
.hero__leaf--br {
    bottom: 5%; right: 4%;
    width: 240px; height: 240px;
    transform: rotate(20deg);
    opacity: 0;
    animation: leafFade 2s var(--ease-smooth) 1.4s forwards, leafSwayReverse 16s ease-in-out infinite alternate;
}
.hero__pod {
    position: absolute;
    top: 50%; right: 12%;
    width: 60px; height: 110px;
    color: var(--color-gold);
    transform: translateY(-50%) rotate(8deg);
    opacity: 0;
    animation: leafFade 2s var(--ease-smooth) 1.8s forwards;
    pointer-events: none;
    z-index: 1;
}

@keyframes leafFade {
    to { opacity: 0.55; }
}
@keyframes leafSway {
    0%   { transform: rotate(-15deg) translate(0, 0); }
    100% { transform: rotate(-12deg) translate(8px, -6px); }
}
@keyframes leafSwayReverse {
    0%   { transform: rotate(20deg) translate(0, 0); }
    100% { transform: rotate(17deg) translate(-6px, -8px); }
}

@media (max-width: 900px) {
    .hero__leaf--tl, .hero__leaf--br { width: 140px; height: 140px; }
    .hero__leaf--tl { top: 2%; left: -2%; }
    .hero__leaf--br { bottom: 2%; right: -2%; }
    .hero__pod { display: none; }
}

/* Hero divider — editorial ornament */
.hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 0 auto 2rem;
    max-width: 380px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-smooth) 0.9s forwards;
}
.hero__divider span:first-child,
.hero__divider span:last-child {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.5), transparent);
}
.hero__divider-mark {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-style: italic;
    flex-shrink: 0;
    animation: spin 24s linear infinite;
    display: inline-block;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero__content--center {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero__content--center .hero__eyebrow {
    color: var(--color-gold);
    margin-bottom: 2.5rem;
}

.hero__title--single {
    font-size: clamp(2.6rem, 6vw, 5.25rem);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 2.25rem;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.6s var(--ease-smooth) 0.4s forwards;
}
.hero__title--single em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 300;
    letter-spacing: -0.035em;
}

.hero__content--center .hero__description {
    max-width: 600px;
    margin: 0 auto 3.5rem;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(245, 239, 228, 0.72);
    text-align: center;
    opacity: 0;
    animation: fadeUp 1.4s var(--ease-smooth) 0.8s forwards;
    font-weight: 300;
}

.hero__actions--single {
    justify-content: center;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-smooth) 1s forwards;
}
.hero__actions--dual {
    justify-content: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-smooth) 1s forwards;
    gap: 0.85rem;
}
.hero__content--center .hero__trust {
    justify-content: center;
    border-top-color: rgba(245, 239, 228, 0.18);
    margin: 0 auto;
    max-width: 520px;
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    gap: 2.25rem;
}
.hero__content--center .hero__trust li {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, 0.55);
    font-weight: 500;
}

.btn--lg {
    padding: 1.2rem 2.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
}

.btn--ghost--dark {
    color: var(--color-noir);
    border-color: var(--color-line-light);
    background: transparent;
}
.btn--ghost--dark:hover {
    background: var(--color-noir);
    color: var(--color-cream);
    border-color: var(--color-noir);
}

/* ==========================================================================
   Editorial pull quote — large philosophical moment
   ========================================================================== */
.pullquote {
    padding: clamp(6rem, 14vw, 11rem) 0;
    background: var(--color-sand);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pullquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(201, 169, 97, 0.15), transparent 50%),
        radial-gradient(ellipse at 75% 50%, rgba(45, 63, 42, 0.08), transparent 50%);
    pointer-events: none;
}

.pullquote__inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.pullquote__mark {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(8rem, 16vw, 14rem);
    line-height: 0.7;
    color: var(--color-caramel);
    opacity: 0.18;
    font-style: italic;
    margin-bottom: -1rem;
    pointer-events: none;
    user-select: none;
}

.pullquote__text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.18;
    color: var(--color-noir);
    letter-spacing: -0.022em;
    margin-bottom: 2.5rem;
}

.pullquote__text em {
    font-style: italic;
    color: var(--color-caramel);
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: rgba(201, 169, 97, 0.4);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.pullquote__attr {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-ash);
    font-weight: 500;
}

@media (max-width: 640px) {
    .pullquote { padding: 4rem 0; }
}

/* ==========================================================================
   Map section — Where the cacao grows
   ========================================================================== */
.map-section {
    padding: var(--section-y) 0;
    background: var(--color-noir);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}
.map-section::before {
    content: '';
    position: absolute;
    top: -25%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(45,63,42,0.25), transparent 60%);
    filter: blur(80px);
}
.map-section::after {
    content: '';
    position: absolute;
    bottom: -25%; left: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(138,90,59,0.18), transparent 60%);
    filter: blur(70px);
}

.map-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.map-section__text { max-width: 480px; }
.map-section__text .eyebrow { color: var(--color-gold); }
.map-section__text p {
    font-size: 1.04rem;
    line-height: 1.85;
    color: rgba(245, 239, 228, 0.78);
    margin: 1.5rem 0;
    font-weight: 300;
}

.map-section__list {
    list-style: none;
    padding: 2rem 0 0;
    margin: 1.5rem 0 0;
    border-top: 1px solid rgba(201,169,97,0.2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-section__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
}

.map-section__pin {
    color: var(--color-gold);
    font-size: 0.6rem;
    margin-top: 0.6rem;
    line-height: 1;
}

.map-section__list strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.2rem;
    letter-spacing: -0.005em;
}

.map-section__list em {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: rgba(245, 239, 228, 0.6);
    font-style: italic;
    line-height: 1.5;
}

.map-section__visual {
    position: relative;
    text-align: center;
}

.borneo-map {
    width: 100%;
    max-width: 540px;
    height: auto;
    color: var(--color-gold);
    display: block;
    margin: 0 auto;
}

.map-pin circle:nth-child(1) {
    transform-origin: center;
    animation: pinPulse 2.8s ease-in-out infinite;
}
.map-pin--2 circle:nth-child(1) {
    animation-delay: 1.4s;
}

@keyframes pinPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
}

.map-section__caption {
    margin-top: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, 0.45);
}

@media (max-width: 1024px) {
    .map-section__inner { grid-template-columns: 1fr; gap: 3rem; }
    .borneo-map { max-width: 420px; }
}
@media (max-width: 640px) {
    .map-section { padding: 4rem 0; }
}

/* ==========================================================================
   Sustain teaser — homepage section
   ========================================================================== */
.sustain-teaser {
    padding: var(--section-y) 0;
    background: var(--color-noir);
    color: var(--color-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sustain-teaser::before {
    content: '';
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(45,63,42,0.25), transparent 65%);
    filter: blur(80px);
}

.sustain-teaser__inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.sustain-teaser__leaf {
    position: absolute;
    bottom: -10%; left: -5%;
    width: 360px; height: 360px;
    color: var(--color-gold);
    opacity: 0.12;
    pointer-events: none;
    transform: rotate(-25deg);
    z-index: 1;
}

@media (max-width: 768px) {
    .sustain-teaser__leaf { width: 200px; height: 200px; bottom: -5%; left: -10%; }
}

.sustain-teaser__inner .eyebrow { color: var(--color-gold); }

.sustain-teaser__inner p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(245, 239, 228, 0.78);
    margin: 1.75rem auto 3rem;
    max-width: 600px;
    font-weight: 300;
}

.link-arrow--light {
    color: var(--color-cream);
    border-bottom-color: var(--color-gold);
}
.link-arrow--light:hover { color: var(--color-gold); }

/* Live Promise strip — verbatim taglines from kalaraborneo.id live */
.live-promise {
    padding: 3.5rem 0;
    background: var(--color-noir);
    color: var(--color-cream);
    text-align: center;
    border-top: 1px solid rgba(201, 169, 97, 0.18);
    border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}
.live-promise__inner {
    max-width: 880px;
    margin: 0 auto;
}
.live-promise__main {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-cream);
    margin: 0 auto;
    max-width: 760px;
    letter-spacing: 0.01em;
}
.live-promise__divider {
    display: block;
    color: var(--color-gold);
    font-size: 0.9rem;
    margin: 1.2rem 0;
    letter-spacing: 0.4em;
}
.live-promise__sub {
    font-family: 'Italiana', Georgia, serif;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--color-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 0;
}

/* Overview section — Sekilas Tentang Kalara Borneo */
.overview {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    background: var(--color-cream);
    text-align: center;
    position: relative;
}
.overview__inner {
    max-width: 880px;
    margin: 0 auto;
}
.overview__body {
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.9;
    color: rgba(15, 8, 6, 0.78);
    font-weight: 300;
    text-align: left;
    text-wrap: pretty;
    margin-top: 1.75rem;
}
.overview .section-title {
    margin-top: 0.75rem;
}
@media (max-width: 640px) {
    .overview { padding: 4rem 0; }
}

/* Mission section — verbatim live: gap value chain */
.mission {
    padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
    background: var(--color-cream);
    text-align: center;
}
.mission__inner {
    max-width: 820px;
    margin: 0 auto;
}
.mission__inner .section-subtitle {
    font-style: italic;
    color: var(--color-gold);
    margin-top: 1.25rem;
    margin-bottom: 2.25rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.mission__body {
    font-size: 1.05rem;
    line-height: 1.95;
    color: rgba(15, 8, 6, 0.78);
    font-weight: 300;
    text-align: left;
    column-count: 1;
}
@media (min-width: 900px) {
    .mission__body { font-size: 1.08rem; }
}

/* Mission pillars (4 cards: tradisi, akses pasar, perdagangan adil, R&D superfood) */
.mission__pillars-wrap {
    margin-top: 3.5rem;
    max-width: 1100px;
}
.mission__pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.mission__pillar {
    padding: 2rem 1.75rem;
    background: var(--color-ivory);
    border: 1px solid rgba(138, 90, 59, 0.12);
    border-radius: 6px;
    transition: all 0.4s var(--ease);
    text-align: left;
}
.mission__pillar:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 97, 0.32);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 14px 28px rgba(138, 90, 59, 0.06);
}
.mission__num {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-caramel);
    letter-spacing: 0.22em;
    margin-bottom: 0.5rem;
    font-style: italic;
}
.mission__pillar h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}
.mission__pillar p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--color-ash);
    font-weight: 300;
}
@media (max-width: 760px) {
    .mission__pillars-wrap {
        margin-top: 2rem;
        max-width: none;
        padding: 0;
    }
    .mission__pillars {
        display: flex;
        grid-template-columns: none;
        gap: 0.75rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.5rem 1.25rem 1rem;
        margin: 0 -1.25rem;
    }
    .mission__pillars::-webkit-scrollbar { display: none; }
    .mission__pillar {
        flex: 0 0 78%;
        max-width: 300px;
        scroll-snap-align: start;
        padding: 1.5rem 1.25rem;
    }
    .mission__pillar h3 { font-size: 1.2rem; }
    .mission__pillar p { font-size: 0.88rem; }
}

/* Photo strip — placeholder for editorial mood photo */
.photo-strip {
    padding: clamp(1.5rem, 4vw, 3rem) 0;
    background: var(--color-ivory);
}
.photo-strip__frame {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 21 / 9;
    background:
        repeating-linear-gradient(
            45deg,
            var(--color-sand) 0,
            var(--color-sand) 12px,
            var(--color-cream) 12px,
            var(--color-cream) 24px
        );
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(138, 90, 59, 0.12);
}
.photo-strip__frame::before,
.photo-strip__frame::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
}
.photo-strip__frame::before {
    top: -8px; left: -8px;
    border-right: none;
    border-bottom: none;
}
.photo-strip__frame::after {
    bottom: -8px; right: -8px;
    border-left: none;
    border-top: none;
}
.photo-strip__hint {
    background: rgba(250, 246, 239, 0.92);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    border: 1px dashed rgba(138, 90, 59, 0.3);
    text-align: center;
    max-width: 80%;
}
.photo-strip__hint svg {
    color: var(--color-caramel);
    margin: 0 auto 0.75rem;
    display: block;
    opacity: 0.7;
}
.photo-strip__hint-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin-bottom: 0.5rem;
}
.photo-strip__hint-desc {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--color-noir);
    line-height: 1.4;
    text-wrap: balance;
}
.photo-strip__caption {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-caramel);
    font-size: clamp(0.85rem, 1.05vw, 1rem);
    margin: 1.5rem auto 0;
    max-width: 640px;
    text-wrap: balance;
}
.photo-strip__frame--photo {
    background: var(--color-noir);
    margin: 0;
    padding: 0;
}
.photo-strip__frame--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 640px) {
    .photo-strip__frame { aspect-ratio: 4 / 3; }
    .photo-strip__frame--photo { aspect-ratio: 16 / 10; }
    .photo-strip__hint { padding: 1rem 1.25rem; max-width: 88%; }
    .photo-strip__hint svg { width: 32px; height: 32px; }
}

/* Value Chain — diagram showcase */
.chain {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    background: var(--color-ivory);
    position: relative;
    overflow: hidden;
}
.chain::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(201, 169, 97, 0.08), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.chain__inner {
    position: relative;
    z-index: 1;
}
.chain__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.chain__lead {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-caramel);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.55;
    margin-top: 1.25rem;
    text-wrap: balance;
}
.chain__figure {
    margin: 0;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.chain__frame {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-cream) 100%);
    border: 1px solid rgba(138, 90, 59, 0.1);
    border-radius: 8px;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    box-shadow:
        0 1px 2px rgba(15, 8, 6, 0.04),
        0 24px 48px rgba(138, 90, 59, 0.1),
        0 4px 12px rgba(15, 8, 6, 0.04);
    position: relative;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.chain__frame::before,
.chain__frame::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
}
.chain__frame::before {
    top: -8px; left: -8px;
    border-right: none;
    border-bottom: none;
}
.chain__frame::after {
    bottom: -8px; right: -8px;
    border-left: none;
    border-top: none;
}
.chain__frame:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 2px rgba(15, 8, 6, 0.05),
        0 32px 64px rgba(138, 90, 59, 0.14),
        0 6px 18px rgba(15, 8, 6, 0.05);
}
.chain__frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.chain__caption {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-caramel);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    margin-top: 2rem;
    letter-spacing: 0.02em;
}
@media (max-width: 640px) {
    .chain__frame { padding: 1rem; }
    .chain__frame::before, .chain__frame::after { width: 18px; height: 18px; }
}


/* Core Operations section — 4 cards (Kakao Maram, B2B, QC, GAP) */
.core-ops {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    background: var(--color-cream);
    position: relative;
}
.core-ops__head {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.core-ops__head .section-subtitle {
    font-style: italic;
    color: var(--color-caramel);
    margin-top: 1.25rem;
    text-wrap: balance;
}
.core-ops__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
}
.core-ops__item {
    padding: 2.25rem 2rem;
    background: var(--color-ivory);
    border: 1px solid rgba(138, 90, 59, 0.1);
    border-radius: 6px;
    transition: all 0.4s var(--ease);
    position: relative;
}
.core-ops__item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 97, 0.32);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 16px 32px rgba(138, 90, 59, 0.08);
}
.core-ops__num {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-caramel);
    letter-spacing: 0.22em;
    margin-bottom: 0.75rem;
    font-style: italic;
}
.core-ops__item h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 1rem;
    line-height: 1.25;
    text-wrap: balance;
}
.core-ops__item p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-ash);
    font-weight: 300;
    text-wrap: pretty;
}
@media (max-width: 880px) {
    .core-ops__grid {
        display: flex;
        grid-template-columns: none;
        gap: 0.75rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.5rem 1.25rem 1rem;
        margin: 0 -1.25rem;
    }
    .core-ops__grid::-webkit-scrollbar { display: none; }
    .core-ops__item {
        flex: 0 0 82%;
        max-width: 320px;
        scroll-snap-align: start;
        padding: 1.5rem 1.25rem;
    }
    .core-ops__item h3 { font-size: 1.2rem; }
    .core-ops__item p { font-size: 0.88rem; line-height: 1.65; }
}

/* Pioneer Bean-to-Bar section — verbatim live */
.pioneer {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fdfaf3 0%, var(--color-cream) 100%);
    text-align: center;
    position: relative;
}
.pioneer__inner {
    max-width: 880px;
    margin: 0 auto;
}
.pioneer__body {
    font-size: 1.05rem;
    line-height: 1.95;
    color: rgba(15, 8, 6, 0.78);
    font-weight: 300;
    text-align: left;
    margin: 2rem 0 1rem;
}

/* Pioneer + Shop combined section (homepage) */
.pioneer-shop {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, #fdfaf3 0%, var(--color-cream) 100%);
    position: relative;
}
.pioneer-shop__head {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.pioneer-shop__head .section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    margin-bottom: 1.25rem;
}
.pioneer-shop__body {
    font-size: 0.98rem;
    line-height: 1.85;
    color: rgba(15, 8, 6, 0.72);
    font-weight: 300;
    margin: 0;
}
.pioneer-shop__cta {
    text-align: center;
    margin-top: 3rem;
}

/* Shop center variant */
.shop__head--center {
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.shop__head--center .section-title { margin-bottom: 1.25rem; }

.shop__head--center .section-subtitle {
    margin: 0 auto;
    text-align: center;
}

.shop__cta {
    text-align: center;
    margin-top: 4rem;
}

/* Lead paragraph emphasis — editorial pull */
.reveal--lead {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-caramel) !important;
    max-width: 540px !important;
    letter-spacing: -0.012em;
    margin-bottom: 1.75rem !important;
}

.story__text p {
    font-size: 1.04rem;
    line-height: 1.85;
}

/* ==========================================================================
   Story
   ========================================================================== */
.story {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    background: var(--color-ivory);
    position: relative;
    overflow: hidden;
}

.story__leaf-deco {
    position: absolute;
    top: 8%; right: -3%;
    width: 240px; height: 240px;
    color: var(--color-caramel);
    opacity: 0.08;
    transform: rotate(15deg);
    pointer-events: none;
    animation: leafSway 18s ease-in-out infinite alternate;
    z-index: 0;
}

.story__grid { position: relative; z-index: 1; }

.story__p--dropcap::first-letter {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-style: italic;
    font-weight: 400;
    color: var(--color-caramel);
    float: left;
    line-height: 0.9;
    margin: 0.35rem 0.5rem 0 -0.05rem;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .story__leaf-deco { display: none; }
    .story__p--dropcap::first-letter { font-size: 3rem; }
}

.story__grid {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.story__visual {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
}

.story__image {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
}

.story__image--1 {
    width: 100%; height: 100%;
    top: 0; left: 0;
    background:
        var(--color-cream) url('../story/story-cacao-garden.webp') center / cover no-repeat;
    box-shadow: 0 20px 50px rgba(15, 8, 6, 0.14), 0 4px 12px rgba(15, 8, 6, 0.06);
    transition: transform 0.8s var(--ease);
}
.story__visual:hover .story__image--1 { transform: translateY(-4px); }

/* Subtle caramel frame offset behind image (editorial accent) */
.story__visual::before {
    content: '';
    position: absolute;
    top: 16px; left: 16px;
    width: 100%; height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 4px;
    pointer-events: none;
    z-index: -1;
    transition: transform 0.8s var(--ease);
}
.story__visual:hover::before { transform: translate(-3px, -3px); }

.story__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-ash);
    margin-bottom: 1.25rem;
    max-width: 480px;
}

.story__values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-line-light);
}

.story__value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.story__value svg {
    color: var(--color-caramel);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.story__value h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 0.15rem;
}

.story__value p {
    font-size: 0.88rem;
    color: var(--color-ash);
    margin: 0;
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
    background: var(--color-noir);
    color: var(--color-gold);
    padding: 1.75rem 0;
    overflow: hidden;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.marquee__track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 32s linear infinite;
}

.marquee__track span {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 300;
}

/* ==========================================================================
   Benefits strip
   ========================================================================== */
.benefits-strip {
    padding: 3rem 0;
    background: var(--color-ivory);
    border-bottom: 1px solid var(--color-line-light);
}

.benefits-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.benefits-strip__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-strip__item svg { color: var(--color-caramel); flex-shrink: 0; }

.benefits-strip__item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.25;
    margin-bottom: 0.1rem;
}

.benefits-strip__item span {
    font-size: 0.78rem;
    color: var(--color-ash);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .benefits-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
    .benefits-strip__grid { grid-template-columns: 1fr; gap: 1rem; }
    .benefits-strip { padding: 2rem 0; }
}

/* ==========================================================================
   Shop / Products
   ========================================================================== */
.shop { padding: var(--section-y) 0; background: var(--color-ivory); }

.shop__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.shop__head .section-title { margin-bottom: 0; }

.shop__filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter {
    padding: 0.55rem 1.15rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--color-line-light);
    border-radius: 100px;
    color: var(--color-noir);
    transition: all 0.3s;
}

.filter:hover { border-color: var(--color-caramel); color: var(--color-caramel); }

.filter--active {
    background: var(--color-noir);
    color: var(--color-cream);
    border-color: var(--color-noir);
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
}

/* Compact product grid — modern card style (homepage Pioneer-Shop) */
.products--compact {
    gap: 1.5rem 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
    grid-auto-rows: 1fr;
}
.products--compact .product {
    height: 100%;
    background: var(--color-ivory);
    border: 1px solid rgba(138, 90, 59, 0.08);
    border-radius: 6px;
    padding: 0.65rem 0.65rem 1.1rem;
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.02), 0 4px 14px rgba(138, 90, 59, 0.04);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.products--compact .product:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 97, 0.35);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 14px 28px rgba(138, 90, 59, 0.1);
}
.products--compact .product::after { display: none; }

.products--compact .product__image {
    aspect-ratio: 1/1;
    margin-bottom: 0.85rem;
    background: var(--color-cream);
    border: none;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.products--compact .product__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 0.5rem;
}

.products--compact .product__link {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products--compact .product__name {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-noir);
    margin: 0 0 0.4rem;
    letter-spacing: -0.005em;
}

.products--compact .product__origin {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin: 0 0 0.65rem;
    font-weight: 500;
    min-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products--compact .product__desc {
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(15, 8, 6, 0.55);
    font-weight: 400;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products--compact .product__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: auto 0 0;
    padding: 0;
    border: none;
}

.products--compact .product__price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-noir);
    letter-spacing: 0;
    line-height: 1;
    flex-shrink: 0;
}

.products--compact .product__price-old {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(15, 8, 6, 0.4);
    text-decoration: line-through;
    margin-right: 0.4rem;
    font-weight: 400;
}

.products--compact .product__add {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 600;
    background: var(--color-caramel);
    color: var(--color-cream);
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0;
    transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.products--compact .product__add:hover {
    background: var(--color-noir);
    transform: translateY(-1px);
}
.products--compact .product__add svg { color: currentColor; }

.products--compact .product__tag {
    padding: 0.32rem 0.75rem;
    font-size: 0.54rem;
    letter-spacing: 0.22em;
    top: 0.7rem; left: 0.7rem;
    background: var(--color-cream);
    color: var(--color-caramel);
    border-radius: 2px;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .products--compact { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
    .products--compact { grid-template-columns: repeat(2, 1fr); gap: 1rem 0.75rem; }
    .products--compact .product { padding: 0.55rem 0.55rem 1rem; border-radius: 6px; }
    .products--compact .product__add span { display: none; }
    .products--compact .product__add { padding: 0.55rem 0.7rem; }
}

.featured-hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--color-line-light);
    position: relative;
}

.featured-hero__image .product__photo {
    object-fit: cover;
    object-position: center;
    padding: 0;
}

/* Product card photos look better with slight padding for the white-bg product shots */
.product .product__photo {
    object-fit: cover;
    object-position: center;
    padding: 0;
}

.featured-hero__image {
    position: relative;
    display: block;
    aspect-ratio: 5/6;
    overflow: hidden;
    background: var(--color-cream);
    cursor: pointer;
    box-shadow: 30px 30px 80px rgba(15, 8, 6, 0.18);
}
.featured-hero__image > div,
.featured-hero__image .product__photo {
    position: absolute;
    inset: 0;
    transition: transform 1.2s var(--ease);
}
.featured-hero__image:hover > div,
.featured-hero__image:hover .product__photo { transform: scale(1.04); }

.featured-hero__badge {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    padding: 0.55rem 1rem;
    background: var(--color-cream);
    color: var(--color-noir);
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

.featured-hero__body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 460px;
}

.featured-hero__origin {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-caramel);
    font-weight: 500;
}

.featured-hero__name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--color-noir);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.featured-hero__desc {
    font-size: 1.04rem;
    line-height: 1.85;
    color: var(--color-ash);
    font-weight: 300;
}

.featured-hero__meta {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.25rem 0 0.5rem;
    border-top: 1px solid var(--color-line-light);
    flex-wrap: wrap;
}

.featured-hero__price {
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--color-caramel);
    font-weight: 500;
}

.featured-hero__rating {
    font-size: 0.82rem;
    color: var(--color-ash);
    letter-spacing: 0.05em;
}
.featured-hero__rating em {
    font-style: normal;
    color: var(--color-noir);
    font-weight: 500;
}

.featured-hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

.product--compact .product__image { aspect-ratio: 1/1; }
.product--compact .product__name { font-size: 1.3rem; }

@media (max-width: 1024px) {
    .featured-hero { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3.5rem; margin-bottom: 3.5rem; }
    .featured-hero__image { max-width: 480px; margin: 0 auto; aspect-ratio: 1/1; }
    .featured-hero__body { max-width: 540px; margin: 0 auto; text-align: center; align-items: center; }
    .featured-hero__meta { justify-content: center; }
    .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
}
@media (max-width: 768px) {
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-hero__name { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .featured-grid { grid-template-columns: 1fr; }
}

.product {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.5s var(--ease);
}

.product:hover { transform: translateY(-6px); }

.product::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%; right: 10%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(15, 8, 6, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}
.product:hover::after { opacity: 1; }

.product__image {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    margin-bottom: 1.1rem;
    overflow: hidden;
    background: var(--color-cream);
    cursor: pointer;
}

.product__image > div {
    position: absolute;
    inset: 0;
    transition: transform 0.8s var(--ease);
}

.product:hover .product__image > div { transform: scale(1.06); }

/* Real photo wrapper — overrides gradient for photographed products */
.product__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease);
    background: var(--color-cream);
}
.product:hover .product__photo { transform: scale(1.06); }

/* Product bg variants — 12 Kalara Borneo distinct chocolate bar visuals */
.product__bg--1 { background: radial-gradient(ellipse at 35% 35%, #7a4e30, #1f140e 55%, #0a0503); }
.product__bg--1::after { content:''; position:absolute; inset:24% 26%; border-radius:3px; background: linear-gradient(160deg, #3a1f12 0%, #0f0806 50%, #1f140e 100%); box-shadow: inset 0 0 0 1px rgba(201,169,97,0.25), inset 0 0 50px rgba(201,169,97,0.08), 0 25px 45px rgba(0,0,0,0.65); }
.product__bg--1::before { content:'100%'; position:absolute; top:42%; left:50%; transform:translate(-50%,-50%); color:rgba(201,169,97,0.25); font-family:var(--font-display); font-style:italic; font-size:4rem; font-weight:300; z-index:1; pointer-events:none; }

.product__bg--2 { background: radial-gradient(ellipse at 50% 20%, rgba(228,201,136,0.35), transparent 55%), linear-gradient(180deg, #2a1a12 0%, #3d261a 40%, #1f140e 100%); }
.product__bg--2::after { content:''; position:absolute; inset:22% 26%; border-radius:3px; background: linear-gradient(180deg, #d9b86d 0%, #b99553 40%, #7a5531 80%, #3a2314 100%); box-shadow: inset 0 -12px 28px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,220,160,0.4), 0 20px 40px rgba(0,0,0,0.5); }
.product__bg--2::before { content:'80%'; position:absolute; top:40%; left:50%; transform:translate(-50%,-50%); color:rgba(15,8,6,0.35); font-family:var(--font-display); font-style:italic; font-size:2.8rem; font-weight:400; z-index:2; pointer-events:none; letter-spacing:-0.02em; }

.product__bg--3 { background: radial-gradient(ellipse at 50% 40%, #4a2f1e, #1f140e 65%, #0a0503); }
.product__bg--3::after { content:''; position:absolute; inset:26% 28%; border-radius:4px; background: linear-gradient(165deg, #8a5a3b 0%, #5c3a28 50%, #1f140e 100%); box-shadow: inset 0 0 35px rgba(0,0,0,0.4), 0 20px 40px rgba(0,0,0,0.5); }
.product__bg--3::before { content:'65%'; position:absolute; top:40%; left:50%; transform:translate(-50%,-50%); color:rgba(201,169,97,0.2); font-family:var(--font-display); font-style:italic; font-size:2.4rem; z-index:2; pointer-events:none; }

.product__bg--4 { background: linear-gradient(160deg, #1f140e 0%, #3d261a 60%, #0f0806 100%); }
.product__bg--4::after { content:''; position:absolute; inset:24% 27%; border-radius:3px; background: linear-gradient(155deg, #3a2416 0%, #1f140e 50%, #0a0503 100%); box-shadow: inset 0 0 0 1px rgba(201,169,97,0.35), inset 0 0 45px rgba(201,169,97,0.06), 0 25px 45px rgba(0,0,0,0.6); }
.product__bg--4::before { content:'65%'; position:absolute; top:40%; left:50%; transform:translate(-50%,-50%); color:rgba(201,169,97,0.2); font-family:var(--font-display); font-style:italic; font-size:2.4rem; z-index:2; pointer-events:none; }

.product__bg--5 { background: radial-gradient(ellipse at 30% 30%, #7a4e30, #2a1a12 70%); }
.product__bg--5::after { content:''; position:absolute; inset:26% 28%; border-radius:4px; background: linear-gradient(180deg, #a77047 0%, #7a4e30 50%, #3d261a 100%); box-shadow: inset 0 -10px 25px rgba(0,0,0,0.35), 0 18px 35px rgba(0,0,0,0.4); }
.product__bg--5::before { content:'62%'; position:absolute; top:40%; left:50%; transform:translate(-50%,-50%); color:rgba(245,239,228,0.15); font-family:var(--font-display); font-style:italic; font-size:2.4rem; z-index:2; pointer-events:none; }

.product__bg--6 {
    background:
        radial-gradient(circle at 30% 30%, rgba(139,58,42,0.35), transparent 50%),
        linear-gradient(145deg, #3d261a 0%, #2a1a12 60%, #1f140e 100%);
}
.product__bg--6::after { content:''; position:absolute; inset:24% 26%; border-radius:3px; background: linear-gradient(170deg, #5c3a28 0%, #8b3a2a 35%, #5c3a28 70%, #2a1a12 100%); box-shadow: inset 0 0 35px rgba(139,58,42,0.3), 0 20px 40px rgba(0,0,0,0.5); }
.product__bg--6::before { content:'maram'; position:absolute; top:40%; left:50%; transform:translate(-50%,-50%); color:rgba(255,220,200,0.15); font-family:var(--font-display); font-style:italic; font-size:1.75rem; z-index:2; pointer-events:none; }

.product__bg--7 {
    background:
        radial-gradient(ellipse at 50% 25%, rgba(228,201,136,0.22), transparent 55%),
        linear-gradient(180deg, #1f140e 0%, #2a1a12 100%);
}
.product__bg--7::after { content:''; position:absolute; inset:22% 25%; border-radius:3px; background: linear-gradient(145deg, #6b4832 0%, #3d261a 50%, #1f140e 100%); box-shadow: inset 0 0 0 1px rgba(245,239,228,0.08), inset 0 0 35px rgba(245,239,228,0.04), 0 20px 40px rgba(0,0,0,0.5); }
.product__bg--7::before { content:'coconut'; position:absolute; top:40%; left:50%; transform:translate(-50%,-50%); color:rgba(245,239,228,0.12); font-family:var(--font-display); font-style:italic; font-size:1.5rem; z-index:2; pointer-events:none; }

.product__bg--8 { background: radial-gradient(ellipse at 40% 35%, #6b4832, #1f140e 75%); }
.product__bg--8::after { content:''; position:absolute; inset:26% 28%; border-radius:4px; background: linear-gradient(155deg, #7a4e30 0%, #4a2f1e 50%, #1f140e 100%); box-shadow: 0 0 0 6px rgba(245,239,228,0.03), 0 18px 35px rgba(0,0,0,0.45); }
.product__bg--8::before { content:'cashew'; position:absolute; top:40%; left:50%; transform:translate(-50%,-50%); color:rgba(201,169,97,0.18); font-family:var(--font-display); font-style:italic; font-size:1.5rem; z-index:2; pointer-events:none; }

.product__bg--9 { background: linear-gradient(145deg, #3d261a 0%, #1f140e 50%, #0f0806 100%); }
.product__bg--9::after { content:''; position:absolute; inset:24% 26%; border-radius:3px; background: linear-gradient(155deg, #2a1a12 0%, #0f0806 55%, #1f140e 100%); box-shadow: inset 0 0 40px rgba(139,90,59,0.15), inset 0 0 0 1px rgba(138,90,59,0.3), 0 20px 40px rgba(0,0,0,0.55); }
.product__bg--9::before { content:'mocha'; position:absolute; top:40%; left:50%; transform:translate(-50%,-50%); color:rgba(201,169,97,0.18); font-family:var(--font-display); font-style:italic; font-size:1.55rem; z-index:2; pointer-events:none; }

.product__tag {
    position: absolute;
    top: 1rem; left: 1rem;
    padding: 0.45rem 0.95rem;
    background: var(--color-cream);
    color: var(--color-noir);
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(15, 8, 6, 0.12);
}

.product__tag--gold { background: var(--color-gold); }
.product__tag--red { background: #8b3a2a; color: var(--color-cream); }

.product__quick {
    position: absolute;
    bottom: 1rem; left: 1rem; right: 1rem;
    padding: 0.75rem 1rem;
    background: var(--color-noir);
    color: var(--color-cream);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 3;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product:hover .product__quick { opacity: 1; transform: translateY(0); }

.product__link { display: flex; flex-direction: column; }
.product__link:hover .product__name { color: var(--color-caramel); }

.product__origin {
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin-bottom: 0.55rem;
    font-weight: 500;
}

.product__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-noir);
    margin-bottom: 0.5rem;
    letter-spacing: -0.012em;
    transition: color 0.3s;
    line-height: 1.2;
}

.product__tags {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin: 0 0 0.85rem;
    line-height: 1.6;
    font-weight: 500;
}
.product__tags-sep {
    color: rgba(138, 90, 59, 0.4);
    margin: 0 0.15rem;
    font-weight: 300;
}

.product__desc {
    font-size: 0.88rem;
    color: var(--color-ash);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    margin-bottom: 0.75rem;
}

.product__price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-caramel);
    font-weight: 500;
}

.product__price-old {
    font-size: 0.82rem;
    color: var(--color-ash);
    text-decoration: line-through;
    margin-right: 0.45rem;
    font-weight: 300;
}

.product__rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--color-ash);
}

.product__rating-stars { color: var(--color-gold); letter-spacing: 0.05em; }

.product__add {
    padding: 0.7rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-noir);
    border: 1px solid var(--color-line-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.product__add:hover {
    background: var(--color-noir);
    color: var(--color-cream);
    border-color: var(--color-noir);
}

/* ==========================================================================
   Process
   ========================================================================== */
.process {
    padding: 8rem 0;
    background: var(--color-noir);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(138, 90, 59, 0.2) 0%, transparent 60%);
    filter: blur(80px);
}

.process__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    position: relative;
    z-index: 2;
}

.process__step {
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-line);
    position: relative;
}

.process__step::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 40px; height: 1px;
    background: var(--color-gold);
    transition: width 0.6s var(--ease);
}

.process__step:hover::before { width: 100%; }

.process__num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-style: italic;
}

.process__step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-cream);
}

.process__step p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(245, 239, 228, 0.65);
}

/* ==========================================================================
   Farmers
   ========================================================================== */
.farmers { padding: clamp(5rem, 8vw, 7rem) 0; background: var(--color-cream); }

.farmers__head {
    text-align: center;
    margin-bottom: 4rem;
}

.farmers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.farmers__grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 920px;
    margin: 0 auto;
}

.farmer {
    background: var(--color-ivory);
    border: 1px solid var(--color-line-light);
    overflow: hidden;
    transition: transform 0.5s var(--ease);
}

.farmer:hover { transform: translateY(-4px); }

.farmer__image {
    aspect-ratio: 4/3;
    position: relative;
}

.farmer__image--1 { background: radial-gradient(ellipse at 40% 40%, #8a5a3b, #3d261a 70%, #1f140e); }
.farmer__image--1::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 30% 45%, rgba(45,63,42,0.4), transparent 50%); }

.farmer__image--2 { background: radial-gradient(ellipse at 60% 40%, #5c3a28, #2a1a12 70%); }
.farmer__image--2::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 70% 35%, rgba(201,169,97,0.2), transparent 50%); }

.farmer__image--3 { background: radial-gradient(ellipse at 40% 50%, #3d261a, #1f140e 70%); }
.farmer__image--3::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 35% 45%, rgba(138,90,59,0.3), transparent 50%); }

.farmer__info { padding: 2rem; }

.farmer__location {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin-bottom: 0.5rem;
    display: block;
}

.farmer__info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-noir);
}

.farmer__info p {
    font-size: 0.9rem;
    color: var(--color-ash);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.farmer__years {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ash);
    padding-top: 1rem;
    border-top: 1px solid var(--color-line-light);
    display: block;
}

/* ==========================================================================
   Gallery — full-bleed strip
   ========================================================================== */
.gallery {
    background: var(--color-noir);
    padding: 0;
    overflow: hidden;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: var(--color-noir);
}

.gallery__item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    transition: all 0.6s var(--ease);
}

.gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transition: transform 0.8s var(--ease);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.25) 100%);
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.gallery__item:hover::before { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }

.gallery__item--1 {
    background:
        radial-gradient(circle at 30% 35%, #b58650 0%, #6b4832 30%, #1f140e 70%),
        linear-gradient(180deg, rgba(201,169,97,0.1), transparent);
}
.gallery__item--2 {
    background:
        radial-gradient(ellipse at 60% 30%, #5c3a28 0%, #2a1a12 55%, #0f0806 100%),
        linear-gradient(145deg, rgba(45,63,42,0.25), transparent);
}
.gallery__item--3 {
    background:
        radial-gradient(circle at 50% 50%, rgba(45,63,42,0.55) 0%, #1f140e 60%, #0a0503 100%);
}
.gallery__item--4 {
    background:
        radial-gradient(ellipse at 40% 45%, rgba(228,201,136,0.45) 0%, #8a5a3b 30%, #3d261a 65%, #1f140e 100%);
}
.gallery__item--5 {
    background:
        radial-gradient(circle at 45% 40%, #7a4e30 0%, #3d261a 50%, #0f0806 100%);
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial {
    padding: var(--section-y) 0;
    background: var(--color-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial--editorial {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(201, 169, 97, 0.07) 0%, transparent 60%),
        var(--color-cream);
}

.testimonial__eyebrow {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-ash);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.testimonial--editorial::before,
.testimonial--editorial::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-caramel), transparent);
    left: 50%;
    transform: translateX(-50%);
}
.testimonial--editorial::before { top: 4rem; }
.testimonial--editorial::after { bottom: 4rem; }

.testimonial__content { max-width: 860px; margin: 0 auto; }

.testimonial__quote {
    color: var(--color-gold);
    margin-bottom: 2rem;
    opacity: 0.6;
}

.testimonial__text {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.2vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.32;
    color: var(--color-noir);
    margin-bottom: 2.75rem;
    letter-spacing: -0.018em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial__text::before {
    content: '“';
    color: var(--color-caramel);
    margin-right: 0.05em;
}
.testimonial__text::after {
    content: '”';
    color: var(--color-caramel);
    margin-left: 0.05em;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-style: normal;
}

.testimonial__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-caramel);
}

.testimonial__title {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-ash);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
    padding: 8rem 0;
    background: var(--color-noir);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(138, 90, 59, 0.15) 0%, transparent 60%);
    filter: blur(80px);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(245, 239, 228, 0.7);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-line);
}

.contact__info-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    align-items: start;
}

.contact__info-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.contact__info-value {
    color: var(--color-cream);
    font-size: 0.92rem;
    line-height: 1.65;
}

.contact__form {
    background: rgba(245, 239, 228, 0.03);
    border: 1px solid var(--color-line);
    padding: 2.75rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact__form .field { margin: 0; }
.contact__form .field--select { padding-top: 0.5rem; }
.contact__form .field__label-top { margin-bottom: 0.85rem; }
.contact__form .field select { padding: 0.85rem 2.5rem 0.85rem 0; }
.contact__form .field textarea { padding: 1.4rem 0 0.85rem; min-height: 110px; }

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--color-cream);
    line-height: 1.2;
}

.contact__form-title em { font-style: italic; color: var(--color-gold); font-weight: 400; }

.contact__form-sub {
    font-size: 0.9rem;
    color: rgba(245, 239, 228, 0.6);
    margin-bottom: 2rem;
}

.contact__form .field input {
    background: transparent;
    border-bottom-color: rgba(245, 239, 228, 0.2);
    color: var(--color-cream);
}

.contact__form .field input:focus { border-bottom-color: var(--color-gold); }
.contact__form .field label { color: rgba(245, 239, 228, 0.5); }
.contact__form .field input:focus + label,
.contact__form .field input:valid + label { color: var(--color-gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #0a0604;
    color: var(--color-cream);
    padding: 4.5rem 0 1.75rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.35), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 239, 228, 0.08);
    align-items: start;
}
.footer__brand { display: flex; flex-direction: column; }

.footer__logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}
.footer__logo img {
    height: 48px;
    width: auto;
    /* Invert black logo to cream tone for dark footer */
    filter: brightness(0) invert(1) sepia(0.18) saturate(0.6) hue-rotate(355deg);
}

.footer__tagline {
    margin: 0 0 1.5rem;
    max-width: 340px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(245, 239, 228, 0.6);
    font-weight: 300;
}

.footer__contact {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(245, 239, 228, 0.7);
    font-style: normal;
}
.footer__contact li svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--color-gold);
    opacity: 0.75;
}
.footer__contact li a {
    color: rgba(245, 239, 228, 0.85);
    transition: color 0.3s;
}
.footer__contact li a:hover { color: var(--color-gold); }
.footer__contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

/* Footer map thumbnail (clickable preview to Google Maps) */
.footer__map-thumb {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.45rem 0.75rem 0.45rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 239, 228, 0.12);
    background: rgba(245, 239, 228, 0.03);
    color: rgba(245, 239, 228, 0.7);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.footer__map-thumb img {
    display: block;
    width: 56px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.95);
    transition: filter 0.3s var(--ease);
}
.footer__map-thumb-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: inherit;
}
.footer__map-thumb-label svg { color: var(--color-gold); opacity: 0.8; }
.footer__map-thumb:hover {
    border-color: rgba(201, 169, 97, 0.45);
    background: rgba(201, 169, 97, 0.08);
    color: var(--color-cream);
}
.footer__map-thumb:hover img { filter: saturate(1) brightness(1); }

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0.5rem 0 1.5rem;
}

.footer__col a {
    display: block;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: rgba(245, 239, 228, 0.65);
    transition: color 0.3s, transform 0.3s;
}

.footer__col a:hover { color: var(--color-gold); transform: translateX(3px); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.75rem;
    flex-wrap: wrap;
}
.footer__bottom .footer__copy { margin-right: auto; }

.footer__copy {
    font-size: 0.76rem;
    color: rgba(245, 239, 228, 0.45);
    letter-spacing: 0.04em;
}

.footer__social {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.footer__social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 239, 228, 0.15);
    border-radius: 50%;
    color: rgba(245, 239, 228, 0.7);
    transition: all 0.3s var(--ease);
}
.footer__social a:hover {
    color: var(--color-noir);
    background: var(--color-gold);
    border-color: var(--color-gold);
}

@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer__brand { grid-column: span 2; }
}
@media (max-width: 600px) {
    .footer { padding: 3.5rem 0 1.5rem; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__brand { grid-column: span 1; }
    .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* ==========================================================================
   Cart Drawer
   ========================================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 8, 6, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 100;
    backdrop-filter: blur(4px);
}

.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart {
    position: fixed;
    top: 0; right: 0;
    width: 440px;
    max-width: 100vw;
    height: 100vh;
    background: var(--color-ivory);
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(15, 8, 6, 0.15);
}

.cart.is-open { transform: translateX(0); }

.cart__head {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-line-light);
}

.cart__head h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-noir);
}

.cart__head span { color: var(--color-ash); font-size: 1rem; font-weight: 400; }

.cart__close {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-noir);
    transition: all 0.3s;
}

.cart__close:hover { background: var(--color-cream); }

.cart__body { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }

.cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    gap: 1.25rem;
    color: var(--color-ash);
}

.cart__empty svg { color: var(--color-caramel); opacity: 0.5; margin-bottom: 0.5rem; }
.cart__empty p { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-noir); }

.cart__items { display: flex; flex-direction: column; gap: 1.5rem; }

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-line-light);
}

.cart-item__img {
    width: 80px; height: 100px;
    background: var(--color-cream);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.cart-item__img > div { position: absolute; inset: 0; }
.cart-item__img > div::after { inset: 25% !important; }
.cart-item__img > div::before { display: none !important; }
.cart-item__img img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.cart-item__info { display: flex; flex-direction: column; gap: 0.15rem; }
.cart-item__origin { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-caramel); }
.cart-item__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--color-noir); line-height: 1.2; }
.cart-item__variant { font-size: 0.75rem; color: var(--color-ash); margin-bottom: 0.25rem; }
.cart-item__price { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--color-noir); font-weight: 500; line-height: 1; letter-spacing: 0; margin-top: auto; }

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid var(--color-line-light);
    width: fit-content;
}

.cart-item__qty button {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-noir);
    font-size: 1rem;
    transition: background 0.2s;
}

.cart-item__qty button:hover { background: var(--color-cream); }
.cart-item__qty span { min-width: 20px; text-align: center; font-size: 0.85rem; }

.cart-item__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.cart-item__remove { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-ash); padding: 0.25rem; transition: color 0.3s; }
.cart-item__remove:hover { color: var(--color-caramel); }
.cart-item__total { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--color-noir); font-weight: 500; line-height: 1; letter-spacing: 0; }

.cart__foot {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--color-line-light);
    display: none;
}

.cart__foot.is-visible { display: block; }

.cart__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    color: var(--color-cacao);
}

.cart__row--muted { color: var(--color-ash); font-size: 0.82rem; }

.cart__row--total {
    padding-top: 1rem;
    border-top: 1px solid var(--color-line-light);
    margin-bottom: 1.5rem;
}

.cart__row--total span:first-child {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
}

.cart__row--total span:last-child {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-caramel);
    font-weight: 500;
}

.cart__note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--color-ash);
    margin-top: 0.75rem;
}

/* ==========================================================================
   Modal
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.is-open { display: flex; animation: modalFade 0.3s ease; }

@keyframes modalFade { from { opacity: 0; } }

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 8, 6, 0.75);
    backdrop-filter: blur(8px);
}

.modal__panel {
    position: relative;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-ivory);
    padding: 3rem;
    animation: modalSlide 0.4s var(--ease);
}

@keyframes modalSlide { from { transform: translateY(30px); opacity: 0; } }

.modal__close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-noir);
    transition: all 0.3s;
    z-index: 2;
}

.modal__close:hover { background: var(--color-cream); }

.modal__title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--color-noir);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.modal__title em { font-style: italic; color: var(--color-caramel); font-weight: 500; }

.modal__success { display: none; text-align: center; padding: 2rem 0; }
.modal__success.is-visible { display: block; }
.modal__success-icon { color: var(--color-caramel); margin-bottom: 1rem; display: inline-block; }
.modal__success p { color: var(--color-ash); margin-bottom: 2rem; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Checkout
   ========================================================================== */
.checkout__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
    margin-bottom: 2rem;
}

.field { position: relative; }
.field--full { grid-column: span 2; }

.field input {
    width: 100%;
    padding: 1.1rem 0 0.6rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-line-light);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-noir);
    outline: none;
    transition: border-color 0.3s;
}

.field input:focus { border-color: var(--color-caramel); }

.field label {
    position: absolute;
    left: 0; top: 1rem;
    font-size: 0.9rem;
    color: var(--color-ash);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.field input:focus + label,
.field input:valid + label {
    top: -4px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-caramel);
}

.checkout__summary {
    background: var(--color-cream);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.checkout__summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--color-cacao);
    gap: 1rem;
}

.checkout__summary-row--total {
    border-top: 1px solid var(--color-line-light);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-noir);
}

.checkout__summary-row--total span:last-child { color: var(--color-caramel); font-size: 1.3rem; }

.checkout__summary-row--note .summary-shipping-note {
    font-size: 0.78rem;
    color: var(--color-caramel);
    font-style: italic;
    text-align: right;
}

.checkout__shipping-note {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem 1.15rem;
    margin-top: 1rem;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 6px;
}
.checkout__shipping-note svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--color-caramel);
}
.checkout__shipping-note p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-cacao);
}

/* ==========================================================================
   Language toggle
   ========================================================================== */
.lang-toggle {
    display: inline-flex;
    border: 1px solid var(--color-line-light);
    border-radius: 100px;
    overflow: hidden;
    margin-right: 0.5rem;
}

.lang-toggle__btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-ash);
    background: transparent;
    transition: all 0.3s;
}

.lang-toggle__btn:hover { color: var(--color-noir); }

.lang-toggle__btn--active {
    background: var(--color-noir);
    color: var(--color-cream);
}

.nav__link--active { color: var(--color-caramel) !important; }
.nav__link--active::after { width: 100% !important; }

/* ==========================================================================
   Page hero (for inner pages)
   ========================================================================== */
.page-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: var(--color-ivory);
    border-bottom: 1px solid var(--color-line-light);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-noir);
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.page-hero__title em {
    font-style: italic;
    color: var(--color-caramel);
    font-weight: 400;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--color-ash);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero__subtitle--light { color: rgba(245, 239, 228, 0.75); }

.page-hero--dark {
    background: var(--color-noir);
    color: var(--color-cream);
    padding: 6rem 0 5rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(138, 90, 59, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}

/* About page hero — atmospheric photo bg with dark editorial overlay */
.page-hero--about {
    padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 10vw, 8rem);
    min-height: clamp(420px, 70vh, 640px);
    display: flex;
    align-items: center;
}
.page-hero--about .page-hero__bg {
    background:
        linear-gradient(105deg, rgba(15, 8, 6, 0.78) 0%, rgba(15, 8, 6, 0.55) 60%, rgba(15, 8, 6, 0.4) 100%),
        url('../hero/about-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-hero--about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(15, 8, 6, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 768px) {
    .page-hero--about {
        min-height: 460px;
        padding: 5rem 0 4rem;
    }
    .page-hero--about .page-hero__bg {
        background:
            linear-gradient(180deg, rgba(15, 8, 6, 0.7) 0%, rgba(15, 8, 6, 0.6) 100%),
            url('../hero/about-hero.webp');
        background-size: cover;
        background-position: center 30%;
    }
}

.page-hero--dark .container { position: relative; z-index: 2; }

.page-hero__title--light { color: var(--color-cream); }
.page-hero__title--light em { color: var(--color-gold); }

/* Contact page hero — atmospheric workshop photo with dark editorial overlay */
.page-hero--contact {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    min-height: clamp(360px, 55vh, 480px);
    display: flex;
    align-items: center;
}
.page-hero--contact .page-hero__bg {
    background:
        linear-gradient(105deg, rgba(15, 8, 6, 0.82) 0%, rgba(15, 8, 6, 0.55) 55%, rgba(15, 8, 6, 0.4) 100%),
        url('../hero/contact-hero.webp');
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
}
.page-hero--contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(15, 8, 6, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}
.page-hero--contact .eyebrow { color: var(--color-gold); }
@media (max-width: 768px) {
    .page-hero--contact {
        min-height: 340px;
        padding: 4rem 0 3.5rem;
    }
    .page-hero--contact .page-hero__bg {
        background:
            linear-gradient(180deg, rgba(15, 8, 6, 0.78) 0%, rgba(15, 8, 6, 0.65) 100%),
            url('../hero/contact-hero.webp');
        background-size: cover;
        background-position: center 30%;
    }
}

/* News listing hero — atmospheric community photo with dark editorial overlay */
.page-hero--news {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    min-height: clamp(360px, 55vh, 480px);
    display: flex;
    align-items: center;
}
.page-hero--news .page-hero__bg {
    background:
        linear-gradient(105deg, rgba(15, 8, 6, 0.82) 0%, rgba(15, 8, 6, 0.55) 55%, rgba(15, 8, 6, 0.4) 100%),
        url('../hero/news-hero.webp');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}
.page-hero--news::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(15, 8, 6, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}
.page-hero--news .eyebrow { color: var(--color-gold); }
@media (max-width: 768px) {
    .page-hero--news {
        min-height: 340px;
        padding: 4rem 0 3.5rem;
    }
    .page-hero--news .page-hero__bg {
        background:
            linear-gradient(180deg, rgba(15, 8, 6, 0.78) 0%, rgba(15, 8, 6, 0.65) 100%),
            url('../hero/news-hero.webp');
        background-size: cover;
        background-position: center 30%;
    }
}

/* Chocolate listing hero — atmospheric cocoa banner with dark editorial overlay */
.page-hero--chocolate {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    min-height: clamp(380px, 60vh, 520px);
    display: flex;
    align-items: center;
}
.page-hero--chocolate .page-hero__bg {
    background:
        linear-gradient(105deg, rgba(15, 8, 6, 0.82) 0%, rgba(15, 8, 6, 0.55) 55%, rgba(15, 8, 6, 0.35) 100%),
        url('../banners/kalara-chocolate-collection.webp');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
}
.page-hero--chocolate::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(15, 8, 6, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}
.page-hero--chocolate .eyebrow { color: var(--color-gold); }
@media (max-width: 768px) {
    .page-hero--chocolate {
        min-height: 380px;
        padding: 4rem 0 3.5rem;
    }
    .page-hero--chocolate .page-hero__bg {
        background:
            linear-gradient(180deg, rgba(15, 8, 6, 0.78) 0%, rgba(15, 8, 6, 0.65) 100%),
            url('../banners/kalara-chocolate-collection.webp');
        background-size: cover;
        background-position: center 50%;
    }
}

/* Editorial page hero — for About, larger, more elegant */
.page-hero--editorial {
    padding: 7rem 0 6rem;
    text-align: left;
}
.page-hero--editorial .container { max-width: 980px; }
.page-hero--editorial .eyebrow { color: var(--color-gold); }
.page-hero--editorial .page-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}
.page-hero--editorial .page-hero__subtitle {
    margin: 0;
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.85;
    font-weight: 300;
}

@media (max-width: 768px) {
    .page-hero--editorial { padding: 4.5rem 0 4rem; text-align: center; }
    .page-hero--editorial .page-hero__subtitle { margin: 0 auto; }
}

/* ==========================================================================
   Shop filters bar variant
   ========================================================================== */
.shop__filters--bar {
    padding: 1rem 1.25rem;
    background: var(--color-cream);
    border: 1px solid var(--color-line-light);
    margin-bottom: 3rem;
    justify-content: flex-start;
}

/* ==========================================================================
   Contact WA card
   ========================================================================== */
.contact__wa-card {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(31, 168, 85, 0.08);
    border: 1px solid rgba(31, 168, 85, 0.25);
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact__wa-info { flex: 1; min-width: 240px; }

.contact__wa-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.35rem;
}

.contact__wa-info p {
    font-size: 0.85rem;
    color: rgba(245, 239, 228, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Checkout multi-step
   ========================================================================== */
.modal__panel--wide { max-width: 1000px; padding: 2.75rem; }

.steps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-cream);
    border: 1px solid var(--color-line-light);
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-ash);
    transition: color 0.3s;
    flex-shrink: 0;
}

.step__num {
    width: 30px; height: 30px;
    border: 1px solid var(--color-line-light);
    border-radius: 50%;
    background: var(--color-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s;
}

.step__label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.step--active { color: var(--color-noir); }
.step--active .step__num {
    background: var(--color-caramel);
    border-color: var(--color-caramel);
    color: var(--color-cream);
}

.step--done { color: var(--color-noir); }
.step--done .step__num {
    background: var(--color-noir);
    border-color: var(--color-noir);
    color: var(--color-gold);
}

.step__line {
    flex: 1;
    height: 1px;
    background: var(--color-line-light);
    min-width: 20px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.checkout-main { display: flex; flex-direction: column; gap: 1.75rem; }

.checkout-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 0;
    align-self: start;
}

.checkout__section {
    background: var(--color-ivory);
    border: 1px solid var(--color-line-light);
    padding: 1.75rem;
}

.checkout__section-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 1.5rem;
}

.checkout__summary-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 1rem;
}

.checkout__actions { display: flex; gap: 0.75rem; }

.checkout__secure {
    text-align: center;
    font-size: 0.72rem;
    color: var(--color-ash);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.checkout__secure svg { color: var(--color-caramel); }

.btn--ghost.btn--dark {
    color: var(--color-noir);
    border-color: var(--color-line-light);
}

.btn--ghost.btn--dark:hover {
    background: var(--color-noir);
    color: var(--color-cream);
    border-color: var(--color-noir);
}

/* Courier */
.courier-list { display: flex; flex-direction: column; gap: 0.75rem; }

.courier {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--color-line-light);
    cursor: pointer;
    transition: all 0.3s;
    background: var(--color-ivory);
}

.courier:hover { border-color: var(--color-caramel); }

.courier--active {
    border-color: var(--color-noir);
    background: var(--color-sand);
}

.courier input[type="radio"] {
    appearance: none;
    width: 18px; height: 18px;
    border: 1.5px solid var(--color-line-light);
    border-radius: 50%;
    position: relative;
    transition: border-color 0.3s;
    flex-shrink: 0;
    cursor: pointer;
}

.courier--active input[type="radio"] { border-color: var(--color-caramel); }

.courier--active input[type="radio"]::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-caramel);
    border-radius: 50%;
}

.courier__main { flex: 1; display: flex; flex-direction: column; gap: 0.1rem; }

.courier__name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-noir);
}

.courier__desc {
    font-size: 0.78rem;
    color: var(--color-ash);
}

.courier__price {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-caramel);
}

/* Payment methods */
.payment-groups { display: flex; flex-direction: column; gap: 0.75rem; }

.payment-group {
    border: 1px solid var(--color-line-light);
    background: var(--color-ivory);
    overflow: hidden;
    transition: border-color 0.3s;
}

.payment-group:hover { border-color: var(--color-caramel); }
.payment-group--active { border-color: var(--color-noir); }

.payment-group__head {
    width: 100%;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: background 0.3s;
}

.payment-group--active .payment-group__head { background: var(--color-sand); }

.payment-group__icon {
    width: 44px; height: 44px;
    border: 1px solid var(--color-line-light);
    background: var(--color-ivory);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-caramel);
    flex-shrink: 0;
}

.payment-group--active .payment-group__icon {
    background: var(--color-noir);
    color: var(--color-gold);
    border-color: var(--color-noir);
}

.payment-group__info { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }

.payment-group__label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-noir);
}

.payment-group__desc {
    font-size: 0.78rem;
    color: var(--color-ash);
}

.payment-group__arrow {
    color: var(--color-ash);
    transition: transform 0.4s var(--ease);
    display: flex;
    align-items: center;
}

.payment-group--active .payment-group__arrow { transform: rotate(180deg); color: var(--color-noir); }

.payment-group__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease);
}

.payment-group--active .payment-group__body { max-height: 1200px; }

.payment-options {
    padding: 0.5rem 1.25rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.payment-option {
    padding: 0.85rem 0.75rem;
    background: var(--color-ivory);
    border: 1px solid var(--color-line-light);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-noir);
    transition: all 0.3s;
}

.payment-option:hover { border-color: var(--color-caramel); color: var(--color-caramel); }

.payment-option--active {
    background: var(--color-noir);
    color: var(--color-gold);
    border-color: var(--color-noir);
}

.payment-option__name { display: block; font-family: var(--font-sans); letter-spacing: 0.02em; }

/* Order info banner (step 3) */
.order-info {
    background: var(--color-noir);
    color: var(--color-cream);
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.order-info__row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-info__row span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, 0.55);
}

.order-info__id {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.03em;
}

.order-info__time {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-cream);
    font-variant-numeric: tabular-nums;
}

/* Payment instructions */
.pay-instruction {
    background: var(--color-ivory);
    border: 1px solid var(--color-line-light);
    padding: 1.75rem;
}

.pay-instruction__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-line-light);
}

.pay-instruction__text {
    font-size: 0.92rem;
    color: var(--color-ash);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.pay-instruction__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--color-line-light);
    gap: 1rem;
    font-size: 0.9rem;
}

.pay-instruction__row:last-of-type { border-bottom: none; }
.pay-instruction__row > span { color: var(--color-ash); }
.pay-instruction__row strong { color: var(--color-noir); font-weight: 500; text-align: right; }

.pay-instruction__value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pay-amount {
    font-family: var(--font-display) !important;
    font-size: 1.35rem !important;
    color: var(--color-caramel) !important;
    font-weight: 500 !important;
}

.pay-va {
    font-family: var(--font-display) !important;
    font-size: 1.5rem !important;
    color: var(--color-noir) !important;
    letter-spacing: 0.05em !important;
}

.pay-copy {
    padding: 0.4rem 0.85rem;
    background: var(--color-noir);
    color: var(--color-cream);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s;
}

.pay-copy:hover { background: var(--color-caramel); }

.pay-note {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    background: var(--color-sand);
    border-left: 2px solid var(--color-caramel);
    font-size: 0.82rem;
    color: var(--color-cacao);
    line-height: 1.65;
}

.pay-note strong { color: var(--color-noir); font-weight: 500; }

/* QRIS */
.pay-qris {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pay-qris__image {
    flex: 0 0 auto;
    width: 220px;
    background: var(--color-ivory);
    border: 1px solid var(--color-line-light);
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.03), 0 6px 18px rgba(15, 8, 6, 0.04);
}

.pay-qris__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.pay-qris__info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.pay-qris__info span {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-ash);
}

.pay-qris__info strong {
    color: var(--color-noir);
    font-weight: 500;
}

/* CC form */
.cc-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--color-line-light);
}

.cc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Success */
.success {
    text-align: center;
    padding: 2rem 0;
    max-width: 520px;
    margin: 0 auto;
}

.success__icon {
    color: var(--color-caramel);
    margin-bottom: 1.25rem;
    display: inline-block;
    padding: 0.75rem;
    border-radius: 50%;
    background: var(--color-sand);
}

.success__text {
    color: var(--color-ash);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success__info {
    background: var(--color-sand);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.success__info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.88rem;
    gap: 1rem;
}

.success__info-row:not(:last-child) { border-bottom: 1px dashed var(--color-line-light); }
.success__info-row span { color: var(--color-ash); }
.success__info-row strong { color: var(--color-noir); font-weight: 500; text-align: right; }

.success__note {
    font-size: 0.85rem;
    color: var(--color-ash);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.success__note strong { color: var(--color-noir); font-weight: 500; }

.success__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* WhatsApp button */
.btn--wa {
    background: #1fa855 !important;
    border-color: #1fa855 !important;
    color: #fff !important;
}

.btn--wa:hover {
    background: #188545 !important;
    border-color: #188545 !important;
    color: #fff !important;
}

.btn--wa svg { flex-shrink: 0; }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 4rem));
    background: var(--color-noir);
    color: var(--color-cream);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    z-index: 120;
    box-shadow: 0 15px 40px rgba(15, 8, 6, 0.3);
    transition: transform 0.5s var(--ease);
    opacity: 0;
    pointer-events: none;
}

.toast svg { color: var(--color-gold); }
.toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
    padding: 1.5rem 0;
    background: var(--color-ivory);
    border-bottom: 1px solid var(--color-line-light);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ash);
}

.breadcrumb .container { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--color-caramel); }
.breadcrumb span:last-child { color: var(--color-noir); }

/* ==========================================================================
   Product Detail Page (PDP)
   ========================================================================== */
.pdp { padding: 3rem 0 6rem; background: var(--color-ivory); }

.pdp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

/* Gallery */
.pdp__gallery {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdp__main {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--color-cream);
    overflow: hidden;
}

.pdp__main-bg {
    position: absolute;
    inset: 0;
    transition: filter 0.4s var(--ease);
}

.pdp__main-bg--photo {
    background: var(--color-cream);
}
.pdp__photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 1rem;
    transition: transform 0.6s var(--ease);
}
.pdp__main:hover .pdp__photo { transform: scale(1.04); }

.pdp__thumb-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--color-cream);
    transform: scale(0.92);
    padding: 0.5rem;
}

.pdp__main-tag {
    top: 1.5rem !important;
    left: 1.5rem !important;
}

.pdp__thumbs {
    display: none;
}

.pdp__thumb {
    aspect-ratio: 1/1;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    cursor: pointer;
    position: relative;
    background: var(--color-cacao);
}

.pdp__thumb--active { border-color: var(--color-caramel); }
.pdp__thumb:hover { border-color: var(--color-gold); }

.pdp__thumb-bg {
    position: absolute;
    inset: 0;
    transform: scale(0.85);
}

/* Info */
.pdp__info { display: flex; flex-direction: column; gap: 0.75rem; }

.pdp__origin {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-caramel);
}

.pdp__name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-noir);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 0.25rem;
}

.pdp__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--color-ash);
}

.pdp__rating { display: flex; align-items: center; gap: 0.5rem; }
.pdp__stars { color: var(--color-gold); letter-spacing: 0.05em; }
.pdp__sold { padding-left: 1.5rem; border-left: 1px solid var(--color-line-light); }

.pdp__price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--color-caramel);
    font-weight: 500;
    margin-top: 0.75rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.pdp__price-old {
    font-size: 1.15rem;
    color: var(--color-ash);
    text-decoration: line-through;
    font-weight: 300;
}

.pdp__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-ash);
    padding: 1.25rem 0;
    border-top: 1px solid var(--color-line-light);
    border-bottom: 1px solid var(--color-line-light);
    margin-top: 0.5rem;
}

.pdp__stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ash);
    margin-top: 0.75rem;
}
.pdp__stock-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #3f9d5a;
    box-shadow: 0 0 0 3px rgba(63, 157, 90, 0.18);
    animation: pulseDot 2.2s ease-in-out infinite;
}
.pdp__stock-dot--low {
    background: #d68a3b;
    box-shadow: 0 0 0 3px rgba(214, 138, 59, 0.22);
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.pdp__wa-ask {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1fa855;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s;
}
.pdp__wa-ask:hover { color: #188545; }

/* Variants */
.pdp__variant { margin-top: 1.25rem; }

.pdp__variant-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ash);
    margin-bottom: 0.85rem;
}

.pdp__variant-label strong {
    color: var(--color-noir);
    font-weight: 500;
}

.pdp__variant-options {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pdp__opt {
    padding: 0.85rem 1.25rem;
    min-width: 95px;
    border: 1px solid var(--color-line-light);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    transition: all 0.3s;
    cursor: pointer;
}

.pdp__opt--pill {
    flex-direction: row;
    padding: 0.7rem 1.25rem;
    min-width: auto;
    font-size: 0.82rem;
    color: var(--color-noir);
}

.pdp__opt:hover {
    border-color: var(--color-caramel);
}

.pdp__opt--active {
    border-color: var(--color-noir);
    background: var(--color-noir);
    color: var(--color-cream);
}

.pdp__opt--active .pdp__opt-price { color: var(--color-gold); }

.pdp__opt-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: inherit;
}

.pdp__opt-price {
    font-size: 0.72rem;
    color: var(--color-ash);
    font-family: var(--font-display);
}

/* Qty + Actions */
.pdp__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
    align-items: stretch;
}

.pdp__qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-line-light);
}

.pdp__qty button {
    width: 44px;
    height: 100%;
    min-height: 48px;
    font-size: 1.1rem;
    color: var(--color-noir);
    transition: background 0.2s;
}

.pdp__qty button:hover { background: var(--color-cream); }

.pdp__qty input {
    width: 44px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-noir);
    outline: none;
}

.pdp__wishlist {
    width: 52px;
    border: 1px solid var(--color-line-light);
    color: var(--color-noir);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.pdp__wishlist:hover { border-color: var(--color-caramel); color: var(--color-caramel); }
.pdp__wishlist--active { color: #8b3a2a; border-color: #8b3a2a; }
.pdp__wishlist--active svg { fill: currentColor; }

/* Benefits */
.pdp__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-line-light);
}

.pdp__benefit {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.pdp__benefit svg {
    color: var(--color-caramel);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pdp__benefit strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 0.15rem;
}

.pdp__benefit span {
    font-size: 0.72rem;
    color: var(--color-ash);
}

/* Tabs */
.pdp__tabs {
    margin-bottom: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-line-light);
}

.pdp__tabs-nav {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-line-light);
    flex-wrap: wrap;
}

.pdp__tab {
    padding: 1rem 1.75rem;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ash);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    margin-bottom: -1px;
}

.pdp__tab:hover { color: var(--color-noir); }

.pdp__tab--active {
    color: var(--color-noir);
    border-bottom-color: var(--color-caramel);
}

.pdp__tab-content {
    display: none;
    max-width: 800px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--color-ash);
}

.pdp__tab-content--active {
    display: block;
    animation: tabFade 0.4s ease;
}

.pdp__tab-content p { margin-bottom: 1rem; }
.pdp__tab-content strong { color: var(--color-noir); font-weight: 500; }

@keyframes tabFade { from { opacity: 0; transform: translateY(10px); } }

/* Reviews */
.pdp__reviews {
    margin-bottom: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-line-light);
}

.pdp__reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.pdp__reviews-head .section-title { margin-bottom: 0; }

.pdp__reviews-score {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pdp__reviews-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-caramel);
    line-height: 1;
}

.pdp__reviews-stars { color: var(--color-gold); font-size: 1.1rem; letter-spacing: 0.05em; }

.pdp__reviews-count { font-size: 0.78rem; color: var(--color-ash); }

.pdp__reviews-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.review {
    padding: 1.75rem;
    background: var(--color-sand);
    border-left: 2px solid var(--color-caramel);
}

.review__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 0.15rem;
}

.review__date {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ash);
}

.review__stars { color: var(--color-gold); font-size: 0.85rem; }

.review__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-cacao);
    font-style: italic;
}

/* Related */
.pdp__related {
    padding-top: 3rem;
    border-top: 1px solid var(--color-line-light);
}

.pdp__related-head { margin-bottom: 3rem; text-align: center; }

.pdp__related .products { gap: 2rem 1.5rem; }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
    .nav__menu { gap: 1.25rem; }
    .nav__link { font-size: 0.7rem; letter-spacing: 0.12em; }
    .nav__logo-img { height: 38px; }
}

@media (max-width: 768px) {
    .nav__logo-img { height: 34px; }
    .footer__brand .nav__logo-img { height: 48px; }
}

@media (max-width: 1024px) {
    .story__grid, .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
    .products { grid-template-columns: repeat(3, 1fr); }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .farmers__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); }
    .gallery__item--4, .gallery__item--5 { display: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .nav__menu { gap: 1rem; }
    .pdp__grid { grid-template-columns: 1fr; gap: 2rem; }
    .pdp__gallery { position: static; max-width: 500px; margin: 0 auto; }
    .pdp__reviews-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container, .hero__content { padding: 0 1.25rem; }

    .nav__container {
        padding: 0.85rem 1.25rem;
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
        justify-items: start;
        min-height: 64px;
    }
    .nav__toggle { justify-self: end; }
    .nav__menu {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--color-ivory);
        border-bottom: 1px solid var(--color-line-light);
        box-shadow: 0 15px 30px rgba(15,8,6,0.08);
        padding: 1rem 1.5rem 1.5rem;
        z-index: 89;
    }
    .nav__menu.is-open { display: flex; max-height: calc(100vh - 72px); overflow-y: auto; }
    .nav__menu > li { width: 100%; border-bottom: 1px solid var(--color-line-light); }
    .nav__menu > li:last-child { border-bottom: none; }
    .nav__menu > li > a,
    .nav__menu > li > .nav__link {
        display: block;
        padding: 1rem 0;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .nav__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        background: var(--color-cream);
        padding: 0.25rem 0;
        margin: 0 0 0.75rem;
        min-width: 0;
    }
    .nav__sub::before { display: none; }
    .nav__sub a { padding: 0.65rem 1rem; font-size: 0.75rem; }
    .nav__link--drop svg { display: none; }
    .nav__toggle { display: flex; }
    .nav__toggle span { transition: all 0.3s var(--ease); transform-origin: center; }
    .nav__toggle--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav__toggle--open span:nth-child(2) { opacity: 0; }
    .nav__toggle--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .lang-toggle__btn { padding: 0.4rem 0.65rem; font-size: 0.68rem; }

    /* When actions get moved inside the open menu (mobile only) */
    .nav__menu .nav__actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 0 0.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid var(--color-line-light);
        width: 100%;
    }
    .nav__menu .nav__actions .lang-toggle { flex: 0 0 auto; }
    .nav__menu .nav__actions .nav__cart {
        flex: 1;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.6rem 1rem;
        border: 1px solid var(--color-line);
        border-radius: 999px;
    }
    .nav__menu .nav__actions .nav__cart::after {
        content: 'KERANJANG';
        font-family: var(--font-sans);
        font-size: 0.72rem;
        letter-spacing: 0.15em;
        color: var(--color-noir);
    }

    .page-hero { padding: 3rem 0 2rem; }
    .page-hero--dark { padding: 4rem 0 3.5rem; }

    .hero { padding: 4rem 0 3rem; min-height: auto; }
    .hero__line--accent { padding-left: 0; }
    .hero__trust { gap: 1.5rem; }
    .hero__trust-num { font-size: 1.6rem; }

    .story, .shop, .process, .farmers, .testimonial, .contact { padding: 4rem 0; }

    .products { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .process__steps { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .gallery__item--5 { display: block; }

    .shop__head { flex-direction: column; align-items: flex-start; }

    .cart { width: 100vw; }
    .cart__head, .cart__body, .cart__foot { padding-left: 1.25rem; padding-right: 1.25rem; }

    .modal__panel { padding: 2rem 1.5rem; }
    .modal__panel--wide { padding: 1.5rem 1.25rem; }
    .checkout__grid { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .checkout-side { position: static; }
    .field--full { grid-column: span 1; }
    .modal__title { font-size: 1.55rem; }

    .steps { padding: 1rem; gap: 0.5rem; overflow-x: auto; }
    .step__label { display: none; }
    .step--active .step__label, .step--done .step__label { display: inline; font-size: 0.68rem; }

    .payment-options { grid-template-columns: repeat(2, 1fr); }
    .order-info { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; }
    .order-info__id, .order-info__time { font-size: 1.15rem; }

    .pay-qris { flex-direction: column; gap: 1.25rem; }
    .pay-qris__image { width: 220px; }

    .cc-row { grid-template-columns: 1fr; }

    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .contact__form { padding: 2rem 1.5rem; }
    .contact__info-item { grid-template-columns: 1fr; gap: 0.25rem; }

    .pdp__actions { flex-wrap: wrap; }
    .pdp__qty, .btn--flex { flex: 1 1 100%; }
    .pdp__wishlist { width: 100%; padding: 0.85rem; }
    .pdp__benefits { grid-template-columns: 1fr; gap: 1rem; }
    .pdp__reviews-head { flex-direction: column; align-items: flex-start; }
    .pdp__reviews-score { text-align: left; }
    .pdp__tabs-nav { overflow-x: auto; flex-wrap: nowrap; }
    .pdp__tab { flex-shrink: 0; }
    .marquee__track span { font-size: 1.2rem; }
    .announce__track { font-size: 0.65rem; gap: 1.5rem; }
}

/* ==========================================================================
   Accessibility & utility
   ========================================================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 200;
    padding: 0.75rem 1.25rem;
    background: var(--color-noir);
    color: var(--color-gold);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--color-gold); outline-offset: 2px; }

.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;
}

*:focus-visible { outline: 2px solid var(--color-caramel); outline-offset: 3px; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 2px solid var(--color-caramel); outline-offset: 3px;
}
.nav__link:focus-visible { outline-offset: 6px; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-noir);
    font-weight: 500;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-caramel);
    transition: all 0.4s var(--ease);
    width: fit-content;
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--color-caramel); gap: 0.85rem; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Hero scroll indicator
   ========================================================================== */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 42px;
    background: linear-gradient(to bottom, transparent, rgba(201,169,97,0.5), transparent);
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-smooth) 1.4s forwards;
}
.hero__scroll::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 5px; height: 5px;
    margin-left: -2.5px;
    border-radius: 50%;
    background: var(--color-gold);
    animation: scrollDrop 2.2s var(--ease) infinite;
}
@keyframes scrollDrop {
    0% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(34px); opacity: 0; }
    100% { transform: translateY(34px); opacity: 0; }
}

/* ==========================================================================
   Sustainability section
   ========================================================================== */
.sustain { padding: 7rem 0; background: var(--color-ivory); }

.sustain__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.sustain__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-ash);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.sustain__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--color-caramel);
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-gold);
    margin-top: 2rem;
    max-width: 520px;
}

.sustain__pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sustain__pillar {
    padding: 2rem;
    background: var(--color-sand);
    border-left: 3px solid var(--color-caramel);
    transition: all 0.4s var(--ease);
}
.sustain__pillar:hover { transform: translateX(6px); background: var(--color-cream); }

.sustain__num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-caramel);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.sustain__pillar h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 0.5rem;
}

.sustain__pillar p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-ash);
}

/* ==========================================================================
   Recognition section
   ========================================================================== */
.recognition { padding: 7rem 0; background: var(--color-noir); color: var(--color-cream); }

.recognition__head { text-align: center; margin-bottom: 3.5rem; }
.recognition__head .section-title { color: var(--color-cream); }
.recognition__head .section-title em { color: var(--color-gold); }

.recognition__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.recognition__item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(201,169,97,0.18);
    background: rgba(245,239,228,0.02);
    transition: all 0.4s var(--ease);
}

.recognition__item:hover {
    background: rgba(201,169,97,0.06);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.recognition__item svg { color: var(--color-gold); flex-shrink: 0; }

.recognition__item span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 0.01em;
}

/* ==========================================================================
   CTA band — centered, elegant
   ========================================================================== */
.cta-band {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, #1f140e 0%, var(--color-noir) 100%);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.35), transparent);
}
.cta-band__deco {
    position: absolute;
    width: 320px; height: 320px;
    color: var(--color-gold);
    opacity: 0.05;
    pointer-events: none;
}
.cta-band__deco--left { top: 10%; left: -4%; transform: rotate(-15deg); }
.cta-band__deco--right { bottom: 10%; right: -4%; transform: rotate(165deg); }

.cta-band__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cta-band__eyebrow {
    color: var(--color-caramel);
    margin-bottom: 1.4rem;
}

.cta-band__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: var(--color-cream);
}
.cta-band__title em {
    color: var(--color-gold);
    font-style: italic;
}

.cta-band__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0 1.75rem;
}
.cta-band__divider span:first-child,
.cta-band__divider span:last-child {
    width: 60px;
    height: 1px;
    background: rgba(201, 169, 97, 0.4);
}
.cta-band__divider-mark {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 0.4em;
}

.cta-band__desc {
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(245, 239, 228, 0.72);
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.cta-band__actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 600px) {
    .cta-band__deco { display: none; }
    .cta-band__actions { flex-direction: column; width: 100%; max-width: 320px; }
    .cta-band__actions .btn { width: 100%; }
}

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline {
    padding: 7rem 0;
    background: var(--color-noir);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}
.timeline::before {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45,63,42,0.18), transparent 60%);
    filter: blur(80px);
}

.timeline__head { text-align: center; max-width: 620px; margin: 0 auto 4.5rem; position: relative; z-index: 2; }

.timeline__list {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    z-index: 2;
}
.timeline__list::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 80px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,169,97,0.35) 10%, rgba(201,169,97,0.35) 90%, transparent);
}

.timeline__item {
    position: relative;
    padding: 0 0 3rem 130px;
    margin-bottom: 1rem;
}
.timeline__item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 73px;
    width: 15px; height: 15px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 5px var(--color-noir), 0 0 0 6px var(--color-gold);
}

.timeline__year {
    position: absolute;
    top: 0; left: 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-gold);
    width: 60px;
    text-align: right;
}

.timeline__item h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.timeline__item p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(245,239,228,0.7);
    max-width: 540px;
}

/* ==========================================================================
   Contact channels
   ========================================================================== */
.contact-channels { padding: clamp(4rem, 7vw, 6rem) 0 3rem; background: var(--color-ivory); }

.contact-channels__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.contact-channels__head .eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
}
.contact-channels__head .section-title {
    margin-bottom: 0;
}

.contact-channels__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Contact founder section — editorial founder photo + quote */
.contact-founder {
    padding: clamp(5rem, 8vw, 7rem) 0;
    background: var(--color-sand);
    position: relative;
    overflow: hidden;
}
.contact-founder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 55%);
    pointer-events: none;
}
.contact-founder__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}
.contact-founder__photo {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-width: 480px;
    border: 1px solid rgba(138, 90, 59, 0.15);
}
.contact-founder__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-founder__quote {
    margin: 0;
    padding: 0;
    position: relative;
}
.contact-founder__mark {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0.6;
    color: var(--color-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.7;
}
.contact-founder__eyebrow {
    display: inline-block;
    margin-bottom: 1.25rem;
}
.contact-founder__text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-noir);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0 0 2rem;
}
.contact-founder__cite {
    font-style: normal;
}
.contact-founder__cite cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.contact-founder__cite strong {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-noir);
    letter-spacing: 0.01em;
}
.contact-founder__cite span {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--color-caramel);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
}
@media (max-width: 768px) {
    .contact-founder__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-founder__photo { max-width: 100%; aspect-ratio: 3/4; }
}

/* Contact FAQ — collapsible details */
.contact-faq {
    padding: clamp(5rem, 8vw, 7rem) 0;
    background: var(--color-ivory);
}
.contact-faq__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}
.contact-faq__head .eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
}
.contact-faq__list {
    max-width: 800px;
    margin: 0 auto;
}
.contact-faq__item {
    border-bottom: 1px solid rgba(138, 90, 59, 0.15);
    padding: 1.5rem 0;
    transition: border-color 0.3s var(--ease);
}
.contact-faq__item:first-child { border-top: 1px solid rgba(138, 90, 59, 0.15); }
.contact-faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    padding: 0.4rem 0;
    transition: color 0.3s var(--ease);
}
.contact-faq__item summary::-webkit-details-marker { display: none; }
.contact-faq__item summary:hover .contact-faq__q { color: var(--color-caramel); }
.contact-faq__q {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.4;
    transition: color 0.3s var(--ease);
}
.contact-faq__icon {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gold);
    transition: transform 0.3s var(--ease);
    line-height: 1;
}
.contact-faq__item[open] .contact-faq__icon { transform: rotate(45deg); }
.contact-faq__item p {
    margin: 0.85rem 0 0.25rem;
    color: var(--color-ash);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 720px;
}

/* B2B teaser — single editorial card replacing duplicate B2B section */
.b2b-teaser {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--color-ivory);
}
.b2b-teaser__inner {
    background: var(--color-noir);
    color: var(--color-cream);
    padding: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    position: relative;
    overflow: hidden;
}
.b2b-teaser__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 55%);
    pointer-events: none;
}
.b2b-teaser__text {
    position: relative;
    z-index: 1;
}
.b2b-teaser__text .eyebrow {
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 0.75rem;
}
.b2b-teaser__text .section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}
.b2b-teaser__text p {
    color: rgba(245, 239, 228, 0.7);
    line-height: 1.7;
    margin: 0;
    max-width: 540px;
    font-weight: 300;
}
.b2b-teaser__cta {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .b2b-teaser__inner { grid-template-columns: 1fr; text-align: left; }
    .b2b-teaser__cta { justify-self: start; }
}

.contact-channel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 2rem;
    background: var(--color-cream);
    border: 1px solid var(--color-line-light);
    transition: all 0.4s var(--ease);
    color: var(--color-noir);
}
.contact-channel:hover {
    transform: translateY(-4px);
    border-color: var(--color-caramel);
    box-shadow: 0 15px 40px rgba(15,8,6,0.08);
}

.contact-channel__icon {
    width: 48px; height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sand);
    color: var(--color-caramel);
    margin-bottom: 1rem;
    border-radius: 50%;
}
.contact-channel__icon--wa { background: rgba(31,168,85,0.12); color: #1fa855; }

.contact-channel h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-noir);
}
.contact-channel p {
    font-size: 0.88rem;
    color: var(--color-ash);
    line-height: 1.5;
    margin: 0.15rem 0 0.75rem;
}
.contact-channel__value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-caramel);
    font-weight: 500;
    margin-top: auto;
}

/* ==========================================================================
   B2B section
   ========================================================================== */
.b2b {
    padding: clamp(5rem, 8vw, 7rem) 0;
    background: var(--color-sand);
    position: relative;
    overflow: hidden;
}
.b2b::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(138, 90, 59, 0.08), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.b2b__head { text-align: center; max-width: 720px; margin: 0 auto 4rem; position: relative; z-index: 1; }
.b2b__head .section-subtitle {
    margin: 0 auto;
    text-align: center;
    text-wrap: balance;
}

.b2b__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.b2b__card {
    background: var(--color-ivory);
    border: 1px solid rgba(138, 90, 59, 0.1);
    padding: 2.75rem 2.25rem 2.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.b2b__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.6s var(--ease);
}
.b2b__card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 18px 40px rgba(138, 90, 59, 0.1);
}
.b2b__card:hover::before { width: 100%; }

.b2b__num {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 0.85rem;
    line-height: 1;
}

.b2b__card h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.b2b__card p {
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--color-ash);
    margin-bottom: 1.5rem;
    flex: 1;
}

.b2b__tag {
    display: block;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(138, 90, 59, 0.12);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-caramel);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 4rem 0 7rem; background: var(--color-ivory); }

.faq__container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
}

.faq__nav {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-line-light);
    border-bottom: 1px solid var(--color-line-light);
}

.faq__nav-link {
    padding: 0.75rem 0;
    font-size: 0.82rem;
    color: var(--color-ash);
    letter-spacing: 0.08em;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}
.faq__nav-link:hover { color: var(--color-caramel); }

.faq__content { display: flex; flex-direction: column; gap: 3rem; }

.faq__group { scroll-margin-top: 120px; }

.faq__group-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--color-noir);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-caramel);
}

.faq__item {
    border-bottom: 1px solid var(--color-line-light);
    padding: 0;
}
.faq__item summary {
    cursor: pointer;
    padding: 1.25rem 2.5rem 1.25rem 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-noir);
    list-style: none;
    position: relative;
    transition: color 0.3s;
    line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    position: absolute;
    right: 0.25rem; top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-caramel);
    font-weight: 300;
    transition: transform 0.3s var(--ease);
    width: 20px; height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--color-caramel); }

.faq__item p {
    padding: 0 2.5rem 1.5rem 0;
    color: var(--color-ash);
    line-height: 1.75;
    font-size: 0.95rem;
}
.faq__item p a { color: var(--color-caramel); border-bottom: 1px solid currentColor; }

.faq__cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--color-sand);
    border-left: 3px solid var(--color-caramel);
    text-align: center;
}
.faq__cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 0.5rem;
}
.faq__cta p {
    color: var(--color-ash);
    margin-bottom: 1.5rem;
}
.faq__cta .btn { display: inline-flex; }

/* ==========================================================================
   Shipping page
   ========================================================================== */
.shipping { padding: 4rem 0 6rem; background: var(--color-ivory); }

.shipping__hero-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.shipping__hero-card {
    padding: 2rem;
    background: var(--color-cream);
    border: 1px solid var(--color-line-light);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.shipping__hero-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-caramel);
    box-shadow: 0 15px 40px rgba(15,8,6,0.08);
}
.shipping__hero-card svg { color: var(--color-caramel); }
.shipping__hero-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-noir);
}
.shipping__hero-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-ash);
    margin: 0;
}

.shipping__table-wrap { margin-bottom: 5rem; }

.shipping__table {
    overflow-x: auto;
    border: 1px solid var(--color-line-light);
    background: var(--color-cream);
}

.shipping__table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.shipping__table th {
    background: var(--color-noir);
    color: var(--color-gold);
    padding: 1.1rem 1.25rem;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid rgba(201,169,97,0.2);
}

.shipping__table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-line-light);
    color: var(--color-cacao);
}

.shipping__table tr:last-child td { border-bottom: none; }
.shipping__table tr:hover td { background: var(--color-sand); }
.shipping__table td:first-child { font-family: var(--font-display); font-weight: 500; color: var(--color-noir); font-size: 1rem; }

.shipping__note {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--color-ash);
    line-height: 1.7;
    max-width: 720px;
}

.shipping__section { margin-bottom: 5rem; }

.shipping__pack-grid, .shipping__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin-top: 2.5rem;
}

.shipping__pack-item, .shipping__step {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-caramel);
    position: relative;
}

.shipping__pack-num, .shipping__step-num {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--color-caramel);
    margin-bottom: 0.75rem;
}

.shipping__pack-item h3, .shipping__step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-noir);
    margin-bottom: 0.5rem;
}

.shipping__pack-item p, .shipping__step p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-ash);
}

.shipping__international {
    background: var(--color-noir);
    color: var(--color-cream);
    padding: 3.5rem;
}

.shipping__international-inner {
    display: grid;
    grid-template-columns: 1.5fr auto;
    gap: 3rem;
    align-items: center;
}

.shipping__international .section-title { margin-bottom: 0.75rem; }
.shipping__international p {
    color: rgba(245,239,228,0.7);
    line-height: 1.75;
    max-width: 540px;
}

/* ==========================================================================
   Shop toolbar
   ========================================================================== */
.shop__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.shop__filters--bar {
    margin-bottom: 0;
    flex: 1;
    min-width: 280px;
}

.shop__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop__search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--color-cream);
    border: 1px solid var(--color-line-light);
    transition: border-color 0.3s;
    min-width: 220px;
}
.shop__search:focus-within { border-color: var(--color-caramel); }
.shop__search svg { color: var(--color-caramel); flex-shrink: 0; }
.shop__search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--color-noir);
    width: 100%;
}
.shop__search input::placeholder { color: var(--color-ash); }

.shop__sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shop__sort-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ash);
}

.shop__sort-select {
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    border: 1px solid var(--color-line-light);
    background: var(--color-cream);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-noir);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("../icons/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.3s;
}
.shop__sort-select:hover, .shop__sort-select:focus { border-color: var(--color-caramel); }

.shop__count {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ash);
    margin-bottom: 2.5rem;
}

.shop__empty {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--color-cream);
    border: 1px dashed var(--color-line-light);
}
.shop__empty p {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-ash);
}

/* ==========================================================================
   Field select + textarea
   ========================================================================== */
.field--select {
    position: relative;
    padding-top: 1.5rem;
}
.field .field__label-top {
    position: static;
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin-bottom: 0.5rem;
    top: auto;
    left: auto;
    pointer-events: auto;
}
.field select {
    width: 100%;
    padding: 0.7rem 2.5rem 0.7rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-line-light);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-noir);
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("../icons/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
.field select:focus { border-color: var(--color-caramel); }

.field textarea {
    width: 100%;
    padding: 1.1rem 0 0.6rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-line-light);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-noir);
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
    min-height: 60px;
}
.field textarea:focus { border-color: var(--color-caramel); }
.field textarea + label {
    position: absolute;
    left: 0; top: 1rem;
    font-size: 0.9rem;
    color: var(--color-ash);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}
.field textarea:focus + label,
.field textarea:valid + label {
    top: -4px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-caramel);
}

.contact__form .field select {
    color: var(--color-cream);
    border-bottom-color: rgba(245,239,228,0.2);
    background-image: url("../icons/chevron-down-gold.svg");
}
.contact__form .field select:focus { border-bottom-color: var(--color-gold); }
.contact__form .field select option { background: var(--color-noir); color: var(--color-cream); }
.contact__form .field__label-top { color: var(--color-gold); }
.contact__form .field textarea {
    color: var(--color-cream);
    border-bottom-color: rgba(245,239,228,0.2);
}
.contact__form .field textarea:focus { border-bottom-color: var(--color-gold); }
.contact__form .field textarea + label { color: rgba(245,239,228,0.5); }
.contact__form .field textarea:focus + label,
.contact__form .field textarea:valid + label { color: var(--color-gold); }

.contact__form-note {
    font-size: 0.75rem;
    color: rgba(245,239,228,0.5);
    margin-top: 0.75rem;
    text-align: center;
}

/* ==========================================================================
   Impact stats — measurable results
   ========================================================================== */
/* Brand-aligned impact grid — Kalara aesthetic (cream + caramel + gold) */
.impact {
    padding: clamp(4.5rem, 7vw, 6.5rem) 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}
.impact::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 60%);
    filter: blur(70px);
    pointer-events: none;
}

.impact__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(3rem, 5vw, 4rem);
    position: relative;
    z-index: 2;
}
.impact__head .section-title {
    font-size: clamp(1.85rem, 2.6vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1.1rem;
    font-weight: 400;
}
.impact__head .section-subtitle {
    margin: 0 auto;
    max-width: 560px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(15, 8, 6, 0.6);
    font-weight: 300;
}

.impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 0.75rem;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.impact__cell {
    background: #fdfaf3;
    border: 1px solid rgba(138, 90, 59, 0.08);
    border-radius: 6px;
    padding: 1.2rem 1.15rem 1.15rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.02), 0 4px 12px rgba(15, 8, 6, 0.03);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    min-height: 175px;
}
.impact__cell:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 97, 0.35);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 10px 24px rgba(138, 90, 59, 0.08);
}

.impact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
    flex-shrink: 0;
    color: var(--color-caramel);
    background: rgba(138, 90, 59, 0.1);
}
.impact__icon svg { width: 18px; height: 18px; display: block; }

/* Subtle alternation between caramel and gold tints — only 2 brand colors */
.impact__icon--c2,
.impact__icon--c4,
.impact__icon--c8,
.impact__icon--c12 {
    background: rgba(201, 169, 97, 0.18);
    color: #a8893f;
}
.impact__icon--c1,
.impact__icon--c3,
.impact__icon--c5,
.impact__icon--c6,
.impact__icon--c7,
.impact__icon--c9,
.impact__icon--c10,
.impact__icon--c11 {
    background: rgba(138, 90, 59, 0.1);
    color: var(--color-caramel);
}

.impact__num {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2vw, 1.85rem);
    font-weight: 500;
    font-style: normal;
    color: var(--color-noir);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
    display: block;
}

.impact__label {
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--color-noir);
    line-height: 1.3;
    margin: 0 0 0.5rem;
    text-transform: none;
}

.impact__desc {
    font-family: var(--font-body);
    font-size: 0.76rem;
    line-height: 1.55;
    color: rgba(15, 8, 6, 0.55);
    font-weight: 400;
    margin: 0;
    margin-top: auto;
}

@media (max-width: 1100px) {
    .impact__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
    .impact__grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
    .impact__cell { min-height: auto; padding: 1.1rem 1rem; }
}
@media (max-width: 480px) {
    .impact__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   News highlight — homepage section showing 3 latest news
   ========================================================================== */
.news-highlight {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--color-ivory);
}
.news-highlight__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.news-highlight__head .section-title {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    margin-bottom: 1rem;
}
.news-highlight__head .section-subtitle {
    font-family: var(--font-sans);
    font-style: normal;
    margin: 0 auto;
    max-width: 560px;
    text-align: center;
    text-wrap: balance;
}
.news-highlight__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.news-hl-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 8px 24px rgba(15, 8, 6, 0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    color: inherit;
    text-decoration: none;
}
.news-hl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 16px 36px rgba(15, 8, 6, 0.1);
}
.news-hl-card__image {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--color-cream);
    overflow: hidden;
}
.news-hl-card__tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.32rem 0.7rem;
    background: var(--color-noir);
    color: var(--color-cream);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}
.news-hl-card__body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}
.news-hl-card__date {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-caramel);
    font-weight: 500;
}
.news-hl-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-noir);
    margin: 0;
    transition: color 0.3s;
}
.news-hl-card:hover .news-hl-card__title { color: var(--color-caramel); }
.news-hl-card__excerpt {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(15, 8, 6, 0.65);
    margin: 0.25rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-highlight__cta {
    text-align: center;
}

@media (max-width: 1024px) {
    .news-highlight__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .news-highlight__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ==========================================================================
   Clients — real names, quietly
   ========================================================================== */
.clients {
    padding: var(--section-y) 0;
    background: var(--color-ivory);
    text-align: center;
}

.clients__head { max-width: 720px; margin: 0 auto 4rem; }

.clients__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3.5rem;
    max-width: 1100px;
}

.clients__item {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--color-noir);
    letter-spacing: -0.005em;
    line-height: 1.2;
    opacity: 0.82;
    transition: opacity 0.3s var(--ease), letter-spacing 0.4s var(--ease);
}
.clients__item:hover {
    opacity: 1;
    letter-spacing: 0.005em;
}

.clients__item em {
    font-style: italic;
    color: var(--color-caramel);
    font-weight: 400;
    transition: color 0.4s var(--ease);
}
.clients__item:hover em { color: var(--color-forest); }

.clients__note {
    font-size: 0.85rem;
    color: var(--color-ash);
    max-width: 540px;
    margin: 2.5rem auto 0;
    font-style: italic;
    line-height: 1.7;
    padding-top: 2rem;
    border-top: 1px solid var(--color-line-light);
    width: fit-content;
}

@media (max-width: 768px) {
    .clients { padding: 4rem 0; }
    .clients__list { gap: 1.25rem 2rem; }
    .clients__item { font-size: 1.15rem; }
}

/* ==========================================================================
   Awards strip — quiet social proof
   ========================================================================== */
.awards-strip {
    padding: 3.5rem 0 4rem;
    background: var(--color-cream);
    border-top: 1px solid var(--color-line-light);
    border-bottom: 1px solid var(--color-line-light);
    text-align: center;
}

.awards-strip__intro {
    font-size: 0.66rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-ash);
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.awards-strip__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem 4rem;
}

.awards-strip__list li {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-noir);
    letter-spacing: 0.04em;
    line-height: 1.2;
    opacity: 0.78;
    transition: opacity 0.3s var(--ease);
}

.awards-strip__list li:hover { opacity: 1; }

.awards-strip__list em {
    font-style: italic;
    color: var(--color-caramel);
    font-weight: 400;
}

@media (max-width: 768px) {
    .awards-strip { padding: 2.5rem 0 3rem; }
    .awards-strip__list { gap: 1.5rem 2.5rem; }
    .awards-strip__list li { font-size: 0.9rem; }
}

/* ==========================================================================
   Newsletter hero section
   ========================================================================== */
.newsletter {
    padding: 6rem 0;
    background: var(--color-sand);
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: -30%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,169,97,0.15), transparent 65%);
    filter: blur(60px);
}

.newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: var(--color-ivory);
    border: 1px solid var(--color-line-light);
}

.newsletter__text .section-title { margin-bottom: 1rem; }
.newsletter__text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-ash);
    max-width: 440px;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter__field {
    position: relative;
    border-bottom: 1px solid var(--color-line-light);
    transition: border-color 0.3s;
}
.newsletter__field:focus-within { border-bottom-color: var(--color-caramel); }
.newsletter__field input {
    width: 100%;
    padding: 1.2rem 0 0.7rem;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-noir);
}
.newsletter__field label {
    position: absolute;
    left: 0; top: 1.15rem;
    font-size: 0.9rem;
    color: var(--color-ash);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}
.newsletter__field input:not(:placeholder-shown) + label,
.newsletter__field input:focus + label {
    top: -2px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-caramel);
}

.newsletter__note {
    font-size: 0.72rem;
    color: var(--color-ash);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Defensive: hide any stale cookie notice from cached JS */
.cookie { display: none !important; }

@media (max-width: 640px) {
    .newsletter__inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
}

/* ==========================================================================
   Founder profile
   ========================================================================== */
.founder { padding: clamp(3rem, 6vw, 5.5rem) 0; background: var(--color-sand); }

.founder__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

.founder__visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 460px;
    justify-self: end;
    width: 100%;
}

.founder__photo {
    position: absolute;
    inset: 0;
    background-image: url('../story/founder-ara.webp');
    background-size: cover;
    background-position: center 22%;
    background-repeat: no-repeat;
    background-color: #1f140e;
    box-shadow: 25px 25px 60px rgba(15, 8, 6, 0.18);
}

.founder__caption {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: var(--color-cream);
    padding: 1rem 1.25rem;
    border-left: 2px solid var(--color-caramel);
    box-shadow: 0 12px 30px rgba(15, 8, 6, 0.12);
}

.founder__caption span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-noir);
    letter-spacing: 0.01em;
    line-height: 1.45;
    display: block;
}

.founder__text p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-ash);
    margin-bottom: 1.25rem;
    max-width: 540px;
}

.founder__text .reveal--lead { color: var(--color-caramel); margin-bottom: 1.5rem; }

.founder__credentials {
    list-style: none;
    padding: 1.75rem 0 0;
    margin-top: 1.5rem;
    border-top: 1px solid var(--color-line-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder__credentials li {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.25rem;
    font-size: 0.92rem;
}

.founder__cred-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-caramel);
    font-weight: 500;
    padding-top: 2px;
}

.founder__cred-value {
    color: var(--color-cacao);
    line-height: 1.6;
}

.founder__quote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-noir);
    padding: 1.5rem 0 0 1.5rem;
    margin-top: 2.5rem;
    border-left: 2px solid var(--color-gold);
    max-width: 520px;
}

@media (max-width: 1024px) {
    .founder__inner { grid-template-columns: 1fr; gap: 2.25rem; }
    .founder__visual { justify-self: center; max-width: 360px; }
    .founder__credentials li { grid-template-columns: 1fr; gap: 0.25rem; }
    .founder__cred-label { font-size: 0.66rem; }
}
@media (max-width: 640px) {
    .founder__visual { max-width: 280px; }
    .founder__text p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
    .founder__credentials { margin-top: 1.5rem; }
    .founder__credentials li { padding: 0.65rem 0; }
    .founder__quote { margin-top: 1.75rem; padding-left: 1rem; }
}

/* ==========================================================================
   Sustainability page — pillar sections
   ========================================================================== */
.page-hero--tall { padding: 7rem 0 6rem; }

.sus-pillar { padding: 7rem 0; background: var(--color-ivory); }
.sus-pillar--alt { background: var(--color-sand); }

.sus-pillar__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}
.sus-pillar__grid--reverse .sus-pillar__visual { order: 2; }
.sus-pillar__grid--reverse .sus-pillar__text { order: 1; }

.sus-pillar__visual {
    position: relative;
    aspect-ratio: 5/4;
}

.sus-pillar__image {
    position: absolute;
    inset: 0;
    box-shadow: 25px 25px 60px rgba(15, 8, 6, 0.15);
}

.sus-pillar__image--1 {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(201, 169, 97, 0.3), transparent 55%),
        linear-gradient(155deg, #5c3a28, #3d261a 50%, #1f140e 100%);
}
.sus-pillar__image--2 {
    background:
        radial-gradient(ellipse at 65% 35%, rgba(45, 63, 42, 0.4), transparent 55%),
        linear-gradient(165deg, #3d261a, #1f140e 60%, #2d3f2a 100%);
}
.sus-pillar__image--3 {
    background:
        radial-gradient(circle at 40% 45%, rgba(138, 90, 59, 0.4), transparent 55%),
        linear-gradient(160deg, #5c3a28, #2a1a12 60%, #0f0806 100%);
}

.eyebrow--numbered::before {
    content: attr(data-num) " · ";
    color: var(--color-caramel);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.15em;
    letter-spacing: 0;
    margin-right: 0.15em;
    vertical-align: -0.05em;
}

.sus-pillar__text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-ash);
    margin-bottom: 1.25rem;
    max-width: 540px;
}

.sus-pillar__text .reveal--lead { color: var(--color-caramel); margin-bottom: 1.5rem; }

.sus-commodity {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--color-ivory);
    position: relative;
    overflow: hidden;
}
.sus-commodity::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(138, 90, 59, 0.08), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.sus-commodity__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.sus-commodity__head .section-subtitle {
    margin: 1rem auto 0;
    text-align: center;
    text-wrap: balance;
}

.sus-commodity__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sus-commodity__card {
    background: var(--color-cream);
    border: 1px solid rgba(138, 90, 59, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
    position: relative;
}
.sus-commodity__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 2px;
    background: var(--color-gold);
    z-index: 2;
    transition: width 0.6s var(--ease);
}
.sus-commodity__card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 22px 50px rgba(138, 90, 59, 0.12);
}
.sus-commodity__card:hover::before { width: 100%; }

.sus-commodity__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-noir);
    overflow: hidden;
}
.sus-commodity__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.sus-commodity__body {
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem) clamp(2rem, 3vw, 2.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.sus-commodity__body .eyebrow {
    color: var(--color-caramel);
}

.sus-commodity__card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.25;
    letter-spacing: 0.005em;
}
.sus-commodity__card h3 em {
    color: var(--color-gold);
    font-style: italic;
}

.sus-commodity__card p {
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--color-ash);
    margin: 0;
}

/* ==========================================================================
   SDG alignment grid
   ========================================================================== */
.sdg {
    padding: var(--section-y) 0;
    background: var(--color-cream);
}

.sdg__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}
.sdg__head .section-subtitle { margin: 1rem auto 0; }

.sdg__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.sdg__item {
    padding: 2rem 1.5rem;
    background: var(--color-ivory);
    border: 1px solid var(--color-line-light);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.sdg__item:hover {
    transform: translateY(-4px);
    border-color: var(--color-caramel);
    box-shadow: 0 18px 40px rgba(15,8,6,0.08);
}

.sdg__num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-style: italic;
    color: var(--color-caramel);
    line-height: 1;
}

.sdg__item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.3;
    letter-spacing: -0.005em;
}

.sdg__item p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-ash);
}

@media (max-width: 1024px) {
    .sdg__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .sdg__grid { grid-template-columns: 1fr; }
}

.sus-milestones {
    padding: var(--section-y) 0;
    background: var(--color-noir);
    color: var(--color-cream);
}

.sus-milestones__head { text-align: center; margin-bottom: 4rem; }

.sus-milestones__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sus-milestones__item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}
.sus-milestones__item:last-child { border-bottom: none; }

.sus-milestones__year {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1;
}

.sus-milestones__item span:not(.sus-milestones__year) {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(245, 239, 228, 0.78);
}

@media (max-width: 1024px) {
    .sus-pillar { padding: 5rem 0; }
    .sus-pillar__grid { grid-template-columns: 1fr; gap: 3rem; }
    .sus-pillar__grid--reverse .sus-pillar__visual { order: 1; }
    .sus-pillar__grid--reverse .sus-pillar__text { order: 2; }
    .sus-commodity__grid { grid-template-columns: 1fr; }
    .sus-milestones__item { grid-template-columns: 80px 1fr; gap: 1rem; }
    .sus-milestones__year { font-size: 1.35rem; }
}

@media (max-width: 640px) {
    .sus-commodity, .sus-milestones { padding: 4rem 0; }
    .sus-commodity__body { padding: 1.5rem 1.5rem 1.75rem; }
}

/* ==========================================================================
   News & Events
   ========================================================================== */
.news-list { padding: 4rem 0 7rem; background: var(--color-ivory); }

.news-year-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.news-year-divider__rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 97, 0.5), transparent);
}
.news-year-divider__label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-noir);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.news-year-divider__label em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 500;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--color-cream);
    border: 1px solid var(--color-line-light);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-caramel);
    box-shadow: 0 18px 45px rgba(15, 8, 6, 0.08);
}

.news-card--featured {
    grid-column: span 3;
    flex-direction: row;
    min-height: 380px;
}
.news-card--featured .news-card__image {
    flex: 0 0 60%;
    aspect-ratio: auto;
}
.news-card--featured .news-card__body {
    flex: 1;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-card--featured .news-card__title { font-size: 2rem; }

.news-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.news-card-link {
    display: contents;
    text-decoration: none;
    color: inherit;
}
.news-card-link .news-card {
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    cursor: pointer;
}
.news-card-link:hover .news-card {
    transform: translateY(-4px);
}
.news-card-link:hover .news-card__title { color: var(--color-caramel); }

.news-card__image--1 { background: var(--color-cream) url('../news/01-technical-training.webp') center / cover no-repeat; }
.news-card__image--2 { background: var(--color-cream) url('../news/02-tei-debut.webp') center / cover no-repeat; }
.news-card__image--3 { background: var(--color-cream) url('../news/03-padi-pertamina.webp') center / cover no-repeat; }
.news-card__image--4 { background: var(--color-cream) url('../news/04-youngpreneur-award.webp') center / cover no-repeat; }
.news-card__image--5 { background: var(--color-cream) url('../news/05-entrepreneur-hub.webp') center / cover no-repeat; }
.news-card__image--6 { background: var(--color-cream) url('../news/06-kapuas-hulu-launch.webp') center / cover no-repeat; }
.news-card__image--7 { background: var(--color-cream) url('../news/07-giz-grass-mou.webp') center / cover no-repeat; }

.news-card__tag {
    position: absolute;
    top: 1.25rem; left: 1.25rem;
    padding: 0.45rem 0.95rem;
    background: var(--color-cream);
    color: var(--color-noir);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}
.news-card__tag--award {
    background: var(--color-gold);
    color: var(--color-noir);
}
.news-card__tag--launch {
    background: var(--color-noir);
    color: var(--color-cream);
}
.news-card__tag--partnership {
    background: var(--color-caramel);
    color: var(--color-cream);
}

.news-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.news-card__date {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-caramel);
}

.news-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.25;
    letter-spacing: -0.005em;
}

.news-card__excerpt {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-ash);
}

.news-cta {
    text-align: center;
    padding: clamp(4rem, 7vw, 6rem) 2rem;
    background: var(--color-noir);
    color: var(--color-cream);
    border: none;
    position: relative;
    overflow: hidden;
}
.news-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 55%);
    pointer-events: none;
}
.news-cta > * { position: relative; z-index: 1; }
.news-cta__mark {
    display: block;
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.news-cta__eyebrow {
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: inline-block;
}
.news-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 0.85rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.news-cta h3 em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}
.news-cta p {
    color: rgba(245, 239, 228, 0.7);
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.75;
    font-weight: 300;
}
.news-cta__actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-card--featured { grid-column: span 2; flex-direction: column; }
    .news-card--featured .news-card__image { flex: 1 1 auto; aspect-ratio: 16/10; }
    .news-card--featured .news-card__body { padding: 2rem; }
    .news-card--featured .news-card__title { font-size: 1.6rem; }
}
@media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-card--featured { grid-column: span 1; }
    .news-year-divider { gap: 0.85rem; }
    .news-year-divider__label { font-size: 1rem; }
}

/* ==========================================================================
   Partnership page
   ========================================================================== */
.partner-intro {
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(4rem, 6vw, 5rem);
    background: var(--color-ivory);
    position: relative;
    overflow: hidden;
}
.partner-intro::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 60%);
    filter: blur(70px);
    pointer-events: none;
}

.partner-intro__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.partner-intro__text p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-ash);
    margin-bottom: 1.25rem;
    max-width: 540px;
}

.partner-intro__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.partner-stat {
    padding: 1.75rem 1.5rem;
    background: var(--color-sand);
    border-left: 2px solid var(--color-caramel);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.partner-stat:hover {
    transform: translateY(-3px);
    border-left-color: var(--color-gold);
    box-shadow: 0 14px 30px rgba(138, 90, 59, 0.08);
}

.partner-stat__label {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin-bottom: 0.15rem;
}

.partner-stat strong {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--color-caramel);
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.partner-stat--icon strong svg {
    width: 2.4rem;
    height: 2.4rem;
    color: var(--color-caramel);
}

.partner-stat__desc {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--color-ash);
}

/* Partner flow */
.partner-flow {
    padding: 7rem 0;
    background: var(--color-noir);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}
.partner-flow::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(138,90,59,0.18), transparent 60%);
    filter: blur(80px);
}

.partner-flow__head { text-align: center; max-width: 640px; margin: 0 auto 4rem; position: relative; z-index: 2; }

.partner-flow__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.partner-flow__step {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(201, 169, 97, 0.35);
    position: relative;
}
.partner-flow__step::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 40px; height: 1px;
    background: var(--color-gold);
    transition: width 0.6s var(--ease);
}
.partner-flow__step:hover::before { width: 100%; }

.partner-flow__num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.partner-flow__step h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.partner-flow__step p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(245, 239, 228, 0.65);
}

/* Partner who */
.partner-who {
    padding: clamp(5rem, 8vw, 7rem) 0;
    background: var(--color-sand);
    position: relative;
    overflow: hidden;
}
.partner-who::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 60%);
    filter: blur(70px);
    pointer-events: none;
}

.partner-who__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; z-index: 1; }

.partner-who__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.partner-who__card {
    background: var(--color-cream);
    border: 1px solid rgba(138, 90, 59, 0.08);
    padding: 2.5rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.partner-who__card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 36px;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.6s var(--ease);
}
.partner-who__card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, 0.35);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 18px 40px rgba(138, 90, 59, 0.1);
}
.partner-who__card:hover::before { width: 100%; }

.partner-who__mark {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
    line-height: 1;
    transition: transform 0.5s var(--ease);
}
.partner-who__card:hover .partner-who__mark {
    transform: rotate(180deg);
}

.partner-who__card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.25;
}

.partner-who__card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--color-ash);
}

/* Partner page hero embellishment */
.page-hero--partner {
    padding: clamp(5rem, 9vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem);
}
.page-hero--partner.page-hero--photo {
    min-height: clamp(440px, 60vh, 580px);
    display: flex;
    align-items: center;
}
.page-hero--partner.page-hero--photo .page-hero__bg {
    background:
        linear-gradient(105deg, rgba(15, 8, 6, 0.82) 0%, rgba(15, 8, 6, 0.6) 55%, rgba(15, 8, 6, 0.45) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(138, 90, 59, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        url('../hero/partnership-hero.webp') center/cover no-repeat,
        var(--color-noir);
}
.page-hero--partner.page-hero--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 65%, rgba(15, 8, 6, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}
.page-hero--partner .container {
    position: relative;
    z-index: 2;
}
.page-hero--partner .page-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 0;
    max-width: 320px;
}
.page-hero--partner .page-hero__divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 97, 0.45), transparent);
}
.page-hero--partner .page-hero__divider i {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--color-gold);
    line-height: 1;
}

/* Partner trust strip — partner logos under hero */
.partner-trust {
    background: var(--color-cream);
    padding: clamp(3rem, 5vw, 4rem) 0 clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.partner-trust::before,
.partner-trust::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 90, 59, 0.35), transparent);
}
.partner-trust::before { top: 0; }
.partner-trust::after { bottom: 0; }
.partner-trust .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
}
.partner-trust__intro {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin: 0 0 0.5rem;
    font-weight: 500;
}
.partner-trust__lead {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-style: italic;
    font-weight: 400;
    color: var(--color-noir);
    margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
    max-width: 520px;
    line-height: 1.5;
}
.partner-trust__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-items: center;
    gap: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.5rem, 3vw, 2.75rem);
}
.partner-trust__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
}
.partner-trust__list img {
    max-width: 120px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.85);
    opacity: 0.55;
    transition: filter 0.45s var(--ease), opacity 0.45s var(--ease);
}
.partner-trust__list img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* Partner certifications strip */
.partner-certs {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    position: relative;
    overflow: hidden;
}
.partner-certs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 90, 59, 0.35), transparent);
}
.partner-certs__head {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.partner-certs__head .eyebrow {
    color: var(--color-caramel);
    margin-bottom: 0.5rem;
    display: inline-block;
}
.partner-certs__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--color-noir);
    margin: 0;
    line-height: 1.25;
}
.partner-certs__title em {
    color: var(--color-gold);
    font-style: italic;
}
.partner-certs__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1100px;
}
.partner-cert {
    background: var(--color-cream);
    border: 1px solid rgba(138, 90, 59, 0.1);
    padding: 1.4rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
    position: relative;
}
.partner-cert:hover {
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-2px);
}
.partner-cert__mark {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-ash);
    background: rgba(15, 8, 6, 0.04);
    margin-bottom: 0.35rem;
}
.partner-cert--active .partner-cert__mark {
    color: var(--color-cream);
    background: var(--color-caramel);
}
.partner-cert strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.1;
}
.partner-cert > span:last-child {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ash);
    font-weight: 500;
}
.partner-cert--active > span:last-child {
    color: var(--color-caramel);
}

/* Partner feature — editorial photo + quote between B2B and flow */
.partner-feature {
    position: relative;
    min-height: clamp(420px, 55vh, 560px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-cream);
    background: var(--color-noir);
}
.partner-feature__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #2a1a12 0%, var(--color-noir) 60%, #1a0e0a 100%);
}
.partner-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.45;
}
.partner-feature__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(95deg, rgba(15, 8, 6, 0.85) 0%, rgba(15, 8, 6, 0.55) 60%, rgba(15, 8, 6, 0.7) 100%),
        radial-gradient(ellipse at 75% 50%, rgba(201, 169, 97, 0.12) 0%, transparent 55%);
    pointer-events: none;
}
.partner-feature__inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding-top: clamp(3.5rem, 6vw, 5rem);
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
}
.partner-feature__eyebrow {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}
.partner-feature__quote {
    margin: 0 0 1.75rem;
    position: relative;
    padding-left: clamp(1.75rem, 3vw, 2.5rem);
}
.partner-feature__quote-mark {
    position: absolute;
    left: -0.25rem;
    top: -1.5rem;
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 6rem);
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.35;
    font-style: italic;
}
.partner-feature__quote p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.45;
    font-weight: 400;
    color: var(--color-cream);
    margin: 0;
    text-wrap: balance;
}
.partner-feature__cite {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-left: clamp(1.75rem, 3vw, 2.5rem);
    border-left: 2px solid var(--color-gold);
    margin-left: 0;
}
.partner-feature__cite-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 0.04em;
}
.partner-feature__cite-role {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 169, 97, 0.75);
    font-weight: 500;
}

/* Secondary brochure download in CTA band */
.cta-band__secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
    color: rgba(245, 239, 228, 0.65);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-bottom: 1px solid transparent;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
    position: relative;
    z-index: 2;
}
.cta-band__secondary svg {
    flex-shrink: 0;
    transition: transform 0.4s var(--ease);
}
.cta-band__secondary:hover {
    color: var(--color-gold);
    border-bottom-color: rgba(201, 169, 97, 0.4);
}
.cta-band__secondary:hover svg {
    transform: translateY(2px);
}

@media (max-width: 1024px) {
    .partner-intro__grid { grid-template-columns: 1fr; gap: 3rem; }
    .partner-flow__steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
    .partner-who__grid { grid-template-columns: repeat(2, 1fr); }
    .partner-trust__list { grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1.75rem; }
    .partner-trust__list img { max-width: 110px; max-height: 42px; }
    .partner-certs__list { grid-template-columns: repeat(3, 1fr); }
    .partner-feature__quote p { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
}

@media (max-width: 640px) {
    .partner-intro, .partner-flow, .partner-who { padding: 4rem 0; }
    .partner-intro__stats { grid-template-columns: 1fr; }
    .partner-flow__steps { grid-template-columns: 1fr; }
    .partner-who__grid { grid-template-columns: 1fr; }
    .partner-trust { padding: 2.5rem 0 2rem; }
    .partner-trust__list { grid-template-columns: repeat(3, 1fr); gap: 1.25rem 1rem; }
    .partner-trust__list img { max-width: 88px; max-height: 36px; }
    .partner-trust__list li { min-height: 44px; }
    .partner-stat strong { font-size: 2.2rem; }
    .partner-stat--icon strong svg { width: 2rem; height: 2rem; }
    .partner-certs__list { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .partner-cert { padding: 1.1rem 1rem; }
    .partner-feature { min-height: 380px; }
    .partner-feature__quote { padding-left: 1.25rem; }
    .partner-feature__quote-mark { font-size: 3.5rem; top: -1rem; }
    .partner-feature__cite { padding-left: 1.25rem; }
}

/* ==========================================================================
   Sustainability page enhancements
   ========================================================================== */

/* Hero photo support + divider mark */
.page-hero--sustain.page-hero--photo {
    min-height: clamp(440px, 60vh, 580px);
    display: flex;
    align-items: center;
}
.page-hero--sustain.page-hero--photo .page-hero__bg {
    background:
        linear-gradient(105deg, rgba(15, 8, 6, 0.82) 0%, rgba(15, 8, 6, 0.6) 55%, rgba(15, 8, 6, 0.45) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(45, 63, 42, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        url('../hero/sustainability-hero.webp') center/cover no-repeat,
        var(--color-noir);
}
.page-hero--sustain.page-hero--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 65%, rgba(15, 8, 6, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}
.page-hero--sustain .container {
    position: relative;
    z-index: 2;
}
.page-hero--sustain .page-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 0;
    max-width: 320px;
}
.page-hero--sustain .page-hero__divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 97, 0.45), transparent);
}
.page-hero--sustain .page-hero__divider i {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--color-gold);
    line-height: 1;
}

/* Pillar visuals — photo support layered over editorial gradient */
.sus-pillar__image--1 {
    background:
        linear-gradient(155deg, rgba(15, 8, 6, 0.05) 0%, rgba(15, 8, 6, 0.25) 100%),
        url('../sustainability/pillar-value-chain.webp') center/cover no-repeat,
        radial-gradient(ellipse at 30% 30%, rgba(201, 169, 97, 0.3), transparent 55%),
        linear-gradient(155deg, #5c3a28, #3d261a 50%, #1f140e 100%);
}
.sus-pillar__image--2 {
    background:
        linear-gradient(165deg, rgba(15, 8, 6, 0.05) 0%, rgba(15, 8, 6, 0.25) 100%),
        url('../sustainability/pillar-agroforestry.webp') center/cover no-repeat,
        radial-gradient(ellipse at 65% 35%, rgba(45, 63, 42, 0.4), transparent 55%),
        linear-gradient(165deg, #3d261a, #1f140e 60%, #2d3f2a 100%);
}
.sus-pillar__image--3 {
    background:
        linear-gradient(160deg, rgba(15, 8, 6, 0.05) 0%, rgba(15, 8, 6, 0.25) 100%),
        url('../sustainability/pillar-community.webp') center/cover no-repeat,
        radial-gradient(circle at 40% 45%, rgba(138, 90, 59, 0.4), transparent 55%),
        linear-gradient(160deg, #5c3a28, #2a1a12 60%, #0f0806 100%);
}

/* Impact metrics section */
.sus-impact {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}
.sus-impact::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}
.sus-impact__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    position: relative;
    z-index: 1;
}
.sus-impact__head .section-subtitle {
    margin: 0 auto;
    text-align: center;
    text-wrap: balance;
}
.sus-impact__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.sus-impact__cell {
    background: var(--color-ivory);
    border: 1px solid rgba(138, 90, 59, 0.08);
    padding: 1.85rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.sus-impact__cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.6s var(--ease);
}
.sus-impact__cell:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 1px 2px rgba(15, 8, 6, 0.04), 0 14px 30px rgba(138, 90, 59, 0.08);
}
.sus-impact__cell:hover::before { width: 100%; }
.sus-impact__label {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-caramel);
}
.sus-impact__num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1;
    margin: 0.1rem 0 0.3rem;
}
.sus-impact__desc {
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--color-ash);
}

/* Credentials strip — institutional trust */
.sus-credentials {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background: linear-gradient(180deg, var(--color-ivory) 0%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}
.sus-credentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 90, 59, 0.35), transparent);
}
.sus-credentials__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(2.25rem, 4vw, 3rem);
}
.sus-credentials__head .eyebrow {
    color: var(--color-caramel);
    margin-bottom: 0.5rem;
    display: inline-block;
}
.sus-credentials__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 400;
    color: var(--color-noir);
    margin: 0 0 0.85rem;
    line-height: 1.25;
}
.sus-credentials__title em {
    color: var(--color-gold);
    font-style: italic;
}
.sus-credentials__desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-ash);
    margin: 0 auto;
    text-wrap: balance;
}
.sus-credentials__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1100px;
}
.sus-cred-item {
    background: var(--color-ivory);
    border: 1px solid rgba(138, 90, 59, 0.1);
    padding: 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.sus-cred-item:hover {
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-2px);
}
.sus-cred-item__mark {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-cream);
    background: var(--color-caramel);
    margin-bottom: 0.4rem;
}
.sus-cred-item__mark--pending {
    color: var(--color-ash);
    background: rgba(15, 8, 6, 0.04);
}
.sus-cred-item strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.15;
}
.sus-cred-item > span:last-child {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-caramel);
    font-weight: 500;
}

/* SDG color stripes — official UN SDG palette */
.sdg__item {
    position: relative;
    overflow: hidden;
}
.sdg__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.4s var(--ease);
}
.sdg__item:hover::before { height: 6px; }
.sdg__item--01::before { background: #E5243B; }
.sdg__item--02::before { background: #DDA63A; }
.sdg__item--05::before { background: #FF3A21; }
.sdg__item--08::before { background: #A21942; }
.sdg__item--13::before { background: #3F7E44; }

@media (max-width: 1024px) {
    .sus-impact__grid { grid-template-columns: repeat(2, 1fr); }
    .sus-credentials__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .sus-impact { padding: 3.5rem 0; }
    .sus-impact__grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .sus-credentials { padding: 3.5rem 0; }
    .sus-credentials__list { grid-template-columns: 1fr; gap: 0.75rem; }
    .sus-cred-item { padding: 1.15rem 1.1rem; }
    .sus-impact__cell { padding: 1.5rem 1.25rem; }
    .sus-impact__num { font-size: 2.2rem; }
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 56px; height: 56px;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 95;
    box-shadow: 0 10px 30px rgba(31,168,85,0.35);
    transition: all 0.3s var(--ease);
}
.wa-float:hover {
    transform: scale(1.08);
    background: #1fa855;
    box-shadow: 0 15px 40px rgba(31,168,85,0.5);
}
.wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================================================
   Responsive additions for new sections
   ========================================================================== */
@media (max-width: 1024px) {
    .sustain__grid { grid-template-columns: 1fr; gap: 3rem; }
    .cta-band__inner { grid-template-columns: 1fr; gap: 2rem; }
    .cta-band__actions { justify-content: flex-start; }
    .recognition__grid { grid-template-columns: repeat(2, 1fr); }
    .contact-channels__grid { grid-template-columns: 1fr; }
    .b2b__grid { grid-template-columns: 1fr; }
    .faq__container { grid-template-columns: 1fr; gap: 2rem; }
    .faq__nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; padding: 1rem 0; }
    .faq__nav-link { padding: 0.5rem 1rem; border: 1px solid var(--color-line-light); border-bottom: 1px solid var(--color-line-light); }
    .shipping__hero-cards { grid-template-columns: repeat(2, 1fr); }
    .shipping__pack-grid, .shipping__steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .shipping__international { padding: 2.5rem; }
    .shipping__international-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .timeline__list::before { left: 50px; }
    .timeline__item { padding-left: 90px; }
    .timeline__item::before { left: 43px; }
    .timeline__year { width: 40px; font-size: 1.35rem; }
}

@media (max-width: 768px) {
    .sustain, .recognition, .timeline, .b2b, .contact-channels, .shipping, .faq { padding: 4rem 0; }
    .recognition__grid { grid-template-columns: 1fr; }
    .shipping__hero-cards { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
    .shipping__pack-grid, .shipping__steps { grid-template-columns: 1fr; }
    .shipping__table { font-size: 0.82rem; }
    .shipping__table th, .shipping__table td { padding: 0.75rem 0.85rem; }
    .timeline__list::before { left: 24px; }
    .timeline__item { padding-left: 60px; padding-bottom: 2rem; }
    .timeline__item::before { left: 17px; width: 12px; height: 12px; }
    .timeline__year {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 0.25rem;
        display: block;
    }
    .timeline__item h3 { font-size: 1.35rem; }
    .cta-band__actions { gap: 0.5rem; }
    .cta-band__actions .btn { width: 100%; }
    .faq__item summary { font-size: 1rem; padding-right: 2rem; }
    .faq__item summary::after { font-size: 1.25rem; }
    .faq__cta { padding: 2rem 1.5rem; }
    .wa-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
    .wa-float svg { width: 24px; height: 24px; }
    .shop__toolbar { flex-direction: column; align-items: stretch; gap: 1rem; }
    .shop__filters--bar { flex-wrap: wrap; }
    .shop__sort { justify-content: space-between; }
    .shop__sort-select { flex: 1; }
    .footer__address { font-size: 0.78rem; }
    .recognition__item { padding: 1.25rem 1.5rem; }
    .b2b__card { padding: 2rem 1.5rem; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero__line, .hero__eyebrow, .hero__description, .hero__actions, .hero__trust { opacity: 1; transform: none; }
    .wa-float::before { display: none; }
}

/* ==========================================================================
   USP Strip — quick benefits below hero
   ========================================================================== */
.usp-strip {
    background: var(--color-cream);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(15, 8, 6, 0.06);
}
.usp-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}
.usp-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
}
.usp-strip__item svg {
    color: var(--color-caramel);
    margin-bottom: 0.4rem;
}
.usp-strip__item h3 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-noir);
    margin: 0;
}
.usp-strip__item p {
    font-size: 0.83rem;
    line-height: 1.55;
    color: rgba(15, 8, 6, 0.62);
    margin: 0;
    max-width: 240px;
}
@media (max-width: 900px) {
    .usp-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1.25rem; }
}
@media (max-width: 480px) {
    .usp-strip__inner { grid-template-columns: 1fr; gap: 1.75rem; }
    .usp-strip__item { padding: 0; }
}

/* ==========================================================================
   Trust strip — partner logos (image-based)
   ========================================================================== */
.trust-strip {
    background: var(--color-ivory);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    border-top: 1px solid rgba(15, 8, 6, 0.05);
    border-bottom: 1px solid rgba(15, 8, 6, 0.05);
    text-align: center;
    overflow: hidden;
}
.trust-strip__intro {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(15, 8, 6, 0.45);
    margin: 0 0 2rem;
    font-weight: 500;
}
.trust-strip__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}
.trust-strip__list li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-strip__list img {
    max-width: 130px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.7) contrast(0.95);
    opacity: 0.55;
    transition: filter 0.4s var(--ease), opacity 0.4s var(--ease);
}
.trust-strip__list img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}
@media (max-width: 1024px) {
    .trust-strip__list { gap: 1.25rem 2rem; }
    .trust-strip__list img { max-width: 110px; max-height: 42px; }
}
@media (max-width: 640px) {
    .trust-strip__list { gap: 1rem 1.5rem; }
    .trust-strip__list img { max-width: 95px; max-height: 36px; }
}

/* ==========================================================================
   Newsletter section — homepage lead capture
   ========================================================================== */
.newsletter {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(135deg, #fdfaf3 0%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: -30%; right: -8%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.16), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}
.newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}
.newsletter__eyebrow { color: var(--color-caramel); margin-bottom: 0.85rem; }
.newsletter__text .section-title {
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.newsletter__text p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(15, 8, 6, 0.7);
    max-width: 460px;
    margin: 0;
}
.newsletter__form {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
    background: #fff;
    padding: 0.4rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(15, 8, 6, 0.08);
    border: 1px solid rgba(15, 8, 6, 0.06);
}
.newsletter__form input {
    flex: 1;
    padding: 0.95rem 1.25rem;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-noir);
    outline: none;
    min-width: 0;
}
.newsletter__form input::placeholder { color: rgba(15, 8, 6, 0.4); }
.newsletter__form .btn {
    border-radius: 999px;
    padding: 0.95rem 1.6rem;
    flex-shrink: 0;
    font-size: 0.72rem;
}
@media (max-width: 900px) {
    .newsletter__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .newsletter__text p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 540px) {
    .newsletter__form { flex-direction: column; border-radius: 14px; padding: 0.75rem; gap: 0.5rem; }
    .newsletter__form input { padding: 0.85rem 1rem; }
    .newsletter__form .btn { border-radius: 10px; padding: 0.95rem 1rem; }
}

/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
    .nav, .announce, .cart, .cart-overlay, .modal, .toast, .wa-float, .footer__social, .hero__scroll { display: none !important; }
    body { background: #fff; color: #000; }
    a { color: #000; text-decoration: underline; }
}

/* ==========================================================================
   Contact map (button + embedded Google Maps)
   ========================================================================== */
.contact__map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    padding: 0.5rem 0.95rem;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.contact__map-btn:hover {
    background: var(--color-gold);
    color: var(--color-noir);
    border-color: var(--color-gold);
    transform: translateY(-1px);
}

.map-embed {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: var(--color-cream);
}
.map-embed__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.map-embed__head .section-title {
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    margin-bottom: 1rem;
}
.map-embed__head .section-subtitle {
    margin: 0 auto;
    text-align: center;
    text-wrap: balance;
}
.map-embed__frame {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 8, 6, 0.12);
    border: 1px solid rgba(138, 90, 59, 0.1);
}
.map-embed__frame iframe {
    display: block;
    filter: saturate(0.9) brightness(0.98);
}
.map-embed__cta {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 6px 18px rgba(15, 8, 6, 0.25);
}
@media (max-width: 640px) {
    .map-embed__frame iframe { height: 380px; }
    .map-embed__cta {
        bottom: 0.75rem;
        right: 0.75rem;
        font-size: 0.7rem;
        padding: 0.7rem 1rem;
    }
}

/* ==========================================================================
   Single news post page (.post)
   ========================================================================== */
.post {
    padding-bottom: clamp(4rem, 7vw, 6rem);
    background: var(--color-cream);
}

.post__header {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 2.75rem);
    background: var(--color-cream);
    text-align: left;
}
.post__header-inner {
    max-width: 760px;
    margin: 0 auto;
}
.post__tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--color-noir);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border-radius: 999px;
}
.post__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.85rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--color-noir);
    margin: 0 0 1rem;
}
.post__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-style: italic;
    font-weight: 300;
    color: var(--color-caramel);
    line-height: 1.5;
    margin: 0 0 1.5rem;
    max-width: 640px;
}
.post__date {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 8, 6, 0.5);
    font-weight: 500;
}

.post__hero {
    margin: 0 0 clamp(2.5rem, 5vw, 4rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}
.post__hero img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(15, 8, 6, 0.12);
}

.post__body {
    max-width: 720px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 1.04rem;
    line-height: 1.85;
    color: rgba(15, 8, 6, 0.78);
    font-weight: 400;
}
.post__body p {
    margin: 0 0 1.5rem;
}
.post__body p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--color-caramel);
    float: left;
    line-height: 0.95;
    margin: 0.4rem 0.5rem 0 -0.05rem;
}
.post__body h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--color-noir);
    margin: 2.75rem 0 1.1rem;
}
.post__body em {
    font-style: italic;
    color: var(--color-caramel);
}
.post__body ul {
    margin: 0 0 1.5rem 1.25rem;
    padding: 0;
}
.post__body ul li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.post__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 960px;
    margin: clamp(3rem, 5vw, 4rem) auto 0;
    padding-top: clamp(2rem, 3.5vw, 3rem);
    border-top: 1px solid rgba(138, 90, 59, 0.12);
}
.post__nav-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(138, 90, 59, 0.1);
    border-radius: 6px;
    background: #fdfaf3;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.post__nav-item:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 97, 0.4);
}
.post__nav-item--next { text-align: right; }
.post__nav-label {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-caramel);
    font-weight: 500;
}
.post__nav-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-noir);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post__back {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 720px) {
    .post__nav { grid-template-columns: 1fr; }
    .post__nav-item--next { text-align: left; }
    .post__body p:first-of-type::first-letter { font-size: 2.6rem; }
}

