:root {
    --bg: #120F16;
    --bg-raise: #1B1620;
    --surface: #221C29;
    --surface-2: #2A2333;
    --line: #352C3F;
    --gold: #C9A24E;
    --gold-soft: #e3c98a;
    --violet: #8A63C9;
    --violet-soft: #B79FE0;
    --text: #F3EEE5;
    --text-dim: #B9AFC4;
    --text-faint: #79708A;
    --success: #6FAF8B;
    --radius-s: 10px;
    --radius-m: 16px;
    --radius-l: 26px;
    --shadow-1: 0 12px 30px -12px rgba(0, 0, 0, 0.55);
    --shadow-2: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
    --maxw: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(1100px 600px at 15% -10%, rgba(138, 99, 201, 0.16), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(201, 162, 78, 0.10), transparent 55%),
        var(--bg);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

h1,
h2,
h3,
h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold-soft);
    display: inline-block;
}

.section {
    padding: 76px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 40px;
}

.section-head h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-top: 10px;
}

.section-head p {
    color: var(--text-dim);
    margin-top: 14px;
    font-size: 16px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold) 65%);
    color: #1B140A;
    box-shadow: 0 10px 24px -8px rgba(201, 162, 78, 0.55);
}

.btn-gold:hover {
    box-shadow: 0 14px 30px -8px rgba(201, 162, 78, 0.7);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--violet-soft);
    color: var(--violet-soft);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(18, 15, 22, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.logo .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px 2px rgba(201, 162, 78, 0.7);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 600;
    transition: color .15s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.burger {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 10px;
    color: var(--text);
}

.burger svg {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 940px) {
    .nav-links {
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--bg-raise);
        flex-direction: column;
        padding: 28px 24px;
        gap: 6px;
        align-items: stretch;
        border-top: 1px solid var(--line);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    .nav-links.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        padding: 12px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .burger {
        display: inline-flex;
    }

    .nav-actions .btn-ghost {
        display: none;
    }
}

/* Hero */
.hero {
    padding: 64px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 99, 201, 0.28), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(34px, 5.2vw, 60px);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.hero h1 em {
    color: var(--gold-soft);
    font-style: italic;
}

.hero-sub {
    margin-top: 22px;
    font-size: 17px;
    color: var(--text-dim);
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 22px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-faint);
    font-weight: 600;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold-soft);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    aspect-ratio: 1/1.05;
    border-radius: var(--radius-l);
    background: linear-gradient(155deg, var(--surface-2), var(--bg-raise));
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-2);
}

.hero-visual .glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(201, 162, 78, 0.18), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(138, 99, 201, 0.24), transparent 55%);
}

.hero-card {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(18, 15, 22, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-card .avatars {
    display: flex;
}

.hero-card .avatars span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bg-raise);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #1B140A;
}

.hero-card .avatars span:first-child {
    margin-left: 0;
}

.hero-card small {
    display: block;
    color: var(--text-faint);
    font-size: 12px;
    margin-top: 2px;
}

.hero-card strong {
    font-size: 14px;
    font-weight: 800;
}

.hero-mark {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--gold-soft);
    background: rgba(18, 15, 22, 0.6);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

/* Search bar */
.search-panel {
    margin-top: -8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    box-shadow: var(--shadow-1);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    font-weight: 700;
}

.field select,
.field input {
    background: var(--bg-raise);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 11px 12px;
    border-radius: var(--radius-s);
    font-size: 14px;
    font-family: inherit;
}

.field select:focus,
.field input:focus {
    border-color: var(--violet-soft);
}

.search-panel .btn {
    align-self: end;
}

@media (max-width:820px) {
    .search-panel {
        grid-template-columns: 1fr;
    }
}

/* Cards - venues */
.grid {
    display: grid;
    gap: 22px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width:980px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:640px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--violet-soft);
    box-shadow: var(--shadow-1);
}

.card-media {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.ph {
    /* placeholder gradient image */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(18, 15, 22, 0.72);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
}

.badge.gold {
    color: #1B140A;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    border: none;
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    font-size: 17px;
    font-weight: 600;
}

.card-loc {
    font-size: 12.5px;
    color: var(--text-faint);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-desc {
    font-size: 13.5px;
    color: var(--text-dim);
    margin-top: 10px;
    line-height: 1.55;
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.stars {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 700;
}

/* Article cards */
.art-card .card-body {
    padding: 20px;
}

.art-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--violet-soft);
    font-weight: 800;
}

.art-card h3 {
    margin-top: 8px;
    font-size: 16.5px;
    line-height: 1.35;
}

.art-meta {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-faint);
    display: flex;
    gap: 10px;
}

/* Video cards */
.video-card .card-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(18, 15, 22, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.card:hover .play-btn {
    transform: scale(1.08);
}

.play-btn svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
    color: #fff;
}

.duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
}

/* Section tint variants */
.section-tint {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015) 40%, transparent);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* Profiles / community */
.profile-card {
    position: relative;
}

.profile-card .card-media {
    position: relative;
}

.verified {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
}

.verified svg {
    width: 13px;
    height: 13px;
    color: #fff;
}

/* Locked / keyhole reveal — signature element */
.locked {
    position: relative;
    overflow: hidden;
}

.locked .ph {
    filter: blur(14px) saturate(0.7) brightness(0.55);
    transform: scale(1.15);
}

.locked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 19, 0.35);
}

.keyhole {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    text-align: center;
    padding: 16px;
}

.keyhole-icon {
    width: 46px;
    height: 46px;
    -webkit-clip-path: path('M23 2 C31 2 37 8 37 16 C37 22 33.5 26.6 28.5 28.6 L34 43 C34.6 44.6 33.4 46 31.7 46 L14.3 46 C12.6 46 11.4 44.6 12 43 L17.5 28.6 C12.5 26.6 9 22 9 16 C9 8 15 2 23 2 Z');
    clip-path: path('M23 2 C31 2 37 8 37 16 C37 22 33.5 26.6 28.5 28.6 L34 43 C34.6 44.6 33.4 46 31.7 46 L14.3 46 C12.6 46 11.4 44.6 12 43 L17.5 28.6 C12.5 26.6 9 22 9 16 C9 8 15 2 23 2 Z');
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    box-shadow: 0 6px 18px -4px rgba(201, 162, 78, 0.6);
}

.keyhole span {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.keyhole .btn {
    margin-top: 2px;
}

/* Community grid mixed lock */
.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width:980px) {
    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:640px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.profile-mini {
    border-radius: var(--radius-m);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}

.profile-mini .card-media {
    aspect-ratio: 1/1;
}

.profile-mini .card-body {
    padding: 12px;
}

.profile-mini h4 {
    font-size: 13.5px;
    font-weight: 700;
}

.profile-mini .card-loc {
    margin-top: 3px;
    font-size: 11.5px;
}

/* Radar */
.radar-section {
    position: relative;
}

.radar-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width:900px) {
    .radar-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.radar-visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 99, 201, 0.14), transparent 70%), var(--bg-raise);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
}

.radar-ring {
    position: absolute;
    border: 1px solid rgba(138, 99, 201, 0.3);
    border-radius: 50%;
}

.r1 {
    width: 30%;
    height: 30%;
}

.r2 {
    width: 55%;
    height: 55%;
}

.r3 {
    width: 80%;
    height: 80%;
}

.r4 {
    width: 100%;
    height: 100%;
}

.radar-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(138, 99, 201, 0) 0deg, rgba(138, 99, 201, 0) 300deg, rgba(201, 162, 78, 0.55) 355deg, rgba(201, 162, 78, 0) 360deg);
    animation: spin 4.5s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.blip {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 10px 3px rgba(201, 162, 78, 0.6);
}

.blip::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--gold-soft);
    opacity: 0.5;
    animation: ping 2.2s ease-out infinite;
}

@keyframes ping {
    0% {
        transform: scale(0.4);
        opacity: 0.7;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.radar-center {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text);
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(243, 238, 229, 0.12);
}

.radar-copy h2 {
    font-size: clamp(26px, 4vw, 36px);
}

.radar-copy p {
    color: var(--text-dim);
    margin-top: 16px;
    font-size: 16px;
    max-width: 460px;
}

.radar-compare {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.radar-pill {
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 16px 18px;
    flex: 1;
    min-width: 180px;
    background: var(--surface);
}

.radar-pill.locked-pill {
    opacity: 0.6;
}

.radar-pill h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    font-weight: 800;
}

.radar-pill p {
    font-size: 13.5px;
    color: var(--text-dim);
    margin-top: 8px;
}

.radar-pill.vip {
    border-color: var(--gold);
    background: linear-gradient(160deg, rgba(201, 162, 78, 0.08), transparent);
}

.radar-pill.vip h4 {
    color: var(--gold-soft);
}

/* Comparison table */
.compare-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-1);
}

table.compare {
    width: 100%;
    border-collapse: collapse;
}

table.compare th,
table.compare td {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
}

table.compare th {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 16px;
}

table.compare th:nth-child(2),
table.compare td:nth-child(2),
table.compare th:nth-child(3),
table.compare td:nth-child(3) {
    text-align: center;
    width: 130px;
}

table.compare thead th {
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
}

table.compare thead th.vip-col {
    color: var(--gold-soft);
}

table.compare tbody tr:last-child td {
    border-bottom: none;
}

table.compare tbody td:first-child {
    color: var(--text-dim);
}

.yes {
    color: var(--success);
    font-weight: 800;
}

.limited {
    color: var(--gold-soft);
    font-weight: 700;
    font-size: 12.5px;
}

.no {
    color: var(--text-faint);
}

@media (max-width:640px) {

    table.compare th,
    table.compare td {
        padding: 12px 10px;
        font-size: 12.5px;
    }

    table.compare th {
        font-size: 13.5px;
    }
}

/* CTA banners */
.cta-banner {
    border-radius: var(--radius-l);
    padding: 52px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}

.cta-banner.free {
    background: linear-gradient(150deg, var(--surface-2), var(--bg-raise));
}

.cta-banner.vip {
    background: linear-gradient(150deg, rgba(201, 162, 78, 0.14), var(--bg-raise));
    border-color: var(--gold);
}

.cta-banner h2 {
    font-size: clamp(24px, 4vw, 34px);
    max-width: 560px;
    margin: 0 auto;
}

.cta-banner p {
    color: var(--text-dim);
    margin-top: 14px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    margin-top: 26px;
}

.cta-banner .mini {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-faint);
}

/* footer */
footer {
    border-top: 1px solid var(--line);
    padding: 56px 0 28px;
    margin-top: 20px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
}

@media (max-width:820px) {
    .foot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:520px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

.foot-grid h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    margin-bottom: 14px;
    font-weight: 800;
}

.foot-grid a {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 10px;
    transition: color .15s;
}

.foot-grid a:hover {
    color: var(--gold-soft);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--text-faint);
    flex-wrap: wrap;
    gap: 12px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--text-faint);
    font-weight: 700;
}

.section-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* small helper */
.muted-link {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gold-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.muted-link svg {
    width: 14px;
    height: 14px;
}