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

:root {
    --charcoal: #1E1E1E;
    --charcoal-light: #2A2A2A;
    --charcoal-mid: #3A3A3A;
    --coral: #C85A3C;
    --coral-light: #D4735A;
    --coral-dark: #A84830;
    --cream: #F5F0EB;
    --cream-dark: #EDE6DD;
    --white: #FFFFFF;
    --text-primary: #1E1E1E;
    --text-secondary: #5A5A5A;
    --text-light: #8A8A8A;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ── Navbar ──────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 30, 30, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s var(--ease-out);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    transition: opacity 0.2s;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-icon {
    color: var(--coral);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(245, 240, 235, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

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

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

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--coral) !important;
    text-transform: none !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    font-size: 0.9375rem !important;
}

.nav-phone::after {
    display: none !important;
}

.nav-phone:hover {
    color: var(--coral-light) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--charcoal);
    color: var(--cream);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 90, 60, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 80% at 20% 80%, rgba(200, 90, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 32px;
}

.hero-tag-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--coral);
}

.hero-headline {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--cream);
}

.hero-headline .accent {
    color: var(--coral);
    font-style: italic;
    font-weight: 700;
}

.hero-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 240, 235, 0.65);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 90, 60, 0.3);
}

.btn-primary:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 90, 60, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 235, 0.25);
}

.btn-ghost:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 240, 235, 0.15);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 640/800;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.hero-floating-card {
    position: absolute;
    bottom: 32px;
    left: -32px;
    background: var(--white);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(245, 240, 235, 0.4);
    z-index: 1;
}

/* ── Marquee ─────────────────────────────────────── */
.marquee-strip {
    background: var(--charcoal);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(245, 240, 235, 0.06);
    border-bottom: 1px solid rgba(245, 240, 235, 0.06);
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(245, 240, 235, 0.35);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-track span:nth-child(2n) {
    color: var(--coral);
    opacity: 0.6;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Features ────────────────────────────────────── */
.features {
    padding: 120px 0;
    background: var(--cream);
}

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

.feature-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 90, 60, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ── Section Shared ──────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
}

/* ── Menu ────────────────────────────────────────── */
.menu-preview {
    padding: 120px 0;
    background: var(--white);
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.menu-category {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--coral);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 8px 0;
}

.item-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.item-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: right;
    flex-shrink: 0;
}

.menu-cta {
    text-align: center;
    padding: 40px;
    background: var(--charcoal);
    border-radius: 20px;
    color: var(--cream);
}

.menu-cta p {
    font-size: 1rem;
    color: rgba(245, 240, 235, 0.6);
    margin-bottom: 24px;
}

.menu-cta .btn-primary {
    background: var(--coral);
}

/* ── About ───────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.about-images {
    position: relative;
    height: 640px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 78%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    border: 6px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent-block {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--coral);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.signature-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.signature-location {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* ── Gallery ─────────────────────────────────────── */
.gallery-strip {
    padding: 0 0 120px;
    background: var(--cream);
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 0 24px;
    animation: gallery-scroll 40s linear infinite;
    width: max-content;
}

.gallery-item {
    flex-shrink: 0;
    width: 480px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Visit ───────────────────────────────────────── */
.visit {
    padding: 120px 0;
    background: var(--white);
}

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

.visit-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
}

.detail-value {
    font-size: 1.0625rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.detail-value a {
    color: var(--text-primary);
    transition: color 0.2s;
}

.detail-value a:hover {
    color: var(--coral);
}

.hours-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-day {
    font-weight: 500;
    color: var(--text-primary);
}

.hours-time {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 16px;
    font-style: italic;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ── CTA Strip ───────────────────────────────────── */
.cta-strip {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200, 90, 60, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 60%, rgba(200, 90, 60, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 20px;
}

.cta-headline em {
    color: var(--coral);
    font-style: italic;
}

.cta-body {
    font-size: 1.125rem;
    color: rgba(245, 240, 235, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
    background: var(--charcoal-light);
    color: var(--cream);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 240, 235, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(245, 240, 235, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-contact p,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 235, 0.6);
    line-height: 1.8;
}

.footer-contact a:hover {
    color: var(--coral);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 235, 0.5);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.8125rem;
    color: rgba(245, 240, 235, 0.3);
}

/* ── Reveal Animations ───────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
[data-reveal].revealed ~ [data-reveal] {
    transition-delay: 0.1s;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .about-grid {
        gap: 48px;
    }

    .about-images {
        height: 500px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-body {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-floating-card {
        left: 16px;
        bottom: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

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

    .about-images {
        height: 420px;
        order: -1;
        max-width: 520px;
        margin: 0 auto;
    }

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

    .visit-map {
        height: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1rem;
    }

    .hero {
        padding: 100px 0 100px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-flex;
    }

    .hero-image-wrapper {
        aspect-ratio: 4/3;
        border-radius: 16px;
    }

    .features {
        padding: 80px 0;
    }

    .menu-preview,
    .about,
    .visit {
        padding: 80px 0;
    }

    .menu-category {
        padding: 28px;
    }

    .gallery-item {
        width: 320px;
        height: 240px;
    }

    .cta-strip {
        padding: 80px 0;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        padding: 60px 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .about-images {
        height: 320px;
    }

    .about-img-main {
        width: 80%;
        height: 80%;
    }

    .about-img-secondary {
        width: 60%;
    }
}

/* ── Mobile overlay ──────────────────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}
