/* ===== DESIGN TOKENS ===== */
:root {
    --white:         #FFFFFF;
    --onyx:          #101010;
    --apricot:       #FFEEC1;

    /* Aliases for readability */
    --bg-primary:    #FFFFFF;
    --bg-secondary:  #FFEEC1;
    --bg-dark:       #101010;
    --text-primary:  #101010;
    --text-secondary:#3D3D3D;
    --accent-gold:   #C98A00;
    --accent-honey:  #F5B800;
    --border:        #E8DDBB;
    --muted:         #9A9080;

    --bg-warm:       #F7F3EC;

    --font-heading: 'Arima', serif;
    --font-body:    'Roboto', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.loading { overflow: hidden; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.08;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 6.2rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(2rem, 4vw, 4.8rem); letter-spacing: -0.015em; margin-bottom: 2rem; }
h3 { font-size: clamp(1.5rem, 2vw, 2.2rem); letter-spacing: -0.01em; }

em {
    font-style: italic;
    color: var(--accent-gold);
}

.mission-banner em,
.spices-content em {
    color: var(--accent-honey);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin-bottom: 2.2rem;
    font-weight: 400;
}

.section-label.light { color: rgba(255, 255, 255, 0.4); }

.body-text {
    font-size: 1.05rem;
    line-height: 1.88;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 42ch;
}

/* ===== NAVIGATION ===== */
.editorial-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.8rem 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.45s ease, padding 0.35s ease, box-shadow 0.4s ease;
}

.editorial-nav.scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.editorial-nav.scrolled.over-dark {
    background: rgba(8, 8, 8, 0.35);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    box-shadow: none;
}

/* Brand name */
.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 0.4s ease;
}

.editorial-nav.scrolled .nav-brand { color: var(--onyx); }
.editorial-nav.scrolled.over-dark .nav-brand { color: white; }

/* Pill nav links */
.nav-links {
    display: flex;
    align-items: center;
    background: linear-gradient(
        160deg,
        rgba(10, 10, 10, 0.14) 0%,
        rgba(0, 0, 0, 0.05) 100%
    );
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 100px;
    padding: 0.32rem;
    gap: 0.1rem;
    transition: background 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.editorial-nav.scrolled .nav-links {
    background: var(--onyx);
    border-color: var(--onyx);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    font-weight: 400;
    padding: 0.52rem 1.15rem;
    border-radius: 100px;
    transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.editorial-nav.scrolled .nav-links a { color: rgba(255, 255, 255, 0.72); }
.editorial-nav.scrolled .nav-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

/* Right CTA */
.nav-cta {
    background: white;
    color: var(--onyx);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.68rem 1.6rem;
    border-radius: 100px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta:hover { background: var(--apricot); }

.editorial-nav.scrolled .nav-cta {
    background: var(--onyx);
    color: white;
}

.editorial-nav.scrolled .nav-cta:hover { background: var(--accent-gold); color: var(--onyx); }

/* ===== HERO ===== */
.hero-campaign {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(16, 16, 16, 0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 840px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 400;
}

.hero-campaign h1 {
    color: white;
    margin-bottom: 1.6rem;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.72;
    font-weight: 300;
    margin-bottom: 2.8rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(134, 134, 134, 0.25);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    font-weight: 400;
    transition: background 0.3s ease, gap 0.3s ease, border-color 0.3s ease;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    gap: 1.1rem;
}

.hero-cta.cta-gold {
    background: var(--accent-honey);
    color: var(--onyx);
}

.hero-cta.cta-gold:hover {
    background: var(--accent-gold);
    color: var(--onyx);
    gap: 1.1rem;
}

.cta-icon {
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-icon { transform: translate(2px, -2px); }

/* Frosted glass cards — hero bottom */
.hero-cards {
    position: absolute;
    bottom: 3.5rem;
    left: 4.5rem;
    right: 4.5rem;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

.hero-card {
    background: linear-gradient(
        160deg,
        rgba(10, 10, 10, 0.14) 0%,
        rgba(0, 0, 0, 0.05) 100%
    );
    backdrop-filter: blur(36px) saturate(160%);
    -webkit-backdrop-filter: blur(36px) saturate(160%);
    border: 1px solid rgba(125, 125, 125, 0.12);
    border-top: 1px solid rgba(187, 187, 187, 0.42);
    border-radius: 1.4rem;
    padding: 1.8rem 2.2rem;
    max-width: 320px;
    pointer-events: auto;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-honey);
    margin-bottom: 0.85rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.card-body {
    font-size: 0.86rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 300;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
    background: var(--apricot);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 65s linear infinite;
}

.marquee-track span {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(16, 16, 16, 0.5);
    padding: 0 2rem;
    font-weight: 400;
}

.marquee-track .sep {
    color: var(--accent-gold);
    padding: 0 0.2rem;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== PHILOSOPHY ===== */
.philosophy-editorial {
    padding: 0 0 0 5rem;
    background: var(--bg-warm);
    overflow: hidden;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
    min-height: 88vh;
}

.editorial-text {
    padding: 8rem 5rem 8rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phil-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    color: var(--accent-gold);
    line-height: 1.6;
    border-left: 2px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-weight: 400;
}

.phil-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.phil-stat { display: flex; flex-direction: column; gap: 0.3rem; }

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    font-weight: 400;
}

.editorial-image {
    position: relative;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
}

/* ===== MISSION BANNER ===== */
.mission-banner {
    background: var(--onyx);
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mission-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--accent-gold) 25%,
        var(--accent-honey) 75%,
        transparent 100%
    );
}

.mission-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 138, 0, 0.25), transparent);
}

.mission-inner { max-width: 860px; margin: 0 auto; }

.mission-eyebrow {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--accent-gold);
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.mission-body {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 3.6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.28;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.mission-kicker {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.8;
    font-weight: 300;
}

/* ===== THIN DIVIDER ===== */
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 5rem;
}

/* ===== COLLECTION ===== */
.collection-editorial {
    padding: 7rem 5rem 9rem;
    background: var(--onyx);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1440px;
    margin: 0 auto 3.5rem;
}

.collection-header h2 { margin-bottom: 0.5rem; color: var(--white); }

.collection-header-left .section-label { margin-bottom: 1rem; color: rgba(255, 255, 255, 0.35); }

.collection-editorial .header-note { color: rgba(255, 255, 255, 0.28); }

.header-note {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 28ch;
}

/* Filter pills */
.filter-pills {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding-bottom: 0.5rem;
}

.filter-pill {
    background: transparent;
    border: 1px solid rgba(16, 16, 16, 0.2);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-pill:hover { background: rgba(16, 16, 16, 0.06); }

.filter-pill.active {
    background: var(--onyx);
    border-color: var(--onyx);
    color: white;
}

/* Product grid wrapper */
.product-scroll-wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.product-scroll-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.scroll-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.2rem;
}

.scroll-progress {
    width: 120px;
    height: 2px;
    background: rgba(16, 16, 16, 0.12);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.scroll-bar {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 33%;
    background: var(--onyx);
    border-radius: 100px;
    transition: transform 0.2s ease;
}

.scroll-nav { display: flex; gap: 0.6rem; }

.scroll-btn {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 100%;
    background: var(--onyx);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    line-height: 1;
}

.scroll-btn:hover { background: var(--accent-gold); color: var(--onyx); }

/* Product cards */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.4s ease;
}

.product-card:hover { box-shadow: 0 20px 60px rgba(16, 16, 16, 0.1); }

.product-card-img {
    position: relative;
    height: 280px;
    background: var(--bg-warm);
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: white;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-weight: 500;
    font-family: var(--font-body);
    z-index: 2;
}

.product-badge.new { background: var(--onyx); }
.product-badge.value { background: var(--accent-honey); color: var(--onyx); }

.product-card-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 0.35rem;
    font-weight: 400;
}

.product-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 1.4rem;
    color: var(--text-primary);
    line-height: 1.15;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-sale {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1;
}

.price-original {
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 300;
}

.cart-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    background: var(--onyx);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.cart-btn:hover { background: var(--accent-gold); transform: scale(1.08); }
.cart-btn svg { width: 1rem; height: 1rem; }

/* Collection bottom CTA */
.collection-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ===== PRODUCT BENEFITS ===== */
.product-benefits {
    background: var(--white);
    padding: 8rem 5rem;
    overflow: hidden;
}

.benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.benefits-content { max-width: 540px; }
.benefits-content h2 { margin-bottom: 1.2rem; }

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    margin: 3rem 0;
}

.benefit-item { display: flex; flex-direction: column; gap: 0.5rem; }

.benefit-icon {
    width: 2.8rem;
    height: 2.8rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
}

.benefit-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

.how-to-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--muted);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.how-to-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.trust-line {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-top: 1.5rem;
}

.benefits-visual { position: relative; }

.benefits-img {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.benefits-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.usage-bubble {
    position: absolute;
    background: var(--onyx);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.45;
    padding: 0.72rem 1.1rem;
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.usage-bubble::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-honey);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== LANDSCAPE BREAK ===== */
.landscape-break {
    height: 68vh;
    overflow: hidden;
    position: relative;
}

.landscape-break img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center 35%;
}

/* ===== SPICES ===== */
.spices-teaser {
    height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5rem;
    overflow: hidden;
}

.spices-bg {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

.spices-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to right,
        rgba(16, 16, 16, 0.82) 0%,
        rgba(16, 16, 16, 0.38) 55%,
        transparent 100%
    );
    z-index: 2;
}

.spices-content {
    position: relative;
    z-index: 3;
    max-width: 560px;
}

.spices-content h2 {
    color: var(--white);
    margin-bottom: 2.2rem;
}

.spice-names {
    font-size: 0.73rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-honey);
    font-weight: 400;
}

/* ===== CRAFT PROCESS ===== */
.craft-process {
    background: var(--bg-warm);
    padding: 7rem 5rem;
}

.craft-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto 7rem auto;
}

.craft-split.reverse { grid-template-columns: 1fr 1.2fr; }
.craft-split.reverse .craft-visual { order: 2; }
.craft-split.reverse .craft-story  { order: 1; }

.craft-visual { height: 65vh; overflow: hidden; }

.craft-visual img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.craft-story { max-width: 440px; }
.craft-story .body-text { margin-top: 1.5rem; }

/* ===== FOOTER ===== */
.editorial-footer {
    background: var(--onyx);
    padding: 7rem 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.footer-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid rgba(255, 238, 193, 0.08);
    margin-bottom: 2.5rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1.4rem;
}

.footer-desc {
    font-size: 0.84rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.36);
    font-weight: 300;
    max-width: 30ch;
    margin-bottom: 2rem;
}

.footer-location {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--accent-gold);
    font-weight: 400;
}

.footer-col-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.22);
    font-weight: 500;
    margin-bottom: 1.8rem;
    font-family: var(--font-body);
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.footer-nav-col ul li a {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-nav-col ul li a:hover { color: white; }

.footer-link-soon {
    color: rgba(255, 255, 255, 0.22) !important;
    font-style: italic;
    pointer-events: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.05em;
}

.footer-legal { display: flex; gap: 2.5rem; }

.footer-legal a {
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.7); }

.footer-credit {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.footer-credit:hover { color: rgba(255, 255, 255, 0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .philosophy-editorial { padding: 0; }

    .editorial-text {
        padding: 5rem 3rem;
    }

    .editorial-image { min-height: 60vh; }

    .phil-stats { gap: 2rem; }

    .craft-split,
    .craft-split.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .craft-split.reverse .craft-visual,
    .craft-split.reverse .craft-story { order: 0; }

    .product-scroll-track { grid-template-columns: repeat(2, 1fr); }

    .collection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .benefits-split { grid-template-columns: 1fr; gap: 4rem; }
    .benefits-content { max-width: none; }
    .usage-bubble { display: none; }
    .product-benefits { padding: 6rem 3rem; }

    .craft-visual { height: 60vh; }
    .editorial-text { padding: 4rem 1.5rem; }
    .phil-stats { gap: 1.5rem; flex-wrap: wrap; }

    .editorial-nav { padding: 1.5rem 2.5rem; }
    .nav-links a   { padding: 0.45rem 0.9rem; font-size: 0.7rem; }

    .hero-cards {
        left: 2.5rem;
        right: 2.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-card { max-width: none; }

    .philosophy-editorial,
    .collection-editorial { padding: 5rem 3rem 6rem; }

    .craft-process   { padding: 5rem 3rem; }
    .mission-banner  { padding: 5rem 3rem; }
    .spices-teaser   { padding: 0 3rem; }
    .editorial-footer { padding: 5rem 3rem 3rem; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 4rem;
    }

    .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .editorial-nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links { display: none; }

    .hero-cards { display: none; }

    .marquee-strip { display: none; }

    .hero-campaign { justify-content: center; }

    .philosophy-editorial,
    .collection-editorial { padding: 4rem 1.5rem 5rem; }

    .craft-process   { padding: 4rem 1.5rem; }
    .mission-banner  { padding: 4rem 1.5rem; }
    .spices-teaser   { padding: 0 1.5rem; }
    .editorial-footer { padding: 4rem 1.5rem 2.5rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

    .product-card-img { height: 230px; }
    .filter-pills { display: none; }
    .product-benefits { padding: 4rem 1.5rem; }
    .benefits-grid { gap: 1.5rem 2rem; }

    .landscape-break { height: 44vh; }

    .craft-split,
    .craft-split.reverse { margin-bottom: 5rem; gap: 2rem; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    /* Philosophy stats — single row, compact */
    .phil-stats {
        flex-wrap: nowrap;
        gap: 1rem;
        overflow: hidden;
    }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.55rem; letter-spacing: 0.16em; }

    /* Craft / Texture section — shorter image */
    .craft-visual { height: 40vh; }

    /* Spices overlay — uniform wash instead of side-heavy gradient */
    .spices-overlay {
        background: rgba(16, 16, 16, 0.58);
    }
    .spices-teaser { justify-content: center; }
    .spices-content { text-align: center; max-width: 100%; }
}
