.logo-img {
            width: 38px ;
            height: 38px ;
            max-width: 38px ;
            max-height: 38px ;
            flex-shrink: 0 ;
            object-fit: contain ;
            display: block ;
        }

        body {
            background-color: #080808 ;
            color: #F3EFE0 ;
        }

        .editorial-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        section.editorial-section {
            padding: 5rem 0;
            position: relative;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .section-eyebrow {
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--gold);
        }

        .section-headline {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 900;
            line-height: 1.12;
            letter-spacing: -0.5px;
            color: #FFFFFF;
            margin-bottom: 1.25rem;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: #AAAAAA;
            font-weight: 400;
            max-width: 800px;
            line-height: 1.65;
        }

        .hero-badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(194, 145, 46, 0.15);
            border: 1px solid rgba(194, 145, 46, 0.5);
            color: var(--gold);
            padding: 9px 20px;
            border-radius: 30px;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        }

        .hero-title-main {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(3rem, 5.5vw, 4.5rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -1px;
            margin-bottom: 1.25rem;
            background: linear-gradient(135deg, #FFFFFF 30%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc-main {
            font-size: 1.2rem;
            color: #D5D5D5;
            line-height: 1.65;
            margin-bottom: 2rem;
        }

        .hero-metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2.25rem;
        }

        .hero-metric-card {
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 12px;
            padding: 1rem 1.2rem;
        }

        .hero-metric-val {
            font-family: 'Outfit', sans-serif;
            font-size: 1.35rem;
            font-weight: 900;
            color: var(--gold);
            margin-bottom: 2px;
        }

        .hero-metric-lbl {
            font-size: 0.78rem;
            color: #AAAAAA;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Grand Stage Card */
        .hero-stage-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-stage-glow {
            position: absolute;
            width: 460px;
            height: 460px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            filter: blur(24px);
        }

        .hero-stage-card {
            position: relative;
            z-index: 2;
            border-radius: 24px;
            overflow: hidden;
            border: 1.5px solid rgba(212, 175, 55, 0.55);
            background: #0a0a0a;
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.95), 0 0 45px rgba(212, 175, 55, 0.22);
            width: 100%;
            max-width: 540px;
        }

        .hero-stage-card img {
            width: 100%;
            height: 380px;
            display: block;
            object-fit: cover;
            object-position: center;
        }

        .hero-stage-meta {
            background: linear-gradient(180deg, rgba(14, 14, 14, 0.98) 0%, #080808 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.35);
            padding: 1.2rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .meta-col span {
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #999999;
            display: block;
            margin-bottom: 2px;
        }

        .meta-col strong {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--gold);
        }

        /* Micro-Lot Showcase Card */
        .microlot-showcase-card {
            background: #0d0d0d;
            border: 1.5px solid rgba(212, 175, 55, 0.4);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
            margin-top: 2rem;
        }

        .microlot-grid-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }

        @media (max-width: 900px) {
            .microlot-grid-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .microlot-image-wrap {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: #111;
        }

        .microlot-image-wrap img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }

        .microlot-specs-table {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.85rem;
            background: #141414;
            border: 1px solid rgba(212, 175, 55, 0.25);
            padding: 1.25rem;
            border-radius: 14px;
            margin: 1.25rem 0;
        }

        .spec-cell-label {
            font-size: 0.72rem;
            font-weight: 800;
            color: #888888;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .spec-cell-value {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 800;
            color: #FFFFFF;
        }

        .cupping-pill {
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.4);
            color: var(--gold);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-right: 6px;
            margin-bottom: 6px;
        }

        /* 4 Roast Curve Cards Grid */
        .roast-curves-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            margin-top: 2.5rem;
        }

        @media (max-width: 1024px) {
            .roast-curves-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .roast-curves-grid {
                grid-template-columns: 1fr;
            }
        }

        .curve-card {
            background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .curve-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.8);
        }

        .curve-badge {
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
            display: block;
        }

        .curve-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 0.75rem;
        }

        .curve-body {
            font-size: 0.88rem;
            color: #AAAAAA;
            line-height: 1.55;
        }

        /* ENCYCLOPEDIC LUXURY MODULES STACK (FULL-WIDTH ALTERNATING LAYOUT) */
        .encyclopedia-stack {
            display: flex;
            flex-direction: column;
            gap: 3.5rem;
            margin-top: 3.5rem;
        }

        .encyclopedia-module {
            background: linear-gradient(165deg, rgba(22, 22, 22, 0.98) 0%, rgba(12, 12, 12, 0.99) 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 24px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
        }

        .encyclopedia-module:nth-child(even) {
            grid-template-columns: 1.15fr 1fr;
        }

        .encyclopedia-module:nth-child(even) .module-image-col {
            order: 2;
        }

        @media (max-width: 900px) {
            .encyclopedia-module, .encyclopedia-module:nth-child(even) {
                grid-template-columns: 1fr;
            }
            .encyclopedia-module:nth-child(even) .module-image-col {
                order: 1;
            }
        }

        .encyclopedia-module:hover {
            border-color: var(--gold);
            transform: translateY(-6px);
            box-shadow: 0 30px 65px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.25);
        }

        .module-image-col {
            position: relative;
            width: 100%;
            min-height: 400px;
            overflow: hidden;
            background: #111;
        }

        .module-image-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            filter: brightness(0.9) contrast(1.05);
        }

        .encyclopedia-module:hover .module-image-col img {
            transform: scale(1.06);
        }

        .module-tag-badge {
            position: absolute;
            top: 24px;
            left: 24px;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.5);
            color: var(--gold);
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 8px 18px;
            border-radius: 20px;
            z-index: 2;
        }

        .module-content-col {
            padding: 3rem 3.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 600px) {
            .module-content-col {
                padding: 2rem 1.5rem;
            }
        }

        .module-headline {
            font-family: 'Outfit', sans-serif;
            font-size: 2.1rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .module-subtitle {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1.25rem;
            line-height: 1.4;
            font-style: italic;
        }

        .module-body {
            color: #DDDDDD;
            font-size: 0.98rem;
            line-height: 1.75;
            margin-bottom: 1.75rem;
        }

        .module-connoisseur-box {
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-left: 4px solid var(--gold);
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
        }

        .connoisseur-box-title {
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .connoisseur-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-size: 0.88rem;
            color: #FFF;
            font-weight: 600;
        }

        /* Comparison Table */
        .comparison-table-wrap {
            overflow-x: auto;
            margin-top: 2.5rem;
            background: #0d0d0d;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 1rem;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 0.95rem;
        }

        .comparison-table th, .comparison-table td {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid #1a1a1a;
        }

        .comparison-table th {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: #FFFFFF;
            background: #141414;
        }

        .comparison-table tr:hover td {
            background: rgba(212, 175, 55, 0.05);
        }

        .faq-item-custom {
            background: #0d0d0d;
            border: 1px solid #222;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color 0.2s ease;
        }

        .faq-item-custom:hover {
            border-color: rgba(212, 175, 55, 0.4);
        }

        .faq-item-custom summary {
            padding: 1.2rem 1.5rem;
            font-weight: 700;
            font-size: 1.05rem;
            color: #FFF;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item-custom summary::-webkit-details-marker {
            display: none;
        }

        .faq-item-custom summary::after {
            content: "+";
            font-size: 1.4rem;
            color: var(--gold);
        }

        .faq-item-custom[open] summary::after {
            content: "−";
        }

        .faq-item-custom p {
            padding: 0 1.5rem 1.4rem 1.5rem;
            color: #BBB;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .cupping-feedback-callout-card {
            margin-top: 3.5rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(18, 18, 22, 0.95) 100%);
            border: 1.5px solid var(--gold);
            border-radius: 20px;
            padding: 1.75rem 2.2rem;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            text-align: left;
        }

        .cupping-feedback-callout-card .callout-icon-wrap {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 14px;
            background: rgba(212, 175, 55, 0.18);
            border: 1.5px solid var(--gold);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .cupping-feedback-callout-card .callout-eyebrow {
            color: var(--gold);
            font-size: 0.76rem;
            font-weight: 900;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 4px;
        }

        .cupping-feedback-callout-card .callout-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 900;
            color: #FFF;
            margin: 0 0 0.5rem 0;
        }

        .cupping-feedback-callout-card .callout-desc {
            color: #DDD;
            font-size: 0.96rem;
            line-height: 1.65;
            margin: 0;
        }

        /* Luxury Tabbed Slideshow for Reserve Membership System */
        .reserve-tabs-nav {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2rem auto 2.25rem auto;
            max-width: 1240px;
        }

        .reserve-tab-btn {
            background: rgba(22, 20, 16, 0.85);
            border: 1.5px solid rgba(212, 175, 55, 0.25);
            border-radius: 30px;
            padding: 10px 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: #AAAAAA;
            font-family: 'Outfit', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            transition: all 0.28s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .reserve-tab-btn .tab-badge {
            font-size: 0.72rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: var(--gold);
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.4);
            padding: 2px 8px;
            border-radius: 12px;
        }

        .reserve-tab-btn:hover {
            color: #FFFFFF;
            border-color: rgba(212, 175, 55, 0.6);
            background: rgba(35, 30, 22, 0.95);
            transform: translateY(-2px);
        }

        .reserve-tab-btn.active {
            background: rgba(212, 175, 55, 0.15);
            border-color: var(--gold);
            color: var(--gold);
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.35), inset 0 0 10px rgba(212, 175, 55, 0.15);
        }

        .reserve-tab-btn .tab-badge {
            font-size: 0.72rem;
            font-weight: 800;
            background: rgba(255, 255, 255, 0.08);
            color: var(--gold);
            padding: 3px 8px;
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .reserve-tab-btn.active .tab-badge {
            background: var(--gold);
            color: #000000;
            font-weight: 900;
        }

        .reserve-slideshow-container {
            max-width: 1240px;
            margin: 0 auto;
            background: linear-gradient(165deg, rgba(22, 20, 16, 0.98) 0%, rgba(12, 10, 8, 0.99) 100%);
            border: 1.5px solid rgba(212, 175, 55, 0.4);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0,0,0,0.9), 0 0 35px rgba(212, 175, 55, 0.12);
            position: relative;
        }

        .reserve-slides-track {
            display: flex;
            width: 100%;
            transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }

        .reserve-slide {
            flex: 0 0 100%;
            width: 100%;
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1.18fr;
            min-height: 480px;
            box-sizing: border-box;
        }

        .reserve-slide-media {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 440px;
            overflow: hidden;
        }

        .reserve-slide-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .reserve-slide-media .media-vignette {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 40%, rgba(18, 16, 12, 0.85) 80%, rgba(12, 10, 8, 0.99) 100%),
                        linear-gradient(to bottom, transparent 60%, rgba(12, 10, 8, 0.95) 100%);
        }

        .reserve-slide-media .slide-tag-pill {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(10, 10, 10, 0.88);
            backdrop-filter: blur(8px);
            border: 1.5px solid var(--gold);
            color: var(--gold);
            font-size: 0.76rem;
            font-weight: 800;
            padding: 6px 14px;
            border-radius: 8px;
            letter-spacing: 1.5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.6);
        }

        .reserve-slide-content {
            padding: 3rem 3rem 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            box-sizing: border-box;
            z-index: 2;
        }

        .reserve-slide-eyebrow {
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .reserve-slide-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.6rem, 2.5vw, 2.1rem);
            font-weight: 900;
            color: #FFFFFF;
            margin: 0 0 0.35rem 0;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        .reserve-slide-sub {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--gold);
            margin: 0 0 1.25rem 0;
            line-height: 1.45;
        }

        .reserve-slide-desc {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #CCCCCC;
            margin: 0 0 1.75rem 0;
        }

        .reserve-slide-desc em, .reserve-slide-desc strong {
            color: #FFFFFF;
            font-weight: 700;
        }

        .reserve-slide-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .reserve-controls-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(8, 8, 8, 0.6);
        }

        .reserve-nav-btn {
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.4);
            color: var(--gold);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.25s ease;
        }

        .reserve-nav-btn:hover {
            background: var(--gold);
            color: #000000;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            transform: scale(1.08);
        }

        .reserve-dots {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .reserve-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .reserve-dot.active {
            width: 24px;
            border-radius: 12px;
            background: var(--gold);
            border-color: var(--gold);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
        }

        @media (max-width: 820px) {
            .reserve-slide {
                grid-template-columns: 1fr;
            }
            .reserve-slide-media {
                height: 240px;
                min-height: 240px;
            }
            .reserve-slide-content {
                padding: 1.75rem 1.5rem 2rem 1.5rem;
            }
        }

/* ==========================================================================
   Reserve Hero Stage Artwork - Complete 12oz Gold Pouch Display
   ========================================================================== */
.reserve-hero-section .hero-bg-faded-artwork {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    overflow: hidden !important;
}

.reserve-hero-section .hero-bg-faded-artwork img,
.reserve-hero-section .ken-burns-img {
    width: auto !important;
    max-width: 100% !important;
    height: 90% !important;
    max-height: 820px !important;
    object-fit: contain !important;
    object-position: center right !important;
    margin: auto 0 auto auto !important;
    display: block !important;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 50px rgba(212, 175, 55, 0.15)) !important;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 8%, #000 24%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 8%, #000 24%) !important;
}