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

:root {
    --midnight: #0A1628;
    --midnight-light: #132240;
    --midnight-mid: #1a2d4a;
    --mint: #A8E6CF;
    --mint-light: #C8F0E0;
    --mint-dark: #7BC8A8;
    --cream: #FAFAF8;
    --cream-warm: #F5F4F0;
    --white: #FFFFFF;
    --text-primary: #0A1628;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-light: #A0AEC0;
    --border: rgba(10, 22, 40, 0.08);
    --border-light: rgba(10, 22, 40, 0.04);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 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;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-line {
    width: 60px;
    height: 1px;
    background: var(--mint);
    animation: loaderLine 1.2s var(--ease-smooth) infinite;
}

@keyframes loaderLine {
    0% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
    51% { transform: scaleX(1); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5vw;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.nav.scrolled {
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--midnight);
    transition: opacity 0.3s;
}

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

.nav-logo-mark {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mint-dark);
    border: 1px solid var(--mint-dark);
    padding: 2px 8px;
    line-height: 1.4;
}

.nav-logo-text {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

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

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

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

.nav-menu-cta {
    color: var(--midnight);
    border: 1px solid var(--midnight);
    padding: 8px 20px;
    transition: background 0.3s, color 0.3s;
}

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

.nav-menu-cta:hover {
    background: var(--midnight);
    color: var(--cream);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle-line {
    width: 24px;
    height: 1px;
    background: var(--midnight);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
    transform-origin: center;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    transform: rotate(-45deg) translate(3px, -3px);
    opacity: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--midnight);
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s var(--ease-out), color 0.3s;
}

.mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link:hover { color: var(--mint-dark); }

/* Section Label */
.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 1.5rem;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s var(--ease-out);
}

.btn-primary {
    background: var(--midnight);
    color: var(--cream);
    border: 1px solid var(--midnight);
}

.btn-primary:hover {
    background: var(--midnight-light);
    border-color: var(--midnight-light);
}

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

.btn-ghost:hover {
    background: var(--midnight);
    color: var(--cream);
}

.btn-full {
    width: 100%;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
}

.hero-left {
    padding-right: 2rem;
}

.hero-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 60px;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 48px;
    height: 1px;
    background: var(--mint-dark);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--midnight);
    margin-bottom: 2rem;
}

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

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 3rem;
}

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

.hero-right {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

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

.hero-img {
    position: absolute;
    overflow: hidden;
}

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

.hero-img-main {
    width: 75%;
    height: 85%;
    top: 0;
    right: 0;
}

.hero-img-accent {
    width: 55%;
    height: 45%;
    bottom: 0;
    left: 0;
    border: 6px solid var(--cream);
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.12);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: var(--mint-dark);
    animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* About */
.about {
    padding: 140px 5vw;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 5rem;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--midnight);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--midnight);
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* Menu */
.menu {
    padding: 140px 5vw;
    background: var(--cream);
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
}

.menu-container > .section-label,
.menu-container > .section-title {
    text-align: center;
}

.menu-container > .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--midnight);
    margin-bottom: 2rem;
}

.menu-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.menu-intro p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.menu-category {
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.menu-category:hover {
    border-color: var(--mint);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.06);
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 0.3rem;
}

.menu-category-desc {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.menu-list li {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--midnight);
    white-space: nowrap;
}

.menu-item-dots {
    flex: 1;
    height: 1px;
    background: var(--border);
    min-width: 24px;
}

.menu-item-note {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    font-style: italic;
}

/* Gallery */
.gallery {
    padding: 140px 5vw;
    background: var(--white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-container > .section-label,
.gallery-container > .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-container > .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--midnight);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

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

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

.gallery-item--tall { grid-column: span 5; grid-row: span 2; }
.gallery-item--wide { grid-column: span 7; }

.gallery-item:nth-child(2) { grid-column: span 7; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 5; }
.gallery-item:nth-child(5) { grid-column: span 7; }
.gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-item:nth-child(7) { grid-column: span 5; }

/* Visit */
.visit {
    padding: 140px 5vw;
    background: var(--midnight);
    color: var(--cream);
}

.visit-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.visit-content > .section-label {
    color: var(--mint);
}

.visit-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 3rem;
    line-height: 1.1;
}

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.visit-icon {
    width: 24px;
    height: 24px;
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.visit-detail-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.5;
}

.visit-detail-value a {
    color: var(--cream);
    border-bottom: 1px solid rgba(168, 230, 207, 0.3);
    transition: border-color 0.3s;
}

.visit-detail-value a:hover {
    border-color: var(--mint);
}

.visit-map {
    min-height: 450px;
    background: var(--midnight-light);
    border: 1px solid rgba(168, 230, 207, 0.1);
}

/* Contact */
.contact {
    padding: 140px 5vw;
    background: var(--cream);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-left > .section-label {
    margin-bottom: 1.5rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--midnight);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 440px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--midnight);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    transition: border-color 0.3s, color 0.3s;
}

.contact-direct-link:hover {
    border-color: var(--mint-dark);
    color: var(--mint-dark);
}

.contact-direct-link svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--midnight);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    border-color: var(--mint-dark);
}

.form-select {
    cursor: pointer;
    color: var(--text-muted);
}

.form-select option {
    background: var(--cream);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(168, 230, 207, 0.15);
    border: 1px solid var(--mint);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--midnight);
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: var(--mint-dark);
    flex-shrink: 0;
}

/* Footer */
.footer {
    padding: 80px 5vw 0;
    background: var(--midnight);
    color: var(--cream);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    color: var(--cream);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 280px;
}

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

.footer-links a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    transition: color 0.3s;
}

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

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

.footer-contact p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--text-light);
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(168, 230, 207, 0.08);
    padding: 2rem 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s 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 {
        gap: 3rem;
    }
    
    .menu-categories {
        gap: 2rem;
    }
    
    .gallery-item--tall { grid-column: span 6; grid-row: span 1; }
    .gallery-item:nth-child(2) { grid-column: span 6; }
    .gallery-item:nth-child(3) { grid-column: span 6; }
    .gallery-item:nth-child(4) { grid-column: span 6; }
    .gallery-item:nth-child(5) { grid-column: span 6; }
    .gallery-item:nth-child(6) { grid-column: span 6; }
    .gallery-item:nth-child(7) { grid-column: span 6; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .menu-toggle { display: flex; }
    
    .hero {
        padding: 120px 6vw 100px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left { padding-right: 0; }
    
    .hero-headline {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    
    .hero-right {
        height: 50vh;
        min-height: 350px;
    }
    
    .about { padding: 100px 6vw; }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image img { height: 350px; }
    
    .about-stats { flex-wrap: wrap; gap: 2rem; }
    
    .menu { padding: 100px 6vw; }
    
    .menu-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-category { padding: 2rem; }
    
    .gallery { padding: 100px 6vw; }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--tall,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item--wide { grid-column: span 2; }
    
    .visit { padding: 100px 6vw; }
    
    .visit-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visit-map { min-height: 300px; }
    
    .contact { padding: 100px 6vw; }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 5vw 80px; }
    
    .hero-headline {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }
    
    .hero-actions { flex-direction: column; }
    
    .hero-actions .btn { width: 100%; justify-content: center; }
    
    .hero-right { height: 40vh; min-height: 280px; }
    
    .about-stats { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .stat-divider { width: 48px; height: 1px; }
    
    .menu-category { padding: 1.5rem; }
    
    .menu-item-name { font-size: 1rem; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
    
    .nav-inner { height: 70px; }
}
