/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Custom Properties ─── */
:root {
    --burgundy-700: #962525;
    --burgundy-900: #641f1f;
    --blush-100: #fff0e8;
    --cream-50: #fdfbf7;
    --cream-100: #faf5eb;
    --bark-900: #2a1e18;
    --bark-700: #7c5642;
    --nav-height: 4.5rem;
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Navbar ─── */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(124, 86, 66, 0.08);
    transition: box-shadow var(--transition-fast);
}
.nav-fixed.scrolled {
    box-shadow: 0 1px 20px rgba(42, 30, 24, 0.08);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bark-900);
    letter-spacing: -0.01em;
}
.nav-logo-icon { color: var(--burgundy-700); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bark-700);
    border-radius: 100px;
    transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover { color: var(--bark-900); background: rgba(124, 86, 66, 0.06); }
.nav-cta {
    margin-left: 0.75rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--burgundy-700);
    border-radius: 100px;
    transition: background var(--transition-fast), transform var(--transition-fast);
}
.nav-cta:hover { background: var(--burgundy-900); transform: translateY(-1px); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--bark-900);
}
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 30, 24, 0.4);
    z-index: 98;
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.mobile-overlay.active { opacity: 1; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    border: none;
    transition: all var(--transition-fast);
}
.btn-primary {
    background: var(--burgundy-700);
    color: #fff;
}
.btn-primary:hover { background: var(--burgundy-900); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(150, 37, 37, 0.25); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Container ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Section Eyebrow ─── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy-700);
    margin-bottom: 1.25rem;
}
.section-eyebrow::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--burgundy-700);
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--bark-900);
    margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--burgundy-900);
    overflow: hidden;
    padding: calc(var(--nav-height) + 2rem) 0 3rem;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(148, 52, 32, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(100, 31, 31, 0.3) 0%, transparent 60%);
    pointer-events: none;
}
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-content { padding-right: 1rem; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 250, 248, 0.6);
    margin-bottom: 2rem;
}
.hero-eyebrow-line {
    width: 2.5rem;
    height: 1px;
    background: rgba(255, 250, 248, 0.4);
}
.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.75rem;
}
.hero-em { font-style: italic; color: var(--blush-200); }
.hero-sub {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 250, 248, 0.7);
    max-width: 480px;
    margin-bottom: 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.125rem; }
.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}
.hero-stat-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 250, 248, 0.45);
}
.hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 250, 248, 0.15);
}
.hero-image-col { position: relative; height: 75vh; height: 75dvh; }
.hero-img-hero {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}
.hero-img-hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
    position: absolute;
    bottom: -1.5rem;
    left: -3rem;
    width: 55%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(253, 251, 247, 0.15);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(transparent, rgba(42, 30, 24, 0.8));
}
.hero-seal {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 250, 248, 0.3);
    animation: seal-spin 20s linear infinite;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 250, 248, 0.4);
    z-index: 1;
}
.hero-scroll svg { animation: scroll-bounce 2s ease-in-out infinite; }
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ─── About ─── */
.about {
    padding: 8rem 0;
    background: var(--cream-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image-col { position: relative; }
.about-img-main {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42, 30, 24, 0.1);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(42, 30, 24, 0.12);
    border: 4px solid var(--cream-50);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-text-col {}
.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bark-900);
    margin-bottom: 1.25rem;
}
.about-text-col p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--bark-700);
    margin-bottom: 1rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(124, 86, 66, 0.12);
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--bark-900);
}
.about-feature svg { color: var(--burgundy-700); flex-shrink: 0; }

/* ─── Menu ─── */
.menu {
    padding: 8rem 0;
    background: var(--cream-100);
}
.menu-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.menu-lead {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--bark-700);
}
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.menu-tab {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bark-700);
    background: none;
    border: 1px solid rgba(124, 86, 66, 0.2);
    border-radius: 100px;
    transition: all var(--transition-fast);
}
.menu-tab:hover { color: var(--bark-900); border-color: var(--bark-700); }
.menu-tab.active {
    background: var(--burgundy-700);
    color: #fff;
    border-color: var(--burgundy-700);
}
.menu-grid {}
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade-in 0.3s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.menu-category {
    max-width: 720px;
    margin: 0 auto 3rem;
}
.menu-category:last-child { margin-bottom: 0; }
.menu-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bark-900);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(124, 86, 66, 0.12);
}
.menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(124, 86, 66, 0.06);
}
.menu-item-info { flex: 1; padding-right: 1rem; }
.menu-item-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--bark-900);
    margin-bottom: 0.125rem;
}
.menu-item-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--bark-700);
    line-height: 1.5;
}
.menu-item-badge {
    flex-shrink: 0;
    padding: 0.25rem 0.625rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy-700);
    background: rgba(150, 37, 37, 0.08);
    border-radius: 100px;
}
.menu-note {
    max-width: 720px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--bark-700);
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    border: 1px solid rgba(124, 86, 66, 0.08);
}

/* ─── Gallery ─── */
.gallery {
    padding: 8rem 0;
    background: var(--cream-50);
}
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}
.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(42, 30, 24, 0.15));
    pointer-events: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--wide { grid-column: span 8; grid-row: span 1; }

/* ─── Visit ─── */
.visit {
    padding: 8rem 0;
    background: var(--cream-100);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.visit-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bark-900);
    margin-bottom: 2.5rem;
}
.visit-details { display: flex; flex-direction: column; gap: 1.75rem; }
.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.visit-detail-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(150, 37, 37, 0.08);
    border-radius: 0.5rem;
    color: var(--burgundy-700);
}
.visit-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bark-700);
    margin-bottom: 0.25rem;
}
.visit-detail-value {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--bark-900);
    line-height: 1.6;
}
.visit-detail-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: var(--burgundy-700);
    border-bottom: 1px solid rgba(150, 37, 37, 0.2);
    transition: border-color var(--transition-fast);
}
.visit-detail-link:hover { border-color: var(--burgundy-700); }
.visit-map {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42, 30, 24, 0.1);
    min-height: 480px;
}

/* ─── Contact ─── */
.contact {
    padding: 8rem 0;
    background: var(--burgundy-900);
    color: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact .section-title { color: #fff; }
.contact-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 250, 248, 0.65);
    margin-bottom: 2rem;
}
.contact-direct { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-direct-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 250, 248, 0.85);
    border-bottom: 1px solid rgba(255, 250, 248, 0.15);
    padding-bottom: 0.25rem;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}
.contact-direct-item:hover { color: #fff; border-color: rgba(255, 250, 248, 0.4); }
.contact-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 250, 248, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(8px);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 250, 248, 0.5);
    margin-bottom: 0.5rem;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 250, 248, 0.12);
    border-radius: 0.5rem;
    outline: none;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}
.form-input::placeholder { color: rgba(255, 250, 248, 0.3); }
.form-input:focus { border-color: rgba(255, 250, 248, 0.35); background: rgba(255, 255, 255, 0.08); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 250, 248, 0.15);
    border-radius: 0.5rem;
    color: rgba(255, 250, 248, 0.9);
    font-size: 0.9375rem;
    font-weight: 400;
}
.form-success svg { color: var(--blush-300); flex-shrink: 0; }

/* ─── Footer ─── */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bark-950);
    color: rgba(255, 250, 248, 0.6);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 250, 248, 0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}
.footer-logo svg { color: var(--burgundy-500); }
.footer-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 280px;
}
.footer-nav-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 250, 248, 0.35);
    margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 250, 248, 0.6);
    transition: color var(--transition-fast);
}
.footer-nav a:hover { color: #fff; }
.footer-contact p {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.footer-contact a {
    display: block;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 250, 248, 0.6);
    transition: color var(--transition-fast);
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 250, 248, 0.3);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ─── Scroll Reveal ─── */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(24px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.revealed.reveal-up { opacity: 1; transform: translateY(0); }
.revealed.reveal-left { opacity: 1; transform: translateX(0); }
.revealed.reveal-right { opacity: 1; transform: translateX(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-image-col { height: 60vh; }
    .about-grid { gap: 3rem; }
    .visit-grid { gap: 3rem; }
    .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-link { font-size: 1rem; padding: 0.75rem 1.5rem; }
    .nav-cta { margin-left: 0; margin-top: 1rem; font-size: 1rem; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .mobile-overlay.active { display: block; }

    .hero { padding-top: calc(var(--nav-height) + 1.5rem); }
    .hero-container { grid-template-columns: 1fr; }
    .hero-image-col { display: none; }
    .hero-content { padding-right: 0; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .hero-stat-divider { display: none; }

    .about { padding: 5rem 0; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-accent { right: 0; }

    .menu { padding: 5rem 0; }
    .menu-tabs { gap: 0.375rem; }
    .menu-tab { padding: 0.5rem 1rem; font-size: 0.6875rem; }

    .gallery { padding: 5rem 0; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item { height: 220px; }
    .gallery-item--tall img { height: 100%; }

    .visit { padding: 5rem 0; }
    .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .visit-map { min-height: 300px; }

    .contact { padding: 5rem 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--tall, .gallery-item--wide { grid-column: span 1; }
    .contact-form { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal-up, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
}
