/* =========================================================
   SINGLE ARCHETYPE — THE SOVEREIGN STYLE DISPATCH
   Editorial fashion. A beautiful mess. Intentionally.
   ========================================================= */

/* ── Custom properties (safe defaults if :root not loaded) ── */
.single-archetype {
    --sa-gold:   var(--sovereign, #D4AF37);
    --sa-obsidian: var(--obsidian, #020B13);
    --sa-slate:  #0e1621;
    --sa-mist:   #f9f6f0;
    --sa-ink:    #0a0a14;
    --sa-pearl:  #fefefe;
    --sa-gold-dim: rgba(212, 175, 55, 0.25);
    --sa-font-serif: 'Playfair Display', Georgia, serif;
    --sa-font-sans:  'Inter', system-ui, sans-serif;
    --sa-font-mono:  'JetBrains Mono', monospace;
    overflow-x: hidden;
}

/* ── Utility ─────────────────────────────────────────────── */
.sa-section-rule {
    width: 48px;
    height: 1px;
    background: var(--sa-ink);
    margin: 0 auto 16px;
}
.sa-section-rule--gold {
    background: var(--sa-gold);
}
.sa-section-header {
    text-align: center;
    margin-bottom: 56px;
}
.sa-section-title {
    font-family: var(--sa-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--sa-ink);
    margin: 0 0 12px;
}
.sa-section-title--light { color: #fff; }
.sa-section-subtitle {
    font-family: var(--sa-font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(10, 10, 20, 0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}
.sa-section-subtitle--light { color: rgba(255,255,255,0.55); }

.sa-empty-state {
    text-align: center;
    font-family: var(--sa-font-serif);
    font-style: italic;
    color: rgba(10,10,20,0.4);
    padding: 60px 0;
}


/* ═══════════════════════════════════════════════════════════
   §1 — HERO
   ═══════════════════════════════════════════════════════════ */
.sa-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sa-obsidian);
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

.sa-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(2,11,19,0.3)  0%,
            rgba(2,11,19,0.6)  40%,
            rgba(2,11,19,0.92) 100%),
        radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.08) 0%, transparent 60%);
    z-index: 1;
}

/* Grain texture overlay */
.sa-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

.sa-hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 80px) clamp(60px, 10vh, 120px);
    max-width: 900px;
    width: 100%;
}

.sa-glyph {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--sa-gold);
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 24px;
    font-style: normal;
    letter-spacing: 0;
}

.sa-eyebrow {
    font-family: var(--sa-font-mono);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin: 0 0 20px;
    display: block;
}

.sa-title {
    font-family: var(--sa-font-serif);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 32px;
    text-shadow: 0 4px 60px rgba(0,0,0,0.4);
}

.sa-definition {
    font-family: var(--sa-font-sans);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.sa-hero-brands {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.sa-brand-tag {
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sa-gold);
    border: 1px solid var(--sa-gold-dim);
    padding: 6px 16px;
    background: rgba(212,175,55,0.05);
}

.sa-brand-volume {
    color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.1);
    background: transparent;
}

.sa-hero-scroll-hint {
    display: flex;
    justify-content: center;
    animation: sa-bounce 2.5s ease-in-out infinite;
}

@keyframes sa-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%       { transform: translateY(8px); opacity: 1; }
}


/* Portrait split layout */
.sa-hero--split .sa-hero-inner {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
    max-width: 1200px;
    text-align: left;
}

.sa-hero-text {
    flex: 1;
    min-width: 0;
}

.sa-hero--split .sa-glyph { text-align: left; }
.sa-hero--split .sa-definition { margin-left: 0; margin-right: 0; }
.sa-hero--split .sa-hero-brands { justify-content: flex-start; }
.sa-hero--split .sa-hero-scroll-hint { justify-content: flex-start; }

/* Portrait frame */
.sa-hero-portrait-wrap {
    flex-shrink: 0;
    width: clamp(200px, 26vw, 340px);
    align-self: flex-end;
    padding-bottom: clamp(40px, 6vh, 80px);
}

.sa-hero-portrait {
    position: relative;
    margin: 0;
    padding: 0;
}

/* Double gold border frame */
.sa-hero-portrait::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(212,175,55,0.4);
    z-index: 0;
    pointer-events: none;
}

.sa-hero-portrait::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(212,175,55,0.14);
    z-index: 0;
    pointer-events: none;
}

.sa-hero-portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
    filter: grayscale(8%) contrast(1.04) brightness(0.96);
}

.sa-portrait-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 14px 12px;
    background: linear-gradient(to top, rgba(2,11,19,0.85) 0%, transparent 100%);
    text-align: center;
}

.sa-portrait-label {
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(212,175,55,0.8);
}

@media (max-width: 900px) {
    .sa-hero--split .sa-hero-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 32px;
    }
    .sa-hero-portrait-wrap {
        width: clamp(140px, 42vw, 220px);
        align-self: center;
        padding-bottom: 0;
    }
    .sa-hero--split .sa-glyph { text-align: center; }
    .sa-hero--split .sa-definition { margin: 0 auto 36px; }
    .sa-hero--split .sa-hero-brands,
    .sa-hero--split .sa-hero-scroll-hint { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   §2 — THE DISPATCH (Editorial write-up)
   ═══════════════════════════════════════════════════════════ */
.sa-dispatch {
    background: var(--sa-mist);
    padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
    position: relative;
}

/* Decorative vertical rule */
.sa-dispatch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.4));
}

.sa-dispatch-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sa-dispatch-masthead {
    text-align: center;
    margin-bottom: 56px;
}

.sa-dispatch-issue {
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(10,10,20,0.35);
}

.sa-dispatch-rule {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(212,175,55,0.4), transparent);
    margin: 12px auto 0;
}

.sa-dispatch-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    align-items: start;
}

/* Drop-cap on the editorial content */
.editorial-drop-cap .sa-dispatch-content > p:first-child::first-letter {
    font-family: var(--sa-font-serif);
    font-size: 5.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.78;
    margin: 8px 16px -4px 0;
    color: var(--sa-gold);
    text-shadow: 2px 2px 0 rgba(212,175,55,0.15);
}

.sa-dispatch-content p {
    font-family: var(--sa-font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--sa-ink);
    line-height: 1.85;
    margin: 0 0 24px;
}

.sa-dispatch-content p em {
    font-style: italic;
    color: rgba(10,10,20,0.5);
    font-size: 0.9em;
}

.sa-pullquote {
    border-left: 3px solid var(--sa-gold);
    padding: 0 0 0 28px;
    margin: 0 0 40px;
    position: sticky;
    top: 120px;
}

.sa-pullquote-mark {
    font-family: var(--sa-font-serif);
    font-size: 5rem;
    line-height: 0.5;
    color: var(--sa-gold);
    opacity: 0.35;
    display: block;
    margin-bottom: 12px;
}

.sa-pullquote p {
    font-family: var(--sa-font-serif);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    color: var(--sa-ink);
    line-height: 1.5;
    margin: 0 0 16px;
}

.sa-pullquote cite {
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10,10,20,0.4);
    font-style: normal;
}

.sa-dispatch-stat {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.sa-stat-label {
    display: block;
    font-family: var(--sa-font-mono);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(10,10,20,0.35);
    margin-bottom: 6px;
}

.sa-stat-value {
    display: block;
    font-family: var(--sa-font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--sa-ink);
}


/* ═══════════════════════════════════════════════════════════
   §3 — THE PATRONESS
   ═══════════════════════════════════════════════════════════ */
.sa-patroness {
    background: var(--sa-slate);
    padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
    position: relative;
    overflow: hidden;
}

/* Decorative background glyph */
.sa-patroness::before {
    content: attr(data-glyph);
    position: absolute;
    right: -60px;
    bottom: -40px;
    font-size: clamp(200px, 28vw, 380px);
    color: rgba(212,175,55,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-style: normal;
}

.sa-patroness-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sa-patroness-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin-bottom: 48px;
}

.sa-glyph-small {
    font-size: 1.1rem;
    opacity: 0.7;
}

.sa-patroness-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
}

.sa-patroness-portrait {
    position: relative;
    aspect-ratio: 3/4;
}

.sa-patroness-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    transition: filter 0.6s ease;
}

.sa-patroness-portrait:hover .sa-patroness-photo {
    filter: grayscale(0%) contrast(1.0);
}

.sa-patroness-photo--placeholder {
    background: rgba(212,175,55,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-patroness-photo--placeholder svg {
    width: 60%;
    height: 60%;
}

/* Gold corner accents */
.sa-patroness-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--sa-gold);
    border-style: solid;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sa-patroness-portrait:hover .sa-patroness-corner { opacity: 1; }
.sa-corner-tl { top: -8px; left: -8px; border-width: 1px 0 0 1px; }
.sa-corner-tr { top: -8px; right: -8px; border-width: 1px 1px 0 0; }
.sa-corner-bl { bottom: -8px; left: -8px; border-width: 0 0 1px 1px; }
.sa-corner-br { bottom: -8px; right: -8px; border-width: 0 1px 1px 0; }

.sa-dossier-eyebrow {
    display: block;
    font-family: var(--sa-font-mono);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin-bottom: 16px;
}

.sa-patroness-name {
    font-family: var(--sa-font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.05;
}

.sa-patroness-franchise {
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 28px;
}

.sa-patroness-bio {
    font-family: var(--sa-font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin: 0 0 32px;
}

.sa-patroness-verdict {
    border-left: 2px solid var(--sa-gold-dim);
    padding-left: 24px;
    margin: 32px 0;
}

.sa-heiress-text {
    font-family: var(--sa-font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin: 0 0 16px;
}

.sa-heiress-text em {
    color: rgba(212,175,55,0.6);
    font-style: italic;
}

.sa-heiress-text strong { color: #fff; font-weight: 600; }

.sa-btn-dossier {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sa-font-mono);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sa-gold);
    border: 1px solid var(--sa-gold-dim);
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.sa-btn-dossier:hover {
    background: var(--sa-gold);
    color: var(--sa-obsidian);
    border-color: var(--sa-gold);
}

.sa-btn-dossier svg { transition: transform 0.3s ease; }
.sa-btn-dossier:hover svg { transform: translateX(4px); }


/* ═══════════════════════════════════════════════════════════
   §4 — THE COLLECTION (Products)
   ═══════════════════════════════════════════════════════════ */
.sa-collection {
    background: var(--sa-pearl);
    padding: clamp(60px, 10vw, 120px) 0;
    overflow: hidden;
}

.sa-collection-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
}

.sa-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    padding: 16px 0 24px;
}

.sa-product-card {
    background: #fff;
    border: 1px solid rgba(212,175,55,0.1);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.sa-product-card:hover {
    border-color: var(--sa-gold);
    transform: translateY(-4px);
}

.sa-product-link {
    text-decoration: none;
    display: block;
}

.sa-product-image {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #f5f0eb;
}

.sa-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sa-product-card:hover .sa-product-image img {
    transform: scale(1.05);
}

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

.sa-product-hover-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(2,11,19,0.85);
    color: var(--sa-gold);
    font-family: var(--sa-font-mono);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sa-product-card:hover .sa-product-hover-label {
    transform: translateY(0);
}

.sa-product-info {
    padding: 16px;
}

.sa-product-category {
    display: block;
    font-family: var(--sa-font-mono);
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(10,10,20,0.35);
    margin-bottom: 6px;
}

.sa-product-brand {
    display: block;
    font-family: var(--sa-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin-bottom: 4px;
}

.sa-product-name {
    font-family: var(--sa-font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--sa-ink);
    margin: 0 0 8px;
    line-height: 1.3;
}

.sa-product-price {
    font-family: var(--sa-font-mono);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(10,10,20,0.5);
}

/* ── High / Low product card ─────────────────────────────── */
.sa-product-image-link {
    display: block;
    position: relative;
}

.sa-product-tier-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-family: var(--sa-font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sa-obsidian);
    background: var(--sa-gold);
    padding: 4px 8px;
    border-radius: 2px;
}

.sa-product-name a {
    color: inherit;
    text-decoration: none;
}
.sa-product-name a:hover { color: var(--sa-gold); }

.sa-product-buy {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sa-buy-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "tier cta" "meta cta";
    align-items: center;
    gap: 2px 12px;
    padding: 10px 12px;
    border: 1px solid rgba(10,10,20,0.12);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.sa-buy-invest {
    border-color: rgba(212,175,55,0.45);
    background: rgba(212,175,55,0.06);
}
.sa-buy-invest:hover { border-color: var(--sa-gold); background: rgba(212,175,55,0.12); }
.sa-buy-alt:hover { border-color: rgba(10,10,20,0.35); background: rgba(10,10,20,0.03); }

.sa-buy-tier {
    grid-area: tier;
    font-family: var(--sa-font-mono);
    font-size: 0.52rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(10,10,20,0.45);
}
.sa-buy-invest .sa-buy-tier { color: var(--sa-gold); }

.sa-buy-meta {
    grid-area: meta;
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}

.sa-buy-where {
    font-family: var(--sa-font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--sa-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sa-buy-price {
    font-family: var(--sa-font-mono);
    font-size: 0.72rem;
    color: rgba(10,10,20,0.6);
    flex-shrink: 0;
}

.sa-buy-cta {
    grid-area: cta;
    font-family: var(--sa-font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,10,20,0.4);
    white-space: nowrap;
}
.sa-buy-invest .sa-buy-cta { color: var(--sa-gold); }
.sa-buy-row:hover .sa-buy-cta { color: var(--sa-ink); }

/* ═══════════════════════════════════════════════════════════
   §4.5 — THE SANCTUARY (Ward / home)
   ═══════════════════════════════════════════════════════════ */
.sa-sanctuary {
    background: var(--sa-mist);
    padding: clamp(60px, 10vw, 120px) 0;
    overflow: hidden;
}

.sa-sanctuary-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 6vw, 80px);
}

.sa-sig-object {
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    text-align: center;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.5);
}

.sa-sig-eyebrow {
    display: block;
    font-family: var(--sa-font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin-bottom: 10px;
}

.sa-sig-name {
    font-family: var(--sa-font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--sa-ink);
    margin: 0 0 18px;
    line-height: 1.2;
}

.sa-sig-note {
    font-family: var(--sa-font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(10,10,20,0.55);
    margin: 0;
}

.sa-sig-buy {
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
}

.sa-sanctuary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: clamp(16px, 2.5vw, 28px);
}

.sa-ward-card {
    background: var(--sa-pearl);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(10,10,20,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sa-ward-card:hover {
    box-shadow: 0 12px 30px rgba(10,10,20,0.12);
    transform: translateY(-3px);
}

.sa-ward-card .sa-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #efe9df;
}

.sa-ward-card .sa-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sa-ward-card:hover .sa-product-image img { transform: scale(1.05); }
.sa-ward-card:hover .sa-product-hover-label { transform: translateY(0); }

.sa-affiliate-note {
    font-family: var(--sa-font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(10,10,20,0.4);
    line-height: 1.7;
    max-width: 720px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 clamp(24px, 5vw, 60px);
}

.sa-affiliate-note a {
    color: rgba(212,175,55,0.7);
    text-decoration: none;
}
.sa-affiliate-note a:hover { color: var(--sa-gold); }


/* ═══════════════════════════════════════════════════════════
   §5 — THE TRIBE
   ═══════════════════════════════════════════════════════════ */
.sa-tribe {
    background: var(--sa-obsidian);
    padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
    position: relative;
}

.sa-tribe-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sa-tribe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.sa-tribe-member {
    position: relative;
}

.sa-tribe-link {
    text-decoration: none;
    display: block;
}

.sa-tribe-portrait {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--sa-slate);
    margin-bottom: 16px;
}

.sa-tribe-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: grayscale(25%);
}

.sa-tribe-member:hover .sa-tribe-photo {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.sa-tribe-photo--placeholder {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(2,11,19,0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.sa-tribe-photo--placeholder::before {
    content: '';
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='1' opacity='0.3'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sa-tribe-portrait-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,11,19,0.8) 0%, transparent 50%);
    transition: opacity 0.4s ease;
}

.sa-tribe-member:hover .sa-tribe-portrait-overlay {
    opacity: 0.6;
}

.sa-tribe-city {
    position: absolute;
    bottom: 12px;
    left: 16px;
    font-family: var(--sa-font-mono);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sa-gold);
}

.sa-tribe-meta {
    padding: 0 4px;
}

.sa-tribe-name {
    font-family: var(--sa-font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.sa-tribe-member:hover .sa-tribe-name {
    color: var(--sa-gold);
}

.sa-tribe-worth {
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(212,175,55,0.5);
}

/* Heiress verdict on the tribe */
.sa-tribe-verdict {
    position: relative;
    border: 1px solid var(--sa-gold-dim);
    padding: 48px 56px;
    background: rgba(212,175,55,0.02);
    text-align: center;
}

.sa-verdict-glyph {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--sa-gold);
    background: var(--sa-obsidian);
    padding: 0 16px;
    line-height: 1;
    opacity: 0.8;
}

.sa-verdict-quote {
    margin: 0;
}

.sa-verdict-quote p {
    font-family: var(--sa-font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.85;
    margin: 0 0 12px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.sa-verdict-quote p em {
    color: rgba(212,175,55,0.55);
    font-style: italic;
}

.sa-verdict-quote strong { color: #fff; font-weight: 600; }


/* ═══════════════════════════════════════════════════════════
   §6 — THE REGISTRY (All archetypes + Quiz)
   ═══════════════════════════════════════════════════════════ */
.sa-registry {
    background: var(--sa-mist);
    padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
}

.sa-registry-inner {
    max-width: 860px;
    margin: 0 auto;
}

.sa-archetype-list {
    list-style: none;
    margin: 0 0 80px;
    padding: 0;
    border-top: 1px solid rgba(10,10,20,0.08);
}

.sa-archetype-item {
    border-bottom: 1px solid rgba(10,10,20,0.08);
}

.sa-archetype-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sa-archetype-row:hover {
    background: rgba(212,175,55,0.04);
}

.sa-archetype-row-glyph {
    font-size: 1rem;
    color: var(--sa-gold);
    opacity: 0.5;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: opacity 0.2s ease;
}
.sa-archetype-row:hover .sa-archetype-row-glyph { opacity: 1; }

.sa-archetype-row-name {
    font-family: var(--sa-font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--sa-ink);
    flex: 1;
    transition: color 0.2s ease;
}
.sa-archetype-row:hover .sa-archetype-row-name { color: rgba(10,10,20,0.5); }

.sa-archetype-row-def {
    font-family: var(--sa-font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(10,10,20,0.35);
    flex: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sa-archetype-row-arrow {
    color: rgba(10,10,20,0.2);
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}
.sa-archetype-row:hover .sa-archetype-row-arrow {
    transform: translateX(4px);
    color: var(--sa-gold);
}

/* Quiz CTA */
.sa-quiz-cta {
    background: var(--sa-slate);
    padding: 64px;
    text-align: center;
}

.sa-quiz-eyebrow {
    display: block;
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin-bottom: 16px;
}

.sa-quiz-title {
    font-family: var(--sa-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0 0 16px;
}

.sa-quiz-text {
    font-family: var(--sa-font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 36px;
}

.sa-quiz-text em {
    color: rgba(212,175,55,0.5);
    font-style: italic;
}

.sa-quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sa-font-mono);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sa-obsidian);
    background: var(--sa-gold);
    padding: 16px 36px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sa-quiz-btn:hover {
    background: #e8c84a;
    transform: translateY(-2px);
}

.sa-quiz-btn svg { transition: transform 0.3s ease; }
.sa-quiz-btn:hover svg { transform: translateX(4px); }


/* ═══════════════════════════════════════════════════════════
   §7 — THE TERRITORIES (HW Cities Map)
   ═══════════════════════════════════════════════════════════ */
.sa-territories {
    background: var(--sa-mist);
    padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
}

.sa-territories-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.sa-territories-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    border: 1px solid rgba(10,10,20,0.08);
    background: #fff;
    overflow: hidden;
}

.sa-territories-map {
    height: 540px;
    display: block;
    z-index: 1;
}

/* ── Panel ─────────────────────────────────────────────────── */
.sa-territories-panel {
    border-left: 1px solid rgba(10,10,20,0.06);
    background: var(--sa-pearl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sa-territories-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.75rem;
    height: 100%;
}

.sa-territories-default-glyph {
    display: block;
    color: var(--sa-gold);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1.25rem;
}

.sa-territories-default-text {
    font-family: var(--sa-font-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(10,10,20,0.38);
    line-height: 1.6;
    margin: 0 0 0.85rem;
}

.sa-territories-default-note {
    font-family: var(--sa-font-sans);
    font-size: 0.72rem;
    color: rgba(10,10,20,0.25);
    margin: 0;
}

/* ── Content panel ─────────────────────────────────────────── */
.sa-territories-content {
    flex-direction: column;
    height: 100%;
}

.sa-territories-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(10,10,20,0.06);
    background: var(--sa-mist);
    flex-shrink: 0;
}

.sa-territories-city-meta { flex: 1; min-width: 0; }

.sa-territories-franchise-code {
    display: block;
    font-family: var(--sa-font-mono);
    font-size: 0.52rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin-bottom: 0.2rem;
}

.sa-territories-city-name {
    font-family: var(--sa-font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--sa-ink);
    margin: 0 0 0.2rem;
    line-height: 1.15;
}

.sa-territories-spot-count {
    font-family: var(--sa-font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    color: rgba(10,10,20,0.35);
}

.sa-territories-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(10,10,20,0.28);
    padding: 4px;
    margin-top: 2px;
    transition: color 0.2s ease;
}

.sa-territories-close:hover { color: var(--sa-ink); }

.sa-territories-spots {
    overflow-y: auto;
    flex: 1;
    padding: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--sa-gold) rgba(212,175,55,0.1);
}

/* ── Spot cards ───────────────────────────────────────────── */
.sa-territories-spot {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(10,10,20,0.05);
    transition: background 0.2s ease;
}

.sa-territories-spot:last-child { border-bottom: none; }
.sa-territories-spot:hover { background: rgba(212,175,55,0.04); }

.sa-ts-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(10,10,20,0.05);
}

.sa-ts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sa-ts-image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-ts-info {
    flex: 1;
    min-width: 0;
}

.sa-ts-type {
    display: block;
    font-family: var(--sa-font-mono);
    font-size: 0.48rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin-bottom: 0.2rem;
}

.sa-ts-title {
    display: block;
    font-family: var(--sa-font-serif);
    font-size: 0.85rem;
    color: var(--sa-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.15rem;
}

.sa-ts-price {
    display: block;
    font-family: var(--sa-font-mono);
    font-size: 0.58rem;
    color: rgba(10,10,20,0.32);
}

.sa-ts-arrow {
    flex-shrink: 0;
    color: rgba(10,10,20,0.18);
    transition: color 0.2s ease, transform 0.2s ease;
}

.sa-territories-spot:hover .sa-ts-arrow {
    color: var(--sa-gold);
    transform: translateX(3px);
}

/* ── Empty state ──────────────────────────────────────────── */
.sa-territories-empty {
    padding: 2rem 1rem;
    text-align: center;
}

.sa-territories-empty p {
    font-family: var(--sa-font-serif);
    font-style: italic;
    color: rgba(10,10,20,0.32);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0 0 0.5rem;
}

/* ── Map markers ──────────────────────────────────────────── */
.sa-territories-marker {
    background: none !important;
    border: none !important;
}

.sa-tm-pin {
    position: relative;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55));
    transition: transform 0.2s ease;
    cursor: pointer;
}

.sa-territories-marker:hover .sa-tm-pin {
    transform: translateY(-3px) scale(1.18);
}

.sa-map-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    background: var(--sa-gold);
    color: var(--sa-obsidian);
    font-family: var(--sa-font-mono);
    font-size: 0.48rem;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Leaflet container dark theme */
.sa-territories-map .leaflet-container {
    font-family: var(--sa-font-sans);
    background: #020B13;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sa-dispatch-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sa-pullquote {
        position: static;
        margin-bottom: 40px;
    }

    .sa-patroness-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sa-patroness-portrait {
        max-width: 340px;
        margin: 0 auto;
    }

    .sa-patroness-dossier {
        text-align: center;
    }

    .sa-patroness-verdict {
        border-left: none;
        border-top: 1px solid var(--sa-gold-dim);
        padding: 24px 0 0;
        margin: 24px 0;
    }

    .sa-archetype-row-def {
        display: none;
    }

    .sa-territories-layout {
        grid-template-columns: 1fr;
    }

    .sa-territories-panel {
        border-left: none;
        border-top: 1px solid rgba(10,10,20,0.06);
        max-height: 380px;
    }

    .sa-territories-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .sa-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 14px;
    }

    .sa-product-info {
        padding: 12px;
    }

    .sa-product-name {
        font-size: 0.85rem;
    }

    .sa-tribe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Ensure at least 2 columns on tablet, but keep 3rd member visible */
    .sa-tribe-member:nth-child(3) {
        grid-column: span 1;
    }

    .sa-tribe-verdict {
        padding: 40px 28px;
    }

    .sa-verdict-glyph {
        top: -20px;
    }

    .sa-quiz-cta {
        padding: 48px 28px;
    }

    .sa-territories-map {
        height: 320px;
    }

    .sa-archetype-row-glyph { display: none; }
}

@media (max-width: 480px) {
    .sa-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sa-product-info {
        padding: 10px;
    }

    .sa-product-brand {
        font-size: 0.65rem;
    }

    .sa-product-name {
        font-size: 0.8rem;
    }

    .sa-tribe-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto 60px;
        gap: 32px;
    }

    .sa-tribe-portrait {
        aspect-ratio: 3/4;
    }
    
    .sa-tribe-name {
        font-size: 1.25rem;
    }
    
    .sa-tribe-city {
        font-size: 0.6rem;
    }

    .sa-territories-map {
        height: 280px;
    }
}

/* ═══════════════════════════════════════════════════════════
   SPARKLES — Gold star shimmer on dark sections
   ═══════════════════════════════════════════════════════════ */
.archetype-sparkle-host {
    position: relative;
}

.archetype-sparkle {
    position: absolute;
    pointer-events: none;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #D4AF37;
    animation: sa-sparkle-pulse var(--sp-dur, 3s) ease-in-out var(--sp-delay, 0s) infinite;
    opacity: 0;
    z-index: 0;
}

.archetype-sparkle::before,
.archetype-sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: inherit;
}

.archetype-sparkle::before {
    width: 1px;
    height: 7px;
    opacity: 0.6;
}

.archetype-sparkle::after {
    width: 7px;
    height: 1px;
    opacity: 0.6;
}

.archetype-sparkle.sparkle-lg {
    width: 4px;
    height: 4px;
}

.archetype-sparkle.sparkle-sm {
    width: 2px;
    height: 2px;
    background: rgba(212, 175, 55, 0.7);
}

@keyframes sa-sparkle-pulse {
    0%   { opacity: 0;    transform: scale(0.6); }
    30%  { opacity: 0.9;  transform: scale(1.1); }
    55%  { opacity: 0.4;  transform: scale(0.9); }
    80%  { opacity: 0.85; transform: scale(1.05); }
    100% { opacity: 0;    transform: scale(0.6); }
}

/* ═══════════════════════════════════════════════════════════
   §2.5 — THE LOOKBOOK (editorial variation gallery)
   ═══════════════════════════════════════════════════════════ */
.sa-lookbook {
    background: var(--sa-obsidian);
    padding: 100px 40px;
    border-top: 1px solid var(--sa-gold-dim);
}

.sa-lookbook-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sa-lookbook-head {
    text-align: center;
    margin-bottom: 56px;
}

.sa-lookbook-eyebrow {
    display: inline-block;
    font-family: var(--sa-font-mono);
    font-size: 11px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--sa-gold);
    margin-bottom: 16px;
}

.sa-lookbook-title {
    font-family: var(--sa-font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: var(--sa-mist);
    margin: 0 0 12px;
}

.sa-lookbook-sub {
    font-family: var(--sa-font-sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(249, 246, 240, 0.55);
    margin: 0;
}

.sa-lookbook-shop {
    text-align: center;
    margin-top: clamp(32px, 5vw, 56px);
}

.sa-lookbook-shop-note {
    font-family: var(--sa-font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(249, 246, 240, 0.5);
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.sa-lookbook-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sa-font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sa-obsidian);
    background: var(--sa-gold);
    padding: 14px 26px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.sa-lookbook-shop-btn:hover {
    background: #e6c14d;
    transform: translateY(-2px);
}

.sa-lookbook-shop-btn svg { transition: transform 0.25s ease; }
.sa-lookbook-shop-btn:hover svg { transform: translateY(3px); }

/* Masonry-style columns so the full-length portraits keep their proportions */
.sa-lookbook-grid {
    column-count: 4;
    column-gap: 18px;
}

.sa-lookbook-item {
    position: relative;
    margin: 0 0 18px;
    break-inside: avoid;
    overflow: hidden;
    border: 1px solid var(--sa-gold-dim);
    background: var(--sa-slate);
}

.sa-lookbook-num {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-family: var(--sa-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--sa-mist);
    background: rgba(2, 11, 19, 0.6);
    padding: 3px 7px;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sa-lookbook-item:hover .sa-lookbook-num {
    opacity: 1;
}

.sa-lookbook-item img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(45%) contrast(1.04) brightness(0.93);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.sa-lookbook-item:hover img {
    filter: grayscale(0%) contrast(1) brightness(1);
    transform: scale(1.04);
}

/* Mood Filter Buttons */
.sa-lookbook-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0 50px;
    padding: 0 20px;
}

.sa-lookbook-filter-label {
    font-family: var(--sa-font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sa-gold);
}

.sa-lookbook-filter-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sa-mood-tag {
    font-family: var(--sa-font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    padding: 10px 18px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: rgba(249, 246, 240, 0.7);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sa-mood-tag:hover {
    border-color: var(--sa-gold);
    color: var(--sa-gold);
    background: rgba(212, 175, 55, 0.08);
}

.sa-mood-tag.active {
    background: var(--sa-gold);
    color: var(--sa-obsidian);
    border-color: var(--sa-gold);
    font-weight: 700;
}

/* Hide non-matching items during filter */
.sa-lookbook-item.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .sa-lookbook-grid { column-count: 3; }
}

@media (max-width: 768px) {
    .sa-lookbook { padding: 72px 24px; }
    .sa-lookbook-grid { column-count: 2; column-gap: 12px; }
    .sa-lookbook-item { margin-bottom: 12px; }
}

@media (max-width: 460px) {
    .sa-lookbook-grid { column-count: 2; column-gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   §5 — THE ESCAPE (Where posts)
   ═══════════════════════════════════════════════════════════ */
.sa-escape {
    background: var(--sa-obsidian);
    padding: clamp(60px, 10vw, 120px) 0;
    overflow: hidden;
}

.sa-escape-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 6vw, 80px);
}

.sa-escape .sa-section-header { margin-bottom: clamp(32px, 5vw, 56px); }
.sa-escape .sa-section-rule { background: rgba(212,175,55,0.35); }
.sa-escape .sa-section-title { color: var(--sa-pearl); }
.sa-escape .sa-section-subtitle { color: rgba(255,255,255,0.5); }
.sa-escape .sa-section-subtitle strong { color: var(--sa-gold); font-weight: 400; font-style: italic; }

.sa-escape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
}

.sa-escape-card { position: relative; border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.12); transition: border-color 0.3s ease, transform 0.3s ease; }
.sa-escape-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); }

.sa-escape-card-link { display: flex; flex-direction: column; text-decoration: none; height: 100%; }

.sa-escape-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.sa-escape-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sa-escape-card:hover .sa-escape-image img { transform: scale(1.05); }

.sa-escape-image-placeholder {
    width: 100%; height: 100%;
    background: rgba(212,175,55,0.06);
    display: flex; align-items: center; justify-content: center;
}

.sa-escape-type {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(2,11,19,0.75);
    color: var(--sa-gold);
    font-family: var(--sa-font-mono);
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

.sa-escape-info {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sa-escape-name {
    font-family: var(--sa-font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--sa-pearl);
    margin: 0;
    line-height: 1.3;
}

.sa-escape-city {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--sa-font-sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
}

.sa-escape-city svg { color: var(--sa-gold); flex-shrink: 0; }

.sa-escape-cta {
    margin-top: auto;
    font-family: var(--sa-font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sa-gold);
}

@media (max-width: 768px) {
    .sa-escape { padding: 64px 0; }
    .sa-escape-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 460px) {
    .sa-escape-grid { grid-template-columns: 1fr; }
}
