/* ═══════════════════════════════════════════════
   BAN KHRU JU — Luxury Heritage Design System
   Inspired by Nusara BKK
   ═══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    --bg: #0A0A0A;
    --bg-alt: #050505;
    --bg-card: #111111;
    --gold: #C9A96E;
    --gold-dim: rgba(201, 169, 110, 0.4);
    --gold-glow: rgba(201, 169, 110, 0.15);
    --cream: #F5F0EB;
    --cream-muted: rgba(245, 240, 235, 0.5);
    --cream-dim: rgba(245, 240, 235, 0.25);
    --border: rgba(245, 240, 235, 0.08);
    --border-hover: rgba(201, 169, 110, 0.3);

    --font-serif: 'Cormorant Garamond', 'Sarabun', serif;
    --font-sans: 'Montserrat', 'Sarabun', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.9s var(--ease-out);
    --transition-med: all 0.5s var(--ease-smooth);
    --transition-fast: all 0.3s ease;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg);
    color: var(--cream);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none; /* Hide default cursor */
}

/* ─── Custom Cursors ─── */
@media (hover: hover) and (pointer: fine) {
    #cursor {
        position: fixed;
        width: 8px;
        height: 8px;
        background-color: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: transform 0.1s var(--ease-out), width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    }

    #cursor-follower {
        position: fixed;
        width: 40px;
        height: 40px;
        border: 1px solid var(--gold-dim);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.4s var(--ease-smooth), width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    }

    /* Hover states for cursor */
    body.cursor-hover #cursor {
        width: 0;
        height: 0;
        background-color: transparent;
    }

    body.cursor-hover #cursor-follower {
        width: 80px;
        height: 80px;
        border-color: var(--gold);
        background-color: var(--gold-glow);
        backdrop-filter: blur(2px);
    }
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    #cursor, #cursor-follower {
        display: none;
    }
}

h1,
h2,
h3,
h4,
blockquote {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── Preloader ─── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(2);
        opacity: 1;
    }
}

/* ─── Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* ─── Split Text Animation ─── */
.split-text {
    display: inline-block;
    overflow: hidden; /* Clip the animation within the bounding box */
}

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 1.2s var(--ease-out), opacity 1.2s var(--ease-out);
}

.split-text.active .split-word {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Navigation ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-med);
}

nav.scrolled {
    padding: 18px 50px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-left,
.nav-right {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cream-muted);
    font-weight: 300;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-thai {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 6px;
    font-weight: 400;
}

/* ─── Mobile Menu ─── */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1002;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--cream);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-med);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--cream);
    letter-spacing: 4px;
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--gold);
}

/* ─── Hero Section ─── */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('hero_atmosphere.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-tag {
    font-size: 0.65rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--gold);
    letter-spacing: 10px;
    margin-bottom: 15px;
    text-shadow: 0 0 60px var(--gold-glow);
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--cream-muted);
    font-weight: 200;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ─── Section Base ─── */
section {
    padding: 160px 0;
    position: relative;
}

.section-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 25px;
    color: var(--cream);
    line-height: 1.15;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--cream-muted);
    font-weight: 200;
    max-width: 500px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-desc {
    font-size: 1rem;
    font-weight: 200;
    color: var(--cream-muted);
    max-width: 480px;
    margin-bottom: 20px;
    line-height: 1.9;
}

/* ─── Ghost Button ─── */
.btn-ghost {
    display: inline-block;
    padding: 16px 45px;
    border: 1px solid var(--border-hover);
    color: var(--cream);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    transition: var(--transition-med);
    margin-top: 35px;
    position: relative;
    overflow: hidden;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out);
    z-index: -1;
}

.btn-ghost:hover {
    color: var(--bg);
    border-color: var(--gold);
}

.btn-ghost:hover::before {
    transform: translateX(0);
}

/* ─── Infinite Marquee ─── */
.marquee-section {
    padding: 30px 0;
    background-color: var(--gold);
    color: var(--bg);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 25s linear infinite;
    width: max-content;
}

.marquee-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    padding-right: 50px;
    display: inline-flex;
    align-items: center;
}

.bullet {
    margin: 0 50px;
    font-size: 1.5rem;
    line-height: 0;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); } /* Assuming 3 identical spans */
}

/* ─── Story Section ─── */
.section-story {
    background: var(--bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-image {
    position: relative;
}

.img-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--border);
}

.img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold-dim);
    pointer-events: none;
    transform: translate(15px, 15px);
    transition: transform 0.6s var(--ease-out);
}

.img-frame:hover::after {
    transform: translate(8px, 8px);
}

.img-frame img {
    transition: transform 1.2s var(--ease-out), filter 0.8s ease;
    filter: brightness(0.85) contrast(1.05);
}

.img-frame:hover img {
    transform: scale(1.06);
    filter: brightness(1) contrast(1);
}

/* ─── Signature Dishes ─── */
.section-signature {
    background: var(--bg-alt);
}

.signature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.signature-item {
    text-align: center;
}

.dish-image-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 35px;
}

.dish-image-wrap img {
    transition: transform 1.5s var(--ease-out), filter 1s ease;
    filter: brightness(0.8) contrast(1.1) saturate(1.1);
}

.dish-image-wrap:hover img {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.05) saturate(1);
}

.dish-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    pointer-events: none;
}

.dish-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold-dim);
    font-weight: 300;
}

.dish-info {
    padding: 0 20px;
}

.dish-name-th {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 400;
}

.dish-name-en {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 18px;
}

.dish-desc {
    font-size: 0.95rem;
    color: var(--cream-muted);
    font-weight: 200;
    max-width: 380px;
    margin: 0 auto 18px;
    line-height: 1.8;
}

.dish-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 2px;
}

/* ─── Heritage Quote ─── */
.section-quote {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('luxury_hero_v2.png') center/cover no-repeat fixed;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 40px;
}

.quote-content blockquote p {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    font-weight: 300;
}

.quote-author {
    display: block;
    margin-top: 30px;
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ─── Extended Menu ─── */
.section-extended {
    background: var(--bg);
}

.extended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.extended-item {
    text-align: center;
}

.extended-img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 25px;
    position: relative;
}

.extended-img-wrap img {
    transition: transform 1.2s var(--ease-out), filter 0.6s ease;
    filter: brightness(0.8) contrast(1.05);
}

.extended-img-wrap:hover img {
    transform: scale(1.06);
    filter: brightness(0.95);
}

.extended-item h3 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.ext-en {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--cream-dim);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ext-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-dim);
}

/* ─── Gallery Section ─── */
.section-gallery {
    background: var(--bg);
}

.gallery-video-wrap {
    width: 100%;
    margin-bottom: 60px;
    border: 1px solid var(--border);
    position: relative;
}

.gallery-video {
    width: 100%;
    height: 60vh;
    display: block;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2) {
    grid-column: span 3;
    aspect-ratio: 16/9;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: 4/5;
}

.gallery-item img {
    transition: transform 1.2s var(--ease-out), filter 0.8s ease;
    filter: brightness(0.85) contrast(1.05);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) contrast(1);
}

/* ─── Visit Section ─── */
.section-visit {
    background: var(--bg-alt);
}

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

.visit-details {
    margin-top: 40px;
}

.visit-block {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.visit-block h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 400;
}

.visit-block p {
    font-size: 0.95rem;
    color: var(--cream-muted);
    font-weight: 200;
}

.visit-phone {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--cream);
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

.visit-phone:hover {
    color: var(--gold);
}

.visit-map {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid var(--border);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}


/* ─── Ordering Channels ─── */
.order-channels {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.order-channels h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 18px;
    font-family: var(--font-sans);
    font-weight: 400;
}

.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.channel-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    color: var(--cream-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 300;
    transition: var(--transition-fast);
    text-decoration: none;
}

.channel-btn:hover {
    border-color: var(--gold-dim);
    color: var(--cream);
    background: rgba(201, 169, 110, 0.05);
}

.channel-icon-text {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
}

.channel-grab .channel-icon-text {
    color: #00b14f;
}

.channel-lineman .channel-icon-text {
    color: #2bc63a;
}

.channel-grab:hover {
    border-color: #00b14f;
    color: #00b14f;
}

.channel-lineman:hover {
    border-color: #2bc63a;
    color: #2bc63a;
}

/* ─── Footer ─── */
footer {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 6px;
    display: block;
    text-align: center;
}

.footer-tagline {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-top: 8px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 25px;
}

.social-link {
    color: var(--cream-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold-dim);
    transform: translateY(-2px);
}

.footer-copy p {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream-dim);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {

    .story-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .extended-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
        aspect-ratio: 1/1;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 2;
        aspect-ratio: 2/1; /* Span across both columns */
    }

    section {
        padding: 120px 0;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 25px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-logo {
        position: relative;
        left: auto;
        transform: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: 5px;
    }

    .hero-tag {
        font-size: 0.55rem;
        letter-spacing: 3px;
    }

    .signature-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .extended-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
        aspect-ratio: 4/5;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 100px 0;
    }

    .container {
        padding: 0 25px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-quote {
        height: 50vh;
        background-attachment: scroll;
    }

    .visit-map {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 480px) {
    .hero-tag {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .dish-name-th {
        font-size: 1.8rem;
    }

    .quote-content blockquote p {
        font-size: 1.3rem;
    }
}

/* ─── Selection Color ─── */
::selection {
    background: var(--gold);
    color: var(--bg);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}