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

:root {
    --midnight: #0A1628;
    --midnight-light: #132240;
    --midnight-mid: #1a2d4a;
    --mint: #5EEAD4;
    --mint-dark: #3ECFB5;
    --mint-light: #B9F6F0;
    --cream: #F8F6F3;
    --cream-dark: #EDE9E3;
    --white: #FFFFFF;
    --text-light: #C8D0DC;
    --text-muted: #8A96A8;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--mint);
    color: var(--midnight);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    font-weight: 600;
    transition: top 0.2s;
}

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

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

.site-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

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

.logo-mark::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 8px;
    border: 2px solid var(--midnight);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

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

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--white);
    display: block;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: all 0.3s var(--ease-out);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.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);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn--light {
    background: var(--white);
    color: var(--midnight);
}

.btn--light:hover {
    background: var(--mint);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(94, 234, 212, 0.3);
}

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

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

.btn--dark {
    background: var(--midnight);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--midnight-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.3);
}

.btn--full {
    width: 100%;
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.8125rem;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--midnight) 0%,
        #0D1F3C 25%,
        #122A4A 50%,
        #0F2440 75%,
        var(--midnight) 100%
    );
    z-index: 0;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(94, 234, 212, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(94, 234, 212, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(94, 234, 212, 0.03) 0%, transparent 70%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.hero-line:first-child {
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-line:last-child {
    animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

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

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.85s forwards;
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 56px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-detail svg {
    color: var(--mint);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out) 1.4s forwards;
}

.hero-scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--mint), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Section shared */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--midnight);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-heading em {
    font-style: italic;
    color: var(--midnight-dark, #1a3a5c);
}

/* About */
.about {
    padding: 140px 0;
    background: var(--cream);
}

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

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

.about-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(10, 22, 40, 0.15);
}

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

.about-img:hover img {
    transform: scale(1.03);
}

.about-img--main {
    width: 340px;
    height: 420px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img--secondary {
    width: 280px;
    height: 320px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

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

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--midnight);
    line-height: 1;
}

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

/* Menu */
.menu {
    padding: 140px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.menu-header .section-eyebrow {
    color: var(--mint);
}

.menu-header .section-heading {
    color: var(--white);
}

.menu-intro {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.menu-cat {
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.02em;
}

.menu-cat:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.menu-cat.active {
    background: var(--mint);
    color: var(--midnight);
    border-color: var(--mint);
}

.menu-grid {
    position: relative;
    z-index: 1;
}

.menu-panel {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    animation: panelIn 0.4s var(--ease-out);
}

.menu-panel.active {
    display: block;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.menu-item-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.menu-item-dot {
    width: 6px;
    height: 6px;
    background: var(--mint);
    border-radius: 50%;
    margin-top: 12px;
    flex-shrink: 0;
    opacity: 0.5;
}

.menu-item-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    align-self: center;
}

/* Gallery */
.gallery {
    padding: 140px 0 100px;
    background: var(--cream);
}

.gallery .container {
    text-align: center;
    margin-bottom: 56px;
}

.gallery-eyebrow {
    color: var(--mint-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.2) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 16px;
}

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

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

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: span 2; }

/* Visit */
.visit {
    padding: 140px 0;
    background: var(--white);
}

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

.visit-info {
    padding: 40px 0;
}

.visit-info .section-heading {
    margin-bottom: 40px;
}

.visit-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-style: normal;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 40px;
}

.visit-address svg {
    color: var(--mint-dark);
    flex-shrink: 0;
    margin-top: 4px;
}

.visit-hours-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--midnight);
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.9375rem;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cream-dark);
}

.hours-day {
    color: var(--midnight);
    font-weight: 500;
}

.hours-time {
    color: var(--text-muted);
}

.visit-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visit-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--midnight);
    transition: color 0.3s;
}

.visit-contact-item:hover {
    color: var(--mint-dark);
}

.visit-contact-item svg {
    color: var(--mint-dark);
    flex-shrink: 0;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 24px 80px rgba(10, 22, 40, 0.12);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Contact */
.contact {
    padding: 140px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.contact-content .section-eyebrow {
    color: var(--mint);
}

.contact-content .section-heading {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 440px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--white);
    transition: all 0.3s var(--ease-out);
    outline: none;
    width: 100%;
}

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

.form-input:focus {
    border-color: var(--mint);
    background: rgba(94, 234, 212, 0.05);
    box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.1);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 12px;
    color: var(--mint);
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-success svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8125rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* Scroll 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; }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

    .about-images {
        height: 480px;
    }

    .about-img--main {
        width: 260px;
        height: 340px;
    }

    .about-img--secondary {
        width: 220px;
        height: 260px;
    }

    .visit-grid,
    .contact-inner {
        gap: 48px;
    }

    .gallery-grid {
        grid-template-rows: repeat(2, 220px);
    }

    .gallery-item:nth-child(1) { grid-column: 1 / 5; }
    .gallery-item:nth-child(2) { grid-column: 5 / 9; }
    .gallery-item:nth-child(3) { grid-column: 9 / 13; }
    .gallery-item:nth-child(4) { grid-column: 5 / 9; }
    .gallery-item:nth-child(5) { grid-column: 9 / 13; }
}

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

    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out);
        z-index: 100;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.25rem;
        color: var(--text-light);
    }

    .hero {
        padding: 100px 20px 80px;
    }

    .hero-details {
        flex-direction: column;
        gap: 12px;
    }

    .about {
        padding: 80px 0;
    }

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

    .about-images {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

    .menu {
        padding: 80px 0;
    }

    .menu-categories {
        gap: 6px;
    }

    .menu-cat {
        padding: 8px 18px;
        font-size: 0.8125rem;
    }

    .gallery {
        padding: 80px 0 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
        padding: 0;
    }

    .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: span 2; }
    .gallery-item:nth-child(2) { grid-column: 2 / 3; }
    .gallery-item:nth-child(3) { grid-column: 1 / 2; }
    .gallery-item:nth-child(4) { grid-column: 2 / 3; }
    .gallery-item:nth-child(5) { grid-column: 1 / 3; grid-row: span 1; }

    .visit {
        padding: 80px 0;
    }

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

    .visit-map {
        min-height: 300px;
    }

    .visit-map iframe {
        min-height: 300px;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

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

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .about-images {
        height: 320px;
    }

    .about-img--main {
        width: 200px;
        height: 260px;
    }

    .about-img--secondary {
        width: 170px;
        height: 200px;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .menu-item-name {
        font-size: 1.125rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

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

    .gallery-item--tall {
        grid-row: span 1;
    }
}
