/**
 * Homepage Styles
 * Editorial · High Fashion · Dangerously Beautiful
 *
 * Design System
 * ─────────────────────────────────────────
 * Black  → #000000  (all dark sections)
 * Cream  → #FAF7F2  (all light sections)
 * Gold   → #C9A96E  (luxury accent)
 * Red    → #8B2635  (danger edge)
 * Ink    → #0A0A0A  (near-black for type on light)
 * ─────────────────────────────────────────
 */

/* =========================================================
   TOKENS
   ========================================================= */
.homepage-editorial {
    --black:        #000000;
    --cream:        #FAF7F2;
    --gold:         #C9A96E;
    --red:          #8B2635;
    --ink:          #0A0A0A;
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);

    /* on dark */
    --text-d:       rgba(250, 247, 242, 0.92);
    --muted-d:      rgba(250, 247, 242, 0.42);
    --dim-d:        rgba(250, 247, 242, 0.18);
    --border-d:     rgba(201, 169, 110, 0.15);
    --border-d-hi:  rgba(201, 169, 110, 0.45);

    /* on light */
    --muted-l:      rgba(10, 10, 10, 0.50);
    --border-l:     rgba(10, 10, 10, 0.10);
}

/* =========================================================
   SHARED COMPONENTS
   ========================================================= */

/* --- Eyebrow --- */
.hp-hero-eyebrow,
.hp-section-eyebrow,
.hp-letter-eyebrow,
.hp-partners-eyebrow,
.wl-eyebrow,
.wl-quiz-visual-eyebrow,
.wl-subject-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* red eyebrow (light sections) */
.hp-letter-eyebrow,
.hp-archetypes .hp-section-eyebrow,
.hp-products .hp-section-eyebrow,
.wl-three-pillars .wl-eyebrow {
    color: var(--red);
}

/* gold eyebrow (dark sections) */
.hp-hero-eyebrow,
.hp-wives .hp-section-eyebrow,
.hp-map .hp-section-eyebrow,
.wl-quiz-cta .wl-eyebrow,
.wl-subject .wl-eyebrow,
.wl-proof .wl-eyebrow,
.wl-quiz-visual-eyebrow,
.hp-partners .hp-partners-eyebrow {
    color: var(--gold);
}

/* badge (solid gold chip) */
.wl-subject-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    padding: 5px 14px;
    margin-bottom: 24px;
}

/* --- Section headings --- */
.hp-section-title,
.hp-letter-title,
.wl-h2,
.wl-proof-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 16px;
}

.hp-section-title,
.hp-letter-title {
    font-size: clamp(32px, 3.5vw, 52px);
}

.wl-h2 {
    font-size: clamp(26px, 3vw, 42px);
}

.wl-proof-headline {
    font-size: clamp(36px, 5vw, 68px);
    max-width: 680px;
}

/* heading colour — light sections */
.hp-letter-title,
.hp-archetypes .hp-section-title,
.hp-products .hp-section-title,
.wl-three-pillars .wl-h2 {
    color: var(--ink);
}

.hp-letter-title em { color: var(--red); }
.wl-three-pillars .wl-h2 em { color: var(--red); }

/* heading colour — dark sections */
.hp-wives .hp-section-title,
.hp-map .hp-section-title,
.wl-quiz-cta .wl-h2,
.wl-proof-headline {
    color: var(--cream);
}

.wl-quiz-cta .wl-h2 em,
.wl-proof-headline em {
    color: var(--gold);
    font-style: italic;
}

/* --- Gold rule --- */
.wl-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 28px;
}

.wl-rule.left { margin-left: 0; }

/* --- Body copy --- */
.wl-body,
.hp-section-subtitle,
.hp-letter-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin: 0 0 36px;
}

/* on light */
.hp-letter-text,
.hp-archetypes .hp-section-subtitle,
.hp-products .hp-section-subtitle,
.wl-three-pillars .wl-body {
    color: var(--muted-l);
}

/* on dark - full brightness for readability */
.wl-quiz-cta .wl-body,
.wl-proof-body,
.hp-wives .hp-section-subtitle,
.hp-map .hp-section-subtitle {
    color: var(--text-d);
}

.wl-proof-body { max-width: 500px; }

/* --- Buttons --- */
.hp-btn-primary,
.hp-btn-secondary,
.hp-btn-outline-light,
.wl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 15px 32px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
    width: fit-content;
}

/* Red primary (hero, light CTAs) */
.hp-btn-primary {
    background: var(--red);
    color: var(--cream);
    border-color: var(--red);
}
.hp-btn-primary:hover {
    background: transparent;
    color: var(--red);
}

/* Ghost on dark */
.hp-btn-secondary,
.wl-btn {
    background: transparent;
    color: var(--cream);
    border-color: rgba(250, 247, 242, 0.3);
}
.hp-btn-secondary:hover,
.wl-btn:hover {
    border-color: var(--cream);
    color: var(--cream);
}

/* Ghost on light */
.hp-letter .hp-btn-secondary {
    color: var(--ink);
    border-color: rgba(10, 10, 10, 0.25);
}
.hp-letter .hp-btn-secondary:hover {
    border-color: var(--ink);
}

/* Ghost outline on dark */
.hp-btn-outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(250, 247, 242, 0.25);
}
.hp-btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Gold solid */
.wl-btn-gold {
    background: var(--gold) !important;
    color: var(--ink) !important;
    border-color: var(--gold) !important;
}
.wl-btn-gold:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

/* --- Sparkle canvas --- */
.wl-sparkle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* --- Section header block --- */
.hp-section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* =========================================================
   SECTION 1: HERO
   ========================================================= */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 60px 0;
    overflow: hidden;
    background: var(--black);
}

/* Sparkle canvas in hero - ensure content stays above */
.hp-hero > .wl-sparkle-canvas {
    z-index: 1;
}

.hp-hero > *:not(.wl-sparkle-canvas):not(.hp-hero-bg) {
    position: relative;
    z-index: 2;
}

.hp-hero-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Subtle radial ambience */
.hp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hp-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 35%, rgba(139, 38, 53, 0.12) 0%, transparent 52%),
        radial-gradient(ellipse at 78% 15%, rgba(201, 169, 110, 0.07) 0%, transparent 42%);
}

.hp-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23C9A96E' stroke-width='0.4' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

/* Left column — content */
.hp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    flex-shrink: 0;
}

.hp-hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding-left: 52px;
    position: relative;
}

.hp-hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--cream);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.hp-hero-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hp-hero-subhead {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-d);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 400px;
}

.hp-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Right column — collage, starts at top */
.hp-hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
}

/* Editorial portrait triptych — fashion-spread treatment */
.hp-hero-editorial {
    position: relative;
    width: 520px;
}

.hp-hero-editorial-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px 4px;
    position: relative;
    padding-left: 30px;
}

.hp-hero-editorial-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.hp-hero-frames {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
}

.hp-hero-frame {
    position: relative;
    margin: 0;
    flex: 1 1 0;
    min-width: 0;
    transition: transform 0.55s var(--ease);
}

/* Center portrait is the focal point — taller and lifted */
.hp-hero-frame:nth-child(2) {
    margin-bottom: 34px;
    z-index: 2;
}

.hp-hero-frame-num {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--cream);
    background: rgba(8, 8, 8, 0.5);
    padding: 3px 7px;
    backdrop-filter: blur(2px);
}

.hp-hero-frame-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(201, 169, 110, 0.28);
    box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.8);
}

.hp-hero-frame:nth-child(2) .hp-hero-frame-media {
    aspect-ratio: 3 / 4.7;
    border-color: rgba(201, 169, 110, 0.5);
}

.hp-hero-frame-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.45) 0%, transparent 38%);
    pointer-events: none;
}

.hp-hero-frame-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(48%) contrast(1.04) brightness(0.94);
    transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}

/* Side frames sit a touch more muted for depth */
.hp-hero-frame:nth-child(odd) .hp-hero-frame-media img {
    filter: grayscale(62%) contrast(1.04) brightness(0.88);
}

.hp-hero-frame:hover {
    transform: translateY(-8px);
}

.hp-hero-frame:hover .hp-hero-frame-media img {
    filter: grayscale(0%) contrast(1) brightness(1);
    transform: scale(1.06);
}

.hp-hero-frame-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 12px;
    color: var(--text-d);
    text-align: center;
    margin-top: 14px;
    line-height: 1.3;
    transition: color 0.4s var(--ease);
}

.hp-hero-frame:hover .hp-hero-frame-name {
    color: var(--gold);
}

/* Stats bar — full width below content */
.wl-hero-stats {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border-d);
}

.wl-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    position: relative;
    transition: background 0.3s var(--ease);
}

.wl-stat-item + .wl-stat-item {
    border-left: 1px solid var(--border-d);
}

.wl-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.wl-stat-item:hover::before { opacity: 1; }
.wl-stat-item:hover { background: rgba(201, 169, 110, 0.04); }

.wl-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.01em;
}

.wl-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-d);
    margin-top: 8px;
}

/* =========================================================
   SECTION 2: DISCOVER YOUR STYLE DNA
   ========================================================= */
.wl-quiz-cta {
    position: relative;
    padding: 72px 60px;
    background: var(--black);
    overflow: hidden;
    border-top: 1px solid var(--border-d);
}

.wl-quiz-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 12% 60%, rgba(139, 38, 53, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 88% 40%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.wl-quiz-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
}

.wl-quiz-copy {
    display: flex;
    flex-direction: column;
}

.wl-quiz-cta .wl-eyebrow {
    display: block;
    margin-bottom: 18px;
}

.wl-quiz-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    border-top: 1px solid var(--border-d);
}

.wl-quiz-steps li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-d);
    transition: padding-left 0.25s var(--ease);
}

.wl-quiz-steps li:hover { padding-left: 8px; }

.wl-step-num {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-style: italic;
    color: var(--gold);
    min-width: 18px;
    padding-top: 2px;
}

.wl-step-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-d);
    margin-bottom: 3px;
    letter-spacing: 0.02em;
}

.wl-step-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--text-d);
    letter-spacing: 0.02em;
}

/* Right card */
.wl-quiz-visual {
    position: relative;
    padding: 40px 36px;
    border: 1px solid var(--border-d);
    background: rgba(201, 169, 110, 0.025);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
}
.corner-tl { top: -1px;    left: -1px;  border-top-width: 2px;    border-left-width: 2px;  }
.corner-tr { top: -1px;    right: -1px; border-top-width: 2px;    border-right-width: 2px; }
.corner-bl { bottom: -1px; left: -1px;  border-bottom-width: 2px; border-left-width: 2px;  }
.corner-br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

.wl-quiz-visual-eyebrow {
    display: block;
    margin-bottom: 22px;
}

.wl-quiz-visual-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 20px;
}

.wl-quiz-visual-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.wl-quiz-visual-body {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    line-height: 1.72;
    color: var(--text-d);
    margin-bottom: 32px;
    max-width: 290px;
}

.wl-quiz-note {
    margin-top: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--text-d);
}

/* =========================================================
   SECTION 3: HEIRESS LETTER
   ========================================================= */
.hp-letter {
    padding: 100px 60px;
    background: var(--cream);
    position: relative;
}

.hp-letter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, transparent, var(--gold));
}

.hp-letter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hp-letter-header { margin-bottom: 40px; }

.hp-letter-eyebrow {
    display: block;
    margin-bottom: 14px;
}

.hp-letter-content {
    position: relative;
    padding: 36px 0;
}

.hp-letter-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    color: var(--gold);
    opacity: 0.10;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.hp-letter-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--ink);
    margin: 0 0 36px;
    position: relative;
}

.hp-letter-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hp-letter-sign {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--red);
}

.hp-letter-seal { color: var(--gold); }
.hp-letter-cta  { margin-top: 40px; }

/* =========================================================
   SECTION 4: ARCHETYPE GRID
   ========================================================= */
.hp-archetypes {
    padding: 100px 60px;
    background: var(--cream);
    border-top: 1px solid var(--border-l);
}

.hp-section-eyebrow {
    display: block;
    margin-bottom: 14px;
}

.hp-archetypes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.hp-archetype-tile {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ink);
    text-decoration: none;
    display: block;
}

.hp-archetype-image {
    position: absolute;
    inset: 0;
}

.hp-archetype-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.05);
    transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}

.hp-archetype-tile:hover .hp-archetype-image img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.hp-archetype-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

.hp-archetype-glyph {
    font-size: 44px;
    color: rgba(201, 169, 110, 0.25);
}

.hp-archetype-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.92) 100%);
    transition: all 0.35s var(--ease);
}

.hp-archetype-cta {
    display: block;
    transform: translateY(6px);
    opacity: 0;
    transition: all 0.35s var(--ease);
}

.hp-archetype-tile:hover .hp-archetype-cta {
    transform: translateY(0);
    opacity: 1;
}

/* Manifesto reveal — the identity hook, hidden until hover */
.hp-archetype-rule {
    display: block;
    width: 0;
    height: 2px;
    background: var(--gold);
    margin: 0 0 10px;
    transition: width 0.4s var(--ease) 0.05s;
}

.hp-archetype-manifesto {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(254, 254, 254, 0.88);
    margin: 0 0 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(6px);
    transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.hp-archetype-tile:hover .hp-archetype-rule { width: 34px; }

.hp-archetype-tile:hover .hp-archetype-manifesto {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
}

/* Keep the manifesto visible on touch devices (no hover) */
@media (hover: none) {
    .hp-archetype-manifesto { max-height: 120px; opacity: 1; transform: none; }
    .hp-archetype-rule { width: 34px; }
    .hp-archetype-cta { opacity: 1; transform: none; }
}

.hp-archetype-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 5px;
}

.hp-archetype-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* =========================================================
   SECTION 5: FEATURED WIVES
   ========================================================= */
.hp-wives {
    padding: 100px 60px;
    background: var(--black);
    position: relative;
    border-top: 1px solid var(--border-d);
}

.hp-wives > *:not(.wl-sparkle-canvas) {
    position: relative;
    z-index: 1;
}

.hp-wives .hp-section-header.dark .hp-section-eyebrow { color: var(--gold); }
.hp-wives .hp-section-header.dark .hp-section-title   { color: var(--cream); }
.hp-wives .hp-section-header.dark .hp-section-subtitle{ color: var(--text-d); }

.hp-wives-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.hp-wife-card {
    text-align: center;
    text-decoration: none;
    transition: transform 0.35s var(--ease);
}

.hp-wife-card:hover { transform: translateY(-6px); }

.hp-wife-portrait {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    transition: border-color 0.35s var(--ease);
}

.hp-wife-card:hover .hp-wife-portrait { border-color: var(--gold); }

.hp-wife-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(25%);
    transition: filter 0.35s var(--ease);
}

.hp-wife-card:hover .hp-wife-portrait img { filter: grayscale(0%); }

.hp-wife-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gold);
}

.hp-wife-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 6px;
}

.hp-wife-archetype {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A96E !important;
    display: block;
    margin-top: 6px;
    opacity: 1 !important;
    visibility: visible !important;
}

.hp-wife-nw {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-top: 5px;
    opacity: 0.85;
}

.hp-wives-cta {
    text-align: center;
    margin-top: 52px;
    position: relative;
    z-index: 1;
}

/* =========================================================
   SECTION 6: RECENT PRODUCTS
   ========================================================= */
.hp-products {
    padding: 100px 60px;
    background: var(--cream);
    border-top: 1px solid var(--border-l);
}

.hp-products-row {
    max-width: 1400px;
    margin: 0 auto 60px;
}
.hp-products-row:last-of-type { margin-bottom: 0; }

.hp-products-row-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-l);
    padding-bottom: 12px;
    margin-bottom: 24px;
}
.hp-products-row-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
}
.hp-products-row-all {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: opacity 0.2s;
}
.hp-products-row-all:hover { opacity: 0.7; }

.hp-products-footer {
    text-align: center;
    margin-top: 56px;
}

.hp-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.hp-product-card { text-decoration: none; }

.hp-product-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 14px;
    background: #EDEAE5;
}

.hp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.hp-product-card:hover .hp-product-image img { transform: scale(1.04); }

.hp-product-shop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s var(--ease);
    pointer-events: none;
}

.hp-product-shop-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 22px;
    border: 1px solid var(--gold);
}

.hp-product-card:hover .hp-product-shop-overlay { opacity: 1; }

.hp-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-product-glyph {
    font-size: 32px;
    color: var(--gold);
    opacity: 0.28;
}

.hp-product-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 4px;
}

.hp-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.3;
}

.hp-product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted-l);
    display: block;
    margin-bottom: 10px;
}

.hp-product-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid rgba(10, 10, 10, 0.25);
    padding-bottom: 2px;
    display: inline-block;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.hp-product-card:hover .hp-product-cta {
    color: var(--red);
    border-color: var(--red);
}

.hp-product-archetype {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--muted-l);
    display: block;
    margin-bottom: 3px;
    font-style: italic;
}

.hp-product-wife-signal {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold);
    display: block;
    margin-top: 5px;
    margin-bottom: 4px;
}

/* =========================================================
   SECTION 7: AFFILIATE PARTNERS
   ========================================================= */
.hp-partners {
    padding: 56px 60px;
    background: var(--black);
    border-top: 1px solid var(--border-d);
    border-bottom: 1px solid var(--border-d);
}

.hp-partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hp-partners-eyebrow {
    display: block;
    margin-bottom: 36px;
}

.hp-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.hp-partner-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-d);
    transition: color 0.35s var(--ease);
    cursor: default;
}

.hp-partner-logo:hover { color: var(--gold); }

/* =========================================================
   SECTION 8: US MAP
   ========================================================= */
.hp-map {
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hp-map .hp-section-header {
    position: relative;
    z-index: 10;
    padding: 80px 60px 40px;
    background: linear-gradient(
        to bottom,
        var(--black) 0%,
        rgba(0, 0, 0, 0.88) 55%,
        transparent 100%
    );
}

.hp-map .hp-section-header .hp-section-eyebrow { color: var(--gold); }
.hp-map .hp-section-header .hp-section-title   { color: var(--cream); }
.hp-map .hp-section-header .hp-section-subtitle{ color: var(--text-d); }

.hp-map .sovereign-header-map {
    position: relative;
    width: 100%;
    height: 560px;
    margin-top: -80px;
    background: var(--black);
}

.hp-map-cta {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 60px 80px;
    margin-top: -80px;
    background: linear-gradient(
        to top,
        var(--black) 0%,
        rgba(0, 0, 0, 0.85) 42%,
        transparent 100%
    );
}

/* =========================================================
   TOP EARNERS LEADERBOARD
   ========================================================= */
.hp-wealth-rank {
    background: var(--black);
    border-top: 1px solid var(--border-d);
    padding: 72px 60px;
}

.hp-wealth-rank-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hp-wealth-rank-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.hp-wealth-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hp-wealth-row {
    display: grid;
    grid-template-columns: 28px 40px 1fr 180px 90px;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.08);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hp-wealth-row:hover {
    background: rgba(212,175,55,0.04);
    border-color: rgba(212,175,55,0.22);
}

.hp-wealth-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: rgba(212,175,55,0.4);
    text-align: center;
}

.hp-wealth-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(212,175,55,0.2);
    display: block;
}

.hp-wealth-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hp-wealth-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(250,247,242,0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-wealth-franchise {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.35);
}

.hp-wealth-bar-wrap {
    height: 2px;
    background: rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
}

.hp-wealth-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212,175,55,0.4), #D4AF37);
}

.hp-wealth-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hp-wealth-rank { padding: 56px 24px; }
    .hp-wealth-row  { grid-template-columns: 24px 36px 1fr 80px; gap: 10px; padding: 12px 14px; }
    .hp-wealth-bar-wrap { display: none; }
    .hp-wealth-rank-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hp-wealth-row { grid-template-columns: 24px 32px 1fr 72px; }
    .hp-wealth-avatar { width: 32px; height: 32px; }
}

/* =========================================================
   SECTION 9: SUBJECT OF THE WEEK
   ========================================================= */
.wl-subject {
    padding: 100px 60px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-d);
}

.wl-subject > *:not(.wl-sparkle-canvas) {
    position: relative;
    z-index: 1;
}

.wl-subject-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.wl-subject-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.0;
    color: var(--cream);
    margin: 0 0 14px;
}

.wl-subject-archetype {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.wl-subject-verdict {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-d);
    margin: 0 0 36px;
    padding-left: 20px;
    border-left: 2px solid rgba(201, 169, 110, 0.28);
    max-width: 480px;
}

.wl-subject-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wl-subject-image {
    width: 340px;
    height: 420px;
    object-fit: cover;
    border: 1px solid var(--border-d);
}

.wl-subject-img-placeholder {
    width: 340px;
    height: 420px;
    border: 1px solid var(--border-d);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.02);
    font-size: 72px;
    color: rgba(201, 169, 110, 0.12);
}

/* =========================================================
   SECTION 10: THREE PILLARS
   ========================================================= */
.wl-three-pillars {
    padding: 100px 60px;
    background: var(--cream);
    border-top: 1px solid var(--border-l);
}

.wl-pillars-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.wl-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1300px;
    margin: 0 auto;
    border: 1px solid var(--border-l);
}

.wl-pillar {
    text-decoration: none;
    padding: 48px 40px;
    border-right: 1px solid var(--border-l);
    display: flex;
    flex-direction: column;
    transition: background 0.3s var(--ease);
}

.wl-pillar:last-child { border-right: none; }
.wl-pillar:hover      { background: rgba(10, 10, 10, 0.025); }

.wl-pillar-roman {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 16px;
}

.wl-pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
}

.wl-pillar-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.wl-pillar-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted-l);
    margin: 0 0 auto;
    padding-bottom: 28px;
}

.wl-pillar-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid rgba(10, 10, 10, 0.22);
    padding-bottom: 2px;
    display: inline-block;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.wl-pillar:hover .wl-pillar-link {
    color: var(--red);
    border-color: var(--red);
}

/* =========================================================
   SECTION 11: JOIN THE INNER CIRCLE
   ========================================================= */
.wl-proof {
    padding: 100px 60px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid var(--border-d);
}

.wl-proof > *:not(.wl-sparkle-canvas) {
    position: relative;
    z-index: 1;
}

.wl-proof .wl-eyebrow {
    display: block;
    margin-bottom: 18px;
}

.wl-proof-counters {
    display: flex;
    margin-bottom: 48px;
    border: 1px solid var(--border-d);
}

.wl-proof-counters > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 48px;
    border-right: 1px solid var(--border-d);
}

.wl-proof-counters > div:last-child { border-right: none; }

.wl-proof-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.wl-proof-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-d);
    margin-top: 8px;
}

.wl-proof-dismiss {
    display: block;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-style: italic;
    color: var(--text-d);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
    .hp-archetypes-grid  { grid-template-columns: repeat(3, 1fr); }
    .hp-wives-grid       { grid-template-columns: repeat(4, 1fr); }
    .hp-products-grid    { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
    .hp-hero,
    .wl-quiz-cta,
    .hp-letter,
    .hp-archetypes,
    .hp-wives,
    .hp-products,
    .wl-subject,
    .wl-three-pillars,
    .wl-proof { padding: 80px 40px; }

    .hp-partners { padding: 48px 40px; }

    /* Hero stacks */
    .hp-hero-main {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .hp-hero-content {
        text-align: center;
        max-width: 600px;
    }

    .hp-hero-eyebrow {
        padding-left: 0;
    }

    .hp-hero-eyebrow::before {
        display: none;
    }

    .hp-hero-subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .hp-hero-ctas {
        justify-content: center;
    }

    .hp-hero-visual { justify-content: center; }

    .hp-hero-editorial { width: 440px; }
    .hp-hero-editorial-label { text-align: left; }

    /* Stats 2×2 */
    .wl-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .wl-stat-item:nth-child(odd)  { border-left: none; }
    .wl-stat-item:nth-child(1),
    .wl-stat-item:nth-child(2)    { border-bottom: 1px solid var(--border-d); }

    .wl-quiz-inner    { grid-template-columns: 1fr; gap: 48px; }
    .wl-quiz-visual   { padding: 40px 32px; }

    .hp-archetypes-grid  { grid-template-columns: repeat(2, 1fr); }
    .hp-wives-grid       { grid-template-columns: repeat(3, 1fr); }
    .hp-products-grid    { grid-template-columns: repeat(3, 1fr); }

    .hp-map .hp-section-header  { padding: 60px 40px 30px; }
    .hp-map .sovereign-header-map { height: 460px; margin-top: -60px; }
    .hp-map-cta { padding: 30px 40px 60px; margin-top: -60px; }

    .wl-subject-inner { grid-template-columns: 1fr; gap: 48px; }
    .wl-subject-image,
    .wl-subject-img-placeholder { width: 100%; height: 280px; }

    .wl-pillars-grid { grid-template-columns: 1fr; }
    .wl-pillar { border-right: none; border-bottom: 1px solid var(--border-l); }
    .wl-pillar:last-child { border-bottom: none; }

    .wl-proof-counters { flex-wrap: wrap; }
    .wl-proof-counters > div { flex: 1 0 40%; }
}

@media (max-width: 768px) {
    .hp-hero,
    .wl-quiz-cta,
    .hp-letter,
    .hp-archetypes,
    .hp-wives,
    .hp-products,
    .wl-subject,
    .wl-three-pillars,
    .wl-proof { padding: 64px 24px; }

    .hp-partners { padding: 40px 24px; }

    .hp-hero-editorial { width: 100%; max-width: 360px; }
    .hp-hero-frames { gap: 12px; }
    .hp-hero-frame:nth-child(2) { margin-bottom: 24px; }
    .hp-hero-frame-name { font-size: 11px; }

    .hp-wives-grid { grid-template-columns: repeat(2, 1fr); }

    .hp-map .hp-section-header { padding: 48px 24px 24px; }
    .hp-map .sovereign-header-map { height: 400px; }
    .hp-map-cta { padding: 24px 24px 48px; }

    .hp-partners-logos { gap: 32px; }
    .hp-partner-logo   { font-size: 16px; }

    .wl-proof-counters > div { padding: 20px 24px; }
}

@media (max-width: 480px) {
    .hp-hero-ctas { flex-direction: column; align-items: stretch; }

    .hp-btn-primary,
    .hp-btn-secondary,
    .wl-btn { width: 100%; justify-content: center; }

    .hp-archetypes-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hp-wives-grid      { grid-template-columns: repeat(2, 1fr); }
    .hp-products-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .wl-proof-counters { flex-direction: column; }
    .wl-proof-counters > div {
        border-right: none;
        border-bottom: 1px solid var(--border-d);
    }
}

/* ============================================================
   PINTEREST SAVE BUTTON
   ============================================================ */
.hp-product-wrap,
.wl-subject-product-wrap {
    position: relative;
}

.hp-product-wrap .hp-product-card {
    width: 100%;
}

.wl-subject-product-wrap .wl-subject-product {
    width: 100%;
}

.wl-pin-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #E60023;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 2;
    text-decoration: none;
}

.hp-product-wrap:hover .wl-pin-btn,
.wl-subject-product-wrap:hover .wl-pin-btn {
    opacity: 1;
    transform: scale(1);
}

/* Always visible on touch devices (no hover) */
@media (hover: none) {
    .wl-pin-btn { opacity: 1; transform: scale(1); }
}

/* ============================================================
   SUBJECT OF THE WEEK — Shop Her Look
   ============================================================ */
.wl-subject-shop {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.wl-subject-shop-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sovereign, #D4AF37);
    opacity: 0.75;
    margin-bottom: 1rem;
    font-style: italic;
}

.wl-subject-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wl-subject-product {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.wl-subject-product:hover {
    border-color: rgba(212,175,55,0.45);
    transform: translateY(-2px);
}

.wl-subject-product-img {
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wl-subject-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wl-subject-product-glyph {
    font-size: 1.5rem;
    color: rgba(212,175,55,0.3);
}

.wl-subject-product-info {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wl-subject-product-brand {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sovereign, #D4AF37);
}

.wl-subject-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
}

.wl-subject-product-price {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.wl-subject-product-price del {
    opacity: 0.5;
    margin-right: 4px;
}

@media (max-width: 600px) {
    .wl-subject-shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .wl-subject-product-name { font-size: 0.7rem; }
}

/* =========================================================
   WIFE CARDS — ENHANCED HOVER + COMPARE
   ========================================================= */

.hp-wife-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hp-wife-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.hp-wife-hover-reveal {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hp-wife-hover-archetype {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.9;
}

.hp-wife-hover-cta {
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hp-wife-card:hover .hp-wife-hover-reveal {
    opacity: 1;
}

.hp-wife-card:hover .hp-wife-portrait img {
    transform: scale(1.04);
    transition: transform 0.4s ease;
}

.hp-wife-portrait img {
    transition: transform 0.4s ease;
}

.hp-wife-franchise {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
    opacity: 0.75;
}

.hp-wife-compare-btn {
    width: 100%;
    padding: 7px 0;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.25);
    color: rgba(250,247,242,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    border-top: none;
}

.hp-wife-compare-btn:hover {
    background: rgba(201,169,110,0.1);
    color: var(--gold);
    border-color: rgba(201,169,110,0.5);
}

.hp-wife-compare-btn.selected {
    background: rgba(201,169,110,0.15);
    color: var(--gold);
    border-color: var(--gold);
}

/* =========================================================
   COMPARISON BAR
   ========================================================= */

.wl-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0A0A0A;
    border-top: 1px solid rgba(201,169,110,0.3);
    z-index: 9000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.wl-compare-bar.active {
    transform: translateY(0);
}

.wl-compare-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.wl-compare-slots {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.wl-compare-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.wl-compare-slot-placeholder {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.3);
    border: 1px dashed rgba(201,169,110,0.3);
    padding: 8px 16px;
    border-radius: 2px;
}

.wl-compare-slot-filled {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wl-compare-slot-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.4);
}

.wl-compare-slot-name {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: rgba(250,247,242,0.9);
}

.wl-compare-slot-clear {
    background: none;
    border: none;
    color: rgba(250,247,242,0.4);
    cursor: pointer;
    font-size: 12px;
    padding: 2px 4px;
    line-height: 1;
    transition: color 0.15s;
}

.wl-compare-slot-clear:hover { color: var(--gold); }

.wl-compare-vs {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(201,169,110,0.5);
    font-size: 14px;
}

.wl-compare-go:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.wl-compare-cancel {
    background: none;
    border: none;
    color: rgba(250,247,242,0.35);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: color 0.15s;
    flex-shrink: 0;
}

.wl-compare-cancel:hover { color: rgba(250,247,242,0.8); }

.wl-compare-results {
    background: #111;
    border-top: 1px solid rgba(201,169,110,0.2);
    padding: 24px;
}

.wl-compare-result-inner { max-width: 600px; margin: 0 auto; }

.wl-compare-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: rgba(250,247,242,0.9);
    margin-bottom: 20px;
}

.wl-compare-result-vs {
    font-style: italic;
    color: rgba(201,169,110,0.5);
}

.wl-compare-stat-rows { display: flex; flex-direction: column; gap: 10px; }

.wl-compare-stat-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
}

.wl-csr-val {
    text-align: center;
    color: rgba(250,247,242,0.5);
    font-weight: 600;
}

.wl-csr-val.winner {
    color: var(--gold);
    font-size: 14px;
}

.wl-csr-label {
    text-align: center;
    color: rgba(250,247,242,0.3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 9px;
}

.wl-compare-verdict {
    text-align: center;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 15px;
}

/* =========================================================
   PILLAR PRODUCT CARDS (shoppable mini-cards)
   ========================================================= */

.wl-pillar-products {
    display: flex;
    gap: 6px;
    margin: 16px 0 4px;
}

.wl-pillar-product-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid rgba(10,10,10,0.10);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.wl-pillar-product-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.wl-pillar-product-img {
    aspect-ratio: 1;
    background: rgba(201,169,110,0.08) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wl-pillar-product-meta {
    padding: 5px 7px 6px;
    background: rgba(10,10,10,0.03);
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.wl-pillar-product-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wl-pillar-product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}

.wl-pillar-product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 500;
    color: rgba(10,10,10,0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wl-pillar-thumb-glyph {
    color: rgba(201,169,110,0.3);
    font-size: 16px;
}

/* =========================================================
   FRANCHISE BADGE ON PRODUCT CARDS
   ========================================================= */

.hp-product-wrap {
    position: relative;
}

.hp-product-franchise-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: rgba(0,0,0,0.72);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid rgba(201,169,110,0.3);
    pointer-events: none;
    white-space: nowrap;
}

/* =========================================================
   FRANCHISE FILTER CHIPS
   ========================================================= */

.hp-franchise-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}

.hp-franchise-chip {
    background: transparent;
    border: 1px solid rgba(10,10,10,0.15);
    color: rgba(10,10,10,0.55);
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 2px;
}

.hp-franchise-chip:hover,
.hp-franchise-chip.active {
    background: var(--ink, #0A0A0A);
    color: var(--gold, #C9A96E);
    border-color: var(--ink, #0A0A0A);
}

/* =========================================================
   DEAL BADGE ON PRODUCT CARDS
   ========================================================= */
.hp-product-deal-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    background: var(--red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 8px;
    pointer-events: none;
    white-space: nowrap;
}

/* =========================================================
   MISSING OUTLINE BUTTON (Browse the Full Estate)
   ========================================================= */
.hp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 15px 32px;
    text-decoration: none;
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(10, 10, 10, 0.30);
    cursor: pointer;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
    width: fit-content;
}

.hp-btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

@media (max-width: 600px) {
    .wl-compare-bar-inner {
        flex-wrap: wrap;
        padding: 12px 16px;
    }
    .wl-compare-slots { flex-direction: column; gap: 8px; }
    .hp-franchise-filter { gap: 6px; }
    .hp-wife-compare-btn { font-size: 8px; }
}
