/* ========================================
   Taverne of Perry — Styles
   Bold Editorial · Forest Green · Off-White
======================================== */

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

:root {
    --green-900: #0f2418;
    --green-800: #1a3a2a;
    --green-700: #234d38;
    --green-600: #2d6348;
    --green-500: #3a7d5c;
    --green-400: #5a9e7a;
    --green-300: #8fc0a5;
    --green-200: #c5e0cc;
    --green-100: #e2f0e8;
    --green-50:  #f2f8f4;

    --cream:     #f5f0e8;
    --cream-light:#faf6ef;
    --cream-dark:#e8e0d0;
    --cream-900: #2a2318;
    --cream-800: #3d3428;

    --text-dark:  #1a1610;
    --text-mid:   #4a4035;
    --text-light: #7a7065;
    --text-white: #f5f0e8;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

/* ---------- Typography ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--green-900);
    margin-bottom: 24px;
}

.title-accent {
    font-style: italic;
    color: var(--green-600);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--green-700);
    color: var(--text-white);
    border-color: var(--green-700);
}

.btn-primary:hover {
    background: var(--green-800);
    border-color: var(--green-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 36, 24, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(245, 240, 232, 0.5);
}

.btn-outline:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-800);
}

.btn-outline-light:hover {
    background: var(--green-800);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 58, 42, 0.08);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.97);
    box-shadow: 0 2px 20px rgba(15, 36, 24, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green-800);
}

.nav-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--green-800);
    color: var(--cream);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 900;
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--green-700) !important;
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease-out) !important;
}

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

.nav-cta:hover {
    background: var(--green-800) !important;
    transform: translateY(-1px);
}

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

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-800);
    padding: 12px 24px;
    transition: color 0.2s;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
}

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

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

.mobile-menu-cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    background: var(--green-700);
    color: var(--text-white) !important;
    padding: 14px 32px;
    border-radius: 6px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--green-900) 0%,
            #1a3a2a 25%,
            #2d5a3f 50%,
            #1e4a32 75%,
            var(--green-900) 100%
        );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(58, 125, 92, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(90, 158, 122, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(26, 58, 42, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 28px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
}

.headline-line {
    display: block;
}

.headline-accent {
    font-style: italic;
    color: var(--green-200);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.75);
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
}

.hero-detail svg {
    opacity: 0.6;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245, 240, 232, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

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

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

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

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--green-100);
    border-radius: 12px;
    z-index: -1;
}

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

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    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: 1.75rem;
    font-weight: 900;
    color: var(--green-700);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

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

/* ---------- Menu ---------- */
.menu {
    padding: 120px 0;
    background: var(--green-900);
    color: var(--cream);
}

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

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

.menu-header .section-title {
    color: var(--cream);
}

.menu-header .title-accent {
    color: var(--green-300);
}

.menu-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.menu-card {
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(245, 240, 232, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-500), var(--green-300));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.menu-card:hover {
    background: rgba(245, 240, 232, 0.08);
    transform: translateY(-4px);
    border-color: rgba(245, 240, 232, 0.15);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-featured {
    background: rgba(245, 240, 232, 0.08);
    border-color: rgba(245, 240, 232, 0.15);
}

.menu-card-featured::before {
    opacity: 1;
}

.menu-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--green-500);
    color: var(--cream);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.menu-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(90, 158, 122, 0.15);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--green-300);
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.menu-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cream);
}

.menu-item-desc {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.4;
}

.menu-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.35);
    font-style: italic;
}

/* ---------- Atmosphere ---------- */
.atmosphere {
    padding: 120px 0;
    background: var(--cream-light);
}

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

.atmosphere-content {
    padding: 16px 0;
}

.atmosphere-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 32px;
}

.atmosphere-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.atmosphere-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.atmosphere-feature svg {
    color: var(--green-600);
    flex-shrink: 0;
}

.atmosphere-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
}

.atmosphere-gallery-item {
    border-radius: 12px;
    overflow: hidden;
}

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

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

.atmosphere-gallery-item--large {
    grid-row: 1 / 3;
}

.atmosphere-gallery-item--large img {
    height: 100%;
}

.atmosphere-gallery-item--wide img {
    height: 100%;
}

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

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

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.visit-detail {
    display: flex;
    gap: 16px;
}

.visit-detail svg {
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-mid);
}

.visit-detail a {
    color: var(--green-700);
    font-weight: 600;
    transition: color 0.2s;
}

.visit-detail a:hover {
    color: var(--green-500);
}

.visit-map {
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 36, 24, 0.12);
}

/* ---------- CTA ---------- */
.cta {
    padding: 100px 0;
    background:
        linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: var(--green-400);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--green-700);
    color: var(--cream);
    border-radius: 10px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-logo-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.5);
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.55);
    transition: color 0.2s;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--green-400);
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.55);
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.3);
}

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

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

    .menu-categories {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 100svh;
        padding: 100px 20px 60px;
    }

    .hero-headline {
        font-size: clamp(2rem, 10vw, 3rem);
    }

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

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

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

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

    .about-image-wrap img {
        height: 360px;
    }

    .about-image-accent {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

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

    .atmosphere-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 240px 200px 200px;
    }

    .atmosphere-gallery-item--large {
        grid-row: auto;
    }

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

    .visit-map {
        height: 320px;
    }

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

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .hero {
        padding: 90px 16px 50px;
    }

    .about,
    .menu,
    .atmosphere,
    .visit {
        padding: 80px 0;
    }

    .menu-card {
        padding: 28px 22px;
    }
}
