/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1A1A2E;
    background: #FAFAF8;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --navy: #0D1B2A;
    --navy-light: #1B2D45;
    --gold: #D4A017;
    --gold-light: #F0C040;
    --gold-pale: #FFF8E1;
    --cream: #FAFAF8;
    --white: #FFFFFF;
    --dark-text: #1A1A2E;
    --muted: #6B7280;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(13,27,42,0.08);
    --shadow-lg: 0 12px 48px rgba(13,27,42,0.12);
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-label--dark { color: var(--gold); }
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,0.75); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}
.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn--white {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
}
.btn--white:hover {
    background: var(--gold-pale);
    border-color: var(--gold-pale);
    transform: translateY(-2px);
}
.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13,27,42,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,160,23,0.15);
    transition: background 0.3s ease;
}
.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: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,160,23,0.4);
}

/* Nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 0;
}
.mobile-menu.active { display: flex; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 0; }
.mobile-menu-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    align-self: flex-start;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.hero-shape--tl {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -150px;
    left: -150px;
}
.hero-shape--br {
    width: 400px;
    height: 400px;
    background: var(--gold-light);
    bottom: -100px;
    right: 30%;
}
.hero-dots {
    position: absolute;
    top: 15%;
    right: 48%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.25;
    z-index: 1;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-accent {
    color: var(--gold);
    display: block;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
.hero-image-wrap { position: relative; }
.hero-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(212,160,23,0.4);
    z-index: 3;
}

/* ===== GEO DIVIDER ===== */
.geo-divider {
    background: var(--navy);
    padding: 20px 24px;
    display: flex;
    justify-content: center;
}
.geo-divider-dots {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.geo-divider-dots span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}
.geo-divider-dots span:nth-child(3n) { opacity: 0.9; }
.geo-divider-dots span:nth-child(5n) { opacity: 0.3; }

/* ===== MENU ===== */
.menu {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.menu-bg-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.04;
}
.menu .section-label, .menu .section-title, .menu .section-sub { margin-left: 0; }
.menu .section-sub { margin-bottom: 56px; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.menu-card-body { padding: 20px 24px 24px; }
.menu-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.menu-card-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}
.menu-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-pale);
    border: 1px solid rgba(212,160,23,0.2);
    color: var(--navy);
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.about-geo {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--navy);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.03;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-block {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.6;
}
.about-content { position: relative; z-index: 2; }
.about-text {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-feature strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.about-feature span {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ===== SPECIALS ===== */
.specials {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.specials-container { position: relative; }
.specials-geo-left {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.06;
}
.specials-geo-right {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0.05;
}
.specials .section-label, .specials .section-title, .specials .section-sub { margin-left: 0; }
.specials .section-sub { margin-bottom: 56px; }
.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.special-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.special-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,160,23,0.3);
    transform: translateY(-4px);
}
.special-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.special-card-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 12px;
}
.special-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.special-card-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}
.gallery .section-label, .gallery .section-title, .gallery .section-sub { margin-left: 0; }
.gallery .section-sub { margin-bottom: 56px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--wide { grid-column: span 6; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 3; }

/* ===== VISIT ===== */
.visit {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.visit-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, var(--navy) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.03;
}
.visit-container { position: relative; z-index: 2; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.visit-text {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 36px;
}
.visit-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.visit-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.visit-detail span, .visit-detail a {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}
.visit-detail a:hover { color: var(--gold); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.visit-map { position: relative; }
.visit-map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.visit-map-frame iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: var(--gold);
    position: relative;
    overflow: hidden;
}
.cta-geo {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 200px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    opacity: 0.08;
    transform: rotate(15deg);
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.1rem;
    color: rgba(13,27,42,0.7);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
}
.footer-nav strong, .footer-contact strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-nav a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrap { max-width: 500px; margin: 0 auto; }
    .hero { text-align: left; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { max-width: 480px; }
    .specials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item--wide { grid-column: span 6; }
    .gallery-item:not(.gallery-item--wide) { grid-column: span 6; }
    .visit-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 24px 60px; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-stat-divider { display: none; }
    .menu-grid { grid-template-columns: 1fr; }
    .specials-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-img-secondary { right: -10px; bottom: -20px; }
    .about-accent-block { left: -10px; top: -10px; width: 70px; height: 70px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    .visit-actions { flex-direction: column; }
    .visit-actions .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item--wide { grid-column: span 1; }
    .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }
}
