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

:root {
    --navy: #0a1f3f;
    --navy-light: #132d54;
    --gold: #c9a84c;
    --gold-light: #dfc06e;
    --gold-pale: #f5ecd3;
    --cream: #f8f6f1;
    --cream-dark: #efe9dd;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Karla', 'Helvetica Neue', Arial, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    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;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 0 0 6px 6px;
    z-index: 1000;
    font-size: 0.875rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

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

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: 1.5px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(248, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(10, 31, 63, 0.08);
    padding: 0.7rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s;
}

.logo-wordmark {
    letter-spacing: 0.02em;
}

.logo-mark {
    color: var(--gold);
}

.site-header.scrolled .logo {
    color: var(--navy);
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.primary-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

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

.primary-nav a:hover {
    color: var(--white);
}

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

.site-header.scrolled .primary-nav a {
    color: var(--text-mid);
}

.site-header.scrolled .primary-nav a:hover {
    color: var(--navy);
}

/* ── Mobile Nav Toggle ──────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 110;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(19, 45, 84, 0.6) 0%, transparent 50%),
        linear-gradient(160deg, #061224 0%, #0a1f3f 40%, #0d2847 70%, #132d54 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.75rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Hero Visual ────────────────────────────────────────── */
.hero-visual {
    position: relative;
    height: 560px;
}

.hero-image-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-grid img {
    position: absolute;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-grid img:first-child {
    width: 65%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-image-grid img:last-child {
    width: 55%;
    height: 65%;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 3px solid rgba(201, 168, 76, 0.2);
}

.hero-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 28%;
    left: 42%;
    z-index: 4;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(30px);
}

/* ── Hero Wave ──────────────────────────────────────────── */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ── Trust Bar ──────────────────────────────────────────── */
.trust-bar {
    background: var(--cream);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(10, 31, 63, 0.06);
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

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

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.trust-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(10, 31, 63, 0.12);
}

/* ── About ──────────────────────────────────────────────── */
.about {
    background: var(--cream);
    padding: 7rem 0;
}

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

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(10, 31, 63, 0.1);
}

.about-visual::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--gold);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.4;
}

.about-content {
    padding: 1rem 0;
}

.about-content p {
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ── Divider ────────────────────────────────────────────── */
.divider-section {
    padding: 0;
}

.thin-rule {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 31, 63, 0.12), transparent);
}

/* ── Offerings ──────────────────────────────────────────── */
.offerings {
    background: var(--white);
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.offering-card {
    padding: 2.5rem 1.75rem;
    border: 1px solid rgba(10, 31, 63, 0.07);
    border-radius: 6px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.offering-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 12px 40px rgba(10, 31, 63, 0.08);
    transform: translateY(-4px);
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.offering-icon svg {
    width: 100%;
    height: 100%;
}

.offering-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.offering-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.gallery-track {
    display: flex;
    gap: 1.25rem;
    animation: scroll-gallery 40s linear infinite;
}

.gallery-track img {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.gallery-track img:hover {
    filter: grayscale(0%);
}

@keyframes scroll-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 3 - 1.25rem * 3)); }
}

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

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

.visit-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-detail dt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.visit-detail dt svg {
    color: var(--gold);
    flex-shrink: 0;
}

.visit-detail dd {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    padding-left: 1.7rem;
}

.visit-detail a {
    color: var(--text-mid);
    border-bottom: 1px solid rgba(10, 31, 63, 0.1);
    transition: color 0.3s, border-color 0.3s;
}

.visit-detail a:hover {
    color: var(--navy);
    border-color: var(--gold);
}

.hours-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.visit-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(10, 31, 63, 0.08);
}

/* ── Contact ────────────────────────────────────────────── */
.contact {
    background: var(--navy);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.contact-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text .section-title {
    color: var(--white);
}

.contact-text .section-subtitle,
.contact-text p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-direct {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding-bottom: 0.25rem;
    transition: border-color 0.3s;
}

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

.contact-phone svg {
    color: var(--gold);
}

/* ── Form ───────────────────────────────────────────────── */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    margin: 0 auto 1rem;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: #061224;
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-light {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

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

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
}

.footer-contact a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s, color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ── Scroll to Top ──────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(10, 31, 63, 0.3);
    z-index: 50;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
}

.scroll-top[hidden] {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.scroll-top:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--navy);
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        display: none;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .about-visual img {
        height: 400px;
    }

    .about-visual::after {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        justify-content: center;
    }
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    }

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

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .primary-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .primary-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-container {
        padding-top: 0;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .trust-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .gallery-track img {
        width: 280px;
        height: 210px;
    }

    @keyframes scroll-gallery {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 3 - 1.25rem * 3)); }
    }

    .footer-links ul {
        flex-direction: column;
        gap: 0.75rem;
    }
}

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

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

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

/* ── Mobile nav overlay ─────────────────────────────────── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 36, 0.5);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
