/* ============================================================
   PAVANSUT — GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg:        #0d0402;
    --color-bg-2:      #120604;
    --color-bg-3:      #1c0a06;
    --color-bg-4:      #2a0d0d;
    --color-red:       #8c2a11;
    --color-red-mid:   #d1411e;
    --color-gold:      #f7b731;
    --color-cream:     #f5ede0;
    --color-muted:     rgba(245, 237, 224, 0.45);
    --color-border:    rgba(247, 183, 49, 0.12);

    --font-display:    'Bebas Neue', sans-serif;
    --font-body:       'Inter', sans-serif;
}

html {
    scroll-behavior: auto; /* Lenis handles this */
}

body {
    background-color: var(--color-bg);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ============================================================
   LIGHT MODE
   ============================================================ */
body.light-mode {
    --color-bg:    #f1ebd9;
    --color-bg-2:  #ede5d2;
    --color-bg-3:  #e8dfc8;
    --color-bg-4:  #e0d8c5;
    --color-cream: #2a0d0d;
    --color-muted: rgba(42, 13, 13, 0.45);
    --color-border: rgba(42, 13, 13, 0.1);
    background-color: var(--color-bg);
    color: var(--color-cream);
    cursor: none;
}

body.light-mode .navbar {
    background: rgba(241, 235, 217, 0.85);
    border-bottom-color: rgba(0,0,0,0.08);
}
body.light-mode .navbar-logo { filter: invert(1); mix-blend-mode: multiply; }
body.light-mode .bar { background-color: #2a0d0d; }
body.light-mode .nav-links a { color: #2a0d0d; }
body.light-mode .nav-links a:hover { color: var(--color-red); }
body.light-mode #theme-toggle { background: #2a0d0d; color: #f7b731; }

body.light-mode .statement-section { background-color: var(--color-bg-2); }
body.light-mode .fullbleed-section .fullbleed-overlay {
    background: rgba(241,235,217,0.65);
}
body.light-mode .fullbleed-headline { color: #2a0d0d; }
body.light-mode .hero-cta--outline {
    border-color: #2a0d0d;
    color: #2a0d0d;
}
body.light-mode .hero-cta--outline:hover {
    background: #2a0d0d;
    color: #f1ebd9;
}
body.light-mode .origins-section { background-color: var(--color-bg-3); }
body.light-mode .india-map { filter: none; opacity: 0.12; }
body.light-mode .products-section { background-color: var(--color-bg-2); }
body.light-mode .card-bg { background: linear-gradient(135deg, #ede5d2, #d5ccc0); }
body.light-mode .filter-btn { color: #564c4c; border-color: rgba(0,0,0,0.15); }
body.light-mode .filter-btn:hover, body.light-mode .filter-btn.active {
    background: #2a0d0d; color: var(--color-gold); border-color: #2a0d0d;
}
body.light-mode .site-footer { background-color: #2a0d0d; }
body.light-mode .footes-tagline { color: rgba(255,255,255,0.5); }
body.light-mode .footer-bottom { color: rgba(255,255,255,0.4); }
body.light-mode .recipe-info { background: var(--color-bg); }
body.light-mode .recipe-title { color: #2a0d0d; }
body.light-mode .recipe-tag { color: var(--color-gold); }
body.light-mode .recipes-section { background-color: var(--color-bg-2); }


/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor,
#cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

#cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
}

#cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(247, 183, 49, 0.4);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

#cursor-follower.active {
    width: 65px;
    height: 65px;
    background-color: rgba(247, 183, 49, 0.1);
}


/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-red);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo {
    height: 14vw;
    max-height: 180px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.35));
}


/* ====================================================
   NAVBAR (REFINED EDITORIAL)
==================================================== */
/* ── Navbar ────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 4, 2, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 6vw;
    border-bottom: 1px solid rgba(247, 183, 49, 0.1);
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.navbar-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}

.nav-links-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.nav-links a {
    color: #f5ede0;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: #f7b731;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #f7b731;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

#theme-toggle {
    background: transparent;
    border: 1px solid rgba(247, 183, 49, 0.3);
    color: #f7b731;
    padding: 0.6rem 1.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#theme-toggle:hover {
    background: #f7b731;
    color: #0d0402;
    transform: translateY(-2px);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10002;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #f7b731;
    transition: all 0.3s ease;
}

body.light-mode .menu-toggle span {
    background-color: #1a0808;
}

/* ── Mobile Overlay (hidden by default) ── */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0d0402;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 10001;
    padding: 2rem;
    transition: opacity 0.4s ease;
}

body.light-mode .nav-mobile-overlay {
    background: #f1ebd9;
}

.nav-mobile-overlay a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: #f5ede0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

body.light-mode .nav-mobile-overlay a {
    color: #1a0808;
}

.nav-mobile-overlay a:hover {
    color: #f7b731;
}

/* When JS adds .active → show the overlay */
.nav-mobile-overlay.active {
    display: flex;
}

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

    /* Hide the desktop nav-group links on mobile */
    .nav-group {
        display: none !important;
    }

    /* Re-position logo to the left on mobile */
    .nav-logo {
        position: relative;
        left: 0;
        transform: none;
    }

    /* Cross animation */
    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* ============================================================
   SPICE DUST CANVAS
   ============================================================ */
#dust-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 80px;
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    padding: 2rem 6vw 3rem;
    min-height: calc(100vh - 80px);
    position: relative;
}

/* Giant headline — top */
.hero-text-top {
    align-self: center;
    padding-top: 2rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(7rem, 18vw, 22rem);
    line-height: 0.85;
    color: var(--color-cream);
    letter-spacing: -2px;
    text-transform: uppercase;
    margin: 0;
}

.hero-line { display: block; }

.hero-line--accent {
    color: var(--color-gold);
    /* text with stroke for empty look */
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--color-gold);
}

/* Product — center */
.hero-product {
    position: absolute;
    top: 50%;
    right: 5vw;
    transform: translateY(-50%);
    width: clamp(280px, 30vw, 480px);
    z-index: 5;
}

.hero-jar {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.7));
}

.hero-product-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(247,183,49,0.25) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

/* Tagline + CTA — bottom */
.hero-text-bottom {
    align-self: end;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2rem;
    max-width: 420px;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-muted);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: fit-content;
    border: 2px solid transparent;
}
.hero-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(247,183,49,0.3);
}

.hero-cta--outline {
    background: transparent;
    border: 2px solid var(--color-cream);
    color: var(--color-cream);
}
.hero-cta--outline:hover {
    background: var(--color-cream);
    color: var(--color-bg);
    box-shadow: 0 12px 30px rgba(245,237,224,0.15);
}

.cta-arrow { font-size: 1.1rem; }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint-line {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--color-gold);
}
.scroll-hint-text {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   SHARED SECTION ELEMENT
   ============================================================ */
.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--color-gold);
}
.section-eyebrow--light { color: var(--color-gold); }


/* ============================================================
   STATEMENT SECTIONS (Split grid)
   ============================================================ */
.statement-section {
    background-color: var(--color-bg-3);
    padding: 8rem 6vw;
    overflow: hidden;
}

.statement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.statement-section--reverse .statement-grid {
    direction: rtl;
}
.statement-section--reverse .statement-grid > * {
    direction: ltr;
}

.statement-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 0.9;
    color: var(--color-cream);
    letter-spacing: -1px;
}
.statement-headline em {
    font-style: normal;
    color: var(--color-gold);
}

.statement-col--image { position: relative; }

.statement-img-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 520px;
}
.statement-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--color-bg-4);
    transition: transform 0.8s ease;
}
.statement-img-wrapper:hover .statement-img { transform: scale(1.04); }

.statement-copy {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-muted);
    max-width: 420px;
}


/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
    overflow: hidden;
    background: transparent;
    padding: 0;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    background: var(--color-gold);
    padding: 1.4rem 0;
    transform: rotate(-1.5deg) scaleX(1.06);
    margin: 5rem 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.marquee-content {
    display: inline-block;
    animation: marquee 22s linear infinite;
}

.marquee-text {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-bg);
    letter-spacing: 3px;
    padding: 0 1rem;
}

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


/* ============================================================
   FULL-BLEED SECTION
   ============================================================ */
.fullbleed-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 8vw;
    overflow: hidden;
}

.fullbleed-bg {
    position: absolute;
    inset: 0;
    background:
        url('imgs/chili-product-shoot.png') right center / contain no-repeat,
        var(--color-bg-4);
    background-size: 50%, cover;
}

.fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(13,4,2,0.92) 0%,
        rgba(13,4,2,0.6) 60%,
        rgba(13,4,2,0.1) 100%
    );
}

.fullbleed-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.fullbleed-headline {
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 12rem);
    line-height: 0.88;
    color: var(--color-cream);
    letter-spacing: -2px;
    margin-bottom: 3rem;
}
.fullbleed-headline em {
    font-style: normal;
    color: var(--color-gold);
}


/* ============================================================
   ORIGINS / MAP SECTION
   ============================================================ */
.origins-section {
    background-color: var(--color-bg-2);
    padding: 8rem 6vw;
}

.origins-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.origins-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 8rem);
    line-height: 0.9;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}
.origins-headline em { font-style: normal; color: var(--color-gold); }

.origins-copy {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-muted);
    max-width: 380px;
}

/* Map */
.map-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.india-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    filter: invert(1) brightness(2);
    z-index: 1;
    pointer-events: none;
}

.map-point {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    border-radius: 50%;
    cursor: none;
    z-index: 10;
}

.point-unjha  { top: 46%; left: 15%; }
.point-guntur { top: 71%; left: 42%; }
.point-salem  { top: 87%; left: 34%; }

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(4.5); opacity: 0; }
}

.map-point .tooltip {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    font-weight: 700;
    font-size: 0.78rem;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 20;
}
.map-point:hover .tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }


/* ============================================================
   RECIPES SECTION
   ============================================================ */
.recipes-section {
    background-color: var(--color-bg);
    padding: 8rem 6vw;
}

.recipes-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.recipes-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 0.9;
    color: var(--color-cream);
}
.recipes-headline em { font-style: normal; color: var(--color-gold); }

.view-all-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 2px;
    cursor: none;
    transition: opacity 0.3s;
    margin-bottom: 0.8rem;
}
.view-all-link:hover { opacity: 0.7; }

/* Recipe grid */
.recipe-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    grid-template-rows: auto;
    gap: 1.5px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.recipe-card {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: var(--color-bg-4);
}

.recipe-card--featured {
    grid-row: span 1;
}

.recipe-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.recipe-card--featured .recipe-img-wrap { aspect-ratio: 2/3; }

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

.recipe-card:hover .recipe-img-wrap img { transform: scale(1.07); }

.recipe-info {
    padding: 1.5rem 1.8rem;
    background: var(--color-bg-3);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.recipe-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.recipe-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-cream);
    letter-spacing: 0.5px;
}


/* ============================================================
   PRODUCTS / CAROUSEL SECTION
   ============================================================ */
.products-section {
    background-color: var(--color-bg-3);
    padding: 8rem 0 8rem;
}


.products-header {
    padding: 0 6vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.products-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 0.9;
    color: var(--color-cream);
}
.products-headline em { font-style: normal; color: var(--color-gold); }

.product-filters {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: rgba(245,237,224,0.55);
    border: 1px solid rgba(245,237,224,0.15);
    padding: 0.55rem 1.3rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

/* Slider */
.slider-wrapper {
    position: relative;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-bg);
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: none;
    z-index: 20;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slider-left  { left: -26px; }
.slider-right { right: -26px; }

.carousel-container {
    display: flex;
    gap: 2rem;
    padding: 2rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    perspective: 1000px;
    scrollbar-width: none;
}
.carousel-container::-webkit-scrollbar { display: none; }

/* Product Cards */
.product-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 270px;
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transform-style: preserve-3d;
    cursor: none;
}

.card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff, #e8e3e0);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.15);
    transform: translateZ(0px);
    transition: box-shadow 0.3s ease;
}
.product-card:hover .card-bg { box-shadow: 0 30px 50px rgba(0,0,0,0.6); }

.tilt-img {
    position: absolute;
    bottom: 105px;
    height: 255px;
    width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.35));
    transform: translateZ(60px) scale(var(--img-scale, 1.2));
    transition: transform 0.3s ease;
    pointer-events: none;
}
.product-card:hover .tilt-img {
    transform: translateZ(85px) scale(calc(var(--img-scale, 1) + 0.06));
}

.card-info {
    position: relative;
    z-index: 5;
    text-align: center;
    padding-bottom: 20px;
    transform: translateZ(70px);
}

.tilt-title {
    color: #5a5350;
    font-size: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.card-shine {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 50%);
    z-index: 2;
    transform: translateZ(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.product-card:hover .card-shine { opacity: 1; }

.product-badge {
    position: absolute;
    top: 18px;
    left: -8px;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 4px 12px;
    font-weight: 900;
    font-size: 0.72rem;
    text-transform: uppercase;
    transform: translateZ(50px);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 6;
    letter-spacing: 0.5px;
}
.product-badge.premium { background: var(--color-bg-4); color: var(--color-gold); }


/* ====================================================
   FOOTER (EDITORIAL GRID)
==================================================== */
.site-footer {
    background-color: #0d0402;
    padding: 8rem 6vw 3rem;
    border-top: 1px solid rgba(247, 183, 49, 0.05);
    color: #f5ede0;
}

body.light-mode .site-footer {
    background-color: #ede5d2;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #1a0808;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    align-self: flex-start;
}

.footer-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(245, 237, 224, 0.5);
    max-width: 320px;
}

body.light-mode .footer-desc {
    color: rgba(42, 13, 13, 0.5);
}

.footer-col-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f7b731;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 237, 224, 0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

body.light-mode .footer-links a {
    color: rgba(42, 13, 13, 0.7);
}

.footer-links a:hover {
    color: #f7b731;
}

.footer-contact-info {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(245, 237, 224, 0.6);
}

body.light-mode .footer-contact-info {
    color: rgba(42, 13, 13, 0.6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(247, 183, 49, 0.08);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(245, 237, 224, 0.3);
    text-transform: uppercase;
}

body.light-mode .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.08);
    color: rgba(42, 13, 13, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f7b731;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-desc { max-width: 100%; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero-product { width: clamp(220px, 28vw, 380px); }
    .statement-grid { gap: 3rem; }
    .origins-inner { gap: 3rem; }
}

@media (max-width: 900px) {
    body { cursor: auto; }
    #cursor, #cursor-follower { display: none; }

    .hero-product {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 60%;
        margin: 2rem auto;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 5vw;
    }

    .hero-headline { font-size: clamp(5rem, 18vw, 10rem); }

    .hero-text-bottom {
        align-items: center;
        text-align: center;
        max-width: none;
    }

    .statement-grid,
    .origins-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .statement-section--reverse .statement-grid { direction: ltr; }

    .statement-img-wrapper { max-height: 380px; aspect-ratio: 4/3; }

    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .recipe-card--featured { grid-row: span 1; }

    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-nav { gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .products-header { flex-direction: column; align-items: flex-start; }
    .recipes-header { flex-direction: column; align-items: flex-start; }

    .fullbleed-bg {
        background: var(--color-bg-4);
    }

    .menu-toggle { display: flex; }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(13, 4, 2, 0.97);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        z-index: 10000;
        border-left: 1px solid var(--color-border);
        transition: right 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        font-size: 1.3rem;
        margin: 0.7rem 0;
        letter-spacing: 2px;
    }

    .nav-cta { margin: 1rem 0 0; }

    #theme-toggle { margin: 1rem 0 0; }
}

@media (max-width: 600px) {
    .hero-headline { font-size: 17vw; }
    .statement-headline { font-size: clamp(3rem, 14vw, 5rem); }
    .fullbleed-headline { font-size: clamp(4rem, 14vw, 7rem); }
    .origins-headline { font-size: clamp(3.5rem, 14vw, 6rem); }
    .recipes-headline { font-size: clamp(3.5rem, 14vw, 6rem); }
    .products-headline { font-size: clamp(3.5rem, 14vw, 6rem); }

    .statement-section { padding: 5rem 5vw; }
    .origins-section   { padding: 5rem 5vw; }
    .recipes-section   { padding: 5rem 5vw; }
    .fullbleed-section { padding: 5rem 5vw; }

    .footer-nav { flex-direction: column; gap: 2rem; }

    .product-card { width: 80vw; }
    .slider-btn   { display: none; }

    .marquee-text { font-size: 1.6rem; }
}


/* ============================================================
   PREMIUM ANIMATIONS — Page Transition Overlay
   ============================================================ */

.page-transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    display: flex;
}

.page-transition-overlay .pt-panel {
    flex: 1;
    background: #0d0402;
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ============================================================
   PREMIUM ANIMATIONS — Magnetic Button Base
   ============================================================ */
.magnetic {
    display: inline-block;
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ============================================================
   PREMIUM ANIMATIONS — Text Mask Reveal
   ============================================================ */
.text-mask {
    overflow: hidden;
    display: block;
}

.text-mask .reveal-inner {
    display: block;
    transform: translateY(105%);
    will-change: transform;
}