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

:root {
    --terracotta-50: #FFF5F0;
    --terracotta-100: #FDE8DD;
    --terracotta-200: #F9CCC0;
    --terracotta-300: #F4A996;
    --terracotta-400: #E87D64;
    --terracotta-500: #C67B5C;
    --terracotta-600: #A05A3C;
    --terracotta-700: #7A422C;
    --terracotta-800: #542E1E;
    --terracotta-900: #2E1A10;

    --sand-50: #FDF8F4;
    --sand-100: #FAF0E8;
    --sand-200: #F3E2D2;
    --sand-300: #E8CDB5;
    --sand-400: #D4B08E;
    --sand-500: #B89268;
    --sand-600: #96734E;
    --sand-700: #73563A;

    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #DDDDDD;
    --neutral-600: #666666;
    --neutral-700: #444444;
    --neutral-800: #2A2A2A;
    --neutral-900: #1A1A1A;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(122, 66, 44, 0.06), 0 1px 2px rgba(122, 66, 44, 0.04);
    --shadow-md: 0 4px 16px rgba(122, 66, 44, 0.08), 0 2px 6px rgba(122, 66, 44, 0.04);
    --shadow-lg: 0 12px 40px rgba(122, 66, 44, 0.12), 0 4px 12px rgba(122, 66, 44, 0.06);
    --shadow-xl: 0 24px 60px rgba(122, 66, 44, 0.15), 0 8px 20px rgba(122, 66, 44, 0.08);

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-800);
    background-color: var(--sand-50);
    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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--terracotta-600);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    padding: 12px 28px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta-500);
    color: white;
    box-shadow: 0 4px 14px rgba(198, 123, 92, 0.35);
}
.btn-primary:hover {
    background: var(--terracotta-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 123, 92, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--terracotta-600);
    border: 2px solid var(--terracotta-200);
}
.btn-secondary:hover {
    border-color: var(--terracotta-400);
    background: var(--terracotta-50);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section Labels ─── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta-500);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--terracotta-400);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

.text-highlight {
    color: var(--terracotta-500);
    font-style: italic;
}

.text-center { text-align: center; }

.section-desc {
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(198, 123, 92, 0.08);
    transition: all var(--transition-base);
}
.site-header.scrolled {
    background: rgba(253, 248, 244, 0.95);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    display: flex;
    align-items: center;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-line1 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--terracotta-600);
    font-weight: 400;
}
.logo-line2 {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta-400);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.nav-menu a {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}
.nav-menu a:hover {
    color: var(--terracotta-600);
    background: var(--terracotta-50);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--terracotta-600);
    border-radius: 2px;
    transition: all var(--transition-base);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.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);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    padding: 140px 0 0;
    background: var(--sand-50);
    overflow: hidden;
}
.hero-wave {
    margin-top: -1px;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terracotta-100);
    color: var(--terracotta-700);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--neutral-900);
    margin-bottom: 24px;
}
.hero-headline .text-highlight {
    font-style: italic;
    color: var(--terracotta-500);
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--neutral-600);
    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;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--terracotta-600);
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--neutral-600);
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--terracotta-200);
}

/* Hero Images */
.hero-image {
    position: relative;
    padding-bottom: 40px;
}
.hero-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-float {
    position: absolute;
    bottom: 0;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}
.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-badge-float {
    position: absolute;
    top: 24px;
    right: -20px;
    background: white;
    color: var(--neutral-800);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
}
.hero-badge-float svg {
    color: #F59E0B;
}

/* ─── Features ─── */
.features {
    background: var(--sand-50);
    padding: 0 0 80px;
    margin-top: -1px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(198, 123, 92, 0.06);
    transition: all var(--transition-base);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--terracotta-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--neutral-900);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ─── About ─── */
.about {
    background: white;
    padding: 100px 0;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid white;
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--terracotta-300) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.5;
    z-index: -1;
}

.about-content { padding: 20px 0; }
.about-text {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.85;
    margin-bottom: 20px;
}
.about-signature {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--sand-200);
    border-bottom: 1px solid var(--sand-200);
}
.signature-line {
    width: 48px;
    height: 3px;
    background: var(--terracotta-400);
    border-radius: 3px;
    margin-bottom: 12px;
}
.signature-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--terracotta-600);
}

/* ─── Menu ─── */
.menu {
    background: var(--sand-50);
    padding: 100px 0;
}
.section-header { margin-bottom: 48px; }
.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}
.menu-cat {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--neutral-600);
    background: white;
    border: 2px solid var(--sand-200);
    transition: all var(--transition-fast);
}
.menu-cat:hover {
    border-color: var(--terracotta-300);
    color: var(--terracotta-600);
}
.menu-cat.active {
    background: var(--terracotta-500);
    border-color: var(--terracotta-500);
    color: white;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.menu-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(198, 123, 92, 0.06);
    transition: all var(--transition-base);
}
.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.menu-img {
    overflow: hidden;
}
.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.menu-item:hover .menu-img img {
    transform: scale(1.06);
}
.menu-info {
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-info h3 {
    font-family: var(--font-display);
    font-size: 1.3125rem;
    font-weight: 400;
    color: var(--neutral-900);
    margin-bottom: 8px;
}
.menu-info p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

.menu-cta {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.menu-cta p {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    margin-bottom: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

/* ─── Gallery ─── */
.gallery {
    background: white;
    padding: 100px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/4;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* ─── Visit ─── */
.visit {
    background: var(--sand-50);
    padding: 100px 0;
}
.visit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.visit-details {
    display: grid;
    gap: 28px;
    margin-top: 40px;
}
.visit-item {
    display: flex;
    gap: 20px;
}
.visit-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--terracotta-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
}
.visit-item strong {
    display: block;
    font-size: 1rem;
    color: var(--neutral-900);
    margin-bottom: 4px;
}
.visit-item p, .visit-item a {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin: 0;
}
.visit-item a:hover { color: var(--terracotta-500); text-decoration: underline; }

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
    max-height: 500px;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sand-100) 0%, var(--terracotta-100) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 40px;
}
.map-icon {
    color: var(--terracotta-400);
    margin-bottom: 8px;
}
.map-placeholder p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neutral-800);
}
.map-placeholder span {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    margin-bottom: 16px;
}

/* ─── Contact ─── */
.contact {
    background: white;
    padding: 100px 0;
}
.contact-inner {
    max-width: 680px;
    margin: 0 auto;
}
.contact-content { text-align: center; }
.contact-content .section-label { justify-content: center; }
.contact-content .section-desc { margin-bottom: 40px; }

.contact-form {
    text-align: left;
    background: var(--sand-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(198, 123, 92, 0.06);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--neutral-700);
}
.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 12px 16px;
    border: 2px solid var(--sand-200);
    border-radius: var(--radius-md);
    background: white;
    color: var(--neutral-800);
    transition: all var(--transition-fast);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta-400);
    box-shadow: 0 0 0 4px rgba(198, 123, 92, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--sand-500);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    background: var(--sand-50);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(198, 123, 92, 0.06);
}
.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 8px;
}
.form-success p {
    color: var(--neutral-600);
    font-size: 1rem;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--terracotta-900);
    color: var(--terracotta-100);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
}
.footer-brand p {
    font-size: 0.9375rem;
    color: var(--terracotta-300);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta-200);
    margin-bottom: 16px;
}
.footer-col a, .footer-col span {
    display: block;
    font-size: 0.9375rem;
    color: var(--terracotta-300);
    padding: 4px 0;
    transition: color var(--transition-fast);
}
.footer-col a:hover { color: white; }
.footer-col span { line-height: 1.8; }

.footer-bottom {
    border-top: 1px solid rgba(198, 123, 92, 0.2);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--terracotta-400);
}

/* ─── Back to Top ─── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--terracotta-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
    z-index: 50;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--terracotta-600);
    transform: translateY(-4px);
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .hero-img-float { right: -16px; }
    .hero-badge-float { right: -8px; }
    .about-inner { gap: 48px; }
    .about-img-secondary { right: -20px; bottom: -24px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        background: var(--sand-50);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 99;
    }
    .nav-menu.open { right: 0; }
    .nav-menu a {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-menu .btn { margin-top: 16px; justify-content: center; }

    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 98;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    .overlay.active { opacity: 1; visibility: visible; }

    .hero { padding: 110px 0 0; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-img-float { right: -12px; bottom: -8px; }
    .hero-badge-float { right: -8px; top: 16px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-img-secondary { right: 0; bottom: -20px; }
    .about-pattern { display: none; }

    .menu-grid { grid-template-columns: 1fr; }
    .menu-item { grid-template-columns: 160px 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .visit-inner { grid-template-columns: 1fr; }
    .visit-map { max-height: 320px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .menu-item { grid-template-columns: 1fr; }
    .menu-img { height: 200px; }
    .menu-info { padding: 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .btn-lg { padding: 14px 28px; font-size: 0.9375rem; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
