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

:root {
    --terracotta-50: #fef7f4;
    --terracotta-100: #fdeee6;
    --terracotta-200: #fad5c4;
    --terracotta-300: #f5b096;
    --terracotta-400: #ee8264;
    --terracotta-500: #e06040;
    --terracotta-600: #d14528;
    --terracotta-700: #b2371e;
    --terracotta-800: #8e2e1b;
    --terracotta-900: #732517;
    --sand-50: #fefcf8;
    --sand-100: #fdf6ea;
    --sand-200: #faedcf;
    --sand-300: #f4dbaa;
    --sand-400: #ebc27a;
    --sand-500: #dfaa55;
    --sand-600: #c8913e;
    --sand-700: #a4722e;
    --sand-800: #835926;
    --sand-900: #6a4720;
    --warm-900: #1a0f0a;
    --warm-800: #2d1a10;
    --warm-700: #3d2518;
    --warm-600: #4e3121;
    --warm-500: #5e3d2a;
    --text-dark: #1a0f0a;
    --text-mid: #4e3121;
    --text-light: #7a5640;
    --bg-cream: #fefcf8;
    --bg-warm: #fdf6ea;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --shadow-sm: 0 2px 8px rgba(26, 15, 10, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 15, 10, 0.1);
    --shadow-lg: 0 20px 60px rgba(26, 15, 10, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 96, 64, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(254, 252, 248, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    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: 'Lora', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--terracotta-700);
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--terracotta-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--text-mid);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--terracotta-600);
    background: var(--terracotta-50);
}

.nav-cta {
    background: var(--terracotta-500) !important;
    color: #fff !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--terracotta-600) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--terracotta-50);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* 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;
    background: linear-gradient(135deg, var(--terracotta-600) 0%, var(--terracotta-500) 30%, var(--sand-500) 70%, var(--sand-400) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(254, 252, 248, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(178, 55, 30, 0.2) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 32px 32px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 252, 248, 0.2);
    border: 1px solid rgba(254, 252, 248, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(26, 15, 10, 0.15);
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(254, 252, 248, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.stat-label {
    font-size: 0.813rem;
    color: rgba(254, 252, 248, 0.75);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(254, 252, 248, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(254, 252, 248, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(254, 252, 248, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: #fff;
    color: var(--terracotta-600);
    border-color: #fff;
}

.btn-primary:hover {
    background: var(--sand-100);
    border-color: var(--sand-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(254, 252, 248, 0.5);
}

.btn-secondary:hover {
    background: rgba(254, 252, 248, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--terracotta-600);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--sand-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(254, 252, 248, 0.5);
}

.btn-outline-white:hover {
    background: rgba(254, 252, 248, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* FEATURES */
.features {
    padding: 100px 0;
    background: var(--bg-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 96, 64, 0.06);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(224, 96, 64, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--terracotta-100), var(--terracotta-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.938rem;
    line-height: 1.7;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta-500);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.063rem;
}

/* MENU */
.menu {
    padding: 100px 0;
    background: var(--bg-warm);
}

.menu-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.menu-cat {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--sand-300);
    background: transparent;
    color: var(--text-mid);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.938rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-cat:hover {
    border-color: var(--terracotta-400);
    color: var(--terracotta-600);
}

.menu-cat.active {
    background: var(--terracotta-500);
    border-color: var(--terracotta-500);
    color: #fff;
}

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

.menu-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 96, 64, 0.06);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu-img {
    overflow: hidden;
    aspect-ratio: 400/260;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-img img {
    transform: scale(1.05);
}

.menu-body {
    padding: 28px;
}

.menu-body h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.menu-body p {
    color: var(--text-light);
    font-size: 0.938rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.menu-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    background: var(--sand-100);
    color: var(--sand-700);
    font-size: 0.813rem;
    font-weight: 700;
}

.menu-note {
    text-align: center;
    padding: 24px;
    background: rgba(224, 96, 64, 0.06);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(224, 96, 64, 0.2);
}

.menu-note p {
    color: var(--terracotta-700);
    font-weight: 600;
    font-size: 0.938rem;
}

/* ABOUT */
.about {
    padding: 100px 0;
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    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: -32px;
    right: -24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-cream);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -16px;
    right: 40px;
    background: var(--terracotta-500);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

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

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.938rem;
    color: var(--text-dark);
}

.value-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 96, 64, 0.06);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--sand-500);
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta-200), var(--sand-300));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
}

.testimonial-author span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.938rem;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: var(--bg-cream);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--terracotta-600) 0%, var(--terracotta-500) 50%, var(--sand-500) 100%);
    border-radius: var(--radius-lg);
    padding: 80px 64px;
    overflow: hidden;
    text-align: center;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 24px 24px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(254, 252, 248, 0.9);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

/* VISIT */
.visit {
    padding: 100px 0;
    background: var(--bg-warm);
}

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

.visit-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.visit-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 96, 64, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.visit-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--terracotta-100), var(--terracotta-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
}

.visit-card h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.visit-card p {
    color: var(--text-light);
    font-size: 0.938rem;
    line-height: 1.6;
}

.visit-card a {
    color: var(--terracotta-600);
    font-weight: 700;
}

.visit-card a:hover {
    color: var(--terracotta-700);
    text-decoration: underline;
}

.visit-map {
    grid-column: 1 / -1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 96, 64, 0.06);
}

.map-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.map-link img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 15, 10, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    color: #fff;
    font-weight: 700;
    font-size: 0.938rem;
    gap: 8px;
    transition: var(--transition);
}

.map-link:hover .map-overlay {
    background: linear-gradient(to top, rgba(26, 15, 10, 0.8) 0%, rgba(26, 15, 10, 0.2) 50%);
}

/* FOOTER */
.footer {
    background: var(--warm-900);
    color: rgba(254, 252, 248, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(254, 252, 248, 0.08);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.938rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-brand .nav-logo {
    color: #fff;
}

.footer-brand .logo-icon {
    color: var(--terracotta-400);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(254, 252, 248, 0.5);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(254, 252, 248, 0.7);
    font-weight: 600;
    font-size: 0.938rem;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.938rem;
}

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

.footer-contact a {
    color: rgba(254, 252, 248, 0.7);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.813rem;
    color: rgba(254, 252, 248, 0.4);
}

.footer-bottom p {
    margin: 0;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 252, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(224, 96, 64, 0.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .nav-cta {
        margin-left: 0 !important;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: 100svh;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

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

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

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

    .about-img-secondary {
        right: 0;
        bottom: -24px;
    }

    .about-badge {
        right: 16px;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-desc {
        text-align: center;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        max-width: none;
    }

    .cta-card {
        padding: 56px 32px;
    }

    .visit-info {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .menu-categories {
        gap: 6px;
    }

    .menu-cat {
        padding: 8px 16px;
        font-size: 0.813rem;
    }
}
