/* =================================================================
   HVB HOME REDESIGN � page-homepage.css
   Scoped under .hvb-home + .hvb-home-top-strip
   so nothing leaks into the live home template or footer/header.
   ================================================================= */

/* ---------------- TOKENS (Heritage only) ----------------------- */
.hvb-home {
    --forest: #1a3a2e;
    --forest-mid: #2a5d3a;
    --forest-light: #3a6d4a;
    --forest-lighter: #85b67c;
    --forest-deep: #0f2a1f;

    --gold: #d4af37;
    --gold-light: #f4e061;
    --gold-dark: #b8960c;
    --gold-soft: #e8c873;

    --cream: #fff9e6;
    --cream-dark: #fff3cd;
    --bone: #f5ecd7;

    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --text-light: #737373;
    --ink: #1b1b17;

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 100px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);

    --hp-transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --hp-transition-fast: 0.18s ease;

    --font-display: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-meta: 'Montserrat', sans-serif;

    --accent: var(--gold);
    --accent-2: var(--gold-soft);
    --surface: var(--cream);
    --surface-2: var(--cream-dark);
    --page-bg-a: var(--forest);
    --page-bg-b: var(--forest-mid);

    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.hvb-home img { max-width: 100%; display: block; }
.hvb-home a { color: inherit; }

.hvb-home .display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* ---------------- TOP STRIP (announcement bar) ----------------- */
.hvb-home-top-strip {
    background: #0f2a1f;
    color: #e8c873;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 16px;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.hvb-home-top-strip span + span { margin-left: 28px; position: relative; }
.hvb-home-top-strip span + span::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d4af37;
    transform: translateY(-50%);
    opacity: 0.6;
}
@media (max-width: 640px) {
    .hvb-home-top-strip span + span { display: block; margin-left: 0; margin-top: 4px; }
    .hvb-home-top-strip span + span::before { display: none; }
}

/* ---------------- HERO ----------------------------------------- */
.hvb-home .hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 80% at 80% 45%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 10% 75%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, var(--page-bg-a) 0%, var(--page-bg-b) 55%, var(--page-bg-a) 100%);
    padding: 64px 24px 80px;
    color: #fff;
}
.hvb-home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 2px),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 1.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    pointer-events: none;
    opacity: 0.6;
}
.hvb-home .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hvb-home .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-meta);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 7px 16px 7px 12px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
    border-radius: 100px;
    margin-bottom: 24px;
}
.hvb-home .eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.hvb-home .eyebrow-on-light {
    color: var(--forest-mid);
    background: rgba(42, 93, 58, 0.08);
    border-color: rgba(42, 93, 58, 0.3);
}
.hvb-home .eyebrow-on-light .dot { background: var(--forest-mid); box-shadow: 0 0 0 3px rgba(42, 93, 58, 0.18); }

.hvb-home .hero h1 {
    font-size: clamp(2.1rem, 4.8vw, 4.125rem);
    color: #fff;
    margin: 0 0 22px;
}
.hvb-home .hero h1 .h1-line1 { display: block; white-space: nowrap; }
@media (max-width: 640px) {
    .hvb-home .hero h1 .h1-line1 { white-space: normal; }
}
.hvb-home .hero h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
    display: inline-block;
}
.hvb-home .hero h1 em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.5;
}
.hvb-home .hero-lede {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0 0 32px;
    line-height: 1.6;
}
.hvb-home .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hvb-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform var(--hp-transition-fast), box-shadow var(--hp-transition-fast), background var(--hp-transition-fast), color var(--hp-transition-fast);
}
.hvb-home .btn-primary {
    background: var(--accent);
    color: var(--forest-deep);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.3);
}
.hvb-home .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.45);
    background: var(--accent-2);
    color: var(--forest-deep);
}
.hvb-home .btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.hvb-home .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hvb-home .btn-on-light {
    background: var(--forest-mid);
    color: #fff;
    padding: 16px 36px;
}
.hvb-home .btn-on-light:hover { background: var(--forest-deep); transform: translateY(-2px); }

.hvb-home .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hvb-home .trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--hp-transition-fast);
    line-height: 1.3;
}
.hvb-home .trust-chip:hover { color: var(--accent); }
.hvb-home .trust-chip svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 520px) {
    .hvb-home .hero-trust { grid-template-columns: 1fr; }
}

/* Hero visual � sized down per feedback */
.hvb-home .hero-visual {
    position: relative;
    max-width: 460px;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 0 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
}
.hvb-home .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hvb-home .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 42, 31, 0.5) 100%);
    pointer-events: none;
}
.hvb-home .hero-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: flex-start;
    z-index: 2;
}
.hvb-home .hero-tag-pill {
    background: rgba(15, 42, 31, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 14px;
    border-radius: 100px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hvb-home .hero-tag-pill svg { width: 14px; height: 14px; }

/* Compliance fineprint (21+ / local regulations) */
.hvb-home .fineprint {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
}
.hvb-home .fineprint.on-dark { color: rgba(255, 255, 255, 0.45); }

@media (max-width: 900px) {
    .hvb-home .hero { padding: 40px 20px 56px; }
    .hvb-home .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hvb-home .hero-visual { max-width: 420px; margin: 0 auto; }
}

/* ---------------- TRUST BAND ----------------------------------- */
.hvb-home .trust-band {
    background: var(--forest-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    padding: 26px 24px;
}
.hvb-home .trust-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}
.hvb-home .trust-cell {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}
.hvb-home .trust-cell + .trust-cell {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 28px;
}
.hvb-home .trust-cell svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.hvb-home .trust-title { font-size: 0.8rem; font-weight: 700; color: #fff; line-height: 1.3; }
.hvb-home .trust-sub { font-size: 0.72rem; color: rgba(255, 255, 255, 0.55); margin-top: 3px; line-height: 1.45; }

@media (max-width: 1024px) {
    .hvb-home .trust-band-inner { grid-template-columns: repeat(3, 1fr); gap: 22px 20px; }
    .hvb-home .trust-cell + .trust-cell { border-left: none; padding-left: 0; }
    .hvb-home .trust-cell:nth-child(n+4) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 18px;
    }
}
@media (max-width: 620px) {
    /* Compact 2-up grid instead of a tall single-column stack */
    .hvb-home .trust-band-inner { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
    .hvb-home .trust-cell { padding: 0; gap: 10px; }
    .hvb-home .trust-cell + .trust-cell { border-top: none; }
    .hvb-home .trust-cell:nth-child(n+4) { padding-top: 0; border-top: none; }
    .hvb-home .trust-cell svg { width: 20px; height: 20px; }
    .hvb-home .trust-title { font-size: 0.76rem; }
    .hvb-home .trust-sub { font-size: 0.66rem; }
}

/* ---------------- PROOF BAR ------------------------------------ */
.hvb-home .proof-bar {
    background: var(--forest-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    padding: 22px 24px;
}
.hvb-home .proof-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}
.hvb-home .proof-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
}
.hvb-home .proof-cell + .proof-cell {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 24px;
}
.hvb-home .proof-cell svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.hvb-home .proof-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 2px;
}
.hvb-home .proof-value { font-size: 0.95rem; font-weight: 600; color: #fff; }
.hvb-home .proof-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    line-height: 1.4;
    font-weight: 400;
}
.hvb-home .proof-cell { align-items: flex-start; }
.hvb-home .proof-cell svg { margin-top: 2px; }

@media (max-width: 900px) {
    .hvb-home .proof-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hvb-home .proof-cell + .proof-cell { border-left: none; padding-left: 0; }
}
@media (max-width: 500px) {
    /* Keep a compact 2-up grid instead of one tall column */
    .hvb-home .proof-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
    .hvb-home .proof-cell svg { width: 22px; height: 22px; }
    .hvb-home .proof-value { font-size: 0.86rem; }
    .hvb-home .proof-note { font-size: 0.66rem; }
}

/* ---------------- PAGE WRAP ------------------------------------ */
.hvb-home .wrap { max-width: 1280px; margin: 0 auto; padding: 96px 24px; }
.hvb-home .wrap-tight { max-width: 1100px; margin: 0 auto; padding: 96px 24px; }
@media (max-width: 640px) {
    .hvb-home .wrap, .hvb-home .wrap-tight { padding: 64px 20px; }
}

/* ---------------- SECTION HEADER ------------------------------- */
.hvb-home .sec-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hvb-home .sec-head-light { border-bottom-color: rgba(26, 58, 46, 0.12); }
.hvb-home .sec-head .eyebrow { margin-bottom: 16px; }
.hvb-home .sec-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0;
    color: #fff;
    max-width: 700px;
}
.hvb-home .sec-head-light h2 { color: var(--forest-deep); }
.hvb-home .sec-head p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 380px;
    margin: 0;
    font-size: 0.95rem;
}
.hvb-home .sec-head-light p { color: var(--text-muted); }

@media (max-width: 768px) {
    .hvb-home .sec-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}

/* ---------------- STORY ---------------------------------------- */
.hvb-home .story { background: var(--surface); }
.hvb-home .story-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hvb-home .story h2 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    color: var(--forest-deep);
    margin: 0 0 24px;
}
.hvb-home .story h2 em { font-style: normal; color: var(--forest-mid); }
.hvb-home .story-kicker {
    font-family: var(--font-meta);
    font-size: 0.78rem;
    color: var(--forest-mid);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hvb-home .story-kicker::before { content: ""; width: 32px; height: 1px; background: var(--forest-mid); }
.hvb-home .story-lede {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}
.hvb-home .story-body p {
    color: var(--text-muted);
    margin: 0 0 14px;
    font-size: 0.98rem;
    line-height: 1.75;
}
.hvb-home .story-link {
    color: var(--forest-mid);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(42, 93, 58, 0.3);
    text-underline-offset: 3px;
}
.hvb-home .story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 58, 46, 0.12);
}
.hvb-home .stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--forest-deep);
    line-height: 1;
}
.hvb-home .stat-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-top: 8px;
}
.hvb-home .story-visual {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.hvb-home .story-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hvb-home .story-visual-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(0deg, rgba(15, 42, 31, 0.95), transparent);
    color: #fff;
}
.hvb-home .story-visual-overlay h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 8px;
    color: var(--accent);
}
.hvb-home .story-visual-overlay p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 900px) {
    .hvb-home .story-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
    .hvb-home .story-visual { aspect-ratio: 1; max-width: 500px; margin: 0 auto; width: 100%; }
}

/* ---------------- LIMITS (Mountain + tagline, split layout) ---- */
.hvb-home .limits { background: var(--surface); }
.hvb-home .limits-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 72px;
    align-items: center;
}
.hvb-home .limits-visual {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(26, 58, 46, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.hvb-home .limits-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}
.hvb-home .limits-text h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: var(--forest-deep);
    margin: 0 0 24px;
    line-height: 1.15;
}
.hvb-home .limits-text h2 em { font-style: normal; color: var(--forest-mid); }
.hvb-home .limits-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}
@media (max-width: 900px) {
    .hvb-home .limits-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 24px;
    }
    .hvb-home .limits-visual {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
        aspect-ratio: 3 / 2;
    }
}

/* ---------------- PRODUCTS ------------------------------------- */
.hvb-home .products {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}
.hvb-home .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.hvb-home .pcard {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--hp-transition), box-shadow var(--hp-transition), border-color var(--hp-transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}
.hvb-home .pcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(26, 58, 46, 0.18);
    border-color: var(--accent);
}
.hvb-home .pcard-thumb {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%),
        linear-gradient(160deg, #1a3a2e 0%, #2a5d3a 100%);
}
.hvb-home .pcard-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--hp-transition);
}
.hvb-home .pcard:hover .pcard-thumb img { transform: scale(1.04); }

/* Variant accents (subtle border tint on the thumb) */
.hvb-home .pcard-red .pcard-thumb { background: linear-gradient(160deg, #7a2d2d 0%, #3d1515 100%); }
.hvb-home .pcard-gold .pcard-thumb { background: linear-gradient(160deg, #6b5a1a 0%, #2d2510 100%); }

.hvb-home .pcard-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 42, 31, 0.85);
    backdrop-filter: blur(8px);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
}
.hvb-home .pcard-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hvb-home .pcard-vein {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hvb-home .vein-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.hvb-home .pcard h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--forest-deep);
    margin: 0;
}
.hvb-home .pcard-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}
.hvb-home .pcard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(26, 58, 46, 0.1);
}
.hvb-home .pcard-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--forest-deep);
}
.hvb-home .pcard-price .woocommerce-Price-amount { color: var(--forest-deep); font-family: inherit; }
.hvb-home .pcard-price del { color: var(--text-light); font-size: 0.85em; margin-right: 6px; }
.hvb-home .pcard-price ins { text-decoration: none; color: var(--forest-mid); }
.hvb-home .pcard-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--forest-mid);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hvb-home .pcard-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--hp-transition-fast);
}
.hvb-home .pcard:hover .pcard-link svg { transform: translateX(4px); }

.hvb-home .products-foot { text-align: center; }
.hvb-home .products-foot .btn { background: var(--forest-mid); color: #fff; padding: 16px 36px; }
.hvb-home .products-foot .btn:hover { background: var(--forest-deep); transform: translateY(-2px); }

@media (max-width: 900px) {
    .hvb-home .products-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------------- LAB ------------------------------------------ */
.hvb-home .lab {
    background:
        radial-gradient(ellipse 70% 60% at 10% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hvb-home .lab::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.hvb-home .lab-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
    position: relative;
}
.hvb-home .lab-text h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin: 0 0 24px;
    color: #fff;
}
.hvb-home .lab-text h2 em { font-style: normal; color: var(--accent); }
.hvb-home .lab-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 0 20px;
}
.hvb-home .lab-link {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    text-underline-offset: 3px;
}
.hvb-home .lab-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.hvb-home .lab-metric {
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    gap: 14px;
    align-items: start;
}
.hvb-home .lab-metric svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.hvb-home .lab-metric-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.hvb-home .lab-metric-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}
.hvb-home .lab-cta { margin-top: 36px; }

/* COA card */
.hvb-home .coa {
    background: #fefbf5;
    color: var(--ink);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.3);
    font-family: var(--font-body);
    transform: rotate(-0.8deg);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}
/* Diagonal "SAMPLE" watermark behind the card content so it cannot
   be mistaken for a real COA. */
.hvb-home .coa-sample-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 12vw, 6.5rem);
    letter-spacing: 0.18em;
    color: rgba(184, 150, 12, 0.12);
    transform: rotate(-22deg);
    pointer-events: none;
    user-select: none;
    z-index: 1;
    text-transform: uppercase;
}
/* Lift every direct child of the COA card above the watermark, but
   keep .coa-stamp-text on its original absolute coordinates so it
   stays inside the gold circle in the top-right corner. */
.hvb-home .coa > *:not(.coa-sample-watermark):not(.coa-stamp-text) {
    position: relative;
    z-index: 2;
}
.hvb-home .coa-stamp-text {
    z-index: 3;
}
.hvb-home .coa:hover { transform: rotate(0deg) scale(1.01); }
/* The diagonal SAMPLE watermark and the "SAMPLE � for illustration"
   subtitle already make it clear the COA is illustrative. The legacy
   gold corner stamp is intentionally not rendered here so it can't
   overlap the lot/meta column. */
.hvb-home .coa::before,
.hvb-home .coa-stamp-text { display: none; }
.hvb-home .coa-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--forest-deep);
    margin-bottom: 20px;
}
.hvb-home .coa-head-mark { display: flex; align-items: center; gap: 10px; }
.hvb-home .coa-head-logo {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--forest-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-deep);
}
.hvb-home .coa-head h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--forest-deep);
    margin: 0;
    letter-spacing: 0.06em;
}
.hvb-home .coa-head small {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.hvb-home .coa-head-meta {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.hvb-home .coa-head-meta strong { color: var(--forest-deep); }
.hvb-home .coa-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--forest-deep);
    margin: 0 0 4px;
}
.hvb-home .coa-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 0 20px;
}
.hvb-home .coa-results {
    background: rgba(42, 93, 58, 0.04);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 14px;
}
.hvb-home .coa-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--forest-mid);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hvb-home .coa-units { color: var(--text-muted); font-weight: 500; letter-spacing: 0; }
.hvb-home .coa-table { width: 100%; font-size: 0.82rem; }
.hvb-home .coa-table .row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(26, 58, 46, 0.15);
    align-items: center;
}
.hvb-home .coa-table .row:last-child { border-bottom: none; }
.hvb-home .coa-table .name { color: var(--ink); font-weight: 500; }
.hvb-home .coa-table .val {
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    font-weight: 500;
}
.hvb-home .coa-table .pill {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hvb-home .pill-pass { background: rgba(42, 93, 58, 0.12); color: var(--forest-mid); }
.hvb-home .pill-nd { background: rgba(26, 58, 46, 0.08); color: var(--text-muted); }
.hvb-home .coa-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(26, 58, 46, 0.1);
    font-size: 0.72rem;
    color: var(--text-muted);
}
.hvb-home .coa-sig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest-mid);
    font-weight: 600;
}
.hvb-home .coa-sig svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
    .hvb-home .lab-inner { grid-template-columns: 1fr; padding: 80px 24px; gap: 56px; }
    .hvb-home .lab-metrics { grid-template-columns: 1fr; }
    .hvb-home .coa { transform: none; }
    .hvb-home .coa:hover { transform: scale(1.01); }
}

/* ---------------- STRAINS -------------------------------------- */
.hvb-home .strains { background: var(--surface); }
.hvb-home .strain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hvb-home .strain {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 58, 46, 0.08);
    transition: border-color var(--hp-transition), box-shadow var(--hp-transition), transform var(--hp-transition);
    display: flex;
    flex-direction: column;
    color: inherit;
}
.hvb-home .strain:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(26, 58, 46, 0.12);
    transform: translateY(-4px);
}
.hvb-home .strain-head {
    padding: 24px;
    border-bottom: 1px solid rgba(26, 58, 46, 0.08);
}
.hvb-home .strain-swatch {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.1);
}
.hvb-home .strain-swatch.white { background: #e0e0e0; }
.hvb-home .strain-swatch.green { background: #5c8b5a; }
.hvb-home .strain-swatch.red { background: #8c4a4a; }
.hvb-home .strain-swatch.yellow { background: #c9a94a; }
.hvb-home .strain-swatch.gold { background: #d4af37; }
.hvb-home .strain-swatch.blend { background: conic-gradient(#5c8b5a, #8c4a4a, #c9a94a, #d4af37, #5c8b5a); }

.hvb-home .strain h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--forest-deep);
    margin: 0 0 6px;
}
.hvb-home .strain-sub { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.hvb-home .strain-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hvb-home .strain-body small {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--forest-mid);
    margin-bottom: 12px;
    display: block;
}
.hvb-home .strain-chips { display: flex; flex-wrap: wrap; gap: 6px; }

/* In-stock chip: green, clickable */
.hvb-home .strain-chip {
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 100px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--hp-transition-fast), color var(--hp-transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}
.hvb-home .strain-chip.link {
    background: var(--forest-mid);
    color: #fff;
}
.hvb-home .strain-chip.link:hover { background: var(--forest-deep); color: #fff; }

/* Sold-out chip: muted, no strikethrough, small inline label.
   Still clickable � links to the product page so the user can join a
   back-in-stock list or see when it returns. */
.hvb-home .strain-chip.sold-out {
    background: rgba(26, 58, 46, 0.06);
    color: rgba(26, 58, 46, 0.55);
}
.hvb-home .strain-chip.sold-out:hover {
    background: rgba(26, 58, 46, 0.1);
    color: rgba(26, 58, 46, 0.75);
}
.hvb-home .strain-chip.sold-out .sold-out-tag {
    font-style: normal;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c23c3c;
    background: rgba(194, 60, 60, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1;
}

@media (max-width: 900px) { .hvb-home .strain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hvb-home .strain-grid { grid-template-columns: 1fr; } }

/* ---------------- SHOWCASE (pouch explosion banner) ------------ */
.hvb-home .showcase {
    background: var(--surface);
    padding: 40px 24px 80px;
}
.hvb-home .showcase-inner {
    max-width: 720px;
    margin: 0 auto;
}
.hvb-home .showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}
@media (max-width: 640px) {
    .hvb-home .showcase { padding: 24px 20px 64px; }
    .hvb-home .showcase-inner { max-width: 480px; }
}

/* ---------------- OFFER ---------------------------------------- */
.hvb-home .offer { background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%); }
.hvb-home .offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hvb-home .offer-card {
    padding: 32px;
    background: transparent;
    border-top: 2px solid var(--forest-mid);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hvb-home .offer-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-deep);
    margin-bottom: 8px;
}
.hvb-home .offer-icon-wrap svg { width: 32px; height: 32px; }
.hvb-home .offer-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--forest-deep);
    margin: 0;
}
.hvb-home .offer-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 900px) { .hvb-home .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hvb-home .offer-grid { grid-template-columns: 1fr; } }

/* ---------------- SPIRIT (split: image + text) ----------------- */
.hvb-home .spirit {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
    color: #fff;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}
.hvb-home .spirit::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 1.5px),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 1.5px),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 1.5px);
    background-size: 90px 90px, 120px 120px, 70px 70px;
    pointer-events: none;
}
.hvb-home .spirit-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}
.hvb-home .spirit-visual {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(212, 175, 55, 0.1);
}
.hvb-home .spirit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hvb-home .spirit-mark {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    margin-bottom: 20px;
}
.hvb-home .spirit h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    margin: 0 0 24px;
}
.hvb-home .spirit h2 em { font-style: normal; color: var(--accent); }
.hvb-home .spirit-lede {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 18px;
    line-height: 1.6;
}
.hvb-home .spirit-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0 0 16px;
}
@media (max-width: 900px) {
    .hvb-home .spirit { padding: 80px 20px; }
    .hvb-home .spirit-inner { grid-template-columns: 1fr; gap: 40px; }
    .hvb-home .spirit-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ---------------- SECTION DIVIDER ------------------------------ */
.hvb-home .section-divider {
    background: var(--forest-deep);
    padding: 28px 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.hvb-home .section-divider-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hvb-home .section-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}
.hvb-home .section-divider-mark {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

/* ---------------- REVIEWS -------------------------------------- */
.hvb-home .reviews { background: var(--forest-deep); color: #fff; }
.hvb-home .reviews-inner { max-width: 1280px; margin: 0 auto; padding: 120px 24px; }
.hvb-home .reviews .sec-head { grid-template-columns: 1fr; border-bottom-color: rgba(212, 175, 55, 0.15); }
.hvb-home .reviews .sec-head h2 em { font-style: normal; color: var(--accent); }
.hvb-home .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hvb-home .review {
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: background var(--hp-transition), border-color var(--hp-transition);
}
.hvb-home .review:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}
.hvb-home .review-stars { display: flex; gap: 2px; color: var(--accent); }
.hvb-home .review-stars svg { width: 16px; height: 16px; }
.hvb-home .review-body {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.hvb-home .review-product {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hvb-home .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}
.hvb-home .review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--forest-deep);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
}
.hvb-home .review-author-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.hvb-home .review-author-meta { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }
.hvb-home .review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--accent);
}
.hvb-home .review-verified svg { width: 12px; height: 12px; }

.hvb-home .reviews-empty {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 16px;
}
.hvb-home .reviews-empty p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 20px;
    font-size: 1rem;
}

@media (max-width: 900px) { .hvb-home .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hvb-home .reviews-grid { grid-template-columns: 1fr; } }

/* ---------------- FINAL CTA ------------------------------------ */
.hvb-home .final-cta {
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, var(--page-bg-a) 0%, var(--page-bg-b) 100%);
    padding: 120px 24px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.hvb-home .final-cta-inner { max-width: 760px; margin: 0 auto; position: relative; }
.hvb-home .final-cta h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin: 20px 0;
    color: #fff;
}
.hvb-home .final-cta h2 em { color: var(--accent); font-style: normal; }
.hvb-home .final-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.08rem;
    max-width: 540px;
    margin: 0 auto 36px;
}
.hvb-home .final-cta .btn-primary { padding: 18px 40px; font-size: 1rem; }

/* ---------------- REVEAL --------------------------------------- */
html.hvb-reveal-ready .hvb-home .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hvb-home .reveal.in {
    opacity: 1;
    transform: none;
}

.hvb-home .screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hvb-home .reveal { opacity: 1 !important; transform: none !important; transition: none; }
    .hvb-home *, .hvb-home *::before, .hvb-home *::after {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}

/* ---------------- HEADER LOGO (bigger per request) ------------- */
/* Target the theme's existing header logo only on pages using this
   test template � so the live home logo size is untouched while testing. */
.page-template-templates-homepage .hvb-header-logo img,
body.page-template-templates-homepage .custom-logo {
    height: auto !important;
    max-height: 120px !important;
    width: auto !important;
    max-width: 360px !important;
}
@media (max-width: 900px) {
    .page-template-templates-homepage .hvb-header-logo img,
    body.page-template-templates-homepage .custom-logo {
        max-height: 80px !important;
        max-width: 240px !important;
    }
}

/* ---------------- FAIL-SAFE: always-visible reveal content ---- */
.hvb-home .reveal { opacity: 1 !important; transform: none !important; }

/* =================================================================
   DIRECTION C — homepage body (merged from page-home-c.css)
   Single-file so the homepage needs only page-home.css.
   ================================================================= */
/* =================================================================
   Direction C — homepage body visual language
   Layered on page-home.css. Scoped to .hvb-home.homeC so it overrides
   the prior body-section styles while reusing the same tokens.
   System: numbered gold-rule kickers (no pills), Cinzel + gold em,
   alternating forest-deep / cream, full-bleed imagery, gold hairlines.
   Header / trust band / proof bar / hero stay as styled in page-home.css.
   ================================================================= */

/* ---------- Shared section primitives ---------- */
.hvb-home.homeC .c-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0 0 22px;
}
.hvb-home.homeC .c-kicker .num {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.12em;
}
.hvb-home.homeC .c-kicker::after { content: ""; width: 40px; height: 1px; opacity: 0.6; }
.hvb-home.homeC .c-kicker.on-dark { color: var(--gold); }
.hvb-home.homeC .c-kicker.on-dark::after { background: var(--gold); }
.hvb-home.homeC .c-kicker.on-light { color: var(--gold-dark); }
.hvb-home.homeC .c-kicker.on-light::after { background: var(--gold-dark); }
.hvb-home.homeC .c-kicker.center { justify-content: center; }
.hvb-home.homeC .c-kicker.center::before { content: ""; width: 40px; height: 1px; opacity: 0.6; background: currentColor; }

.hvb-home.homeC h2.display { font-size: clamp(28px, 4.4vw, 44px); line-height: 1.12; margin: 0; }
.hvb-home.homeC .dark h2.display { color: #fff; }
.hvb-home.homeC h2.display em { font-style: normal; color: var(--gold); }
.hvb-home.homeC .light h2.display { color: var(--forest-deep); }
.hvb-home.homeC .light h2.display em { color: var(--gold-dark); }

/* ---------- 01 · The Source (story) ---------- */
.hvb-home.homeC .source {
    background: var(--cream);
    padding: 104px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 72px;
    align-items: center;
}
.hvb-home.homeC .source-lede { font-size: 17.5px; color: var(--text-dark); line-height: 1.7; margin: 22px 0 16px; }
.hvb-home.homeC .source-text > p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin: 0 0 14px; max-width: 560px; }
.hvb-home.homeC .source a.inline { color: var(--forest-mid); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(42, 93, 58, 0.3); text-underline-offset: 3px; }
.hvb-home.homeC .source-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(184, 150, 12, 0.35);
}
.hvb-home.homeC .stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--forest-deep); line-height: 1; }
.hvb-home.homeC .stat-num em { font-style: normal; color: var(--gold-dark); }
.hvb-home.homeC .stat-lbl { font-size: 11.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-top: 8px; }

.hvb-home.homeC .source-visual { position: relative; }
.hvb-home.homeC .source-visual .frame {
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(15, 42, 31, 0.28);
}
.hvb-home.homeC .source-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hvb-home.homeC .source-visual::before {
    content: "";
    position: absolute;
    top: -18px; right: -18px;
    width: 60%; height: 60%;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.7;
}
.hvb-home.homeC .source-visual::after {
    content: "";
    position: absolute;
    bottom: -18px; left: -18px;
    width: 60%; height: 60%;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.7;
}
.hvb-home.homeC .source-visual .caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 26px;
    background: linear-gradient(0deg, rgba(15, 42, 31, 0.92), transparent);
    color: #fff;
    z-index: 2;
}
.hvb-home.homeC .source-visual .caption h3 { font-family: var(--font-display); font-size: 20px; color: var(--gold-soft); margin: 0 0 6px; font-weight: 700; }
.hvb-home.homeC .source-visual .caption p { font-size: 13px; color: rgba(255, 255, 255, 0.78); margin: 0; }

/* ---------- Motto — full-bleed mountain ---------- */
.hvb-home.homeC .motto {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    padding: 90px 80px;
}
.hvb-home.homeC .motto-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hvb-home.homeC .motto-scrim { position: absolute; inset: 0; background: rgba(15, 42, 31, 0.72); }
.hvb-home.homeC .motto-content { position: relative; z-index: 2; max-width: 760px; }
.hvb-home.homeC .motto-content .c-kicker { color: var(--gold); }
.hvb-home.homeC .motto h2.display { font-size: clamp(32px, 6vw, 52px); margin: 0 0 22px; color: #fff; }
.hvb-home.homeC .motto h2.display em { color: var(--gold); }
.hvb-home.homeC .motto p { font-size: 16px; color: rgba(255, 255, 255, 0.8); margin: 0 auto; max-width: 520px; line-height: 1.7; }
.hvb-home.homeC .motto-rule {
    width: 1px; height: 56px;
    background: linear-gradient(180deg, var(--gold), transparent);
    margin: 26px auto 0;
    opacity: 0.7;
}

/* ---------- 02 · Best-Sellers ---------- */
.hvb-home.homeC .sellers { background: var(--cream); padding: 104px 80px; }
.hvb-home.homeC .sellers-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    margin-bottom: 44px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(184, 150, 12, 0.35);
}
.hvb-home.homeC .sellers-head h2.display { margin-top: 0; }
.hvb-home.homeC .sellers-head-aside { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; max-width: 360px; }
.hvb-home.homeC .sellers-head-aside p { font-size: 14.5px; color: var(--text-muted); margin: 0; text-align: right; }
.hvb-home.homeC .all-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--forest-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.hvb-home.homeC .all-link svg { width: 14px; height: 14px; }

.hvb-home.homeC .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hvb-home.homeC .pcard {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(26, 58, 46, 0.08);
    box-shadow: 0 8px 24px rgba(26, 58, 46, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform var(--hp-transition-fast), box-shadow var(--hp-transition-fast);
}
.hvb-home.homeC .pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26, 58, 46, 0.14); }
.hvb-home.homeC .pcard-thumb {
    aspect-ratio: 4 / 3;
    position: relative;
    background: linear-gradient(160deg, var(--forest) 0%, var(--forest-mid) 100%);
}
.hvb-home.homeC .pcard-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hvb-home.homeC .pcard-badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    background: rgba(15, 42, 31, 0.85);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.hvb-home.homeC .pcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.hvb-home.homeC .pcard-vein {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hvb-home.homeC .vein-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.hvb-home.homeC .pcard h3 { font-size: 20px; color: var(--forest-deep); margin: 0; }
.hvb-home.homeC .pcard-desc { font-size: 13.5px; color: var(--text-muted); margin: 0; flex: 1; line-height: 1.55; }
.hvb-home.homeC .pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }
.hvb-home.homeC .pcard-price { font-family: var(--font-display); font-weight: 700; color: var(--forest-deep); font-size: 16px; }
.hvb-home.homeC .pcard-price del { color: var(--text-light); font-weight: 500; font-size: 13px; margin-right: 4px; }
.hvb-home.homeC .pcard-price ins { text-decoration: none; }
.hvb-home.homeC .pcard-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--forest-mid);
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hvb-home.homeC .pcard-link svg { width: 14px; height: 14px; }

/* ---------- 03 · The Lab ---------- */
.hvb-home.homeC .lab {
    background:
        radial-gradient(ellipse 70% 60% at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 100%);
    color: #fff;
    padding: 104px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 72px;
    align-items: center;
}
.hvb-home.homeC .lab-text > p { color: rgba(255, 255, 255, 0.78); font-size: 15.5px; line-height: 1.7; max-width: 520px; margin: 22px 0 0; }
.hvb-home.homeC .lab-text a.inline { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(212, 175, 55, 0.4); text-underline-offset: 3px; }
.hvb-home.homeC .lab-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}
.hvb-home.homeC .lab-metric {
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.hvb-home.homeC .lab-metric svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.hvb-home.homeC .lab-metric-title { font-family: var(--font-display); font-weight: 600; color: var(--gold); font-size: 14.5px; margin-bottom: 4px; }
.hvb-home.homeC .lab-metric-desc { font-size: 12.5px; color: rgba(255, 255, 255, 0.65); line-height: 1.5; margin: 0; }
.hvb-home.homeC .lab-btn { margin-top: 30px; }

/* COA card (compact) */
.hvb-home.homeC .coa {
    background: #fefbf5;
    color: var(--ink);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}
.hvb-home.homeC .coa-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 84px;
    letter-spacing: 0.18em;
    color: rgba(184, 150, 12, 0.1);
    transform: rotate(-22deg);
    pointer-events: none;
    text-transform: uppercase;
}
.hvb-home.homeC .coa > *:not(.coa-watermark) { position: relative; z-index: 2; }
.hvb-home.homeC .coa-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--forest-deep);
    margin-bottom: 16px;
}
.hvb-home.homeC .coa-head h3 { font-family: var(--font-display); font-size: 16px; color: var(--forest-deep); margin: 0; font-weight: 700; letter-spacing: 0.05em; }
.hvb-home.homeC .coa-head small { font-size: 10.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; }
.hvb-home.homeC .coa-meta { text-align: right; font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.hvb-home.homeC .coa-meta strong { color: var(--forest-deep); }
.hvb-home.homeC .coa-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--forest-deep); margin: 0 0 3px; }
.hvb-home.homeC .coa-sub { font-size: 12px; color: var(--text-muted); margin: 0 0 16px; }
.hvb-home.homeC .coa-block { background: rgba(42, 93, 58, 0.04); border-radius: 4px; padding: 13px 14px; margin-bottom: 11px; }
.hvb-home.homeC .coa-block-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--forest-mid);
    margin-bottom: 9px;
    display: flex;
    justify-content: space-between;
}
.hvb-home.homeC .coa-block-label span { color: var(--text-muted); font-weight: 500; letter-spacing: 0; }
.hvb-home.homeC .coa-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(26, 58, 46, 0.15);
    align-items: center;
    font-size: 12px;
}
.hvb-home.homeC .coa-row:last-child { border-bottom: none; }
.hvb-home.homeC .coa-row .val { font-variant-numeric: tabular-nums; color: var(--text-muted); font-weight: 500; }
.hvb-home.homeC .coa-pill {
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(42, 93, 58, 0.12);
    color: var(--forest-mid);
}
.hvb-home.homeC .coa-foot {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 58, 46, 0.1);
    font-size: 10.5px;
    color: var(--text-muted);
}

/* ---------- 04 · Strain Guide ---------- */
.hvb-home.homeC .strains { background: var(--cream); padding: 104px 80px; }
.hvb-home.homeC .strains > h2.display { margin-bottom: 0; }
.hvb-home.homeC .strain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.hvb-home.homeC .strain {
    background: #fff;
    border: 1px solid rgba(26, 58, 46, 0.08);
    border-radius: 4px;
    padding: 24px;
}
.hvb-home.homeC .strain-top { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.hvb-home.homeC .strain-swatch { width: 34px; height: 34px; border-radius: 4px; box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.1); flex-shrink: 0; }
.hvb-home.homeC .strain-swatch.white { background: #e0e0e0; }
.hvb-home.homeC .strain-swatch.green { background: #5c8b5a; }
.hvb-home.homeC .strain-swatch.red { background: #8c4a4a; }
.hvb-home.homeC .strain-swatch.yellow { background: #c9a94a; }
.hvb-home.homeC .strain-swatch.gold { background: var(--gold); }
.hvb-home.homeC .strain-swatch.blend { background: conic-gradient(#5c8b5a, #8c4a4a, #c9a94a, #d4af37, #5c8b5a); }
.hvb-home.homeC .strain h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--forest-deep); margin: 0; }
.hvb-home.homeC .strain-count { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-dark); }
.hvb-home.homeC .strain-sub { font-size: 13px; color: var(--text-muted); margin: 0 0 14px; }
.hvb-home.homeC .strain-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.hvb-home.homeC .strain-chip {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-weight: 500;
    background: var(--forest-mid);
    color: #fff;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hvb-home.homeC .strain-chip.sold-out { background: rgba(26, 58, 46, 0.12); color: var(--text-muted); }
.hvb-home.homeC .strain-chip .sold-out-tag { font-style: normal; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.75; }

/* ---------- 05 · The Collection (All-pouches lineup, framed) ---------- */
.hvb-home.homeC .collection {
    background: var(--cream);
    padding: 104px 80px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 72px;
    align-items: center;
}
.hvb-home.homeC .collection-visual { position: relative; }
.hvb-home.homeC .collection-visual .frame {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(15, 42, 31, 0.28);
    background: var(--forest-deep);
}
.hvb-home.homeC .collection-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hvb-home.homeC .collection-visual::before {
    content: "";
    position: absolute;
    top: -18px; left: -18px;
    width: 60%; height: 60%;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.7;
}
.hvb-home.homeC .collection-visual::after {
    content: "";
    position: absolute;
    bottom: -18px; right: -18px;
    width: 60%; height: 60%;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.7;
}
.hvb-home.homeC .collection-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 14px;
    max-width: 520px;
}
.hvb-home.homeC .collection-text .lede { font-size: 17.5px; color: var(--text-dark); margin: 22px 0 14px; }
.hvb-home.homeC .collection-text .btn { margin-top: 14px; }

/* ---------- 06 · Spirit of Garuda ---------- */
.hvb-home.homeC .spirit {
    background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
    color: #fff;
    padding: 104px 80px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}
.hvb-home.homeC .spirit-visual {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}
.hvb-home.homeC .spirit-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hvb-home.homeC .spirit-lede { font-size: 18px; color: rgba(255, 255, 255, 0.92); margin: 22px 0 16px; line-height: 1.65; }
.hvb-home.homeC .spirit-text > p { font-size: 15px; color: rgba(255, 255, 255, 0.72); line-height: 1.75; margin: 0 0 14px; }

/* ---------- Reviews ---------- */
.hvb-home.homeC .reviews { background: var(--forest-deep); color: #fff; padding: 104px 80px; border-top: 1px solid rgba(212, 175, 55, 0.15); }
.hvb-home.homeC .reviews-inner { max-width: 1280px; margin: 0 auto; padding: 0; }
.hvb-home.homeC .reviews > .reviews-inner > h2.display { margin-bottom: 0; }
.hvb-home.homeC .reviews h2.display { margin-bottom: 0; }
.hvb-home.homeC .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.hvb-home.homeC .review {
    padding: 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.hvb-home.homeC .review-stars { display: flex; gap: 2px; color: var(--gold); }
.hvb-home.homeC .review-stars svg { width: 15px; height: 15px; }
.hvb-home.homeC .review-product { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.hvb-home.homeC .review-body { font-size: 14px; color: rgba(255, 255, 255, 0.85); line-height: 1.6; margin: 0; flex: 1; }
.hvb-home.homeC .review-author { display: flex; align-items: center; gap: 11px; padding-top: 13px; border-top: 1px solid rgba(212, 175, 55, 0.12); }
.hvb-home.homeC .review-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--forest-deep);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    flex-shrink: 0;
}
.hvb-home.homeC .review-name { font-size: 13px; font-weight: 600; color: #fff; }
.hvb-home.homeC .review-meta { font-size: 11px; color: rgba(255, 255, 255, 0.5); }
.hvb-home.homeC .review-verified { margin-left: auto; font-size: 11px; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.hvb-home.homeC .review-verified svg { width: 12px; height: 12px; }
.hvb-home.homeC .reviews-empty { margin-top: 28px; color: rgba(255, 255, 255, 0.75); }
.hvb-home.homeC .reviews-empty p { margin: 0 0 16px; }
.hvb-home.homeC .hvb-fda-disclaimer {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    color: rgba(255, 255, 255, 0.5);
}
.hvb-home.homeC .hvb-fda-disclaimer svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; margin-top: 2px; }
.hvb-home.homeC .hvb-fda-disclaimer p { font-size: 11.5px; line-height: 1.55; margin: 0; }
.hvb-home.homeC .hvb-fda-disclaimer strong { display: block; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 0.08em; font-size: 10.5px; margin-bottom: 3px; }

/* ---------- Final CTA ---------- */
.hvb-home.homeC .final-cta {
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    padding: 104px 80px;
    text-align: center;
    color: #fff;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.hvb-home.homeC .final-cta-inner { max-width: 640px; margin: 0 auto; }
.hvb-home.homeC .final-cta h2.display { font-size: clamp(30px, 5.4vw, 48px); margin: 0 0 18px; color: #fff; }
.hvb-home.homeC .final-cta p { color: rgba(255, 255, 255, 0.75); font-size: 16px; max-width: 540px; margin: 0 auto 32px; }

/* Cap content at 1280px and center it on wide screens, while the section
   backgrounds stay full-bleed. The mockup was locked to 1440px so it never
   needed this; real wide monitors do. Horizontal padding = max(80px, the
   gutter that centers a 1280px column); vertical padding stays from each
   section's own rule. Mobile padding is restored in the media queries below. */
.hvb-home.homeC .source,
.hvb-home.homeC .sellers,
.hvb-home.homeC .lab,
.hvb-home.homeC .strains,
.hvb-home.homeC .collection,
.hvb-home.homeC .spirit,
.hvb-home.homeC .motto {
    padding-left: max(80px, calc((100% - 1280px) / 2));
    padding-right: max(80px, calc((100% - 1280px) / 2));
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
    .hvb-home.homeC .feat-grid,
    .hvb-home.homeC .strain-grid,
    .hvb-home.homeC .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .hvb-home.homeC .lab-metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hvb-home.homeC .source,
    .hvb-home.homeC .lab,
    .hvb-home.homeC .collection,
    .hvb-home.homeC .spirit {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 72px 24px;
    }
    .hvb-home.homeC .sellers,
    .hvb-home.homeC .strains,
    .hvb-home.homeC .reviews,
    .hvb-home.homeC .final-cta { padding: 72px 24px; }
    .hvb-home.homeC .motto { padding: 72px 24px; min-height: 420px; }
    /* Keep the framed image above the copy on stacked layouts */
    .hvb-home.homeC .collection-visual { order: -1; }
    .hvb-home.homeC .sellers-head { grid-template-columns: 1fr; align-items: start; gap: 16px; }
    .hvb-home.homeC .sellers-head-aside { align-items: flex-start; max-width: none; }
    .hvb-home.homeC .sellers-head-aside p { text-align: left; }
}

@media (max-width: 620px) {
    .hvb-home.homeC .feat-grid,
    .hvb-home.homeC .strain-grid,
    .hvb-home.homeC .reviews-grid,
    .hvb-home.homeC .lab-metrics { grid-template-columns: 1fr; }
    .hvb-home.homeC .source-stats { gap: 16px; }
    .hvb-home.homeC .stat-num { font-size: 30px; }
    .hvb-home.homeC .coa { padding: 22px; }
    .hvb-home.homeC .source-visual::before,
    .hvb-home.homeC .source-visual::after,
    .hvb-home.homeC .collection-visual::before,
    .hvb-home.homeC .collection-visual::after { width: 48%; height: 48%; }
}
