/* =============================================================
   Desi Taste Valley, main stylesheet
   Heritage apothecary: deep black, antique gold, marble cream
   ============================================================= */

/* ---------- Ampersand override (italic serif for & only) ----------
 * "DtvAmp" is registered first in every font stack. Browsers consult it for the
 * & character (unicode U+0026); for all other characters it provides nothing,
 * so the next font in the stack (Fraunces/Inter) renders normally.
 * Prefers locally-installed beautiful italics, then loaded Cormorant Garamond.
 * ----------------------------------------------------------------- */
@font-face {
    font-family: "DtvAmp";
    src: local("Cormorant Garamond Bold Italic"), local("CormorantGaramond-BoldItalic"),
         local("Cormorant Garamond Italic"),     local("CormorantGaramond-Italic"),
         local("Baskerville-BoldItalic"),         local("Baskerville Bold Italic"),
         local("Baskerville-Italic"),             local("Baskerville Italic"),
         local("Garamond Italic"),                local("Garamond-Italic"),
         local("Times-BoldItalic"),               local("Times New Roman Italic");
    font-style: italic;
    font-weight: 400 900;
    unicode-range: U+0026;
}
/* Tiny visual lift on the ampersand wherever it appears */
.amp, ::first-letter[data-amp] { font-style: italic; }

/* ---------- Tokens ---------- */
:root {
    /* Surfaces — clean white base with very subtle warm panels */
    --c-bg:        #FFFFFF;       /* pure white page bg */
    --c-cream:     #F8F5EE;       /* subtle warm panel */
    --c-cream-dk:  #EDE7D7;       /* divider tone */
    --c-marble:    #F2EFE8;       /* faux-marble panel */
    --c-ink:       #0A0A0A;       /* label black */
    --c-ink-2:     #1A1714;       /* slightly warmer ink */
    --c-muted:     #6B6358;
    --c-line:      #E5DFD2;

    /* Gold scale (from label) */
    --c-gold:      #C8A04A;
    --c-gold-dk:   #9C7A2C;
    --c-gold-lt:   #E2C988;

    --c-burgundy:  #4A1414;
    --c-white:     #ffffff;

    /* Typography — Fraunces is a beautifully crafted variable serif used by food/heritage brands */
    /* "DtvAmp" is a special font-family declared below that ONLY substitutes the & glyph
       with an italic Cormorant Garamond / Baskerville — keeps ampersands typographically elegant. */
    --f-serif:     "DtvAmp", "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
    --f-sans:      "DtvAmp", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

    --wrap:        1240px;
    --r-sm:        4px;
    --r-md:        8px;
    --r-lg:        14px;
    --r-pill:      999px;

    --sh-sm:       0 1px 2px rgba(10,10,10,.06);
    --sh-md:       0 12px 28px rgba(10,10,10,.10);
    --sh-lg:       0 30px 70px rgba(10,10,10,.22);
    --sh-jar:      0 40px 80px rgba(10,10,10,.35);

    --t-fast:      .15s ease;
    --t-base:      .25s ease;
    --t-slow:      .6s ease;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--f-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-ink);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-ink); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-gold-dk); }
button { font: inherit; }

h1, h2, h3, h4, h5 {
    font-family: var(--f-serif);
    font-weight: 600;
    font-variation-settings: "opsz" 144, "SOFT" 50;   /* Fraunces optical + soft axis */
    line-height: 1.12;
    letter-spacing: -.018em;
    margin: 0 0 .5em;
    color: var(--c-ink);
}
h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    font-weight: 700;
    font-variation-settings: "opsz" 144, "SOFT" 30;   /* tighter / sharper for display */
    letter-spacing: -.025em;
}
h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    letter-spacing: -.02em;
}
h3 {
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
    font-weight: 600;
    font-variation-settings: "opsz" 36;
    letter-spacing: -.005em;
}
p { margin: 0 0 1em; }
em {
    font-style: italic;
    color: var(--c-gold-dk);
    font-variation-settings: "opsz" 144, "SOFT" 100;  /* extra-soft italic for elegance */
}

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

.eyebrow {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--c-gold-dk);
    margin-bottom: 18px;
}
.eyebrow--gold { color: var(--c-gold); }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    padding: 8px 16px; background: var(--c-ink); color: var(--c-cream);
    z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Ornamental divider (gold flourish) ---------- */
.ornament {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    color: var(--c-gold);
    margin: 28px auto;
}
.ornament::before, .ornament::after {
    content: ""; flex: 0 1 80px; height: 1px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
}
.ornament__diamond {
    width: 8px; height: 8px;
    transform: rotate(45deg);
    background: currentColor;
    flex-shrink: 0;
}

/* ---------- Buttons (refined: flat, sharp, premium) ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 2px;
    font-family: var(--f-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
/* Subtle underline-sweep effect for refinement */
.btn::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s ease;
    opacity: .35;
}
.btn:hover::after { transform: scaleX(1); }

/* Primary — solid antique gold, ink text */
.btn--gold {
    background: var(--c-gold);
    color: var(--c-ink);
    border-color: var(--c-gold);
}
.btn--gold:hover {
    background: var(--c-gold-dk);
    border-color: var(--c-gold-dk);
    color: var(--c-ink);
}

/* Dark — solid ink, gold accent border on hover */
.btn--dark {
    background: var(--c-ink);
    color: var(--c-gold-lt);
    border-color: var(--c-ink);
}
.btn--dark:hover {
    background: var(--c-ink-2);
    color: var(--c-gold);
    border-color: var(--c-gold-dk);
}

/* Ghost (for dark sections) — gold-bordered outline, light text */
.btn--ghost {
    background: transparent;
    color: var(--c-gold-lt);
    border-color: var(--c-gold-dk);
}
.btn--ghost:hover {
    background: var(--c-gold);
    color: var(--c-ink);
    border-color: var(--c-gold);
}

/* Ghost dark (for light sections) — ink-bordered outline */
.btn--ghost-dark {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-ink);
}
.btn--ghost-dark:hover {
    background: var(--c-ink);
    color: var(--c-gold-lt);
    border-color: var(--c-ink);
}

.btn--sm { padding: 10px 18px; font-size: 11px; letter-spacing: .2em; }
.btn--lg { padding: 16px 36px; font-size: 13px; }
.btn--block { width: 100%; }

/* Inline icon should NOT be underlined by the ::after sweep */
.btn .icon { position: relative; z-index: 1; }

.icon { flex-shrink: 0; }
.icon--wa { color: #25D366; }
.btn--gold .icon--wa,
.btn--dark .icon--wa { color: currentColor; }

/* ---------- Announcement bar (slim gold strip on dark) ---------- */
.announcement-bar {
    background: linear-gradient(90deg, var(--c-gold-dk), var(--c-gold) 50%, var(--c-gold-dk));
    color: var(--c-ink);
    font-size: 11px;
    padding: 9px 0;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
}
.announcement-bar__sep { color: var(--c-ink); opacity: .35; }
.announcement-bar__inner {
    display: flex; align-items: center; justify-content: center;
    gap: 18px; flex-wrap: wrap; text-align: center;
}
.announcement-bar__sep { color: var(--c-gold); opacity: .5; }

/* ---------- Header (dark to match logo background) ---------- */
.site-header {
    background: var(--c-ink);
    border-bottom: 1px solid var(--c-gold-dk);
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--c-cream);
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(10,10,10,.4); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
    padding: 10px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--c-gold-dk);
    line-height: 0;          /* prevents inline-img baseline gap */
    flex-shrink: 0;
}
.brand .custom-logo-link,
.brand__link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.brand:hover { color: var(--c-gold-dk); }
.brand__lockup {
    display: inline-flex;
    align-items: center;
    width: 220px;
    height: 64px;
    color: var(--c-gold);
}
.brand__lockup svg {
    width: 100%;
    height: 100%;
    display: block;
}
.brand__text {
    display: none;       /* hidden when SVG lockup is rendered */
    flex-direction: column;
    line-height: 1;
}
/* Fallback when SVG/custom logo not present */
.brand:not(:has(svg)) .brand__text,
.brand .brand__fallback {
    display: flex;
}
.brand__name {
    font-family: var(--f-serif);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .04em;
    color: var(--c-gold-lt);
    text-transform: uppercase;
}
.brand__tag {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 12px;
    color: var(--c-gold);
    letter-spacing: .12em;
    margin-top: 3px;
}

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 32px; align-items: center;
}
.primary-nav__list a {
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(237,229,210,.85);
    position: relative;
    padding: 6px 0;
}
.primary-nav__list a:hover { color: var(--c-gold-lt); }
.primary-nav__list a::after {
    content: ""; position: absolute;
    left: 0; bottom: -2px; width: 0; height: 1px;
    background: var(--c-gold);
    transition: width var(--t-base);
}
.primary-nav__list a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--c-gold-dk);
    border-radius: var(--r-sm);
    cursor: pointer;
    padding: 11px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 70;
}
.nav-toggle span {
    display: block; height: 2px;
    background: var(--c-gold);
    transition: transform var(--t-base), opacity var(--t-base);
}

/* Hamburger animates into an X when nav is open (extra fallback) */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--c-gold-lt); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--c-gold-lt); }

/* Backdrop behind open mobile nav */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,.65);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
    z-index: 80;
}
.nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Close X button inside the nav drawer (only visible when drawer is open) */
.primary-nav__close {
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--c-gold-dk);
    border-radius: 50%;
    color: var(--c-gold-lt);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.primary-nav__close:hover {
    background: var(--c-gold);
    color: var(--c-ink);
    border-color: var(--c-gold);
}

/* Body scroll-lock when nav is open */
body.nav-locked { overflow: hidden; }

/* ---------- Hero (legacy split layout, kept for reference) ---------- */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(200,160,74,.10), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(74,20,20,.06), transparent 50%),
        linear-gradient(180deg, var(--c-bg) 0%, var(--c-cream) 100%);
}

/* Header now sits cleanly on white below */
.site-header { background: var(--c-ink); }

/* ---------- Hero (full-bleed: collage background + overlaid text) ---------- */
.hero--bleed {
    position: relative;
    min-height: clamp(620px, 86vh, 880px);
    padding: 0;
    background: var(--c-ink);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
}

.hero__collage {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero__collage-item {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(200,160,74,.45);
    box-shadow: 0 30px 60px rgba(0,0,0,.55);
    background: var(--c-marble);
    will-change: transform;
}
.hero__collage-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* 8 staggered positions — overlapping, varied sizes + tilts */
.hero__collage-item--1 { width: 26%; height: 60%; top:  4%; left:  2%;  transform: rotate(-6deg);  z-index: 5; }
.hero__collage-item--2 { width: 22%; height: 52%; top: 38%; left: 21%;  transform: rotate(4deg);   z-index: 3; }
.hero__collage-item--3 { width: 24%; height: 56%; top:  0;  left: 38%;  transform: rotate(-3deg);  z-index: 4; }
.hero__collage-item--4 { width: 22%; height: 50%; top: 48%; left: 42%;  transform: rotate(7deg);   z-index: 2; }
.hero__collage-item--5 { width: 26%; height: 60%; top:  6%; right:18%;  transform: rotate(5deg);   z-index: 5; }
.hero__collage-item--6 { width: 22%; height: 52%; top: 44%; right: 2%;  transform: rotate(-4deg);  z-index: 3; }
.hero__collage-item--7 { width: 18%; height: 38%; top: 62%; left:  6%;  transform: rotate(8deg);   z-index: 2; }
.hero__collage-item--8 { width: 18%; height: 38%; top: -4%; right: 0;   transform: rotate(-7deg);  z-index: 1; opacity:.88; }

/* Dark gradient overlay so text reads on top */
.hero__overlay {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(10,10,10,.55), rgba(10,10,10,.85) 70%),
        linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.75) 100%);
}

/* Content sits above collage + overlay */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 100px 24px;
    color: var(--c-cream);
}
.hero__content .eyebrow { color: var(--c-gold-lt); }
.hero__content .hero__title {
    color: var(--c-cream);
    margin-bottom: 22px;
    text-shadow: 0 4px 24px rgba(10,10,10,.55);
    font-size: clamp(2.5rem, 5.4vw, 4.4rem);
}
.hero__content .hero__title em { color: var(--c-gold-lt); }
.hero__content .hero__lede {
    color: rgba(237,229,210,.88);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    max-width: 560px;
    margin-bottom: 36px;
    text-shadow: 0 2px 12px rgba(10,10,10,.5);
}
.hero__content .hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__content .hero__pillars {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 40px;
    border-top: 1px solid rgba(200,160,74,.35);
    padding-top: 28px;
    flex-wrap: wrap;
}
.hero__content .hero__pillars li {
    font-size: 11px;
    color: rgba(237,229,210,.7);
    text-transform: uppercase;
    letter-spacing: .14em;
}
.hero__content .hero__pillars strong {
    display: block;
    font-family: var(--f-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--c-gold-lt);
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 2px;
}

/* Subtle parallax-ish drift on hover (desktop only) */
@media (hover: hover) and (min-width: 961px) {
    .hero__collage-item { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
    .hero--bleed:hover .hero__collage-item--1 { transform: rotate(-6deg) translateY(-6px); }
    .hero--bleed:hover .hero__collage-item--5 { transform: rotate(5deg)  translateY(-8px); }
    .hero--bleed:hover .hero__collage-item--3 { transform: rotate(-3deg) translateY(-4px); }
}

/* Responsive */
@media (max-width: 960px) {
    .hero--bleed { min-height: 720px; }
    .hero__content { padding: 80px 24px; }
    /* Simplify collage to fewer, smaller floating jars on tablet */
    .hero__collage-item--4,
    .hero__collage-item--7 { display: none; }
}
@media (max-width: 720px) {
    .hero--bleed { min-height: 640px; }
    .hero__content { padding: 60px 20px; text-align: left; }
    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.88) 100%);
    }
    /* On mobile keep just a few jars, smaller, so text stays legible */
    .hero__collage-item--2,
    .hero__collage-item--6,
    .hero__collage-item--8 { display: none; }
    .hero__collage-item--1 { width: 42%; height: 38%; top:  4%; left: -8%; }
    .hero__collage-item--3 { width: 42%; height: 38%; top:  2%; right: -10%; left: auto; }
    .hero__collage-item--5 { width: 38%; height: 32%; bottom: 4%; right: -8%; top: auto; }
}
.hero__bg {
    position: absolute; inset: 0;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'><defs><filter id='n'><feTurbulence baseFrequency='.85' numOctaves='2' /><feColorMatrix values='0 0 0 0 .55  0 0 0 0 .47  0 0 0 0 .27  0 0 0 .04 0'/></filter></defs><rect width='400' height='400' filter='url(%23n)'/></svg>");
    opacity: .8;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}
.hero__title { margin-bottom: 20px; }
.hero__title em {
    font-style: italic;
    color: var(--c-gold-dk);
    position: relative;
}
.hero__lede {
    font-size: clamp(1.05rem, 1.5vw, 1.18rem);
    color: var(--c-muted);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.65;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__pillars {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 36px;
    border-top: 1px solid var(--c-line);
    padding-top: 28px;
    flex-wrap: wrap;
}
.hero__pillars li {
    font-size: 12px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
}
.hero__pillars strong {
    display: block;
    font-family: var(--f-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 2px;
}

.hero__media {
    position: relative;
    aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
}
.hero__media::before {
    content: "";
    position: absolute; inset: 5%;
    background:
        radial-gradient(circle at 50% 60%, rgba(200,160,74,.30), transparent 55%);
    filter: blur(50px);
    z-index: 0;
}
.hero__media::after {
    /* Decorative gold frame */
    content: "";
    position: absolute; inset: 6%;
    border: 1px solid rgba(200,160,74,.35);
    pointer-events: none;
    z-index: 2;
}
.hero__jar {
    position: relative;
    max-height: 100%; width: auto;
    object-fit: contain;
    box-shadow: var(--sh-jar);
    z-index: 1;
}

/* ---------- Pillars ---------- */
.pillars {
    padding: 90px 0;
    background: var(--c-ink);
    color: var(--c-cream);
    border-top: 1px solid var(--c-gold-dk);
    border-bottom: 1px solid var(--c-gold-dk);
}
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}
.pillar { text-align: center; }
.pillar__icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-gold);
    border: 1px solid var(--c-gold-dk);
    border-radius: 50%;
    position: relative;
}
.pillar__icon::before {
    content: ""; position: absolute; inset: -5px;
    border: 1px solid rgba(200,160,74,.25);
    border-radius: 50%;
}
.pillar h3 {
    color: var(--c-cream);
    font-size: 17px;
    margin-bottom: 10px;
    letter-spacing: .02em;
}
.pillar p { font-size: 13.5px; color: rgba(237,229,210,.65); margin: 0; line-height: 1.6; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section--cream { background: var(--c-cream); }
.section--dark { background: var(--c-ink); color: var(--c-cream); }
.section--dark h2,
.section--dark h3 { color: var(--c-cream); }
.section--center { text-align: center; min-height: 60vh; display: flex; align-items: center; }

.section__head { margin-bottom: 60px; max-width: 720px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__sub { color: var(--c-muted); font-size: 1.05rem; margin: 0; line-height: 1.7; }
.section--dark .section__sub { color: rgba(237,229,210,.7); }
.section__foot { text-align: center; margin-top: 64px; }

/* ---------- Product grid + card ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.product-card {
    background: var(--c-white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--c-line);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    display: flex; flex-direction: column;
    position: relative;
}
.product-card::before,
.product-card::after {
    /* Ornate gold corner tick marks (apothecary feel) */
    content: ""; position: absolute;
    width: 18px; height: 18px;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity var(--t-base);
}
.product-card::before {
    top: 8px; left: 8px;
    border-top: 1px solid var(--c-gold);
    border-left: 1px solid var(--c-gold);
}
.product-card::after {
    bottom: 8px; right: 8px;
    border-bottom: 1px solid var(--c-gold);
    border-right: 1px solid var(--c-gold);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--c-gold-dk);
}
.product-card:hover::before,
.product-card:hover::after { opacity: 1; }

.product-card__media {
    display: block;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--c-marble);
    position: relative;
}
.product-card__media::after {
    /* Soft top-down marble vignette */
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,.04));
    pointer-events: none;
}
.product-card__img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow);
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__img--placeholder { background: linear-gradient(135deg, var(--c-marble), var(--c-cream-dk)); }

.product-card__body {
    padding: 24px 24px 26px;
    display: flex; flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.product-card__title {
    font-size: 19px;
    margin: 0;
    line-height: 1.3;
    letter-spacing: .01em;
}
.product-card__title a { color: var(--c-ink); }
.product-card__title a:hover { color: var(--c-gold-dk); }
.product-card__meta {
    font-size: 11px;
    color: var(--c-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.product-card__row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    margin: 6px 0 12px;
}

.price {
    font-family: var(--f-serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--c-ink);
}
.price__currency {
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--c-gold-dk);
    letter-spacing: .15em;
    margin-right: 4px;
}
.price--ask {
    font-style: italic;
    font-size: 16px;
    color: var(--c-gold-dk);
    font-weight: 500;
}

/* ---------- Story section ---------- */
.story {
    padding: 110px 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(200,160,74,.06), transparent 60%),
        var(--c-bg);
}
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.story__copy h2 { margin-bottom: 28px; }
.story__copy p { color: var(--c-muted); font-size: 1.05rem; line-height: 1.7; }
.story__media {
    position: relative;
}
.story__grid-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.story__grid-img-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    background: var(--c-marble);
    box-shadow: var(--sh-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.story__grid-img-item:nth-child(odd)  { transform: translateY(20px); }
.story__grid-img-item:nth-child(even) { transform: translateY(-10px); }
.story__grid-img-item:hover {
    box-shadow: var(--sh-md);
    border-color: var(--c-gold-dk);
}
.story__grid-img-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}
.story__grid-img-item:hover .story__grid-img-photo { transform: scale(1.05); }

@media (max-width: 720px) {
    .story__grid-img-item:nth-child(odd),
    .story__grid-img-item:nth-child(even) { transform: none; }
}

/* ---------- Steps ---------- */
.steps {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    counter-reset: step;
}
.step {
    padding: 36px 32px;
    background: rgba(200,160,74,.04);
    border: 1px solid rgba(200,160,74,.20);
    border-radius: var(--r-md);
    position: relative;
}
.step__num {
    display: block;
    font-family: var(--f-serif);
    color: var(--c-gold);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: .85;
    letter-spacing: .02em;
}
.step h3 { color: var(--c-cream); margin-bottom: 10px; font-size: 18px; }
.step p { color: rgba(237,229,210,.7); font-size: 14px; margin: 0; line-height: 1.65; }

/* ---------- Testimonials ---------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.testimonial {
    margin: 0;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-top: 2px solid var(--c-gold);
    padding: 36px 32px;
    border-radius: 0 0 var(--r-md) var(--r-md);
    position: relative;
}
.testimonial::before {
    content: "“";
    position: absolute;
    top: -22px; left: 24px;
    font-family: var(--f-serif);
    font-size: 72px;
    color: var(--c-gold);
    line-height: 1;
    background: var(--c-white);
    padding: 0 10px;
    pointer-events: none;
}
.testimonial blockquote {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.55;
    color: var(--c-ink);
    margin: 28px 0 18px;     /* extra top margin so first letter clears the " mark */
}
.testimonial figcaption {
    font-size: 12px;
    color: var(--c-muted);
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    padding: 24px 0;
    font-size: 12px;
    color: var(--c-muted);
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-line);
    text-transform: uppercase;
    letter-spacing: .12em;
}
.breadcrumbs span { margin: 0 8px; color: var(--c-gold); opacity: .5; }
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-gold-dk); }
.breadcrumbs [aria-current] { color: var(--c-ink); font-weight: 600; }

/* ---------- Product single ---------- */
.product-single { padding-bottom: 80px; }
.product-single__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}
.product-single__media {
    aspect-ratio: 4/5;
    background: var(--c-marble);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-md);
    position: relative;
    border: 1px solid var(--c-line);
}
.product-single__media::before {
    /* inset gold frame */
    content: "";
    position: absolute; inset: 16px;
    border: 1px solid rgba(200,160,74,.4);
    z-index: 2;
    pointer-events: none;
}
.product-single__hero { width: 100%; height: 100%; object-fit: cover; }
.product-single__info { padding-top: 12px; }
.product-single__title {
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: .02em;
}
.product-single__lede {
    font-size: 1.12rem;
    color: var(--c-muted);
    margin-bottom: 30px;
    line-height: 1.65;
}
.product-single__lede p { margin: 0; }
.product-single__pricerow {
    display: flex; align-items: baseline;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 28px;
}
.product-single__weight {
    font-size: 12px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .15em;
}
.product-single__benefits {
    list-style: none; padding: 0;
    margin: 28px 0;
    font-size: 13.5px;
    color: var(--c-muted);
}
.product-single__benefits li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--c-line);
}
.product-single__benefits li::before {
    content: "✦";
    color: var(--c-gold);
    margin-right: 12px;
    font-weight: bold;
}

.product-single__specs {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px 18px;
    margin: 28px 0 0;
    font-size: 13.5px;
    padding-top: 24px;
    border-top: 1px solid var(--c-line);
}
.product-single__specs dt {
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
}
.product-single__specs dd { margin: 0; color: var(--c-ink); }

.product-single__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 60px;
}
.product-single__story-body { max-width: 760px; }
.ingredient-grid--wide { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.product-single__sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 720px) {
    .product-single__sub-grid { grid-template-columns: 1fr; gap: 16px; }
}
.product-single__story h2,
.product-single__ingredients h2,
.product-single__pay h2 { font-size: 1.5rem; margin-bottom: 18px; }
.product-single__ingredients,
.product-single__pay {
    background: var(--c-cream);
    padding: 32px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    margin-bottom: 24px;
    position: relative;
}
.product-single__ingredients::before,
.product-single__pay::before {
    content: ""; position: absolute;
    inset: 8px;
    border: 1px solid rgba(200,160,74,.25);
    border-radius: 4px;
    pointer-events: none;
}
.product-single__ingredients > *,
.product-single__pay > * { position: relative; z-index: 1; }
.pay-list { list-style: none; padding: 0; margin: 0 0 16px; }
.pay-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--c-line);
    font-size: 13.5px;
}
.pay-list li:last-child { border-bottom: 0; }

/* ---------- Archive ---------- */
.archive-hero {
    padding: 90px 0 50px;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(200,160,74,.10), transparent 60%),
        linear-gradient(180deg, var(--c-bg), var(--c-cream));
    text-align: center;
}
.archive-hero h1 { margin-bottom: 14px; text-transform: uppercase; letter-spacing: .02em; }
.archive-hero p { color: var(--c-muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }

.cat-filter {
    list-style: none; padding: 0; margin: 0 0 48px;
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center;
}
.cat-filter__chip {
    display: inline-block;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--c-line);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    color: var(--c-ink);
    text-transform: uppercase;
    letter-spacing: .14em;
}
.cat-filter__chip.is-active,
.cat-filter__chip:hover {
    background: var(--c-ink);
    color: var(--c-gold-lt);
    border-color: var(--c-ink);
}

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination .page-numbers {
    padding: 9px 16px;
    border-radius: var(--r-sm);
    border: 1px solid var(--c-line);
    background: var(--c-white);
    font-size: 13px;
}
.pagination .current {
    background: var(--c-ink);
    color: var(--c-gold-lt);
    border-color: var(--c-ink);
}

/* ---------- Generic page ---------- */
.page-hero {
    padding: 80px 0 50px;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-line);
    text-align: center;
}
.page-hero h1 { text-transform: uppercase; letter-spacing: .02em; margin: 0; }
.page__body {
    padding: 70px 0;
    max-width: 760px;
    margin: 0 auto;
}
.page__body h2 { margin-top: 1.6em; font-size: 1.5rem; }
.page__body p { color: var(--c-ink-2); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--c-ink);
    color: rgba(237,229,210,.72);
    padding-top: 90px;
    border-top: 3px double var(--c-gold-dk);
}
.site-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 56px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(237,229,210,.1);
}
.site-footer h4 {
    color: var(--c-gold-lt);
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.site-footer__logo {
    display: inline-block;
    margin-bottom: 18px;
}
.site-footer__logo-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: block;
}
.site-footer__brand {
    font-family: var(--f-serif);
    color: var(--c-cream);
    font-size: 28px;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.site-footer__tag {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--c-gold);
    margin-bottom: 18px;
    letter-spacing: .08em;
    font-size: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 7px 0; font-size: 13.5px; }
.site-footer a { color: rgba(237,229,210,.72); }
.site-footer a:hover { color: var(--c-gold); }
/* Footer button must NOT inherit the muted link color */
.site-footer .btn--gold { color: var(--c-ink); }
.site-footer .btn--gold:hover { color: var(--c-ink); }
.site-footer .btn { display: inline-flex; }
.site-footer__pay {
    margin-top: 16px;
    font-size: 11px;
    color: rgba(237,229,210,.55);
    letter-spacing: .12em;
    text-transform: uppercase;
}
.site-footer__bottom { padding: 26px 0; }
.site-footer__bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 11px;
    color: rgba(237,229,210,.5);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.site-footer__bottom a { color: var(--c-gold); }

/* ---------- Floating WhatsApp ---------- */
.floating-wa {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 60;
    display: inline-flex; align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #25D366;
    color: #ffffff;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(37,211,102,.4);
    transition: transform var(--t-fast);
    border: 2px solid rgba(255,255,255,.2);
}
.floating-wa:hover { color: #fff; transform: translateY(-2px); }
.floating-wa__label { display: inline; }
.floating-wa .icon { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero { padding: 60px 0 80px; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__media { aspect-ratio: 1; max-width: 460px; margin: 0 auto; }
    .pillars__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .story__grid { grid-template-columns: 1fr; gap: 40px; }
    .steps { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .product-single__grid { grid-template-columns: 1fr; gap: 32px; padding-top: 32px; }
    .product-single__body { grid-template-columns: 1fr; gap: 24px; }
    .site-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .section { padding: 80px 0; }
    .brand__lockup { width: 180px; height: 54px; }
}

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

    .primary-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(88vw, 380px);
        background: var(--c-ink);
        color: var(--c-cream);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 92px 32px 40px;
        transform: translateX(100%);
        transition: transform var(--t-base);
        box-shadow: var(--sh-lg);
        gap: 0;
        border-left: 1px solid var(--c-gold-dk);
        z-index: 90;
        overflow-y: auto;
    }
    .primary-nav.is-open { transform: translateX(0); }
    .primary-nav__close { display: inline-flex; }
    .primary-nav__list { flex-direction: column; gap: 0; }
    .primary-nav__list li { border-bottom: 1px solid rgba(200,160,74,.2); }
    .primary-nav__list a { padding: 18px 0; display: block; font-size: 14px; color: rgba(237,229,210,.9); }
    .primary-nav__list a:hover { color: var(--c-gold-lt); }
    .primary-nav__cta { margin-top: 32px; align-self: flex-start; }
}

@media (max-width: 720px) {
    .announcement-bar { font-size: 9px; padding: 8px 0; }
    .announcement-bar__sep { display: none; }
    .announcement-bar__inner { gap: 10px; }
    .product-grid { grid-template-columns: 1fr; }
    .site-footer__top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .site-footer__logo { margin-left: auto; margin-right: auto; }
    .floating-wa__label { display: none; }
    .floating-wa { padding: 14px; bottom: 16px; right: 16px; }
    .floating-wa .icon { width: 22px; height: 22px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .brand__lockup { width: 160px; height: 48px; }
    .site-header__inner { min-height: 72px; padding: 8px 0; }
    .wrap { padding: 0 18px; }

    /* Hero on phones — kill any horizontal clipping, ensure content fits */
    .hero--bleed { min-height: auto; padding: 0; }
    .hero__content {
        padding: 48px 20px 56px;
        max-width: 100%;
    }
    .hero__content .hero__title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        line-height: 1.15;
        margin-bottom: 18px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .hero__content .hero__lede { font-size: .95rem; margin-bottom: 28px; }
    .hero__content .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__content .hero__cta .btn { width: 100%; }
    .hero__content .hero__pillars {
        gap: 20px;
        padding-top: 24px;
    }
    .hero__content .hero__pillars strong { font-size: 22px; }

    /* Section padding tightening on phones */
    .section { padding: 64px 0; }
    .archive-hero h1 { font-size: 2rem; }

    /* Product page tightening */
    .product-single__grid { padding-top: 24px; padding-bottom: 24px; gap: 24px; }
    .product-banner__title { font-size: 1.9rem; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-revealed { opacity: 1; transform: none; }
.site-header.is-scrolled { box-shadow: var(--sh-sm); }

/* ---------- Print ---------- */
@media print {
    .announcement-bar, .floating-wa, .nav-toggle, .primary-nav, .site-footer { display: none; }
}

/* ============= NEW: hero collage ============= */
.hero-collage {
    position: relative;
    width: 100%; height: 100%;
    min-height: 460px;
}
.hero-collage__item {
    position: absolute;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 2px solid var(--c-gold-dk);
    box-shadow: var(--sh-md);
    background: var(--c-marble);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.hero-collage__item:hover {
    transform: translateY(-4px) rotate(0deg) !important;
    box-shadow: var(--sh-lg);
    z-index: 10;
}
.hero-collage__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hero-collage__item--1 {
    width: 56%; height: 70%;
    top: 8%; left: 18%;
    z-index: 5;
    transform: rotate(-2deg);
    box-shadow: var(--sh-jar);
}
.hero-collage__item--2 {
    width: 36%; height: 46%;
    top: 0; right: 0;
    z-index: 4;
    transform: rotate(6deg);
}
.hero-collage__item--3 {
    width: 32%; height: 40%;
    bottom: 8%; left: 0;
    z-index: 3;
    transform: rotate(-7deg);
}
.hero-collage__item--4 {
    width: 30%; height: 38%;
    bottom: 0; right: 6%;
    z-index: 6;
    transform: rotate(4deg);
}
.hero-collage__item--5 {
    width: 24%; height: 30%;
    top: 16%; left: 0;
    z-index: 2;
    transform: rotate(8deg);
    opacity: .92;
}

/* ============= Header: logo blends with dark header bg ============= */
.site-header .custom-logo {
    width: auto;
    height: 72px;
    max-width: none;
    border-radius: 50%;
    display: block;
    /* No background / no padding — header bg #0A0A0A matches the
       logo's JPEG background, so the square edges vanish seamlessly. */
}
@media (max-width: 720px) {
    .site-header .custom-logo { height: 56px; }
}

/* ============= Product top banner: collage variant ============= */
.product-banner {
    position: relative;
    min-height: clamp(420px, 60vh, 580px);
    background-color: var(--c-ink);
    display: flex; align-items: flex-end;
    color: var(--c-cream);
    border-bottom: 1px solid var(--c-gold-dk);
    overflow: hidden;
    isolation: isolate;
}

/* Background collage — overlapping jar shots filling the banner */
.product-banner__collage {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.product-banner__collage-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(200,160,74,.45);
    box-shadow: 0 24px 50px rgba(0,0,0,.55);
    background: var(--c-marble);
}
.product-banner__collage-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
/* 6 slots — varied positions and tilts. Extra slots gracefully empty when fewer images. */
.product-banner__collage-item--1 { width: 28%; height: 72%; top:  6%; left:  3%;  transform: rotate(-5deg); z-index: 5; }
.product-banner__collage-item--2 { width: 24%; height: 60%; top: 22%; left: 28%;  transform: rotate(4deg);  z-index: 3; }
.product-banner__collage-item--3 { width: 26%; height: 66%; top:  2%; left: 46%;  transform: rotate(-3deg); z-index: 4; }
.product-banner__collage-item--4 { width: 22%; height: 56%; top: 40%; left: 64%;  transform: rotate(6deg);  z-index: 2; }
.product-banner__collage-item--5 { width: 24%; height: 64%; top:  4%; right: 4%;  transform: rotate(5deg);  z-index: 4; }
.product-banner__collage-item--6 { width: 18%; height: 40%; bottom: -4%; left: 20%; transform: rotate(8deg); z-index: 2; opacity:.85; }

.product-banner__overlay {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 25% 60%, rgba(10,10,10,.55), rgba(10,10,10,.85) 70%),
        linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,.85) 100%);
}

.product-banner__inner {
    position: relative;
    z-index: 2;
    padding: 90px 24px 60px;
    max-width: var(--wrap);
    margin: 0 auto;
}
.product-banner__title {
    color: var(--c-cream);
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    margin: 10px 0 14px;
    text-shadow: 0 4px 24px rgba(10,10,10,.6);
    max-width: 720px;
}
.product-banner__lede {
    color: rgba(237,229,210,.88);
    font-size: 1.08rem;
    max-width: 640px;
    margin: 0;
    text-shadow: 0 2px 12px rgba(10,10,10,.5);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 960px) {
    .product-banner { min-height: 380px; }
    .product-banner__inner { padding: 70px 24px 40px; }
    /* Trim collage to fewer items on tablet */
    .product-banner__collage-item--4,
    .product-banner__collage-item--6 { display: none; }
}
@media (max-width: 720px) {
    .product-banner { min-height: 340px; }
    .product-banner__inner { padding: 56px 20px 32px; }
    .product-banner__overlay {
        background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.92) 100%);
    }
    /* Keep only 3 jars on mobile, positioned at edges */
    .product-banner__collage-item--2,
    .product-banner__collage-item--4,
    .product-banner__collage-item--6 { display: none; }
    .product-banner__collage-item--1 { width: 44%; height: 50%; top:  4%; left: -10%; }
    .product-banner__collage-item--3 { width: 42%; height: 46%; top: 50%; left: 30%; transform: rotate(-4deg); }
    .product-banner__collage-item--5 { width: 40%; height: 46%; top:  2%; right: -12%; }
}

/* ============= Product gallery (stage + thumbs) ============= */
.product-single__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--c-marble);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-md);
    border: 1px solid var(--c-line);
}
.product-single__stage::before {
    content: ""; position: absolute; inset: 16px;
    border: 1px solid rgba(200,160,74,.4);
    z-index: 2;
    pointer-events: none;
}
.product-single__hero {
    width: 100%; height: 100%; object-fit: cover;
    transition: opacity .25s ease;
    z-index: 1;
}
.product-single__hero.is-swapping { opacity: 0; }

.product-single__thumbs {
    list-style: none; padding: 0;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}
.product-single__thumb {
    width: 100%;
    aspect-ratio: 1;
    background: var(--c-marble);
    border: 2px solid var(--c-line);
    border-radius: var(--r-sm);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    position: relative;
}
.product-single__thumb::after {
    /* gold corner accent when active */
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    transition: border-color var(--t-fast);
    pointer-events: none;
}
@media (max-width: 720px) {
    .product-single__thumbs {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
}
.product-single__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.product-single__thumb:hover {
    border-color: var(--c-gold);
    transform: translateY(-2px);
}
.product-single__thumb.is-active {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 2px var(--c-gold), 0 6px 14px rgba(200,160,74,.25);
    transform: translateY(-2px);
}
.product-single__thumb.is-active::after { border-color: rgba(10,10,10,.4); }

@media (max-width: 960px) {
    .hero-collage { min-height: 360px; }
    .product-banner { min-height: 280px; }
    .product-banner__inner { padding: 50px 0 30px; }
}

/* ============= Hover-swap on product cards ============= */
.product-card__media { position: relative; }
.product-card__img--hover {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity .35s ease, transform .8s ease;
    pointer-events: none;
}
.product-card--has-hover:hover .product-card__img--hover {
    opacity: 1;
    transform: scale(1.03);
}
.product-card--has-hover:hover .product-card__img:not(.product-card__img--hover) {
    opacity: 0;
    transition: opacity .35s ease;
}

/* ============= Single product: stage becomes a button (zoom-on-click) ============= */
.product-single__stage {
    /* override <button> defaults */
    appearance: none;
    -webkit-appearance: none;
    background: var(--c-marble);
    border: 1px solid var(--c-line);
    padding: 0;
    width: 100%;
    cursor: zoom-in;
    /* keep the existing aspect/frame styling */
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-md);
    display: block;
}
.product-single__stage::before {
    content: ""; position: absolute; inset: 16px;
    border: 1px solid rgba(200,160,74,.4);
    z-index: 2; pointer-events: none;
}
.product-single__zoom {
    position: absolute;
    bottom: 18px; right: 18px;
    z-index: 3;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(10,10,10,.78);
    color: var(--c-gold-lt);
    border-radius: 50%;
    border: 1px solid rgba(200,160,74,.5);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}
.product-single__stage:hover .product-single__zoom,
.product-single__stage:focus-visible .product-single__zoom {
    opacity: 1;
    transform: translateY(0);
}

/* ============= Lightbox ============= */
.lightbox {
    position: fixed; inset: 0;
    z-index: 100;
    background: rgba(10,10,10,.93);
    display: flex; align-items: center; justify-content: center;
    padding: 40px 60px;
    backdrop-filter: blur(4px);
    animation: lightbox-fade .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lightbox-fade { from { opacity: 0; } to { opacity: 1; } }

.lightbox__stage {
    margin: 0;
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    max-width: 100%; max-height: 100%;
}
.lightbox__img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(200,160,74,.35);
    box-shadow: 0 40px 80px rgba(0,0,0,.6);
    background: #000;
}
.lightbox__counter {
    color: rgba(237,229,210,.7);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-family: var(--f-sans);
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(10,10,10,.5);
    color: var(--c-gold-lt);
    border: 1px solid rgba(200,160,74,.4);
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}
.lightbox__close {
    top: 20px; right: 20px;
    width: 48px; height: 48px;
    font-size: 32px;
    line-height: 1;
}
.lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__close:hover,
.lightbox__nav:hover {
    background: var(--c-gold);
    color: var(--c-ink);
    border-color: var(--c-gold);
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 720px) {
    .lightbox { padding: 60px 12px; }
    .lightbox__nav { width: 42px; height: 42px; }
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
    .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 26px; }
    .lightbox__img { max-height: 78vh; }
}

/* ============= Size picker (variations) ============= */
.size-picker {
    margin: 8px 0 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--c-line);
}
.size-picker__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 12px;
}
.size-picker__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.size-picker__chip {
    appearance: none;
    background: transparent;
    border: 1.5px solid var(--c-line);
    border-radius: 6px;
    padding: 14px 22px;
    cursor: pointer;
    text-align: left;
    transition: border-color .2s ease, background .2s ease, transform .15s ease;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--f-sans);
}
.size-picker__chip:hover { border-color: var(--c-gold-dk); transform: translateY(-1px); }
.size-picker__chip.is-active {
    border-color: var(--c-ink);
    background: var(--c-ink);
    color: var(--c-gold-lt);
}
.size-picker__chip-w {
    font-family: var(--f-serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.005em;
    color: inherit;
}
.size-picker__chip-p {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--c-muted);
}
.size-picker__chip.is-active .size-picker__chip-p { color: var(--c-gold-lt); opacity: .85; }

/* "from" prefix on price */
.price__prefix {
    font-family: var(--f-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--c-muted);
    margin-right: 2px;
    font-weight: 600;
    vertical-align: middle;
}

/* ============= Cleaner product banner (single hero shot) ============= */
.product-banner {
    background-size: cover;
    background-position: center;
}
/* Hide the old collage when this rule is loaded (was a wrapper inside the banner) */
.product-banner__collage,
.product-banner--collage .product-banner__collage { display: none; }

/* ============= Ingredient grid (illustrated) ============= */
.product-single__ingredients-sub {
    font-size: 14px;
    color: var(--c-muted);
    margin: -8px 0 22px;
}
.ingredient-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
}
.ingredient-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    background: var(--c-white);
    text-align: center;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ingredient-tile:hover {
    border-color: var(--c-gold);
    transform: translateY(-2px);
    box-shadow: var(--sh-sm);
}
.ingredient-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold-dk);
    border-radius: 50%;
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-marble) 100%);
    border: 1px solid var(--c-line);
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(255,255,255,.5);
    flex-shrink: 0;
}
.ingredient-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 8px;
}
.ingredient-icon img {
    width: 100%;
    height: 100%;
    display: block;
}
/* Real photographs: fill the circle completely (object-fit cover for square crop) */
.ingredient-icon--real img {
    object-fit: cover;
}
/* OpenMoji or fallback emoji: contain with padding so the illustration breathes */
.ingredient-icon--emoji img,
.ingredient-icon img.is-fallback {
    object-fit: contain;
    padding: 8px;
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-marble) 100%);
}
.ingredient-name {
    font-family: var(--f-serif);
    font-size: 14px;
    color: var(--c-ink);
    font-weight: 600;
    line-height: 1.3;
}
.ingredient-note {
    font-size: 11px;
    color: var(--c-muted);
    line-height: 1.4;
}

/* ============= Tasting notes (5-pip meter) ============= */
.product-single__tasting,
.product-single__pairings {
    background: var(--c-cream);
    padding: 32px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    margin-bottom: 24px;
    position: relative;
}
.product-single__tasting h2,
.product-single__pairings h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.taste-meter { list-style: none; padding: 0; margin: 0; }
.taste-meter__row {
    display: grid;
    grid-template-columns: 80px 1fr 48px;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--c-line);
}
.taste-meter__row:last-child { border-bottom: 0; }
.taste-meter__label {
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.taste-meter__bar {
    display: inline-flex;
    gap: 4px;
    flex: 1;
}
.taste-meter__pip {
    flex: 1;
    height: 8px;
    border-radius: 2px;
    background: rgba(200,160,74,.18);
    transition: background .3s ease;
}
.taste-meter__pip.is-filled {
    background: var(--c-gold-dk);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.18);
}
.taste-meter__score {
    font-family: var(--f-serif);
    font-size: 14px;
    color: var(--c-ink);
    font-weight: 600;
    text-align: right;
}

/* ============= Pairings ============= */
.pairings-best {
    margin: 0 0 16px;
    padding: 14px 18px;
    background: rgba(200,160,74,.12);
    border-left: 3px solid var(--c-gold);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: baseline;
}
.pairings-best__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--c-gold-dk);
}
.pairings-best__pick {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--c-ink);
}
.pairings-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pairings-chip {
    display: inline-block;
    padding: 8px 16px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-pill);
    font-size: 12px;
    color: var(--c-ink);
    font-weight: 500;
    letter-spacing: .04em;
    transition: border-color .2s ease, background .2s ease;
}
.pairings-chip:hover {
    border-color: var(--c-gold-dk);
    background: var(--c-cream);
}

@media (max-width: 720px) {
    .taste-meter__row { grid-template-columns: 70px 1fr 40px; gap: 12px; }
    .ingredient-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
    .ingredient-tile { padding: 14px 8px; }
    .ingredient-name { font-size: 13px; }
}

/* =============================================================
   MOBILE OVERHAUL — comprehensive responsive cleanup
   All earlier @media rules above are intentionally overridden here
   so the mobile experience is predictable and tight.
   ============================================================= */

/* Tablet (≤1024px): start tightening */
@media (max-width: 1024px) {
    .wrap { padding: 0 20px; }
    .hero--bleed { min-height: clamp(560px, 78vh, 720px); }
    .product-banner { min-height: clamp(360px, 50vh, 480px); }
    .section { padding: 80px 0; }
    .section__head { margin-bottom: 40px; }
}

/* Tablet (≤960px): nav drawer, single-col product, stack hero */
@media (max-width: 960px) {
    .hero--bleed {
        min-height: auto;
        padding: 0;
    }
    .hero__content {
        padding: 80px 24px;
        max-width: 100%;
    }
    .hero__content .hero__title {
        font-size: clamp(2rem, 5vw, 3rem);
        max-width: 560px;
    }
    .hero__content .hero__lede { max-width: 540px; }
    /* Reduce visual noise of background collage */
    .hero__collage-item { opacity: .85; }
    .hero__overlay {
        background:
            radial-gradient(ellipse at 30% 50%, rgba(10,10,10,.6), rgba(10,10,10,.88) 70%),
            linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,.85) 100%);
    }

    .product-banner { min-height: 360px; }
    .product-banner__inner { padding: 70px 24px 40px; }

    .product-single__grid { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; padding-bottom: 32px; }
    .product-single__body { grid-template-columns: 1fr; gap: 24px; padding-bottom: 40px; }

    .pillars__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .story__grid { grid-template-columns: 1fr; gap: 40px; }
    .steps, .testimonials { grid-template-columns: 1fr; gap: 20px; }

    .site-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Phone (≤720px): aggressive tightening, single column everywhere */
@media (max-width: 720px) {
    /* Global */
    html { scroll-behavior: auto; }       /* avoid janky animated scroll on iOS */
    body { font-size: 15px; }
    .wrap { padding: 0 18px; }
    .section { padding: 56px 0; }
    .section__head { margin-bottom: 32px; }
    .section__foot { margin-top: 36px; }
    h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.18; }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); line-height: 1.2; }
    h3 { font-size: 1.05rem; }
    .eyebrow { font-size: 10px; letter-spacing: .22em; margin-bottom: 12px; }

    /* Announcement bar */
    .announcement-bar { font-size: 9px; padding: 7px 0; letter-spacing: .16em; }
    .announcement-bar__sep { display: none; }
    .announcement-bar__inner { gap: 8px; padding: 0 16px; }

    /* Header */
    .site-header__inner { min-height: 68px; padding: 8px 0; }
    .site-header .custom-logo { height: 52px; }

    /* Buttons — full width by default on phone for tap reliability */
    .btn { padding: 14px 22px; font-size: 12px; letter-spacing: .18em; min-height: 48px; }
    .btn--lg { padding: 16px 24px; font-size: 12px; }
    .btn--sm { padding: 10px 16px; min-height: 42px; }

    /* ============= HERO (phone): keep collage as background but darker + smaller ============= */
    .hero--bleed {
        min-height: 580px;
        padding: 0;
        display: flex;
        align-items: center;
    }
    .hero__collage-item {
        opacity: .55;     /* fade so text dominates */
        box-shadow: 0 20px 40px rgba(0,0,0,.45);
        border-width: 1px;
        border-radius: 10px;
    }
    /* Show only 4 of 8 tiles on phone, positioned as corner accents */
    .hero__collage-item--2,
    .hero__collage-item--4,
    .hero__collage-item--6,
    .hero__collage-item--7 { display: none; }
    .hero__collage-item--1 { width: 48%; height: 36%; top: 4%; left: -12%; transform: rotate(-7deg); }
    .hero__collage-item--3 { width: 44%; height: 32%; top: 0; right: -10%; left: auto; transform: rotate(6deg); }
    .hero__collage-item--5 { width: 50%; height: 36%; bottom: -2%; right: -14%; top: auto; transform: rotate(8deg); }
    .hero__collage-item--8 { width: 40%; height: 28%; bottom: 4%; left: -10%; top: auto; transform: rotate(-9deg); }

    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(10,10,10,.65) 0%, rgba(10,10,10,.9) 100%);
    }
    .hero__content {
        padding: 48px 20px;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .hero__content .eyebrow { margin-bottom: 14px; }
    .hero__content .hero__title {
        font-size: clamp(1.9rem, 8.5vw, 2.5rem);
        line-height: 1.15;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .hero__content .hero__title br { display: none; }   /* let it wrap naturally */
    .hero__content .hero__lede { font-size: .95rem; margin-bottom: 28px; }
    .hero__content .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero__content .hero__cta .btn { width: 100%; }
    .hero__content .hero__pillars {
        gap: 16px;
        padding-top: 22px;
        justify-content: center;
    }
    .hero__content .hero__pillars li { flex: 1 1 28%; min-width: 80px; text-align: center; }
    .hero__content .hero__pillars strong { font-size: 22px; }

    /* ============= PRODUCT BANNER (phone): compact + readable ============= */
    .product-banner {
        min-height: 280px;
        background-position: center 30%;
    }
    .product-banner__overlay {
        background:
            linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.88) 100%);
    }
    .product-banner__inner { padding: 48px 18px 30px; }
    .product-banner__title { font-size: clamp(1.6rem, 7vw, 2.1rem); margin: 8px 0 10px; }
    .product-banner__lede { font-size: .92rem; }

    /* Archive hero */
    .archive-hero { padding: 56px 0 30px; }
    .archive-hero h1 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
    .archive-hero p { font-size: .92rem; }
    .cat-filter { margin-bottom: 28px; gap: 6px; }
    .cat-filter__chip { padding: 8px 16px; font-size: 10px; }

    /* Product single page */
    .product-single__grid { padding-top: 24px; padding-bottom: 24px; }
    .product-single__stage { aspect-ratio: 1; }     /* squarer on phone for less scroll */
    .product-single__title { font-size: clamp(1.7rem, 6.5vw, 2.2rem); margin-bottom: 14px; }
    .product-single__lede { font-size: .95rem; margin-bottom: 20px; }
    .product-single__benefits { margin: 20px 0; font-size: 13px; }
    .product-single__specs { grid-template-columns: 110px 1fr; gap: 10px 14px; font-size: 13px; }
    .product-single__ingredients,
    .product-single__pay,
    .product-single__tasting,
    .product-single__pairings { padding: 22px 18px; }
    .product-single__ingredients::before,
    .product-single__pay::before { display: none; }   /* drop the inner gold frame on phone */

    /* Ingredient grid */
    .ingredient-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .ingredient-tile { padding: 12px 6px; gap: 6px; }
    .ingredient-icon { width: 28px; height: 28px; }
    .ingredient-name { font-size: 12px; }
    .ingredient-note { font-size: 10px; }

    /* Tasting meter */
    .taste-meter__row { grid-template-columns: 60px 1fr 36px; gap: 10px; padding: 6px 0; }
    .taste-meter__label { font-size: 10px; letter-spacing: .1em; }
    .taste-meter__pip { height: 6px; }
    .taste-meter__score { font-size: 12px; }

    /* Pairings */
    .pairings-best { padding: 12px 14px; font-size: 14px; }
    .pairings-best__pick { font-size: 15px; }
    .pairings-chip { padding: 6px 12px; font-size: 11px; }

    /* Size picker */
    .size-picker__chips { gap: 8px; }
    .size-picker__chip { min-width: 0; flex: 1; padding: 12px 14px; }
    .size-picker__chip-w { font-size: 16px; }
    .size-picker__chip-p { font-size: 11px; }

    /* Cards */
    .product-grid { grid-template-columns: 1fr; gap: 18px; }
    .product-card__body { padding: 18px 18px 20px; }
    .product-card__title { font-size: 17px; }

    /* Story section */
    .story { padding: 60px 0; }
    .story__grid { gap: 32px; }
    .story__grid-img { gap: 10px; }
    .story__grid-img-item:nth-child(odd),
    .story__grid-img-item:nth-child(even) { transform: none; }

    /* Pillars (value props) */
    .pillars { padding: 56px 0; }
    .pillars__grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
    .pillar { text-align: center; }
    .pillar__icon { width: 48px; height: 48px; margin-bottom: 12px; }
    .pillar h3 { font-size: 15px; }
    .pillar p { font-size: 12.5px; line-height: 1.55; }

    /* Steps (dark section) */
    .step { padding: 24px 22px; }
    .step__num { font-size: 32px; margin-bottom: 10px; }
    .step h3 { font-size: 16px; }
    .step p { font-size: 13px; }

    /* Testimonials */
    .testimonial { padding: 30px 22px; }
    .testimonial::before { font-size: 60px; top: -18px; left: 18px; padding: 0 8px; }
    .testimonial blockquote { font-size: 16px; margin: 22px 0 14px; }
    .testimonial figcaption { font-size: 11px; }

    /* Page hero (About, How to Order, Contact) */
    .page-hero { padding: 56px 0 28px; }
    .page__body { padding: 48px 0; }
    .page__body h2 { margin-top: 1.4em; font-size: 1.25rem; }

    /* Footer */
    .site-footer { padding-top: 56px; }
    .site-footer__top { grid-template-columns: 1fr; gap: 32px; text-align: center; padding-bottom: 40px; }
    .site-footer__col--brand p { max-width: 320px; margin-left: auto; margin-right: auto; }
    .site-footer__logo { margin-left: auto; margin-right: auto; }
    .site-footer ul li { padding: 5px 0; }
    .site-footer__brand { font-size: 24px; }
    .site-footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; font-size: 10px; }

    /* Floating WhatsApp button */
    .floating-wa { padding: 14px; bottom: 14px; right: 14px; min-height: 52px; min-width: 52px; }
    .floating-wa__label { display: none; }
    .floating-wa .icon { width: 22px; height: 22px; }

    /* Lightbox */
    .lightbox { padding: 50px 8px; }
    .lightbox__close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 24px; }
    .lightbox__nav { width: 40px; height: 40px; }
    .lightbox__nav--prev { left: 6px; }
    .lightbox__nav--next { right: 6px; }
    .lightbox__img { max-height: 76vh; }

    /* Make sure nothing causes horizontal scroll */
    html, body { overflow-x: hidden; }
    img, video { max-width: 100%; height: auto; }
}

/* Tiny phones (≤380px) */
@media (max-width: 380px) {
    .wrap { padding: 0 14px; }
    .hero__content { padding: 40px 16px; }
    .pillars__grid { grid-template-columns: 1fr; gap: 24px; }
    .hero__content .hero__pillars li { flex: 1 1 100%; }
    .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Landscape phones — make hero shorter */
@media (max-width: 920px) and (orientation: landscape) and (max-height: 500px) {
    .hero--bleed { min-height: 100vh; }
    .hero__content { padding: 32px 24px; }
    .hero__content .hero__title { font-size: 1.8rem; }
    .hero__content .hero__pillars { padding-top: 16px; }
}

/* iOS notch / safe areas */
@supports (padding: max(0px)) {
    .wrap { padding-left: max(18px, env(safe-area-inset-left)); padding-right: max(18px, env(safe-area-inset-right)); }
    .floating-wa { bottom: max(14px, env(safe-area-inset-bottom)); }
}

/* =============================================================
   POLISH PASS — mobile menu + hero clarity
   ============================================================= */

/* Mobile menu: tighter, centered, better divider treatment */
@media (max-width: 960px) {
    .primary-nav {
        padding: 100px 28px 40px;
        align-items: center;       /* center all children */
        text-align: center;
        gap: 0;
    }
    .primary-nav__list {
        width: 100%;
        align-items: stretch;
    }
    .primary-nav__list li {
        border-bottom: 0;
        position: relative;
    }
    /* Subtle short gold accent under each link instead of full-width line */
    .primary-nav__list li + li::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 1px;
        background: rgba(200,160,74,.35);
    }
    .primary-nav__list a {
        padding: 20px 0;
        text-align: center;
        font-size: 14px;
        letter-spacing: .25em;
    }
    .primary-nav__close {
        top: 24px;
        right: 24px;
        background: transparent;
    }
    .primary-nav__cta {
        margin-top: 36px;
        align-self: center;
        min-width: 200px;
    }
}

/* =============== HERO de-clutter =============== */
.hero__overlay {
    /* Stronger dark wash with a centered focal vignette so text reads cleanly */
    background:
        radial-gradient(ellipse at 35% 55%, rgba(10,10,10,.55) 0%, rgba(10,10,10,.92) 75%),
        linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.85) 100%);
}
.hero__collage-item { opacity: .72; }    /* fade tiles so text wins */

.hero__content { z-index: 2; }
/* Improve title rhythm on desktop too */
.hero__content .hero__title {
    line-height: 1.08;
    letter-spacing: -.025em;
}

/* MOBILE hero overhaul — content first, jars become background pattern */
@media (max-width: 720px) {
    .hero--bleed {
        min-height: 560px;
        background:
            linear-gradient(180deg, var(--c-ink) 0%, #1a1612 100%);
    }
    .hero__collage-item {
        opacity: .35;           /* heavily faded so text dominates */
        box-shadow: 0 12px 24px rgba(0,0,0,.4);
    }
    /* Only 3 tiles on phone, pinned to corners — text is the star */
    .hero__collage-item--4,
    .hero__collage-item--6,
    .hero__collage-item--7,
    .hero__collage-item--8 { display: none; }
    .hero__collage-item--1 { width: 40%; height: 26%; top:  4%; left: -10%; transform: rotate(-7deg); }
    .hero__collage-item--3 { width: 38%; height: 24%; top:  2%; right: -10%; left: auto; transform: rotate(6deg); }
    .hero__collage-item--5 { width: 38%; height: 24%; bottom: 2%; right: -10%; top: auto; transform: rotate(7deg); }
    .hero__collage-item--2 { width: 36%; height: 22%; bottom: 4%; left: -10%; transform: rotate(-7deg); display: block; }

    .hero__overlay {
        background:
            radial-gradient(ellipse at 50% 50%, rgba(10,10,10,.55) 0%, rgba(10,10,10,.95) 70%),
            linear-gradient(180deg, rgba(10,10,10,.6) 0%, rgba(10,10,10,.9) 100%);
    }
    .hero__content {
        padding: 60px 22px;
        text-align: center;
    }
    .hero__content .hero__title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.1;
        letter-spacing: -.02em;
        margin-bottom: 18px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        word-break: normal;
        hyphens: none;
    }
    .hero__content .hero__title br { display: none; }
    .hero__content .hero__lede {
        font-size: .95rem;
        line-height: 1.55;
        max-width: 420px;
        margin: 0 auto 28px;
    }

    .hero__content .hero__cta {
        max-width: 340px;
        margin: 0 auto 36px;
    }

    .hero__content .hero__pillars {
        max-width: 340px;
        margin: 0 auto;
        justify-content: space-between;
        gap: 12px;
        padding-top: 24px;
    }
    .hero__content .hero__pillars li {
        flex: 1;
        min-width: 0;
    }
}

/* =============================================================
   PRODUCT PAGE — mobile layout fix (tight, no empty gaps)
   ============================================================= */
@media (max-width: 720px) {
    /* Banner already shows title — make breadcrumbs slim */
    .breadcrumbs { padding: 14px 0; font-size: 10px; letter-spacing: .1em; }
    .breadcrumbs span { margin: 0 4px; }

    /* Image stage — landscape-ish so it doesn't dominate the fold */
    .product-single__grid {
        padding-top: 18px;
        padding-bottom: 18px;
        gap: 18px;
    }
    .product-single__stage {
        aspect-ratio: 4 / 4.2;       /* slightly portrait but not super tall */
        border-radius: 10px;
    }
    .product-single__stage::before {
        inset: 10px;
    }
    .product-single__hero {
        object-position: center 40%;
    }
    .product-single__zoom { width: 38px; height: 38px; bottom: 12px; right: 12px; opacity: 1; transform: none; }

    /* Info column — no empty bottom space */
    .product-single__info { padding-top: 0; }
    .product-single__pricerow {
        padding: 14px 0;
        margin-bottom: 16px;
    }
    .product-single__benefits { margin: 18px 0 14px; font-size: 12.5px; }
    .product-single__benefits li { padding: 7px 0; }
    .product-single__specs { padding-top: 18px; margin-top: 18px; gap: 8px 14px; }
    .size-picker { padding: 14px 0; margin: 4px 0 16px; }

    /* Body sections — uniform tight padding, no decorative inner border on phone */
    .product-single__body { padding-bottom: 24px; gap: 16px; }
    .product-single__story,
    .product-single__ingredients,
    .product-single__pay,
    .product-single__tasting,
    .product-single__pairings {
        padding: 22px 18px;
        margin-bottom: 0;
    }
    .product-single__story { padding-left: 0; padding-right: 0; padding-top: 8px; padding-bottom: 8px; background: transparent; border: 0; }
    .product-single__story::before { display: none; }
    .product-single__story h2 { font-size: 1.3rem; margin-bottom: 12px; }

    .product-single__ingredients h2,
    .product-single__pay h2,
    .product-single__tasting h2,
    .product-single__pairings h2 { font-size: 1.2rem; margin-bottom: 12px; }
    .product-single__ingredients-sub { font-size: 13px; margin: -4px 0 16px; }
}

/* =============================================================
   BUNDLE PAGE
   ============================================================= */
.bundle-hero {
    padding: 80px 0 40px;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(200,160,74,.10), transparent 60%),
        linear-gradient(180deg, var(--c-bg), var(--c-cream));
    text-align: center;
}
.bundle-hero h1 { margin-bottom: 12px; text-transform: uppercase; letter-spacing: .02em; }
.bundle-hero__lede { color: var(--c-muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.bundle-hero__lede strong { color: var(--c-gold-dk); }

.bundle {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
    align-items: start;
}
.bundle__picker { min-width: 0; }
.bundle__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.bundle-card {
    display: flex;
    flex-direction: column;
    background: var(--c-white);
    border: 2px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .25s ease, transform .2s ease, box-shadow .25s ease;
    position: relative;
}
.bundle-card:hover { border-color: var(--c-gold-dk); box-shadow: var(--sh-sm); }
.bundle-card.is-selected {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 1px var(--c-gold), 0 8px 18px rgba(200,160,74,.18);
}
.bundle-card__check {
    position: absolute;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}
.bundle-card__media {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--c-marble);
    position: relative;
}
.bundle-card__img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.bundle-card:hover .bundle-card__img { transform: scale(1.04); }
.bundle-card__tick {
    position: absolute;
    top: 10px; right: 10px;
    width: 34px; height: 34px;
    background: var(--c-gold);
    color: var(--c-ink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.bundle-card.is-selected .bundle-card__tick {
    opacity: 1;
    transform: scale(1);
}
.bundle-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bundle-card__title {
    font-family: var(--f-serif);
    font-size: 15px;
    margin: 0;
    line-height: 1.3;
}
.bundle-card__meta {
    font-size: 11px;
    color: var(--c-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.bundle-card__price {
    margin: 4px 0 0;
    font-family: var(--f-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--c-ink);
}

.bundle__actions {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.bundle__summary {
    position: sticky;
    top: 110px;
    align-self: start;
}
.bundle__summary-inner {
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 28px 24px;
}
.bundle__summary-title {
    font-size: 1.4rem;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-line);
}

.bundle__list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    min-height: 60px;
    max-height: 280px;
    overflow-y: auto;
}
.bundle__list-empty {
    font-size: 13px;
    color: var(--c-muted);
    font-style: italic;
    padding: 12px 0;
}
.bundle__list-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--c-line);
    font-size: 13px;
}
.bundle__list-item:last-child { border-bottom: 0; }
.bundle__list-name { font-family: var(--f-serif); font-weight: 600; flex: 1; min-width: 0; line-height: 1.35; }
.bundle__list-meta { font-family: var(--f-sans); font-weight: 400; color: var(--c-muted); font-size: 11px; }
.bundle__list-price { font-family: var(--f-serif); font-weight: 600; white-space: nowrap; }

.bundle__totals {
    margin: 0 0 18px;
    padding: 12px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.bundle__totals-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    font-size: 13.5px;
}
.bundle__totals-row dt { color: var(--c-muted); margin: 0; }
.bundle__totals-row dd { margin: 0; color: var(--c-ink); font-weight: 600; }
.bundle__totals-row--discount dd { color: var(--c-gold-dk); }
.bundle__totals-row--total {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px dashed var(--c-line);
}
.bundle__totals-row--total dt,
.bundle__totals-row--total dd {
    font-family: var(--f-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: -.01em;
}

.bundle__cta { margin-bottom: 12px; }
.bundle__hint {
    margin: 0;
    font-size: 11px;
    color: var(--c-muted);
    text-align: center;
    line-height: 1.55;
}

@media (max-width: 960px) {
    .bundle { grid-template-columns: 1fr; gap: 24px; }
    .bundle__summary { position: static; }
}
@media (max-width: 720px) {
    .bundle-hero { padding: 56px 0 28px; }
    .bundle__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bundle-card__body { padding: 10px 12px 12px; }
    .bundle-card__title { font-size: 13px; }
    .bundle-card__price { font-size: 16px; }
    .bundle__summary-inner { padding: 20px 16px; }
    .bundle__summary-title { font-size: 1.2rem; }
    .bundle__totals-row--total dt,
    .bundle__totals-row--total dd { font-size: 18px; }
}

/* =============================================================
   SHOP ARCHIVE — collage hero + better filter chips
   ============================================================= */
.archive-hero--collage {
    position: relative;
    padding: 96px 0 60px;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    background: var(--c-ink);
    color: var(--c-cream);
}
.archive-hero__collage {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr;
    gap: 4px;
    pointer-events: none;
}
.archive-hero__collage-cell {
    overflow: hidden;
    background: var(--c-marble);
}
.archive-hero__collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    opacity: .55;
    filter: saturate(.85);
    transition: opacity .4s ease, transform .8s ease;
}
.archive-hero__collage-cell:hover .archive-hero__collage-img { opacity: .8; transform: scale(1.05); }

.archive-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, rgba(10,10,10,.55) 0%, rgba(10,10,10,.88) 70%),
        linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.85) 100%);
}
.archive-hero__content {
    position: relative;
    z-index: 2;
}
.archive-hero--collage h1 {
    color: var(--c-cream);
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 14px;
    text-shadow: 0 3px 16px rgba(0,0,0,.55);
}
.archive-hero--collage p {
    color: rgba(237,229,210,.82);
    max-width: 640px;
    margin: 0 auto;
}

/* Filter chips with icons (replaces basic chip styling) */
.cat-filter__chip {
    appearance: none;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--c-line);
    border-radius: var(--r-pill);
    padding: 10px 18px;
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--c-ink);
    text-transform: uppercase;
    letter-spacing: .16em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.cat-filter__chip:hover {
    border-color: var(--c-gold-dk);
    transform: translateY(-1px);
}
.cat-filter__chip.is-active {
    background: var(--c-ink);
    color: var(--c-gold-lt);
    border-color: var(--c-ink);
}
.cat-filter__chip .lucide { flex-shrink: 0; }
.cat-filter__chip .lucide--sparkles { color: var(--c-gold-dk); }
.cat-filter__chip.is-active .lucide--sparkles { color: var(--c-gold); }
.cat-filter__count {
    font-size: 10px;
    opacity: .55;
    margin-left: 2px;
    font-weight: 500;
}
.archive-empty {
    text-align: center;
    color: var(--c-muted);
    padding: 60px 0;
    font-style: italic;
}
.product-grid__cell { display: contents; }    /* don't break the existing grid layout */

/* Responsive */
@media (max-width: 720px) {
    .archive-hero--collage { padding: 60px 0 36px; }
    .archive-hero__collage { grid-template-columns: repeat(4, 1fr); }
    .archive-hero__collage-cell--5,
    .archive-hero__collage-cell--6,
    .archive-hero__collage-cell--7,
    .archive-hero__collage-cell--8 { display: none; }
    .cat-filter__chip { padding: 8px 14px; font-size: 10px; letter-spacing: .14em; }
}

/* =============================================================
   BUNDLE — variation chips + add/remove toggle
   ============================================================= */
.bundle-card { cursor: default; }            /* no longer a label */
.bundle-card__body { gap: 8px; }
.bundle-card__sizes {
    display: flex;
    gap: 6px;
    margin: 4px 0 4px;
}
.bundle-card__size {
    appearance: none;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    padding: 6px 10px;
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--c-ink);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    flex: 1;
}
.bundle-card__size:hover { border-color: var(--c-gold-dk); }
.bundle-card__size.is-active {
    background: var(--c-ink);
    color: var(--c-gold-lt);
    border-color: var(--c-ink);
}
.bundle-card__toggle {
    appearance: none;
    cursor: pointer;
    background: var(--c-ink);
    color: var(--c-gold-lt);
    border: 1px solid var(--c-ink);
    border-radius: 2px;
    padding: 11px 14px;
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    transition: background .2s ease, color .2s ease;
}
.bundle-card__toggle:hover { background: var(--c-ink-2); }
.bundle-card__toggle .bundle-card__toggle-add { display: inline-flex; align-items: center; gap: 6px; }
.bundle-card__toggle .bundle-card__toggle-remove { display: none; align-items: center; gap: 6px; color: var(--c-ink); }
.bundle-card.is-selected .bundle-card__toggle { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.bundle-card.is-selected .bundle-card__toggle-add { display: none; }
.bundle-card.is-selected .bundle-card__toggle-remove { display: inline-flex; }

/* Summary icons */
.bundle__summary-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.bundle__summary-title .lucide { color: var(--c-gold-dk); }
.bundle__totals-row dt .lucide {
    display: inline;
    vertical-align: -3px;
    color: var(--c-gold-dk);
    margin-right: 4px;
}

/* Card sizing on mobile */
@media (max-width: 720px) {
    .bundle-card__size { padding: 6px 8px; font-size: 10px; }
    .bundle-card__toggle { padding: 10px 12px; font-size: 10px; }
}

/* =============================================================
   BUNDLE PRESETS + HOME CATEGORY SECTIONS
   ============================================================= */

/* Eyebrow with inline icon */
.eyebrow--with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eyebrow--with-icon .lucide { opacity: .9; }

/* Category sections on home */
.category-section .section__head { max-width: 700px; }
.category-section--preserves { background: linear-gradient(180deg, #fff, var(--c-cream) 100%); }
.category-section--honey      { background: var(--c-cream); }
.category-section--chutneys   { background: var(--c-cream); }

.section--cta {
    padding: 60px 0 100px;
    background: var(--c-bg);
}
.section--cta .section__foot {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

/* Preset bundles section */
.presets .section__head { max-width: 640px; }
.preset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}
.preset-card {
    position: relative;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
}
.preset-card__badge {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    background: var(--c-gold);
    color: var(--c-ink);
    font-family: var(--f-sans);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 5px 10px;
    border-radius: 2px;
}
.preset-card__media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--c-marble);
}
.preset-card__thumb {
    aspect-ratio: 1;
    overflow: hidden;
}
.preset-card__img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.preset-card:hover .preset-card__img { transform: scale(1.04); }
.preset-card__body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.preset-card__title {
    font-family: var(--f-serif);
    font-size: 22px;
    margin: 0;
    letter-spacing: -.01em;
}
.preset-card__sub {
    margin: 0 0 6px;
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.55;
}
.preset-card__items {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13.5px;
}
.preset-card__items li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-ink-2);
}
.preset-card__items .lucide { color: var(--c-gold-dk); flex-shrink: 0; }
.preset-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--c-line);
    margin-top: auto;
}
.preset-card__price {
    font-family: var(--f-serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--c-ink);
}

@media (max-width: 720px) {
    .preset-grid { grid-template-columns: 1fr; gap: 16px; }
    .preset-card__body { padding: 18px 18px 20px; }
    .preset-card__title { font-size: 19px; }
    .preset-card__price { font-size: 19px; }
    .section--cta { padding: 40px 0 60px; }
    .section--cta .btn { width: 100%; max-width: 320px; }
}

/* =============================================================
   GALLERY POLISH — clear label + bigger thumbs + impossible to miss
   ============================================================= */
.product-single__gallery {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--c-line);
}
.product-single__gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
}
.product-single__gallery-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c-gold-dk);
}
.product-single__gallery-count {
    font-size: 11px;
    color: var(--c-muted);
    letter-spacing: .04em;
}
/* Override earlier thumb margins so the new wrapper handles spacing */
.product-single__gallery .product-single__thumbs {
    margin: 0;
}
@media (max-width: 720px) {
    .product-single__gallery { margin-top: 14px; padding-top: 14px; }
    .product-single__gallery-head { margin-bottom: 10px; }
    .product-single__gallery-count { font-size: 10px; }
}

/* =============================================================
   PRODUCT GALLERY STRIP — full-width section under the image+info row
   ============================================================= */
.product-gallery-strip {
    background: var(--c-cream);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    padding: 36px 0;
    margin: 0;
}
.product-gallery-strip__head {
    text-align: center;
    margin-bottom: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.product-gallery-strip__title {
    font-family: var(--f-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin: 4px 0 8px;
    letter-spacing: -.015em;
}
.product-gallery-strip__sub {
    margin: 0;
    color: var(--c-muted);
    font-size: 14px;
    line-height: 1.55;
}

.product-single__thumbs--strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    margin: 0;
}
.product-single__thumbs--strip .product-single__thumb {
    border-width: 2px;
}

@media (max-width: 720px) {
    .product-gallery-strip { padding: 28px 0; }
    .product-gallery-strip__head { margin-bottom: 16px; }
    .product-gallery-strip__sub { font-size: 13px; }
    .product-single__thumbs--strip {
        grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
        gap: 10px;
    }
}

/* =============================================================
   THUMB HOVER — clear "click to open" affordance
   ============================================================= */
.product-single__thumb {
    cursor: zoom-in;
}
.product-single__thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.55) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23E2C988' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3'/><path d='M11 8v6M8 11h6'/></svg>") no-repeat center;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}
.product-single__thumb:hover::before,
.product-single__thumb:focus-visible::before { opacity: 1; }

/* =============================================================
   Breathing room above the "About this jar" body section
   ============================================================= */
.product-single__body {
    padding-top: 48px;
}
@media (max-width: 720px) {
    .product-single__body { padding-top: 28px; }
}

/* =============================================================
   BUNDLE PAGE — conversion-focused redesign
   ============================================================= */

/* Hero */
.bundle-hero--big {
    padding: 100px 0 80px;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(200,160,74,.18), transparent 60%),
        linear-gradient(180deg, var(--c-ink) 0%, #1a1612 100%);
    color: var(--c-cream);
    text-align: center;
    border-bottom: 1px solid var(--c-gold-dk);
}
.bundle-hero--big h1 {
    color: var(--c-cream);
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 18px;
    line-height: 1.1;
}
.bundle-hero--big h1 em {
    font-style: italic;
    color: var(--c-gold-lt);
}
.bundle-hero--big .bundle-hero__lede {
    color: rgba(237,229,210,.85);
    max-width: 620px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.65;
}
.bundle-hero__pillars {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    border-top: 1px solid rgba(200,160,74,.3);
    padding-top: 22px;
    margin-top: 8px;
}
.bundle-hero__pillars li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(237,229,210,.85);
    font-size: 13px;
    letter-spacing: .04em;
}
.bundle-hero__pillars strong { color: var(--c-gold-lt); }
.bundle-hero__pillars .lucide { color: var(--c-gold); }

/* Larger preset cards */
.preset-grid--lg {
    max-width: 1100px;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 28px;
}
.preset-card--lg .preset-card__body { padding: 26px 26px 26px; gap: 14px; }
.preset-card--lg .preset-card__title {
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    margin: 0 0 4px;
}
.preset-card__head {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.preset-card__tagline {
    margin: 0;
    color: var(--c-gold-dk);
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 15px;
}
.preset-card__sub { font-size: 14px; line-height: 1.6; }

/* Media handles 2, 3, 4+ items gracefully */
.preset-card__media--few { grid-template-columns: repeat(2, 1fr); }
.preset-card__media--many { grid-template-columns: repeat(4, 1fr); }
.preset-card__thumb--more {
    aspect-ratio: 1;
    background: var(--c-ink);
    color: var(--c-gold-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-serif);
    font-size: 24px;
    font-weight: 700;
}

/* Perfect-for tags */
.preset-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px dashed var(--c-line);
    border-bottom: 1px dashed var(--c-line);
}
.preset-card__tags-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-right: 4px;
}
.preset-card__tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    border-radius: var(--r-pill);
    font-size: 11px;
    color: var(--c-ink);
}

/* Pricing block */
.preset-card__pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
}
.preset-card__price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.preset-card__price-was {
    text-decoration: line-through;
    color: var(--c-muted);
    font-family: var(--f-serif);
    font-size: 16px;
    font-style: italic;
}
.preset-card__save {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-gold-dk);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.preset-card__cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

/* How-bundle steps reuse existing .steps but darken */
.how-bundle .step { background: rgba(200,160,74,.06); border-color: rgba(200,160,74,.25); }

/* Trust grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.trust-card {
    text-align: center;
    padding: 28px 22px;
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
}
.trust-card .lucide {
    color: var(--c-gold-dk);
    margin-bottom: 12px;
}
.trust-card h3 { font-size: 17px; margin-bottom: 8px; }
.trust-card p { color: var(--c-muted); font-size: 14px; margin: 0; line-height: 1.6; }

/* FAQ */
.bundle-faq {
    max-width: 720px;
    margin: 0 auto;
}
.bundle-faq details {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 18px 22px;
    margin-bottom: 10px;
    transition: border-color .2s ease;
}
.bundle-faq details[open] { border-color: var(--c-gold-dk); }
.bundle-faq summary {
    cursor: pointer;
    font-family: var(--f-serif);
    font-weight: 600;
    font-size: 16px;
    color: var(--c-ink);
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.bundle-faq summary::-webkit-details-marker { display: none; }
.bundle-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -2px;
    font-family: var(--f-sans);
    font-size: 22px;
    color: var(--c-gold-dk);
    transition: transform .2s ease;
}
.bundle-faq details[open] summary::after { transform: rotate(45deg); }
.bundle-faq p {
    margin: 12px 0 0;
    color: var(--c-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* =============================================================
   HOME — Bundles & Save promo
   ============================================================= */
.bundle-promo { padding: 90px 0; }
.bundle-promo__head { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 48px; }
.bundle-promo__head h2 {
    color: var(--c-cream);
    text-transform: uppercase;
    letter-spacing: .02em;
}
.bundle-promo__head h2 em { font-style: italic; color: var(--c-gold-lt); }
.bundle-promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.bundle-promo__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--c-ink-2);
    border: 1px solid rgba(200,160,74,.2);
    border-radius: var(--r-md);
    overflow: hidden;
    text-decoration: none;
    color: var(--c-cream);
    transition: border-color .25s ease, transform .25s ease;
}
.bundle-promo__card:hover {
    border-color: var(--c-gold);
    transform: translateY(-3px);
    color: var(--c-cream);
}
.bundle-promo__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--c-gold);
    color: var(--c-ink);
    font-family: var(--f-sans);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 5px 10px;
    border-radius: 2px;
}
.bundle-promo__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--c-ink);
}
.bundle-promo__img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--c-ink-2);
}
.bundle-promo__img-wrap--more {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold-lt);
    font-family: var(--f-serif);
    font-size: 20px;
    font-weight: 700;
}
.bundle-promo__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.bundle-promo__card:hover .bundle-promo__img { transform: scale(1.05); }
.bundle-promo__info { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bundle-promo__title {
    color: var(--c-cream);
    font-size: 20px;
    margin: 0;
    letter-spacing: -.01em;
}
.bundle-promo__tagline {
    margin: 0 0 10px;
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--c-gold);
    font-size: 14px;
}
.bundle-promo__pricing {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(200,160,74,.25);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bundle-promo__was {
    color: rgba(237,229,210,.5);
    text-decoration: line-through;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 14px;
}
.bundle-promo__price {
    font-family: var(--f-serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--c-cream);
}
.bundle-promo__save {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-gold-lt);
}
.bundle-promo__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
    .preset-grid--lg { grid-template-columns: 1fr; gap: 20px; }
    .trust-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
    .bundle-promo__grid { grid-template-columns: 1fr; gap: 16px; }
    .bundle-hero--big { padding: 60px 0 50px; }
    .bundle-hero__pillars { gap: 18px; }
}
@media (max-width: 720px) {
    .bundle-promo { padding: 56px 0; }
    .bundle-promo__head { margin-bottom: 32px; }
    .bundle-promo__cta { flex-direction: column; align-items: stretch; }
    .bundle-promo__cta .btn { width: 100%; }
    .preset-card--lg .preset-card__body { padding: 20px 18px; }
    .preset-card__tags-label { display: block; width: 100%; margin-bottom: 4px; }
    .bundle-hero__pillars { flex-direction: column; gap: 10px; align-items: center; }
}

/* =============================================================
   CATEGORY FEATURE — single-product split layout (image + text)
   ============================================================= */
.category-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.category-feature__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.category-feature__copy h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -.02em;
}
.category-feature__sub {
    color: var(--c-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}
.category-feature__lede {
    color: var(--c-ink-2);
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 4px 0 4px;
    padding-left: 16px;
    border-left: 2px solid var(--c-gold);
}
.category-feature__price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px dashed var(--c-line);
    border-bottom: 1px dashed var(--c-line);
    margin: 4px 0 8px;
    width: 100%;
}
.category-feature__weight {
    font-size: 11px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .14em;
}
.category-feature__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-feature__media {
    position: relative;
}
.category-feature__img-link {
    display: block;
    overflow: hidden;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-md);
    background: var(--c-marble);
    aspect-ratio: 4/5;
    position: relative;
}
.category-feature__img-link::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(200,160,74,.45);
    z-index: 2;
    pointer-events: none;
}
.category-feature__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.category-feature__img-link:hover .category-feature__img { transform: scale(1.04); }

/* Image side — flip the order */
.category-feature--img-left .category-feature__media { order: -1; }

/* Responsive */
@media (max-width: 960px) {
    .category-feature__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .category-feature__copy { align-items: center; }
    .category-feature__lede { padding-left: 0; border-left: 0; border-top: 1px solid var(--c-gold); padding-top: 12px; max-width: 480px; }
    .category-feature__price { justify-content: center; }
    .category-feature--img-left .category-feature__media,
    .category-feature--img-right .category-feature__media { order: -1; max-width: 380px; margin-left: auto; margin-right: auto; width: 100%; }
}
@media (max-width: 720px) {
    .category-feature__cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
    .category-feature__cta .btn { width: 100%; }
}

/* =============================================================
   Bundle preset media — show ALL images (no "+N" badge)
   Cell count comes via --cells custom property on the grid
   ============================================================= */
.preset-card__media,
.bundle-promo__images {
    grid-template-columns: repeat(min(var(--cells), 4), 1fr);
}
/* For >4 jars, 2 rows × 4 cols (still no +N badge) */
.preset-card__thumb,
.bundle-promo__img-wrap {
    aspect-ratio: 1;
}
/* Drop the "+N more" pseudo-tile styles (no longer rendered) */
.preset-card__thumb--more,
.bundle-promo__img-wrap--more { display: none; }

@media (max-width: 720px) {
    /* On phones, allow up to 4 columns for big bundles, otherwise match count */
    .preset-card__media,
    .bundle-promo__images {
        grid-template-columns: repeat(min(var(--cells), 4), 1fr);
    }
}
