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

:root {
    --midnight: #0A1F3F;
    --midnight-light: #132D54;
    --midnight-dark: #061529;
    --mint: #A8D5D0;
    --mint-light: #C5E5E1;
    --mint-dark: #7FB8B2;
    --cream: #F5F0EB;
    --cream-dark: #EDE6DD;
    --warm-white: #FAFAF8;
    --text-dark: #0A1F3F;
    --text-mid: #3A4F6A;
    --text-light: #6B7F9A;
    --gold: #C4A265;
    --gold-light: #D4B87A;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --nav-height: 72px;
    --container-max: 1200px;
    --radius: 4px;
    --radius-lg: 8px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-white);
    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;
}

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

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

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: 24px;
}

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

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

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

.btn-primary:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(10, 31, 63, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(168, 213, 208, 0.5);
}

.btn-outline:hover {
    background: rgba(168, 213, 208, 0.1);
    border-color: var(--mint);
    color: var(--mint-light);
}

.btn-full {
    width: 100%;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 31, 63, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(168, 213, 208, 0.1);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-mark {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--mint);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--mint);
    border-radius: var(--radius);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    color: var(--mint) !important;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

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

.nav-cta:hover {
    color: var(--mint-light) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    z-index: 1001;
    align-items: flex-end;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--cream);
    border-radius: 1px;
    transition: all 0.3s ease;
}

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

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--midnight-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    padding: 16px 0;
    display: block;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(12px);
}

.mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.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-link:hover {
    color: var(--mint);
}

.mobile-menu-divider {
    width: 48px;
    height: 1px;
    background: rgba(168, 213, 208, 0.2);
    margin: 8px auto 16px;
    opacity: 0;
}

.mobile-menu.open .mobile-menu-divider {
    opacity: 1;
    transition: opacity 0.4s ease 0.3s;
}

.mobile-menu-phone {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--mint);
    display: block;
    margin-bottom: 8px;
    opacity: 0;
}

.mobile-menu.open .mobile-menu-phone {
    opacity: 1;
    transition: opacity 0.4s ease 0.35s;
}

.mobile-menu-address {
    font-size: 0.875rem;
    color: var(--text-light);
    opacity: 0;
}

.mobile-menu.open .mobile-menu-address {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

/* ── Hero ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 21, 41, 0.55) 0%,
        rgba(10, 31, 63, 0.7) 50%,
        rgba(6, 21, 41, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
}

.hero.loaded .hero-eyebrow {
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 24px;
}

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

.hero.loaded .hero-headline-line:nth-child(1) {
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero.loaded .hero-headline-line:nth-child(2) {
    animation: fadeUp 0.8s ease forwards 0.65s;
}

.hero.loaded .hero-headline-line:nth-child(3) {
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-headline-line:nth-child(3) {
    font-style: italic;
    color: var(--mint);
}

.hero-sub {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(16px);
}

.hero.loaded .hero-sub {
    animation: fadeUp 0.8s ease forwards 0.95s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
}

.hero.loaded .hero-actions {
    animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero.loaded .hero-scroll {
    animation: fadeIn 0.8s ease forwards 1.5s;
}

.hero-scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.4);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(168, 213, 208, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Animations ── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--warm-white);
}

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

.about-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-body {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 32px;
}

.about-signature {
    padding-top: 24px;
    border-top: 1px solid var(--cream-dark);
}

.about-signature-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--midnight);
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 31, 63, 0.12);
}

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

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 1.5px solid var(--mint);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ── Divider ── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--cream-dark);
}

.divider-diamond {
    font-size: 0.5rem;
    color: var(--mint-dark);
    letter-spacing: 0.1em;
}

/* ── Menu ── */
.menu {
    padding: 100px 0 120px;
    background: var(--midnight);
}

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

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.menu-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245, 240, 235, 0.55);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 56px;
}

.menu-tab {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(245, 240, 235, 0.4);
    padding: 12px 32px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.menu-tab:hover {
    color: rgba(245, 240, 235, 0.7);
}

.menu-tab.active {
    color: var(--mint);
    background: rgba(168, 213, 208, 0.08);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--mint);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 213, 208, 0.15);
    margin-bottom: 4px;
}

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

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--cream);
}

.menu-item-dots {
    flex: 1;
    height: 1px;
    background: rgba(168, 213, 208, 0.2);
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: rgba(245, 240, 235, 0.4);
    line-height: 1.5;
    padding-left: 0;
}

.menu-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(245, 240, 235, 0.25);
    margin-top: 48px;
    letter-spacing: 0.04em;
}

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

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

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    min-height: 380px;
}

.gallery-item:not(.gallery-item--large) {
    min-height: 180px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
    min-height: 260px;
}

/* ── Visit ── */
.visit {
    padding: 100px 0 120px;
    background: var(--warm-white);
}

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

.visit-detail {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
}

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

.visit-detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Form */
.visit-form-wrapper {
    max-width: 480px;
}

.visit-form-card {
    background: var(--midnight);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 24px 64px rgba(10, 31, 63, 0.15);
}

.visit-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 6px;
}

.visit-form-sub {
    font-size: 0.875rem;
    color: rgba(245, 240, 235, 0.45);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.4);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--cream);
    background: rgba(245, 240, 235, 0.06);
    border: 1px solid rgba(168, 213, 208, 0.15);
    border-radius: var(--radius);
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(245, 240, 235, 0.25);
}

.form-input:focus {
    border-color: var(--mint);
    background: rgba(168, 213, 208, 0.06);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 32px 16px;
}

.form-success.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeUp 0.5s ease;
}

.form-success svg {
    width: 40px;
    height: 40px;
    color: var(--mint);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--cream);
}

/* ── Footer ── */
.footer {
    background: var(--midnight-dark);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(168, 213, 208, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-mark {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--mint);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--mint);
    border-radius: var(--radius);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
}

.footer-tagline {
    font-size: 0.8125rem;
    color: rgba(245, 240, 235, 0.35);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(245, 240, 235, 0.45);
    transition: color 0.3s ease;
    letter-spacing: 0.04em;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-phone {
    font-size: 1rem;
    font-weight: 500;
    color: var(--mint);
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--mint-light);
}

.footer-address {
    font-size: 0.8125rem;
    color: rgba(245, 240, 235, 0.35);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245, 240, 235, 0.2);
    letter-spacing: 0.04em;
}

/* ── Scroll Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }
    
    .visit-grid {
        gap: 48px;
    }
    
    .gallery-item--large {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 580px;
    }
    
    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image-wrapper img {
        height: 360px;
    }
    
    .about-image-accent {
        top: -12px;
        right: -12px;
        width: 80px;
        height: 80px;
    }
    
    .menu {
        padding: 80px 0 100px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .gallery {
        padding: 80px 0 100px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--large {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 240px;
    }
    
    .gallery-item:not(.gallery-item--large) {
        min-height: 160px;
    }
    
    .gallery-item--wide {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 200px;
    }
    
    .visit {
        padding: 80px 0 100px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit-form-wrapper {
        max-width: 100%;
    }
    
    .visit-form-card {
        padding: 32px 24px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 11vw, 2.75rem);
    }
    
    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .menu-tab {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: 1 / 1;
    }
    
    .gallery-item--large {
        min-height: 220px;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        min-height: 200px;
    }
}
