/* ============================================
   HOME MACARON — Café & Bar, Vancouver WA
   Bold editorial · Terracotta + Sand
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-terracotta: #C4704B;
    --color-terracotta-deep: #A85533;
    --color-terracotta-light: #D4916F;
    --color-sand: #F5EDE4;
    --color-sand-light: #FAF6F2;
    --color-sand-dark: #E8DDD3;
    --color-cream: #FDF9F5;
    --color-charcoal: #2A2219;
    --color-warm-gray: #6B5E54;
    --color-warm-gray-light: #9B8E84;
    --color-white: #FFFFFF;
    --color-dark-bg: #1E1812;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-charcoal);
}

em {
    font-style: italic;
}

/* ---------- Section Eyebrow ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

/* ---------- Section Title ---------- */
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-accent {
    color: var(--color-terracotta);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--color-terracotta-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 112, 75, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-charcoal);
}

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

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 0.9375rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(253, 249, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(42, 34, 25, 0.08);
    padding: var(--space-sm) 0;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-terracotta);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-warm-gray);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-terracotta);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--color-charcoal);
}

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

.nav-cta {
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    padding: 0.625rem 1.375rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    transition: all var(--transition) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-terracotta-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(196, 112, 75, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem var(--space-md) 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 50%, var(--color-sand-dark) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(196, 112, 75, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(196, 112, 75, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--color-terracotta);
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: var(--space-lg);
    color: var(--color-charcoal);
}

.headline-accent {
    color: var(--color-terracotta);
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Floating Stat Cards */
.hero-stats {
    position: relative;
    height: 420px;
    display: none;
}

.stat-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    box-shadow: 0 4px 30px rgba(42, 34, 25, 0.08),
                0 1px 3px rgba(42, 34, 25, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    animation: float 6s ease-in-out infinite;
}

.stat-card-icon {
    width: 20px;
    height: 20px;
    color: var(--color-terracotta);
    margin-bottom: 0.25rem;
}

.stat-card-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.stat-card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-warm-gray-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-card--1 {
    top: 0;
    right: 10%;
    animation-delay: 0s;
}

.stat-card--2 {
    top: 45%;
    right: 35%;
    animation-delay: -2s;
}

.stat-card--3 {
    bottom: 5%;
    right: 5%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Hero Image Grid */
.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-sm);
    height: 560px;
}

.hero-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero-img--1 {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: var(--radius-lg);
}

.hero-img--2 {
    grid-column: 2;
    grid-row: 1;
}

.hero-img--3 {
    grid-column: 2;
    grid-row: 2;
}

/* ---------- About Section ---------- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: var(--color-terracotta);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-content > p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-md);
}

.about-values {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.value-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-md);
    align-items: start;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-terracotta);
    opacity: 0.5;
    line-height: 1;
}

.value-item h4 {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
    line-height: 1.6;
}

/* ---------- Menu Section ---------- */
.menu {
    padding: var(--space-3xl) 0;
    background: var(--color-sand-light);
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1080px;
    margin: 0 auto;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 15px rgba(42, 34, 25, 0.05);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(42, 34, 25, 0.1);
}

.menu-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.menu-card--featured .menu-card-image img {
    height: 100%;
    min-height: 320px;
}

.menu-card-image {
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu-card-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(196, 112, 75, 0.08);
    display: inline-block;
    padding: 0.3125rem 0.75rem;
    border-radius: 50px;
    align-self: flex-start;
}

.menu-card--dark {
    background: var(--color-charcoal);
}

.menu-card--dark .menu-card-tag {
    background: rgba(196, 112, 75, 0.2);
}

.menu-card--dark h3 {
    color: var(--color-white);
}

.menu-card--dark p {
    color: var(--color-warm-gray-light);
}

.menu-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.menu-card > .menu-card-body > p {
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
    line-height: 1.65;
}

.menu-card-list {
    margin-top: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-card-list li {
    font-size: 0.875rem;
    color: var(--color-warm-gray);
    padding-left: 1rem;
    position: relative;
}

.menu-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    background: var(--color-terracotta);
    border-radius: 50%;
}

/* ---------- Gallery Section ---------- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-sm);
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item--1 {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    min-height: 500px;
}

.gallery-item--2 {
    grid-column: 6 / 9;
    grid-row: 1;
    min-height: 240px;
}

.gallery-item--3 {
    grid-column: 9 / 13;
    grid-row: 1;
    min-height: 240px;
}

.gallery-item--4 {
    grid-column: 6 / 10;
    grid-row: 2;
    min-height: 240px;
}

.gallery-item--5 {
    grid-column: 10 / 13;
    grid-row: 2;
    min-height: 240px;
}

/* ---------- Visit Section ---------- */
.visit {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-sand-light) 0%, var(--color-sand) 100%);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.visit-content {
    max-width: 520px;
}

.visit-details {
    margin: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.visit-detail-icon {
    width: 24px;
    height: 24px;
    color: var(--color-terracotta);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.visit-detail h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.visit-detail p {
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--color-terracotta);
    transition: color var(--transition);
}

.visit-detail a:hover {
    color: var(--color-terracotta-deep);
    text-decoration: underline;
}

.visit-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(42, 34, 25, 0.1);
}

.visit-map img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.visit-map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.visit-map-pin {
    width: 40px;
    height: 40px;
    color: var(--color-terracotta);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.visit-map-overlay span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    background: rgba(42, 34, 25, 0.7);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-dark-bg);
    color: var(--color-sand);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(245, 237, 228, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-logo-mark {
    width: 48px;
    height: 48px;
    background: var(--color-terracotta);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-sand);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--color-warm-gray-light);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-warm-gray-light);
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--color-terracotta-light);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--color-warm-gray-light);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--color-terracotta-light);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8125rem;
    color: var(--color-warm-gray);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    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;
    }
    
    .hero-image-grid {
        display: none;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: var(--space-sm);
        height: auto;
        margin-top: var(--space-xl);
        overflow-x: auto;
        padding-bottom: var(--space-sm);
    }
    
    .stat-card {
        position: relative;
        flex-shrink: 0;
        animation: none;
    }
    
    .stat-card--1 { animation-delay: 0s; }
    .stat-card--2 { animation-delay: -1.5s; }
    .stat-card--3 { animation-delay: -3s; }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-image-wrap img {
        height: 400px;
    }
    
    .menu-card--featured {
        grid-column: 1;
        grid-template-columns: 1fr;
    }
    
    .menu-card--featured .menu-card-image img {
        min-height: 220px;
    }
    
    .visit-layout {
        grid-template-columns: 1fr;
    }
    
    .visit-map img {
        height: 300px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--1 {
        grid-column: 1 / 7;
        min-height: 350px;
    }
    
    .gallery-item--2 {
        grid-column: 7 / 13;
        min-height: 175px;
    }
    
    .gallery-item--3 {
        grid-column: 7 / 10;
        min-height: 175px;
    }
    
    .gallery-item--4 {
        grid-column: 10 / 13;
        min-height: 175px;
    }
    
    .gallery-item--5 {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-xl);
        box-shadow: -10px 0 40px rgba(42, 34, 25, 0.15);
        transition: right var(--transition);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 7rem var(--space-md) var(--space-xl);
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--1 {
        grid-column: 1 / -1;
        min-height: 280px;
    }
    
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4,
    .gallery-item--5 {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--1 {
        min-height: 250px;
    }
}

/* ---------- Mobile overlay ---------- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 34, 25, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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