/* ============================================
   The Section House Inn — Styles
   Palette: Plum (#6B3A5A) + Amber (#C8956C)
   Fonts: Playfair Display + Lora + Cormorant Garamond
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum: #6B3A5A;
    --plum-deep: #4A2540;
    --plum-light: #8B5A7A;
    --plum-muted: #A0708A;
    --amber: #C8956C;
    --amber-light: #D4A574;
    --amber-pale: #E8C9A8;
    --amber-cream: #F5E6D0;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DC;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #7A6E68;
    --warm-gray-light: #A89890;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Georgia', serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.12);
    --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.16);
    --shadow-xl: 0 16px 60px rgba(44, 36, 32, 0.20);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--plum);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--amber);
}

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

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 58, 90, 0.08);
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(250, 246, 240, 0.97);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--plum-deep);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--plum);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--amber);
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
}

.logo:hover {
    color: var(--plum-deep);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a {
    color: var(--charcoal-light);
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.main-nav a:hover {
    color: var(--plum);
    background: rgba(107, 58, 90, 0.06);
}

.btn-reserve {
    background: var(--plum) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
}

.btn-reserve:hover {
    background: var(--plum-deep) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--plum);
    transition: all var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 37, 64, 0.82) 0%,
        rgba(107, 58, 90, 0.72) 40%,
        rgba(196, 120, 90, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    width: 100%;
}

.hero-card {
    max-width: 600px;
}

.hero-eyebrow {
    font-family: var(--font-accent);
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-pale);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
}

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

.hero-subheadline {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 520px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.btn-primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber-pale);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}

.btn-secondary:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber-pale);
    white-space: nowrap;
    min-width: 80px;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    letter-spacing: 0.03em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 1;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background: var(--amber-pale);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.4; }
}

/* ============================================
   Section Shared
   ============================================ */
section {
    padding: 120px 0;
}

.section-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--plum-deep);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.8;
}

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

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

/* ============================================
   About
   ============================================ */
.about {
    background: var(--cream);
}

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

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

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--cream);
}

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

.about-img-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--plum);
    border-radius: 50%;
    opacity: 0.12;
    z-index: -1;
}

.about-text {
    padding: 20px 0;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-text p:first-of-type {
    font-size: 1.15rem;
    color: var(--charcoal);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(107, 58, 90, 0.12);
}

.signature-line {
    width: 60px;
    height: 2px;
    background: var(--amber);
}

.signature-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--plum);
}

/* ============================================
   Rooms
   ============================================ */
.rooms {
    background: var(--cream-dark);
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.room-img {
    height: 260px;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.room-card:hover .room-img img {
    transform: scale(1.06);
}

.room-info {
    padding: 32px 28px;
}

.room-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--plum-deep);
    margin-bottom: 12px;
}

.room-desc {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.room-features li {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--plum);
    background: rgba(107, 58, 90, 0.07);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.room-info .btn {
    width: 100%;
    text-align: center;
}

/* ============================================
   Amenities
   ============================================ */
.amenities {
    background: var(--cream);
}

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

.amenity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 149, 108, 0.2);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.amenity-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plum-deep);
    margin-bottom: 12px;
}

.amenity-desc {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.75;
}

/* ============================================
   Location
   ============================================ */
.location {
    background: var(--cream-dark);
}

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

.location-text {
    padding: 20px 0;
}

.location-text p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.85;
    margin-bottom: 36px;
}

.location-details {
    font-style: normal;
    margin-bottom: 36px;
}

.location-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    align-items: baseline;
}

.location-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    min-width: 70px;
    font-weight: 600;
}

.location-value {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.location-value a {
    color: var(--plum);
}

.location-value a:hover {
    color: var(--amber);
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

/* ============================================
   CTA / Contact
   ============================================ */
.cta {
    background: var(--plum-deep);
    padding: 120px 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-text .section-eyebrow {
    color: var(--amber-pale);
}

.cta-text .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
}

.cta-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-xl);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--cream);
    border: 1.5px solid rgba(107, 58, 90, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(107, 58, 90, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}

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

.form-note {
    font-size: 0.85rem;
    color: var(--warm-gray);
    text-align: center;
    margin-top: 4px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--plum);
}

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

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--plum-deep);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.logo-footer {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact h4,
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact address {
    font-style: normal;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--amber-pale);
}

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

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 180px;
    }

    .about-grid {
        gap: 48px;
    }

    .about-images {
        height: 500px;
    }

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

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

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

    .location-image {
        height: 400px;
    }

    .cta-card {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        box-shadow: var(--shadow-xl);
        padding: 100px 40px 40px;
        transition: right var(--transition);
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .main-nav a {
        padding: 14px 16px;
        font-size: 1.15rem;
    }

    .btn-reserve {
        margin-top: 16px;
        text-align: center;
        display: block !important;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 120px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }

    .scroll-indicator {
        display: none;
    }

    section {
        padding: 80px 0;
    }

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

    .about-images {
        height: 400px;
        order: -1;
    }

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

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

    .cta {
        padding: 80px 0;
    }

    .cta-form-wrapper {
        padding: 32px 24px;
    }

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

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

    .hero-headline {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-images {
        height: 320px;
    }

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

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 32, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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