/* ═══════════════════════════════════════════
   CAFÉ AURA — REDESIGN
   Luxury dark editorial aesthetic
   Grid-constrained layout
   ═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    --c-bg: #0a0703;
    --c-surface: #120c06;
    --c-surface-2: #1a1007;
    --c-border: rgba(200, 130, 50, 0.16);
    --c-border-h: rgba(200, 130, 50, 0.45);
    --c-gold: #d48840;
    --c-gold-l: #eda055;
    --c-gold-xl: #f5c07a;
    --c-cream: #f5ead8;
    /* brighter cream */
    --c-cream-d: #c8aa88;
    /* lifted from #b09878 */
    --c-muted: #8a6e52;
    /* lifted from #6a5540 */
    --c-white: #ffffff;
    --c-green: #00ff88;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 32px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 50px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 8px 40px rgba(212, 136, 64, 0.22);
    --glow-gold: 0 0 80px rgba(212, 136, 64, 0.2);

    /* Layout */
    --container: 1200px;
    --container-pad: 0 40px;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

/* base up from 16 */
body {
    font-family: 'Jost', sans-serif;
    background: var(--c-bg);
    color: var(--c-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.65;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--c-gold);
    border-radius: 3px;
}

/* ─── GRAIN ─── */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ─── CONTAINER ─── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--container-pad);
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--c-gold);
    color: var(--c-bg);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    transition: background 0.28s, transform 0.22s, box-shadow 0.28s;
}

.btn-primary:hover {
    background: var(--c-gold-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 136, 64, 0.45);
}

.btn-primary.btn-sm {
    padding: 11px 24px;
    font-size: 14px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border: 1.5px solid var(--c-gold);
    color: var(--c-gold);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    border-radius: var(--r-sm);
    transition: all 0.28s;
}

.btn-outline:hover {
    background: var(--c-gold);
    color: var(--c-bg);
    transform: translateY(-2px);
}

/* ─── SECTION PRIMITIVES ─── */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1.5px;
    background: var(--c-gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 600;
    color: var(--c-white);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title.left {
    text-align: left;
}

.section-sub {
    font-size: 16.5px;
    color: var(--c-cream-d);
    line-height: 1.8;
    max-width: 520px;
}

.section-head.centered {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-head.centered .section-label::before {
    display: none;
}

.section-head.centered .section-label {
    padding-left: 0;
}

.section-head.centered .section-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--c-gold);
    margin: 7px auto 0;
}

.section-foot {
    text-align: center;
    margin-top: 50px;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════
   NAVBAR
   ════════════════════════════════ */
/* ════════════════════════════════
   NAVBAR
   ════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0;
    transition: background 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
    background: rgba(10, 7, 3, 0.95);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 1px 0 var(--c-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--c-gold-l);
    letter-spacing: 0.07em;
    margin-right: auto;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-logo svg {
    color: var(--c-gold);
    flex-shrink: 0;
}

.nav-logo:hover {
    color: var(--c-gold-xl);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0 auto;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-cream-d);
    letter-spacing: 0.04em;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--c-gold);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--c-gold-l);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-mobile-actions {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-cream-d);
    font-size: 16px;
    transition: color 0.25s, background 0.25s;
}

.nav-icon-btn:hover {
    color: var(--c-gold);
    background: rgba(212, 136, 64, 0.09);
}

.btn-nav-login {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-cream-d);
    padding: 9px 14px;
    transition: color 0.25s;
}

.btn-nav-login:hover {
    color: var(--c-gold);
}

.btn-nav-signup {
    padding: 10px 22px;
    border: 1px solid var(--c-border-h);
    color: var(--c-gold);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--r-sm);
    transition: all 0.28s;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.btn-nav-signup:hover {
    background: var(--c-gold);
    color: var(--c-bg);
    border-color: var(--c-gold);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 6px;
    margin-left: 10px;
    border-radius: 10px;
    flex-shrink: 0;
    transition: background 0.25s;
}

.hamburger:hover {
    background: rgba(212, 136, 64, 0.1);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-cream);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.68, -.6, .32, 1.6), opacity 0.3s, width 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile nav overlay ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 76px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--c-bg);
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 75% 40%, rgba(140, 70, 20, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 15% 70%, rgba(80, 35, 8, 0.28) 0%, transparent 65%);
    pointer-events: none;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 129, 58, 0.07);
    pointer-events: none;
}

.r1 {
    width: 700px;
    height: 700px;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.r2 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    align-items: center;
    gap: 0 48px;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Side meta column */
.hero-side-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    height: 380px;
    justify-content: space-between;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-gold);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-gold);
    flex-shrink: 0;
}

.hero-side-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-side-scroll span {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.side-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--c-gold));
    animation: linePulse 2.4s ease-in-out infinite;
}

@keyframes linePulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Hero text */
.hero-text {
    padding: 20px 0;
    animation: fadeSlideUp 0.9s ease both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--c-gold);
    flex-shrink: 0;
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(54px, 6.5vw, 86px);
    font-weight: 600;
    line-height: 1.0;
    color: var(--c-white);
    letter-spacing: -0.03em;
    margin-bottom: 26px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--c-gold-l);
}

.hero-caption {
    font-size: 17px;
    color: var(--c-cream-d);
    line-height: 1.82;
    max-width: 400px;
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 46px;
}

.hero-text-link {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 500;
    color: var(--c-cream-d);
    transition: color 0.25s, gap 0.25s;
}

.hero-text-link:hover {
    color: var(--c-gold);
    gap: 13px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.proof-avatars {
    display: flex;
}

.proof-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--c-bg);
    margin-left: -8px;
    object-fit: cover;
    flex-shrink: 0;
}

.proof-avatars img:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.proof-stars {
    color: var(--c-gold);
    font-size: 13px;
    letter-spacing: 2px;
}

.proof-text p {
    font-size: 14px;
    color: var(--c-cream-d);
}

.proof-text strong {
    color: var(--c-cream);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeSlideUp 1s 0.2s ease both;
}

.hv-frame {
    position: relative;
    width: 420px;
    height: 480px;
    flex-shrink: 0;
}

.hv-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, rgba(200, 129, 58, 0.22) 0%, transparent 65%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

.hv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-xl);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md), var(--glow-gold);
}

.hv-arc {
    position: absolute;
    inset: -6px;
    border-radius: calc(var(--r-xl) + 6px);
    border: 1px solid rgba(200, 129, 58, 0.2);
    z-index: 2;
    pointer-events: none;
}

/* Float cards */
.hv-float-card {
    position: absolute;
    background: rgba(25, 15, 6, 0.88);
    border: 1px solid var(--c-border-h);
    border-radius: var(--r-md);
    padding: 14px 18px;
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.hv-card-top {
    top: 40px;
    left: -60px;
    animation: floatCard 5s ease-in-out infinite;
}

.hv-card-bottom {
    bottom: 60px;
    right: -50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    animation: floatCard 6s 1s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fc-emoji {
    font-size: 22px;
}

.hv-float-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hv-float-card strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--c-white);
}

.hv-float-card span {
    font-size: 11.5px;
    color: var(--c-cream-d);
}

.fc-stars {
    font-size: 13px;
    color: var(--c-gold);
    letter-spacing: 1px;
}

.floating-bean {
    position: absolute;
    font-size: 20px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    pointer-events: none;
    animation: beanFloat 7s ease-in-out infinite;
}

.b1 {
    top: 6%;
    left: 8%;
    animation-delay: 0s;
}

.b2 {
    bottom: 14%;
    left: 3%;
    animation-delay: 3s;
}

@keyframes beanFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(25deg);
    }
}

/* Hero strip */
.hero-strip {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.hs-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(25, 14, 5, 0.7);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 20px 28px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

.hs-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.hs-products {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.hs-product {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 22px;
    cursor: pointer;
    transition: opacity 0.25s;
}

.hs-product:hover {
    opacity: 0.8;
}

.hs-product img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.hsp-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.hsp-info span {
    font-size: 13px;
    color: var(--c-cream-d);
}

.hsp-info strong {
    font-size: 15px;
    color: var(--c-cream);
    font-weight: 600;
}

.hsp-stars {
    font-size: 13px;
    color: var(--c-gold);
    white-space: nowrap;
}

.hs-sep {
    width: 1px;
    height: 38px;
    background: var(--c-border);
    flex-shrink: 0;
}

.hs-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-gold);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hs-all:hover {
    color: var(--c-gold-l);
}

/* ════════════════════════════════
   MARQUEE
   ════════════════════════════════ */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    background: var(--c-surface);
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    gap: 36px;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--c-cream-d);
    letter-spacing: 0.04em;
}

.marquee-track .mx {
    color: var(--c-gold);
    font-size: 10px;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ════════════════════════════════
   COFFEES
   ════════════════════════════════ */
.coffees-section {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface) 100%);
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.coffee-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(.22, .61, .36, 1),
        border-color 0.38s,
        box-shadow 0.38s;
}

.coffee-card:hover {
    transform: translateY(-10px);
    border-color: var(--c-border-h);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

.cc-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.cc-img-wrap img {
    height: 100%;
    transition: transform 0.55s cubic-bezier(.22, .61, .36, 1);
}

.coffee-card:hover .cc-img-wrap img {
    transform: scale(1.08);
}

.cc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--c-gold);
    color: var(--c-bg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

.cc-badge-new {
    background: #2ecc71;
}

.cc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 8, 4, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
}

.coffee-card:hover .cc-overlay {
    opacity: 1;
}

.cc-overlay .btn-primary {
    transform: translateY(8px);
    transition: transform 0.35s, background 0.28s, box-shadow 0.28s;
}

.coffee-card:hover .cc-overlay .btn-primary {
    transform: translateY(0);
}

.cc-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc-row h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--c-cream);
    letter-spacing: 0.01em;
}

.cc-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--c-gold-l);
}

.cc-stars {
    font-size: 13.5px;
    color: var(--c-gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cc-stars i {
    font-size: 12px;
}

.cc-wish {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    font-size: 15px;
    transition: color 0.25s, background 0.25s;
}

.cc-wish:hover,
.cc-wish.wished {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* ════════════════════════════════
   STORY
   ════════════════════════════════ */
.story-section {
    background: radial-gradient(ellipse 60% 70% at 90% 50%, rgba(100, 48, 12, 0.25) 0%, transparent 70%),
        var(--c-surface);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-imgs {
    position: relative;
}

.si-main {
    width: 100%;
    height: 520px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md), var(--glow-gold);
}

.si-small {
    position: absolute;
    width: 175px;
    height: 175px;
    object-fit: cover;
    border-radius: var(--r-md);
    bottom: -30px;
    right: -30px;
    border: 4px solid var(--c-surface);
    box-shadow: var(--shadow-md);
}

.si-badge {
    position: absolute;
    top: 30px;
    left: -22px;
    background: var(--c-gold);
    color: var(--c-bg);
    border-radius: var(--r-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 28px rgba(200, 129, 58, 0.45);
    line-height: 1;
}

.si-badge span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.si-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    margin-top: 2px;
}

.story-text {
    padding: 20px 0;
}

.story-tagline-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    color: var(--c-gold);
    margin-bottom: 26px;
    font-weight: 400;
}

.story-body {
    font-size: 16px;
    color: var(--c-cream-d);
    line-height: 1.88;
    margin-bottom: 18px;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 32px 0 36px;
    padding: 28px;
    background: rgba(212, 136, 64, 0.07);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
}

.sf {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sf-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 136, 64, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    font-size: 17px;
    flex-shrink: 0;
}

.sf div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sf strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-cream);
}

.sf span {
    font-size: 13.5px;
    color: var(--c-cream-d);
}

/* ════════════════════════════════
   STATS BAR
   ════════════════════════════════ */
.stats-bar {
    background: var(--c-surface-2);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 52px 0;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 600;
    color: var(--c-gold-l);
    line-height: 1;
}

.stat span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.stat-line {
    width: 1px;
    height: 56px;
    background: var(--c-border);
    flex-shrink: 0;
}

/* ════════════════════════════════
   FARM MOSAIC
   ════════════════════════════════ */
.farm-section {
    background: var(--c-bg);
}

.farm-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.fm {
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.38s cubic-bezier(.22, .61, .36, 1);
}

.fm:hover {
    transform: scale(1.025);
    z-index: 2;
}

.fm img {
    height: 100%;
    transition: transform 0.5s;
}

.fm:hover img {
    transform: scale(1.07);
}

.fm-tall {
    grid-row: 1 / 3;
}

.fm-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(12, 8, 4, 0.85), transparent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-cream-d);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
}

.fm:hover .fm-cap {
    opacity: 1;
    transform: translateY(0);
}

.fm-neon {
    position: relative;
}

.fm-neon-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 8, 4, 0.5);
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--c-green);
    text-shadow: 0 0 14px var(--c-green), 0 0 36px rgba(0, 255, 136, 0.5);
}

/* ════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════ */
.testi-section {
    background: radial-gradient(ellipse 70% 70% at 20% 50%, rgba(80, 35, 8, 0.28) 0%, transparent 65%),
        var(--c-surface);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-border-h);
}

.testi-featured {
    border-color: rgba(200, 129, 58, 0.32);
    background: rgba(30, 17, 6, 0.95);
    box-shadow: var(--shadow-gold);
}

.tc-big-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(200, 129, 58, 0.18);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
}

.tc-stars {
    color: var(--c-gold);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18.5px;
    font-style: italic;
    color: var(--c-cream-d);
    line-height: 1.75;
    margin-bottom: 26px;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--c-border-h);
}

.tc-author div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tc-author strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-cream);
}

.tc-author em {
    font-style: normal;
    font-size: 13px;
    color: var(--c-muted);
}

/* ════════════════════════════════
   FAQ
   ════════════════════════════════ */
.faq-section {
    background: var(--c-bg);
}

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-img-wrap {
    margin-top: 36px;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 280px;
}

.faq-img-wrap img {
    height: 100%;
    border-radius: var(--r-lg);
}

.faq-right {
    padding-top: 8px;
}

.faq-item {
    border-bottom: 1px solid var(--c-border);
    transition: border-color 0.3s;
}

.faq-item:first-child {
    border-top: 1px solid var(--c-border);
}

.faq-item.open {
    border-color: rgba(200, 129, 58, 0.3);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    transition: color 0.25s;
    gap: 20px;
}

.faq-q:hover {
    color: var(--c-gold-l);
}

.faq-item.open .faq-q {
    color: var(--c-cream);
}

.faq-q span {
    font-size: 16px;
    font-weight: 500;
    color: inherit;
}

.faq-q i {
    color: var(--c-gold);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.35s;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease;
}

.faq-item.open .faq-a {
    max-height: 180px;
}

.faq-a p {
    padding-bottom: 24px;
    font-size: 15.5px;
    color: var(--c-cream-d);
    line-height: 1.85;
}

/* ════════════════════════════════
   NEWSLETTER
   ════════════════════════════════ */
.nl-section {
    padding: 60px 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.nl-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg,
            rgba(200, 129, 58, 0.09) 0%,
            rgba(200, 129, 58, 0.04) 100%);
    border: 1px solid var(--c-border-h);
    border-radius: var(--r-xl);
    padding: 48px 52px;
    position: relative;
    overflow: hidden;
}

.nl-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 129, 58, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.nl-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: 12px;
    line-height: 1.15;
}

.nl-left p {
    font-size: 14.5px;
    color: var(--c-cream-d);
    line-height: 1.72;
}

.nl-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.nl-form input {
    flex: 1;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border-h);
    border-radius: var(--r-sm);
    color: var(--c-cream);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.nl-form input::placeholder {
    color: var(--c-muted);
}

.nl-form input:focus {
    border-color: var(--c-gold);
    background: rgba(255, 255, 255, 0.09);
}

.nl-note {
    font-size: 12px;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nl-note i {
    font-size: 10px;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: 72px 0 0;
}

.footer-logo {
    margin-bottom: 18px;
    display: inline-flex;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--c-border);
}

.footer-brand p {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 26px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    font-size: 15px;
    transition: all 0.28s;
}

.footer-socials a:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-bg);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--c-cream);
    margin-bottom: 22px;
}

.footer-col ul li {
    margin-bottom: 13px;
}

.footer-col ul li a {
    font-size: 15px;
    color: var(--c-muted);
    transition: color 0.25s;
}

.footer-col ul li a:hover {
    color: var(--c-gold);
}

.fcl li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 13px;
}

.fcl li i {
    color: var(--c-gold);
    margin-top: 3px;
    font-size: 13px;
    flex-shrink: 0;
}

.fcl li span {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.6;
}

.footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-base p {
    font-size: 14px;
    color: var(--c-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--c-muted);
    transition: color 0.25s;
}

.footer-legal a:hover {
    color: var(--c-gold);
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */

/* ── 1100px ── */
@media (max-width: 1100px) {
    :root {
        --container-pad: 0 30px;
    }

    .hero-grid {
        grid-template-columns: 50px 1fr 1fr;
        gap: 0 32px;
    }

    .hv-frame {
        width: 360px;
        height: 410px;
    }

    .hv-card-top {
        left: -20px;
    }

    .hv-card-bottom {
        right: -10px;
    }

    .story-grid {
        gap: 50px;
    }

    .faq-layout {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 32px;
    }

    .nav-links {
        gap: 28px;
    }
}

/* ── 900px — tablet ── */
@media (max-width: 900px) {
    :root {
        --container-pad: 0 24px;
    }

    /* nav */
    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        right: 0;
        width: 300px;
        height: calc(100vh - 76px);
        background: rgba(12, 8, 4, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--c-border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 36px 32px 40px;
        transform: translateX(110%);
        transition: transform 0.4s cubic-bezier(.77, 0, .175, 1);
        z-index: 195;
        margin: 0;
        overflow-y: auto;
    }

    .navbar.menu-open .nav-links {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--c-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        font-size: 18px;
        font-weight: 500;
        padding: 18px 0;
        color: var(--c-cream);
        letter-spacing: 0.04em;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--c-gold-l);
    }

    /* mobile-only action buttons inside menu */
    .nav-mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        padding: 28px 0 0;
        width: 100%;
        border-top: none !important;
    }

    .mobile-signup {
        display: block;
        text-align: center;
        padding: 13px 0;
        background: var(--c-gold);
        color: var(--c-bg);
        font-size: 15px;
        font-weight: 600;
        border-radius: var(--r-sm);
        letter-spacing: 0.04em;
    }

    .mobile-login {
        display: block;
        text-align: center;
        padding: 12px 0;
        border: 1px solid var(--c-border-h);
        color: var(--c-gold);
        font-size: 15px;
        font-weight: 500;
        border-radius: var(--r-sm);
    }

    /* hero */
    .hero-side-meta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        padding-top: 70px;
        gap: 0 28px;
    }

    .hv-frame {
        width: 280px;
        height: 320px;
    }

    .hv-card-top {
        left: -10px;
        top: 20px;
    }

    .hv-card-bottom {
        right: -5px;
        bottom: 40px;
    }

    /* sections */
    .coffee-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .si-small {
        width: 140px;
        height: 140px;
        right: -10px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-left {
        position: static;
    }

    .faq-img-wrap {
        height: 230px;
    }

    .farm-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
    }

    .fm-tall {
        grid-row: unset;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .nl-card {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .stats-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .stat-line {
        display: none;
    }

    .hs-products {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hs-sep {
        display: none;
    }

    .hs-product {
        flex: none;
        width: calc(50% - 4px);
        padding: 0 10px;
    }
}

/* ── 640px — mobile ── */
@media (max-width: 640px) {
    :root {
        --container-pad: 0 20px;
    }

    html {
        font-size: 16px;
    }

    .section {
        padding: 72px 0;
    }

    /* hero collapses to single column */
    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 50px;
        padding-bottom: 20px;
        gap: 36px;
    }

    .hero-visual {
        order: -1;
        justify-content: flex-start;
    }

    .hv-frame {
        width: 100%;
        height: 260px;
    }

    .hv-img {
        border-radius: var(--r-lg);
    }

    .hv-card-top {
        top: 14px;
        left: 10px;
    }

    .hv-card-bottom {
        bottom: 14px;
        right: 10px;
    }

    .hero-h1 {
        font-size: clamp(42px, 11vw, 60px);
    }

    .hero-caption {
        font-size: 16px;
    }

    .hero-btns {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-strip {
        margin-top: 10px;
    }

    .hs-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px 20px;
    }

    .hs-products {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hs-product {
        width: 100%;
        padding: 0;
    }

    .coffee-grid {
        grid-template-columns: 1fr;
    }

    .cc-img-wrap {
        height: 200px;
    }

    .farm-mosaic {
        grid-template-columns: 1fr;
    }

    .fm-neon-text {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-base {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .nl-form {
        flex-direction: column;
    }

    .stats-inner {
        gap: 24px;
    }

    .stat strong {
        font-size: 38px;
    }

    .marquee-track span {
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(30px, 8vw, 44px);
    }
}

/* ── 400px — small mobile ── */
@media (max-width: 400px) {
    :root {
        --container-pad: 0 16px;
    }

    .nav-links {
        width: 100%;
    }

    .hero-h1 {
        font-size: 38px;
    }
}