/* ============================================
   49 HOPE FOUNTAIN - BOUTIQUE LUXURY
   Design: Cinematic editorial, dark + gold
   ============================================ */

/* --- TOKENS --- */
:root {
    --black: #0a0a0a;
    --dark: #141414;
    --charcoal: #1c1c1c;
    --surface: #242424;
    --muted: #6b6b6b;
    --silver: #9a9a9a;
    --light: #d4d0cb;
    --cream: #f0ece4;
    --white: #fafaf8;
    --gold: #c9a96e;
    --gold-light: #dfc493;
    --gold-dark: #a8893f;
    --green: #1B4332;
    --green-deep: #0f2b1f;
    --brown: #5c3d2e;

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 8px;
    --radius-lg: 16px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--light);
    background: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.section-intro {
    font-size: 1.05rem;
    color: var(--silver);
    max-width: 680px;
    margin-bottom: 48px;
    line-height: 1.8;
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}
.nav-logo:hover { color: var(--gold); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--silver);
    transition: color 0.3s;
    position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.78rem !important;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease) forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.12); }
    to { transform: scale(1); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 40%, rgba(10,10,10,0.7) 75%, rgba(10,10,10,0.95) 100%),
        linear-gradient(to right, rgba(10,10,10,0.4) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px 80px;
    max-width: 800px;
    animation: heroFade 1.5s var(--ease-out) 0.3s both;
}
@keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 28px;
}
.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
}
.hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}
.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- EXPERIENCE --- */
.experience {
    padding: 120px 0;
    background: var(--black);
}
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.experience-text .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.experience-lead {
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.9;
    margin-bottom: 20px;
}
.experience-text p {
    color: var(--silver);
    margin-bottom: 16px;
    line-height: 1.8;
}
.experience-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.experience-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}
.experience-image img {
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
    transition: transform 0.8s var(--ease);
}
.experience-image:hover img { transform: scale(1.03); }

/* --- NUMBERS --- */
.numbers {
    padding: 60px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    background: var(--dark);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.number-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}
.number-label {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
}

/* --- SUITES --- */
.suites {
    padding: 120px 0 80px;
    background: var(--black);
}

/* Gallery */
.gallery {
    margin: 48px 0 64px;
    overflow: hidden;
}
.gallery-track {
    display: flex;
    gap: 16px;
    transition: transform 0.6s var(--ease-out);
    padding: 0 24px;
    cursor: grab;
}
.gallery-track:active { cursor: grabbing; }
.gallery-item {
    flex: 0 0 auto;
    width: min(600px, 80vw);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    cursor: pointer;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.gallery-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}
.gallery-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.gallery-counter {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    color: var(--silver);
    min-width: 50px;
    text-align: center;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 16px;
}
.amenity {
    padding: 32px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    background: var(--dark);
}
.amenity:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-4px);
    background: var(--charcoal);
}
.amenity-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(201, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}
.amenity h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.amenity p {
    font-size: 0.88rem;
    color: var(--silver);
    line-height: 1.6;
}

/* --- DISCOVER BULAWAYO --- */
.bulawayo {
    padding: 120px 0 80px;
    background: var(--dark);
}
.destinations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.destination-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s var(--ease);
}
.destination-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.destination-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.destination-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.destination-distance {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.3);
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 1;
}
.destination-icon {
    color: rgba(255,255,255,0.25);
    z-index: 1;
}
.destination-content {
    padding: 24px;
}
.destination-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}
.destination-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.destination-content > p:last-child {
    font-size: 0.88rem;
    color: var(--silver);
    line-height: 1.65;
}

/* --- STAY DETAILS --- */
.details {
    padding: 120px 0;
    background: var(--black);
}
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.details-text .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.details-list {
    margin-top: 40px;
}
.detail-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.detail-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.detail-item h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 6px;
}
.detail-item p {
    font-size: 0.92rem;
    color: var(--silver);
    line-height: 1.7;
}
.details-image {
    position: relative;
}
.details-image > img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.details-image-accent {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--black);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.details-image-accent img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* --- BOOKING CTA --- */
.booking {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}
.booking-bg {
    position: absolute;
    inset: 0;
}
.booking-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}
.booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
}
.booking-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}
.booking-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.booking-subtitle {
    font-size: 1.05rem;
    color: var(--silver);
    margin-bottom: 40px;
    line-height: 1.8;
}
.booking-price {
    margin-bottom: 40px;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
}
.price-per {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 8px;
    display: block;
}
.booking-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.3s var(--ease);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}
.btn-outline {
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.booking-note {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
}

/* --- LOCATION --- */
.location {
    padding: 120px 0;
    background: var(--dark);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.location-text .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.location-text > p {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 40px;
}
.location-distances {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.distance-item {
    padding: 20px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: var(--radius);
    text-align: center;
}
.distance-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.distance-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
}
.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    background: var(--charcoal);
}

/* --- FOOTER --- */
.footer {
    padding: 80px 0 40px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}
.footer-brand p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-links a,
.footer-contact a {
    display: block;
    font-size: 0.88rem;
    color: var(--silver);
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-address {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.6;
}
.footer-bottom {
    padding-top: 32px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease-out);
}
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .destinations { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s var(--ease-out);
        border-left: 1px solid rgba(201, 169, 110, 0.1);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; }
    .nav-cta { width: 100%; text-align: center; justify-content: center; }

    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .hero-meta { flex-wrap: wrap; gap: 8px 16px; }
    .hero-content { padding-bottom: 60px; }

    .experience-grid,
    .details-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .experience-image { order: -1; }
    .experience-image img { aspect-ratio: 16/10; }

    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .gallery-item { width: min(480px, 85vw); }

    .destinations { grid-template-columns: 1fr; max-width: 480px; }
    .amenities-grid { grid-template-columns: 1fr; }

    .details-image-accent { display: none; }

    .booking-price .price-amount { font-size: 3rem; }
    .booking-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .location-distances { grid-template-columns: 1fr 1fr; }
    .location-map { min-height: 300px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-meta { font-size: 0.7rem; }
    .section-title { font-size: 1.8rem; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .number-value { font-size: 2.2rem; }
    .gallery-item { width: 85vw; }
    .destination-visual { height: 140px; }
}

/* --- SELECTION --- */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }