/*
Theme Name: High Days v9 (Two Doors)
Theme URI: https://highdays.com/
Author: High Days Beverage Co.
Description: Full-site editing block theme. v9 — "Two Doors" model. One domain, two modes. DRINK = consumer/festival (Carbon + Bone + Sun Gold). MAKE = B2B/copacking (deep Steel + Pale Steel). Hot Orange #FF4F1A and the sun mark stay constant. Top-bar segmented switch toggles between modes via body.mode-drink / body.mode-make. Standard WooCommerce. Five-font stack: Anton (display) + Oswald (UI headlines) + Hanken Grotesk (body) + Permanent Marker (accent) + Bebas Neue (marquee).
Version: 0.10.5
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
License: Proprietary
Text Domain: highdays-v9
*/

/* =================================================================
   DESIGN TOKENS
   ================================================================= */
:root {
    --hd-carbon:        #0C0B0A;
    --hd-asphalt:       #16100C;
    --hd-asphalt-2:     #1A1410;
    --hd-asphalt-raise: #120F0D;
    --hd-hairline-d:    #1C1A16;
    --hd-hairline-mid:  #2A2824;
    --hd-bone:          #ECE6D8;
    --hd-bone-2:        #FFF6E2;
    --hd-bone-soft:     #c2bbad;
    --hd-bone-dim:      #8a8275;

    --hd-hot-orange:    #FF4F1A;
    --hd-hot-orange-d:  #C73B0D;
    --hd-sun-gold:      #FFB23E;
    --hd-lab-green:     #A8E83B;
    --hd-lab-green-2:   #B6FF3C;

    --hd-steel-mid:     #7E94A0;
    --hd-steel-mid-2:   #5B6B73;
    --hd-steel-deep:    #222A2E;
    --hd-steel-deep-2:  #1A2024;
    --hd-pale-steel:    #CDD7DA;
    --hd-pale-steel-2:  #BCC8CC;
    --hd-pale-steel-d:  #9DB2BD;
    --hd-pale-steel-x:  #8c989d;
    --hd-hairline-m:    #313B40;
    --hd-make-text-soft: #cdd7da;

    --hd-concrete:      #8C857A;
    --hd-concrete-dim:  #6d675d;

    --hd-flavor-watermelon: #E8456B;
    --hd-flavor-orange:     #FF6A1A;
    --hd-flavor-cream:      #E9D9B8;
    --hd-flavor-rootbeer:   #5A3420;

    --hd-font-display:  'Anton', 'Arial Narrow', Impact, sans-serif;
    --hd-font-headline: 'Oswald', 'Helvetica Neue', system-ui, sans-serif;
    --hd-font-body:     'Hanken Grotesk', 'Helvetica Neue', system-ui, sans-serif;
    --hd-font-marker:   'Permanent Marker', 'Brush Script MT', cursive;
    --hd-font-marquee:  'Bebas Neue', 'Arial Narrow', Impact, sans-serif;

    --hd-r-pill:        20px;
    --hd-r-card:        12px;
    --hd-r-btn:         4px;

    --hd-shadow-card:   0 10px 30px rgba(0,0,0,.08);
    --hd-shadow-float:  0 40px 90px rgba(0,0,0,.55);

    --hd-top-bar-h:     118px;
    --hd-content-pad:   36px;
}

/* =================================================================
   BASE
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--hd-hot-orange); color: var(--hd-carbon); }

body {
    margin: 0;
    padding: 0;
    background: var(--hd-carbon);
    color: var(--hd-bone);
    font-family: var(--hd-font-body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: var(--hd-bone); margin: 0 0 .5em; }
h1, h2 {
    font-family: var(--hd-font-display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: .9;
}
h3, h4 {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.1;
}
p { margin: 0 0 1em; }
a { color: var(--hd-hot-orange); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--hd-sun-gold); }

.hd-eyebrow {
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--hd-sun-gold);
    margin: 0 0 14px;
    display: block;
}

.hd-marker {
    font-family: var(--hd-font-marker);
    font-weight: 400;
    color: var(--hd-sun-gold);
    line-height: 1;
    display: inline-block;
}

/* =================================================================
   MODE VISIBILITY (the core mechanism)
   Drink is the default; mode-make explicitly hides drink and shows make.
   Compound selectors (.hd-subnav.hd-subnav--make) + !important to beat
   the generic .hd-subnav rule that comes later in this file.
   ================================================================= */
.hd-mode--drink { display: block !important; }
.hd-mode--make  { display: none !important; }
body.mode-make .hd-mode--drink { display: none !important; }
body.mode-make .hd-mode--make  { display: block !important; }

.hd-subnav.hd-subnav--drink { display: flex !important; }
.hd-subnav.hd-subnav--make  { display: none !important; }
body.mode-make .hd-subnav.hd-subnav--drink { display: none !important; }
body.mode-make .hd-subnav.hd-subnav--make  { display: flex !important; }

/* Top-bar CTA text + style swap per mode (data-attr driven by JS) */
body.mode-drink .hd-topbar { background: rgba(12,11,10,.92); border-bottom-color: var(--hd-hairline-d); }
body.mode-make  .hd-topbar { background: rgba(26,32,36,.92); border-bottom-color: var(--hd-hairline-m); }

/* Default switch tab colors; JS swaps active tab styling */
body.mode-drink .hd-switch__tab[data-tab="drink"] { background: var(--hd-hot-orange); color: var(--hd-carbon); }
body.mode-drink .hd-switch__tab[data-tab="make"]  { color: var(--hd-concrete); background: transparent; }
body.mode-make  .hd-switch__tab[data-tab="make"]  { background: var(--hd-steel-mid); color: var(--hd-carbon); }
body.mode-make  .hd-switch__tab[data-tab="drink"] { color: var(--hd-concrete); background: transparent; }

/* =================================================================
   ANIMATIONS
   ================================================================= */
@keyframes hd-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hd-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hd-fade { from { opacity: 0; } to { opacity: 1; } }

.hd-rise { animation: hd-rise .7s ease both; }
.hd-rise-late { animation: hd-rise .9s ease both; }

.hd-lift { transition: transform .25s ease, box-shadow .25s ease; }
.hd-lift:hover { transform: translateY(-8px); box-shadow: var(--hd-shadow-float); }

/* =================================================================
   HEADER / TOP BAR
   ================================================================= */
.hd-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12,11,10,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hd-hairline-d);
}

.hd-topbar__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--hd-content-pad);
    gap: 14px;
}

.hd-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hd-bone);
    text-decoration: none;
    flex-shrink: 0;
}
.hd-logo:hover { color: var(--hd-hot-orange); }
.hd-logo__mark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--hd-hot-orange);
    box-shadow: 0 0 0 3px var(--hd-carbon), 0 0 0 5px var(--hd-hot-orange);
    flex-shrink: 0;
}
.hd-logo__text {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 23px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* SEGMENTED SWITCH */
.hd-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--hd-asphalt);
    border: 1px solid var(--hd-hairline-mid);
    border-radius: 9px;
    padding: 4px;
    width: 280px;
    flex-shrink: 0;
}
.hd-switch__tab {
    flex: 1;
    text-align: center;
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 6px;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: var(--hd-concrete);
    transition: background .2s ease, color .2s ease;
}

/* TOP-BAR CTAs (swap content via JS, mode-aware) */
.hd-topcta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.hd-topcta__secondary {
    font-family: var(--hd-font-headline);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hd-concrete);
    border: 1px solid var(--hd-hairline-mid);
    border-radius: var(--hd-r-pill);
    padding: 6px 11px;
    text-decoration: none;
}
.hd-topcta__secondary:hover { color: var(--hd-bone); border-color: var(--hd-bone-dim); }

.hd-topcta__primary {
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 9px 17px;
    border-radius: var(--hd-r-btn);
    text-decoration: none;
    border: 0;
}
.hd-topcta__primary:hover { background: var(--hd-hot-orange-d); color: var(--hd-bone); }

/* Header cart icon + live count badge (v0.10.5). Count is populated on
   every page load and on ajax add-to-cart by Woo's cart-fragments script,
   which swaps span.hd-cart__count via the woocommerce_add_to_cart_fragments
   filter in inc/woo.php. Empty badge (0 items) is hidden via :empty. */
.hd-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hd-bone);
    text-decoration: none;
    padding: 4px;
    line-height: 0;
    transition: color .18s ease;
}
.hd-cart:hover { color: var(--hd-hot-orange); }
.hd-cart__count {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    box-sizing: border-box;
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 10px;
    line-height: 17px;
    text-align: center;
    border-radius: 9px;
}
.hd-cart__count:empty { display: none; }

/* SUB-NAV (jump-to anchors per mode) */
.hd-subnav-row {
    border-top: 1px solid var(--hd-hairline-d);
    background: rgba(12,11,10,.55);
}
body.mode-make .hd-subnav-row { background: rgba(26,32,36,.55); border-top-color: var(--hd-hairline-m); }
.hd-subnav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 var(--hd-content-pad);
    overflow-x: auto;
}
.hd-subnav a {
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--hd-font-headline);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 12px 16px;
    border-bottom: 2px solid transparent;
    color: var(--hd-concrete);
    transition: color .18s ease, border-color .18s ease;
}
body.mode-make .hd-subnav a { color: var(--hd-pale-steel-d); }
.hd-subnav a:hover { color: var(--hd-hot-orange); }
.hd-subnav a.is-active { color: var(--hd-hot-orange); border-bottom-color: var(--hd-hot-orange); }

/* Custom scrollbar for any horizontal scroll surface */
.hd-snap::-webkit-scrollbar { height: 8px; }
.hd-snap::-webkit-scrollbar-thumb { background: var(--hd-hot-orange); border-radius: 8px; }
.hd-snap::-webkit-scrollbar-track { background: transparent; }

/* MENU BUTTON for mobile (collapsed switch + subnav drawer) */
.hd-topbar__menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--hd-hairline-mid);
    color: var(--hd-bone);
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
}
@media (max-width: 880px) {
    .hd-topbar__bar { padding: 12px 16px; gap: 10px; }
    .hd-switch { width: 220px; }
    .hd-switch__tab { font-size: 11px; padding: 7px 10px; }
    .hd-topcta__secondary { display: none; }
    .hd-logo__text { font-size: 18px; }
    .hd-subnav { padding: 0 16px; }
}
@media (max-width: 560px) {
    .hd-topbar__bar { flex-wrap: wrap; }
    .hd-switch { order: 3; width: 100%; }
}

/* =================================================================
   SECTIONS — generic
   ================================================================= */
.hd-section {
    position: relative;
    padding: 60px var(--hd-content-pad);
    scroll-margin-top: var(--hd-top-bar-h);
}
@media (max-width: 720px) { .hd-section { padding: 48px 18px; } }

.hd-section--carbon  { background: var(--hd-carbon); color: var(--hd-bone); }
.hd-section--asphalt { background: var(--hd-asphalt-2); color: var(--hd-bone); }
.hd-section--bone    { background: var(--hd-bone); color: var(--hd-asphalt-2); }
.hd-section--bone h1, .hd-section--bone h2, .hd-section--bone h3, .hd-section--bone h4 { color: var(--hd-asphalt-2); }
.hd-section--steel   { background: var(--hd-steel-deep); color: var(--hd-bone); }
.hd-section--steel-2 { background: var(--hd-steel-deep-2); color: var(--hd-bone); }
.hd-section--orange  { background: var(--hd-hot-orange); color: var(--hd-carbon); }
.hd-section--orange h1, .hd-section--orange h2, .hd-section--orange h3, .hd-section--orange h4 { color: var(--hd-carbon); }

.hd-section__inner { max-width: 1320px; margin: 0 auto; }

/* =================================================================
   MARQUEE
   ================================================================= */
.hd-marquee {
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    overflow: hidden;
    white-space: nowrap;
    padding: 11px 0;
    border-bottom: 2px solid var(--hd-carbon);
}
.hd-marquee__track {
    display: inline-block;
    font-family: var(--hd-font-marquee);
    font-size: 23px;
    letter-spacing: .16em;
    animation: hd-marq 22s linear infinite;
}

/* =================================================================
   DRINK HERO
   ================================================================= */
.hd-drink-hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: flex-end;
    background: var(--hd-asphalt);
    overflow: hidden;
}
.hd-drink-hero__media {
    position: absolute;
    inset: 0;
}
.hd-drink-hero__slide {
    position: absolute;
    inset: 0;
    background-color: var(--hd-asphalt);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hd-drink-hero__slide.is-active { opacity: 1; }
.hd-drink-hero__slide:first-child { opacity: 1; }
.hd-drink-hero__slide.is-active ~ .hd-drink-hero__slide:first-child:not(.is-active) { opacity: 0; }
.hd-drink-hero__video {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hd-drink-hero.has-video .hd-drink-hero__video { display: block; }
.hd-drink-hero.has-video .hd-drink-hero__slide { display: none; }
.hd-drink-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,11,10,.42) 0%, rgba(12,11,10,.18) 40%, rgba(12,11,10,.92) 100%);
}

.hd-stage-banner {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hd-stage-banner__inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,79,26,.92);
    color: var(--hd-carbon);
    padding: 8px 26px;
    border-radius: 3px;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.hd-stage-banner__dot {
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--hd-carbon);
    box-shadow: 0 0 0 2px var(--hd-hot-orange), 0 0 0 4px var(--hd-carbon);
}
.hd-stage-banner__text {
    font-family: var(--hd-font-display);
    font-size: 30px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hd-drink-hero__inner {
    position: relative;
    width: 100%;
    padding: 0 36px 52px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: end;
    z-index: 2;
}

.hd-drink-hero__copy h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    line-height: .9;
    margin: 0 0 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hd-drink-hero__copy p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--hd-bone-2);
    max-width: 480px;
    margin: 0 0 26px;
}

.hd-lab-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(20,16,12,.7);
    color: var(--hd-lab-green);
    border: 1px solid rgba(168,232,59,.35);
    border-radius: var(--hd-r-pill);
    padding: 6px 13px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hd-lab-badge::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--hd-lab-green);
}

.hd-drink-hero__art {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 12px;
}
.hd-drink-hero__art img {
    max-height: 320px;
    width: auto;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
}

@media (max-width: 880px) {
    .hd-drink-hero__inner { grid-template-columns: 1fr; }
    .hd-drink-hero { min-height: 0; }
    .hd-stage-banner__text { font-size: 22px; }
    .hd-drink-hero__art { justify-content: center; }
}

/* =================================================================
   DRINK SHOP (bone canvas)
   ================================================================= */
.hd-shop-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 34px;
    flex-wrap: wrap;
    gap: 12px;
}
.hd-shop-head h2 { font-size: clamp(2.25rem, 5vw, 3.625rem); }

.hd-chips { display: flex; gap: 8px; }
.hd-chip {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid #c4bba8;
    color: #5a5248;
    padding: 9px 15px;
    border-radius: var(--hd-r-pill);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    background: transparent;
    cursor: pointer;
}
.hd-chip.is-active { background: var(--hd-asphalt-2); color: var(--hd-bone); border-color: var(--hd-asphalt-2); }

.hd-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 1100px) { .hd-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .hd-shop-grid { grid-template-columns: 1fr; } }

.hd-sku {
    background: #fff;
    border-radius: var(--hd-r-card);
    overflow: hidden;
    box-shadow: var(--hd-shadow-card);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hd-sku:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.hd-sku__halo {
    padding: 28px 18px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(70% 55% at 50% 35%, rgba(255,79,26,.10), transparent);
    min-height: 220px;
}
.hd-sku__halo img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}
.hd-sku[data-flavor="watermelon"] .hd-sku__halo { background: radial-gradient(70% 55% at 50% 35%, rgba(232,69,107,.2), transparent); }
.hd-sku[data-flavor="orange"]     .hd-sku__halo { background: radial-gradient(70% 55% at 50% 35%, rgba(255,106,26,.2), transparent); }
.hd-sku[data-flavor="cream"]      .hd-sku__halo { background: radial-gradient(70% 55% at 50% 35%, rgba(233,217,184,.55), transparent); }
.hd-sku[data-flavor="rootbeer"]   .hd-sku__halo { background: radial-gradient(70% 55% at 50% 35%, rgba(90,52,32,.3), transparent); }

.hd-sku__sale {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--hd-lab-green);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 3px;
    z-index: 4;
}

/* Strikethrough price (sale state) — match Woo's <del>/<ins> markup */
.hd-sku__price del { opacity: .55; margin-right: 6px; font-weight: 500; }
.hd-sku__price ins { text-decoration: none; }
.hd-sku__halo img {
    max-height: 240px;
    width: auto;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}
.hd-sku__body { padding: 0 20px 22px; }
.hd-sku__name {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--hd-asphalt-2);
}
.hd-sku__sub {
    font-size: 12px;
    color: #8a8275;
    margin: 3px 0 16px;
}
.hd-sku__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hd-sku__price {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 24px;
    color: var(--hd-hot-orange);
}
.hd-sku__cta {
    background: var(--hd-asphalt-2);
    color: var(--hd-bone);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}
.hd-sku__cta:hover { background: var(--hd-hot-orange); color: var(--hd-carbon); }
.hd-sku__link {
    position: absolute;
    inset: 0;
    z-index: 3;
    text-indent: -9999px;
}

.hd-mixpack {
    margin-top: 18px;
    border: 1px dashed var(--hd-hot-orange);
    border-radius: var(--hd-r-card);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,79,26,.06);
    flex-wrap: wrap;
    gap: 12px;
}
.hd-mixpack h3 {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    color: var(--hd-asphalt-2);
    margin: 0;
}
.hd-mixpack p { font-size: 13px; color: #5a5248; margin: 2px 0 0; }

/* =================================================================
   DRINK MOOD PICKER
   ================================================================= */
.hd-mood__tabs {
    max-width: 780px;
    margin: 0 auto 26px;
    display: flex;
    gap: 10px;
}
.hd-mood__tab {
    flex: 1;
    text-align: center;
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 14px 12px;
    border: 1px solid var(--hd-hairline-mid);
    border-radius: 8px;
    cursor: pointer;
    color: var(--hd-bone);
    background: transparent;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.hd-mood__tab.is-active { background: var(--hd-hot-orange); color: var(--hd-carbon); border-color: var(--hd-hot-orange); }
.hd-mood__tab:hover:not(.is-active) { border-color: var(--hd-bone-dim); color: #fff; }

.hd-mood__result {
    max-width: 780px;
    margin: 0 auto;
    border: 2px solid var(--hd-hot-orange);
    border-radius: var(--hd-r-card);
    padding: 28px;
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 26px;
    align-items: center;
    background: var(--hd-asphalt-raise);
}
.hd-mood__can img {
    max-height: 220px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.5));
}
.hd-mood__label {
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .2em;
    color: var(--hd-sun-gold);
    text-transform: uppercase;
}
.hd-mood__name {
    font-family: var(--hd-font-display);
    font-size: 46px;
    line-height: .9;
    margin: 2px 0 8px;
    text-transform: uppercase;
}
.hd-mood__copy {
    font-size: 15px;
    line-height: 1.55;
    color: var(--hd-bone-soft);
    margin: 0;
    max-width: 380px;
}
.hd-mood__cta {
    display: inline-block;
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 5px;
    text-decoration: none;
}
.hd-mood__cta-meta {
    font-size: 11px;
    color: var(--hd-concrete);
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 720px) {
    .hd-mood__result { grid-template-columns: 1fr; text-align: center; }
    .hd-mood__copy { max-width: none; margin: 0 auto; }
    .hd-mood__tabs { flex-wrap: wrap; }
    .hd-mood__tab { flex: 1 1 calc(50% - 5px); }
}

/* =================================================================
   DRINK MISSION (split)
   ================================================================= */
.hd-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.hd-mission__art {
    background: var(--hd-asphalt) center/cover no-repeat;
    position: relative;
}
.hd-mission__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,11,10,.1), rgba(12,11,10,.55));
}
.hd-mission__panel {
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    padding: 60px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hd-mission__panel h2 {
    color: var(--hd-carbon);
    font-size: clamp(2rem, 4.5vw, 3.375rem);
    margin: 0 0 18px;
}
.hd-mission__panel p { font-size: 16px; line-height: 1.6; margin: 0 0 14px; max-width: 460px; font-weight: 500; }
.hd-mission__panel .hd-marker { color: var(--hd-carbon); font-family: var(--hd-font-marker); font-size: 20px; }
.hd-mission__panel .hd-eyebrow { color: var(--hd-carbon); font-weight: 800; }
.hd-mission__cta {
    display: inline-block;
    border: 2px solid var(--hd-carbon);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 5px;
    align-self: flex-start;
    margin-top: 8px;
    text-decoration: none;
}
.hd-mission__cta:hover { background: var(--hd-carbon); color: var(--hd-hot-orange); }

@media (max-width: 880px) {
    .hd-mission { grid-template-columns: 1fr; }
    .hd-mission__art { min-height: 260px; }
}

/* =================================================================
   DRINK EVENTS CAROUSEL
   ================================================================= */
.hd-events {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 36px 18px;
    scroll-snap-type: x mandatory;
}
.hd-event {
    flex: none;
    width: 340px;
    scroll-snap-align: start;
    border-radius: var(--hd-r-card);
    overflow: hidden;
    background: var(--hd-asphalt);
    border: 1px solid var(--hd-hairline-d);
}
.hd-event__img {
    height: 190px;
    background-color: var(--hd-asphalt);
    background-position: center;
    background-size: cover;
    position: relative;
}
.hd-event__date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    padding: 5px 11px;
    border-radius: 3px;
}
.hd-event__body { padding: 18px 20px 22px; }
.hd-event__name {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--hd-bone);
    margin: 0 0 2px;
}
.hd-event__where { font-size: 13px; color: var(--hd-concrete); margin: 0 0 14px; }
.hd-event__cta {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid var(--hd-hairline-mid);
    color: var(--hd-bone);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--hd-font-headline);
    font-weight: 600;
    text-decoration: none;
}
.hd-event__cta:hover { border-color: var(--hd-hot-orange); color: var(--hd-hot-orange); }

/* =================================================================
   DRINK PRESS BAND
   ================================================================= */
.hd-press {
    position: relative;
    padding: 70px var(--hd-content-pad);
    background-color: #100b08;
    background-position: center;
    background-size: cover;
}
.hd-press::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12,11,10,.82);
}
.hd-press__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.hd-press__quote {
    font-family: var(--hd-font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.04;
    color: #fff;
    margin: 0 0 26px;
    text-transform: uppercase;
}
.hd-press__outlets {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--hd-concrete);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hd-press__outlets .hd-dot { color: var(--hd-hot-orange); }

/* =================================================================
   NEWSLETTER STRIP
   ================================================================= */
.hd-newsletter {
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    padding: 42px var(--hd-content-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.hd-newsletter h3 {
    color: var(--hd-carbon);
    font-family: var(--hd-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: .9;
    text-transform: uppercase;
    margin: 0;
}
.hd-newsletter p { font-size: 14px; font-weight: 600; margin: 4px 0 0; color: var(--hd-carbon); }
.hd-newsletter__form { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hd-newsletter__input {
    background: #fff;
    border-radius: 5px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--hd-asphalt-2);
    min-width: 260px;
    border: 0;
    font-family: var(--hd-font-body);
}
.hd-newsletter__btn {
    background: var(--hd-carbon);
    color: var(--hd-bone);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
}
.hd-newsletter__btn:hover { background: var(--hd-asphalt-2); color: var(--hd-hot-orange); }

/* =================================================================
   MAKE HERO
   ================================================================= */
.hd-make-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--hd-steel-deep-2);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.hd-make-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(20,25,28,.95) 0%, rgba(20,25,28,.78) 45%, rgba(20,25,28,.35) 100%);
}
.hd-make-hero__inner {
    position: relative;
    z-index: 2;
    padding: 0 var(--hd-content-pad);
    max-width: 840px;
}
.hd-make-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    line-height: .86;
    margin: 0 0 18px;
}
.hd-make-hero h1 .hd-accent { color: var(--hd-hot-orange); }
.hd-make-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--hd-make-text-soft);
    max-width: 560px;
    margin: 0 0 26px;
}
.hd-make-hero .hd-eyebrow { color: var(--hd-pale-steel-d); }

/* =================================================================
   MAKE STATS STRIP
   ================================================================= */
.hd-stats-strip {
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hd-stat {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(12,11,10,.18);
}
.hd-stat:last-child { border-right: 0; }
.hd-stat__num {
    font-family: var(--hd-font-display);
    font-size: 34px;
    line-height: .9;
    color: var(--hd-carbon);
}
.hd-stat__label {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 4px;
}
@media (max-width: 720px) {
    .hd-stats-strip { grid-template-columns: repeat(2, 1fr); }
    .hd-stat:nth-child(2n) { border-right: 0; }
    .hd-stat { border-bottom: 1px solid rgba(12,11,10,.18); }
}

/* =================================================================
   MAKE PROCESS (5-step)
   ================================================================= */
.hd-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.hd-process__step {
    padding-right: 18px;
    border-right: 1px solid var(--hd-hairline-m);
}
.hd-process__step + .hd-process__step { padding-left: 18px; }
.hd-process__step:last-child { border-right: 0; padding-right: 0; }
.hd-process__num {
    width: 48px; height: 48px;
    border: 2px solid var(--hd-hairline-m);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hd-font-display);
    color: var(--hd-bone);
    font-size: 20px;
    margin-bottom: 14px;
}
.hd-process__step:first-child .hd-process__num {
    border-color: var(--hd-hot-orange);
    color: var(--hd-hot-orange);
}
.hd-process__name {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--hd-bone);
}
.hd-process__desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--hd-pale-steel-x);
    margin: 0 0 8px;
}
.hd-process__wk {
    font-size: 11px;
    color: var(--hd-pale-steel-d);
    letter-spacing: .1em;
    font-weight: 600;
    font-family: var(--hd-font-headline);
}
@media (max-width: 1100px) {
    .hd-process { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .hd-process__step { border-right: 0; padding: 0; }
}
@media (max-width: 480px) {
    .hd-process { grid-template-columns: 1fr; }
}

/* =================================================================
   MAKE CAPABILITIES (5-col)
   ================================================================= */
.hd-cap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.hd-cap {
    border: 1px solid var(--hd-hairline-m);
    border-radius: 8px;
    padding: 20px;
}
.hd-cap__name {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 18px;
    color: var(--hd-hot-orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hd-cap__items {
    font-size: 12.5px;
    line-height: 1.8;
    color: var(--hd-pale-steel-2);
}
.hd-cap-grid--six { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1280px) { .hd-cap-grid--six { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1100px) { .hd-cap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .hd-cap-grid, .hd-cap-grid--six { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .hd-cap-grid, .hd-cap-grid--six { grid-template-columns: 1fr; } }

/* =================================================================
   MAKE WHOLESALE (split)
   ================================================================= */
.hd-wholesale {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 880px) { .hd-wholesale { grid-template-columns: 1fr; } }

.hd-wholesale__art {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: flex-end;
    background: linear-gradient(160deg, #2b353a, var(--hd-steel-deep-2));
    border: 1px solid var(--hd-hairline-m);
    border-radius: var(--hd-r-card);
    padding: 34px 20px;
}
.hd-wholesale__art img { max-height: 220px; width: auto; }

.hd-wholesale__stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    font-family: var(--hd-font-headline);
    font-weight: 700;
}
.hd-wholesale__stat-num { font-size: 30px; color: var(--hd-pale-steel-d); }
.hd-wholesale__stat-label {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hd-pale-steel-x);
}

/* =================================================================
   MAKE COPACKING INQUIRY
   ================================================================= */
.hd-copack {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 42px;
    align-items: start;
}
@media (max-width: 880px) { .hd-copack { grid-template-columns: 1fr; } }

.hd-copack__bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hd-copack__bullet {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13.5px;
    color: var(--hd-pale-steel-2);
}
.hd-copack__bullet .hd-tick { color: var(--hd-lab-green); font-size: 16px; }

.hd-copack__form {
    border: 1px solid var(--hd-hairline-m);
    border-radius: 10px;
    padding: 26px;
    background: var(--hd-steel-deep);
}
.hd-copack__form label {
    display: block;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hd-pale-steel-x);
    margin-bottom: 6px;
    font-family: var(--hd-font-headline);
    font-weight: 600;
}
.hd-copack__form .hd-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.hd-copack__form input,
.hd-copack__form textarea,
.hd-copack__form select {
    width: 100%;
    background: var(--hd-steel-deep-2);
    border: 1px solid var(--hd-hairline-m);
    border-radius: 4px;
    color: var(--hd-bone);
    padding: 11px 12px;
    font-size: 14px;
    font-family: var(--hd-font-body);
}
.hd-copack__form input:focus,
.hd-copack__form textarea:focus,
.hd-copack__form select:focus {
    outline: none;
    border-color: var(--hd-hot-orange);
}
.hd-copack__form textarea { min-height: 110px; resize: vertical; }
.hd-copack__submit {
    width: 100%;
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding: 14px;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    margin-top: 8px;
}
.hd-copack__submit:hover { background: var(--hd-hot-orange-d); color: var(--hd-bone); }

/* =================================================================
   MAKE ABOUT (split)
   ================================================================= */
.hd-mabout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
}
@media (max-width: 880px) { .hd-mabout { grid-template-columns: 1fr; } }
.hd-mabout__panel {
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    padding: 56px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hd-mabout__panel h2 { color: var(--hd-carbon); font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 16px; }
.hd-mabout__panel p { font-size: 16px; line-height: 1.6; margin: 0 0 14px; max-width: 440px; font-weight: 500; }
.hd-mabout__panel .hd-eyebrow { color: var(--hd-carbon); font-weight: 800; }
.hd-mabout__art {
    background-color: var(--hd-steel-deep-2);
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 320px;
}
.hd-mabout__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,79,26,.12), rgba(26,32,36,.25));
}
.hd-mabout__credit {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(12,11,10,.7);
    color: var(--hd-pale-steel-d);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 1;
}

/* =================================================================
   MAKE FAQ
   ================================================================= */
.hd-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 880px) { .hd-faq { grid-template-columns: 1fr; } }
.hd-faq__card {
    border: 1px solid var(--hd-hairline-m);
    border-radius: 8px;
    padding: 20px;
}
.hd-faq__q {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--hd-bone);
    text-transform: none;
    letter-spacing: 0;
}
.hd-faq__a {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--hd-pale-steel-2);
    margin: 0;
}

/* Formula ownership tiers — sits below the FAQ in MAKE mode */
.hd-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 880px) { .hd-tier-grid { grid-template-columns: 1fr; } }
.hd-tier {
    border: 1px solid var(--hd-hairline-m);
    border-radius: 8px;
    padding: 24px;
    background: var(--hd-steel-deep);
    position: relative;
}
.hd-tier--accent {
    border-color: var(--hd-hot-orange);
    background: linear-gradient(180deg, var(--hd-steel-deep), rgba(255,79,26,0.06));
}
.hd-tier__num {
    font-family: var(--hd-font-display);
    font-size: 32px;
    color: var(--hd-hot-orange);
    line-height: 1;
    margin-bottom: 14px;
}
.hd-tier__name {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--hd-bone);
    margin-bottom: 10px;
}
.hd-tier__lead {
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 14px;
    color: var(--hd-sun-gold);
    margin: 0 0 12px;
    line-height: 1.4;
}
.hd-tier__body {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--hd-pale-steel-2);
    margin: 0;
}

/* =================================================================
   COA CARDS (home #d-coas band) — dose-tabbed per flavor
   ================================================================= */
.hd-coa-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}
@media (max-width: 880px) { .hd-coa-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hd-coa-cards { grid-template-columns: 1fr; } }

.hd-coa-card {
    background: var(--hd-asphalt-raise);
    border: 1px solid var(--hd-hairline-d);
    border-radius: 10px;
    padding: 20px;
}
.hd-coa-card__name {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--hd-bone);
    margin-bottom: 12px;
}
.hd-coa-card__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background: var(--hd-carbon);
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 14px;
}
.hd-coa-card__tab {
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 4px;
    background: transparent;
    color: var(--hd-concrete);
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.hd-coa-card__tab.is-active { background: var(--hd-hot-orange); color: var(--hd-carbon); }
.hd-coa-card__tab:hover:not(.is-active) { color: var(--hd-bone); }

.hd-coa-card__panel { display: none; }
.hd-coa-card__panel.is-active { display: block; }
.hd-coa-card__batch { font-size: 12px; color: var(--hd-bone-soft); margin-bottom: 12px; }
.hd-coa-card__pdf {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--hd-hairline-mid);
    color: var(--hd-bone);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 9px 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color .15s ease, color .15s ease;
}
.hd-coa-card__pdf:hover { border-color: var(--hd-hot-orange); color: var(--hd-hot-orange); }
.hd-coa-card__pending {
    font-family: var(--hd-font-headline);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hd-concrete);
}

/* =================================================================
   COA ARCHIVE (/coas page) — full historical list
   ================================================================= */
.hd-coa-archive { display: grid; gap: 36px; }
.hd-coa-archive__name {
    font-family: var(--hd-font-display);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    text-transform: uppercase;
    color: var(--hd-hot-orange);
    letter-spacing: .02em;
    margin: 0 0 16px;
    line-height: 1;
}
.hd-coa-archive__list { display: grid; gap: 8px; }
.hd-coa-row {
    display: grid;
    grid-template-columns: 90px 1fr 1fr 140px;
    gap: 16px;
    align-items: center;
    background: var(--hd-asphalt-raise);
    border: 1px solid var(--hd-hairline-d);
    border-radius: 8px;
    padding: 16px 20px;
    transition: border-color .2s ease;
}
.hd-coa-row:hover { border-color: var(--hd-hot-orange); }
.hd-coa-row__dose { font-family: var(--hd-font-display); font-size: 22px; color: var(--hd-hot-orange); line-height: 1; }
.hd-coa-row__batch, .hd-coa-row__tested { display: flex; flex-direction: column; gap: 2px; }
.hd-coa-row__label {
    font-family: var(--hd-font-headline);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hd-concrete);
}
.hd-coa-row__value {
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 14px;
    color: var(--hd-bone);
}
.hd-coa-row__cta { text-align: right; }
.hd-coa-row__cta a {
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
}
.hd-coa-row__cta a:hover { background: var(--hd-hot-orange-d); color: var(--hd-bone); }
@media (max-width: 720px) {
    .hd-coa-row { grid-template-columns: 1fr; gap: 8px; }
    .hd-coa-row__cta { text-align: left; }
}

/* =================================================================
   STOCKISTS (Find a Store)
   ================================================================= */
.hd-stockists { display: grid; gap: 36px; }
.hd-stockist-state__name {
    font-family: var(--hd-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    color: var(--hd-hot-orange);
    letter-spacing: .02em;
    margin: 0 0 18px;
    line-height: 1;
}
.hd-stockist-state__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 880px) { .hd-stockist-state__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hd-stockist-state__list { grid-template-columns: 1fr; } }

.hd-stockist {
    background: var(--hd-asphalt-raise);
    border: 1px solid var(--hd-hairline-d);
    border-radius: 8px;
    padding: 22px 20px;
    transition: border-color .2s ease, transform .2s ease;
}
.hd-stockist:hover { border-color: var(--hd-hot-orange); transform: translateY(-2px); }
.hd-stockist__name {
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--hd-bone);
    margin-bottom: 8px;
}
.hd-stockist__addr {
    font-family: var(--hd-font-body);
    font-size: 14px;
    color: var(--hd-bone-soft);
    line-height: 1.5;
    margin-bottom: 6px;
}
.hd-stockist__phone a {
    font-family: var(--hd-font-headline);
    font-size: 13px;
    color: var(--hd-sun-gold);
    text-decoration: none;
}
.hd-stockist__phone a:hover { color: var(--hd-hot-orange); }
.hd-stockist__site {
    display: inline-block;
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hd-hot-orange);
    text-decoration: none;
    margin-top: 8px;
}
.hd-stockist__site:hover { color: var(--hd-sun-gold); }
.hd-stockist__notes {
    font-size: 13px;
    color: var(--hd-bone-dim);
    margin-top: 10px;
    line-height: 1.5;
    border-top: 1px solid var(--hd-hairline-d);
    padding-top: 10px;
}
.hd-stockist__notes p:last-child { margin-bottom: 0; }

/* =================================================================
   FOUNDERS CONTACT (DRINK + MAKE)
   ================================================================= */
.hd-founders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
@media (max-width: 720px) { .hd-founders { grid-template-columns: 1fr; } }

.hd-founder {
    background: var(--hd-asphalt-raise);
    border: 1px solid var(--hd-hairline-d);
    border-radius: 8px;
    padding: 26px 22px;
    text-align: center;
    transition: border-color .2s ease, transform .2s ease;
}
.hd-founder:hover { border-color: var(--hd-hot-orange); transform: translateY(-2px); }

.hd-founders--make .hd-founder {
    background: var(--hd-steel-deep);
    border-color: var(--hd-hairline-m);
}

.hd-founder__name {
    font-family: var(--hd-font-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--hd-bone);
    line-height: 1;
    margin-bottom: 10px;
}
.hd-founder__role {
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hd-concrete);
    margin-bottom: 14px;
}
.hd-founders--make .hd-founder__role { color: var(--hd-pale-steel-d); }
.hd-founder__email {
    display: inline-block;
    font-family: var(--hd-font-headline);
    font-weight: 700;
    font-size: 14px;
    color: var(--hd-hot-orange);
    text-decoration: none;
    word-break: break-all;
}
.hd-founder__email:hover { color: var(--hd-sun-gold); }

.hd-contact-form {
    max-width: 680px;
    margin: 0 auto;
}

/* =================================================================
   FOOTER
   ================================================================= */
.hd-footer {
    background: #070605;
    color: var(--hd-concrete);
    padding: 46px var(--hd-content-pad) 28px;
}
.hd-footer__cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--hd-hairline-d);
}
@media (max-width: 880px) { .hd-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hd-footer__cols { grid-template-columns: 1fr; } }

.hd-footer__brand p { font-size: 13px; line-height: 1.6; max-width: 300px; margin: 0 0 14px; }
.hd-footer__title {
    color: var(--hd-bone);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}
.hd-footer__col { display: flex; flex-direction: column; gap: 9px; font-size: 13px; }
.hd-footer__col a { color: var(--hd-concrete); text-decoration: none; }
.hd-footer__col a:hover { color: var(--hd-hot-orange); }

.hd-mini-switch {
    display: inline-flex;
    gap: 5px;
    background: var(--hd-asphalt-2);
    border: 1px solid var(--hd-hairline-mid);
    border-radius: 8px;
    padding: 4px;
    margin-top: 14px;
}
.hd-mini-switch__tab {
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--hd-bone);
    background: transparent;
    border: 0;
}
body.mode-drink .hd-mini-switch__tab[data-tab="drink"] { background: var(--hd-hot-orange); color: var(--hd-carbon); }
body.mode-make  .hd-mini-switch__tab[data-tab="make"]  { background: var(--hd-steel-mid); color: var(--hd-carbon); }

.hd-footer__legal {
    padding-top: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.hd-footer__legal p {
    font-size: 10.5px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
    color: var(--hd-concrete-dim);
}
.hd-footer__copy { font-size: 10.5px; color: var(--hd-concrete-dim); }

/* =================================================================
   AGE GATE
   ================================================================= */
.hd-age-gate {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--hd-carbon);
    align-items: center;
    justify-content: center;
}
.hd-age-gate.is-open { display: flex; }
.hd-age-gate__bg {
    position: absolute;
    inset: 0;
    background-color: var(--hd-carbon);
    background-position: center;
    background-size: cover;
    opacity: .32;
}
.hd-age-gate__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,11,10,.5), rgba(12,11,10,.92));
}
.hd-age-gate__card {
    position: relative;
    text-align: center;
    color: var(--hd-bone);
    padding: 30px;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hd-age-gate__mark {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--hd-hot-orange);
    box-shadow: 0 0 0 4px var(--hd-carbon), 0 0 0 7px var(--hd-hot-orange);
    margin-bottom: 24px;
}
.hd-age-gate__title {
    font-family: var(--hd-font-display);
    font-size: 52px;
    line-height: .88;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hd-age-gate__copy { font-size: 15px; line-height: 1.6; color: var(--hd-bone-soft); margin: 0 0 26px; }
.hd-age-gate__copy b { color: #fff; }
.hd-age-gate__row {
    display: grid;
    grid-template-columns: 90px 90px 1fr;
    gap: 8px;
    width: 100%;
    margin-bottom: 14px;
}
.hd-age-gate__row input, .hd-age-gate__row select {
    background: var(--hd-asphalt-raise);
    border: 1px solid var(--hd-hairline-mid);
    color: var(--hd-bone);
    padding: 12px;
    font-family: var(--hd-font-body);
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    width: 100%;
}
.hd-age-gate__btns { display: flex; gap: 12px; width: 100%; }
.hd-age-gate__enter {
    flex: 1;
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    text-align: center;
}
.hd-age-gate__exit {
    flex: none;
    border: 1px solid #3a3631;
    color: var(--hd-concrete);
    font-family: var(--hd-font-headline);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    text-align: center;
}
.hd-age-gate__fine {
    font-size: 11px;
    color: var(--hd-concrete-dim);
    margin-top: 18px;
    letter-spacing: .04em;
}
.hd-age-gate__error {
    display: none;
    margin: 12px 0 0;
    color: var(--hd-hot-orange);
    font-size: 13px;
}
.hd-age-gate__error.is-on,
.hd-age-gate__error--visible { display: block; }

/* =================================================================
   BUTTONS (override WP default to match Two Doors style)
   ================================================================= */
.wp-block-button .wp-block-button__link,
.hd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hd-font-headline);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: var(--hd-r-btn);
    background: var(--hd-hot-orange);
    color: var(--hd-carbon);
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}
.wp-block-button .wp-block-button__link:hover,
.hd-btn:hover {
    background: var(--hd-hot-orange-d);
    color: var(--hd-bone);
}
.is-style-outline .wp-block-button__link,
.hd-btn--outline {
    background: transparent;
    color: var(--hd-bone);
    border: 1px solid rgba(255,255,255,.35);
    padding: 14px 24px;
    font-size: 14px;
    letter-spacing: .06em;
}
.is-style-outline .wp-block-button__link:hover,
.hd-btn--outline:hover {
    background: var(--hd-bone);
    color: var(--hd-carbon);
    border-color: var(--hd-bone);
}
body.mode-make .is-style-outline .wp-block-button__link {
    border-color: var(--hd-steel-mid-2);
    color: var(--hd-bone);
}

/* =================================================================
   WOOCOMMERCE — restyle the loop to match the bone shop grid
   Override Woo's default flex layout + columns-N width math with grid.
   High specificity + minmax(0, 1fr) to beat Woo's own width: ~30% rules
   AND force cards to shrink to fit 4 across.
   ================================================================= */
body .woocommerce ul.products,
body .woocommerce-page ul.products,
body .woocommerce ul.products[class*="columns-"],
body .wc-block-grid__products,
.wp-site-blocks .woocommerce ul.products,
.wp-site-blocks .woocommerce ul.products[class*="columns-"] {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: none !important;
}
@media (max-width: 880px) {
    body .woocommerce ul.products,
    body .woocommerce ul.products[class*="columns-"],
    body .wc-block-grid__products,
    .wp-site-blocks .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 480px) {
    body .woocommerce ul.products,
    body .woocommerce ul.products[class*="columns-"],
    body .wc-block-grid__products,
    .wp-site-blocks .woocommerce ul.products {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}
/* Cross-sells + related products sit in narrower containers (cart page,
   single-product footer). Forcing 4 rigid columns there crushed the cards
   until the buttons wrapped one letter per line. Let these strips reflow
   to as many ~200px columns as fit. v0.10.5. */
body .woocommerce .cross-sells ul.products,
body .woocommerce .related.products ul.products,
body .woocommerce-cart .cross-sells ul.products,
body .woocommerce-cart ul.products {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
}
body .woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product,
body .woocommerce ul.products[class*="columns-"] li.product {
    /* v0.10.5: shop cards live on the dark carbon canvas. The old bone
       (light) card never took on live, leaving dark ink invisible. Commit
       to a dark card panel so the bone titles below read cleanly. */
    background: var(--hd-asphalt-2) !important;
    border: 1px solid rgba(236,230,216,.08) !important;
    border-radius: var(--hd-r-card) !important;
    box-shadow: var(--hd-shadow-card) !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    float: none !important;
    clear: none !important;
    overflow: hidden !important;
    text-align: center !important;
    transition: transform .25s ease, box-shadow .25s ease;
    color: var(--hd-asphalt-2) !important;
}
/* Title block — heavy weight + dark ink, with explicit background so a
   nested wp-block background can't bleed through. */
body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce ul.products li.product h2,
body .woocommerce ul.products li.product h3,
body .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    color: var(--hd-bone) !important;
    background: transparent !important;
}
body .woocommerce ul.products li.product .price,
body .woocommerce ul.products li.product .price > * {
    color: var(--hd-hot-orange) !important;
    background: transparent !important;
}
/* Force the .woocommerce wrapper itself to stretch — some setups
   inherit a narrow max-width that squeezes the grid. */
.hd-section--bone .woocommerce,
.hd-main .woocommerce {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}
.woocommerce ul.products li.product:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    font-family: var(--hd-font-headline) !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    text-transform: uppercase !important;
    color: var(--hd-bone) !important;
    padding: 0 20px !important;
    margin: 8px 0 4px !important;
}
.woocommerce ul.products li.product img {
    max-height: 240px;
    width: auto;
    margin: 28px auto 14px;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    color: var(--hd-hot-orange) !important;
    font-family: var(--hd-font-headline) !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    padding: 0 20px;
    display: block;
}
.woocommerce ul.products li.product a.button,
.woocommerce-page ul.products li.product a.button {
    background: var(--hd-hot-orange) !important;
    color: var(--hd-carbon) !important;
    font-family: var(--hd-font-headline) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    padding: 10px 18px !important;
    border-radius: 5px !important;
    margin: 8px 16px 22px !important;
    border: 0 !important;
    white-space: nowrap !important; /* never wrap "Add to cart" per-letter */
    max-width: calc(100% - 32px);
}
.woocommerce ul.products li.product a.button:hover,
.woocommerce-page ul.products li.product a.button:hover {
    background: var(--hd-sun-gold) !important;
    color: var(--hd-carbon) !important;
}

/* Single product page */
.woocommerce div.product .product_title {
    font-family: var(--hd-font-display) !important;
    font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
    line-height: .9 !important;
    text-transform: uppercase !important;
    /* Single product summary sits on the dark carbon canvas (no light card
       behind it), so the title must be light or it disappears. v0.10.5 fix. */
    color: var(--hd-bone) !important;
    letter-spacing: .02em !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--hd-hot-orange) !important;
    font-family: var(--hd-font-headline) !important;
    font-weight: 700 !important;
    font-size: 32px !important;
}
.woocommerce .single_add_to_cart_button,
.woocommerce a.button.alt,
.woocommerce-page a.button.alt {
    background: var(--hd-hot-orange) !important;
    color: var(--hd-carbon) !important;
    font-family: var(--hd-font-headline) !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    border: 0 !important;
    padding: 15px 28px !important;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--hd-hot-orange-d) !important; color: var(--hd-bone) !important; }

/* Cart / checkout typography */
.woocommerce-cart-form,
.woocommerce table.shop_table {
    background: #fff;
    color: var(--hd-asphalt-2);
}
.woocommerce table.shop_table th { color: var(--hd-asphalt-2); font-family: var(--hd-font-headline); }

/* WPForms styling on dark surfaces */
.wpforms-container .wpforms-field-label {
    color: var(--hd-pale-steel-x) !important;
    font-family: var(--hd-font-headline) !important;
    font-weight: 600 !important;
    font-size: 10px !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
}
.wpforms-container input.wpforms-field-medium,
.wpforms-container input.wpforms-field-large,
.wpforms-container textarea.wpforms-field-medium,
.wpforms-container textarea.wpforms-field-large,
.wpforms-container select.wpforms-field-medium {
    background: var(--hd-steel-deep-2) !important;
    border: 1px solid var(--hd-hairline-m) !important;
    color: var(--hd-bone) !important;
    border-radius: 4px !important;
}
.wpforms-container button[type="submit"] {
    background: var(--hd-hot-orange) !important;
    color: var(--hd-carbon) !important;
    font-family: var(--hd-font-headline) !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    border: 0 !important;
    border-radius: 4px !important;
    padding: 14px 28px !important;
}

/* =================================================================
   UTILITY
   ================================================================= */
.hd-text-center { text-align: center; }
.hd-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 26px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Drink subnav has carbon background by default, make has steel */
body.mode-make .hd-subnav-row { background: rgba(34,42,46,.55); }

/* The grain texture from v7+ — kept */
.hd-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
