/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fefdfb;
    overflow-x: hidden;
}

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

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

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

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .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; }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 26, 45, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(139, 26, 45, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #8b1a2d;
}

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

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #8b1a2d;
}

.nav-cta {
    background: #8b1a2d;
    color: #fefdfb !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: #7a1728;
    color: #fefdfb !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: #8b1a2d;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.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: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 253, 251, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.mobile-menu-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
    text-align: center;
}

.mobile-menu-link:hover {
    background: #fdf0f1;
    color: #8b1a2d;
}

.mobile-menu-cta {
    background: #8b1a2d;
    color: #fefdfb !important;
    border-radius: 100px;
    margin-top: 8px;
    font-weight: 600;
}

.mobile-menu-cta:hover {
    background: #7a1728;
    color: #fefdfb !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdf0f1 0%, #fef7f5 40%, #fdf5e8 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(244, 150, 161, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(253, 228, 231, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    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='%238b1a2d' 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-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 26, 45, 0.08);
    color: #8b1a2d;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-headline {
    font-family: 'Lora', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: #8b1a2d;
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    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: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #8b1a2d;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(139, 26, 45, 0.15);
}

/* Hero Image Column */
.hero-image-col {
    position: relative;
    height: 600px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 85%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(139, 26, 45, 0.15);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(139, 26, 45, 0.15) 100%);
    border-radius: 24px;
}

.hero-img-float {
    position: absolute;
    bottom: 20px;
    left: -10px;
    width: 52%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(139, 26, 45, 0.18);
    border: 4px solid rgba(254, 253, 251, 0.9);
}

.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(139, 26, 45, 0.12);
    display: none;
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #8b1a2d;
    color: #fefdfb;
}

.btn-primary:hover {
    background: #7a1728;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 26, 45, 0.25);
}

.btn-secondary {
    background: transparent;
    color: #8b1a2d;
    border: 1.5px solid rgba(139, 26, 45, 0.3);
}

.btn-secondary:hover {
    background: rgba(139, 26, 45, 0.06);
    border-color: #8b1a2d;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-white {
    background: #fefdfb;
    color: #8b1a2d;
}

.btn-white:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
    background: transparent;
    color: #fefdfb;
    border: 1.5px solid rgba(254, 253, 251, 0.5);
}

.btn-ghost:hover {
    background: rgba(254, 253, 251, 0.1);
    border-color: #fefdfb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #8b1a2d;
    border: 1.5px solid rgba(139, 26, 45, 0.3);
}

.btn-outline:hover {
    background: rgba(139, 26, 45, 0.06);
    border-color: #8b1a2d;
    transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8b1a2d;
    margin-bottom: 14px;
}

.section-tag-light {
    color: rgba(254, 253, 251, 0.7);
}

.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.18;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.section-title-light {
    color: #fefdfb;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.text-burgundy {
    color: #8b1a2d;
}

/* ===== MENU SECTION ===== */
.menu-section {
    position: relative;
    padding: 100px 24px 120px;
    background: #8b1a2d;
    overflow: hidden;
}

.menu-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(244, 150, 161, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(253, 228, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.menu-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-bottom: 56px;
}

.menu-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.menu-category-reverse {
    direction: rtl;
}

.menu-category-reverse > * {
    direction: ltr;
}

.menu-cat-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.menu-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-cat-img:hover img {
    transform: scale(1.04);
}

.menu-cat-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.menu-cat-tag {
    background: rgba(254, 253, 251, 0.95);
    color: #8b1a2d;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-cat-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fefdfb;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.menu-cat-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(254, 253, 251, 0.72);
    margin-bottom: 20px;
}

.menu-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #fce4e7;
    transition: gap 0.2s ease, color 0.2s ease;
}

.menu-cat-link:hover {
    gap: 10px;
    color: #fefdfb;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(254, 253, 251, 0.08);
    border: 1px solid rgba(254, 253, 251, 0.12);
    border-radius: 14px;
    padding: 18px 24px;
    color: rgba(254, 253, 251, 0.75);
    font-size: 0.92rem;
}

.menu-note a {
    color: #fce4e7;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.menu-note a:hover {
    color: #fefdfb;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 100px 24px;
    background: #fefdfb;
}

.story-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-image-col {
    position: relative;
    height: 640px;
}

.story-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 78%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 26, 45, 0.12);
}

.story-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(139, 26, 45, 0.14);
    border: 4px solid #fefdfb;
}

.story-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    max-width: 480px;
}

.story-content .section-header {
    text-align: left;
    margin: 0 0 28px;
}

.story-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

.story-content p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #666;
    margin-bottom: 14px;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.story-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.story-value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf0f1;
    border-radius: 12px;
}

.story-value strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.story-value span {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    position: relative;
    padding: 100px 24px;
    background: linear-gradient(135deg, #8b1a2d 0%, #691422 100%);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 90% 10%, rgba(244, 150, 161, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 5% 90%, rgba(253, 228, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: rgba(254, 253, 251, 0.08);
    border: 1px solid rgba(254, 253, 251, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
    background: rgba(254, 253, 251, 0.12);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #f9c9b6;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(254, 253, 251, 0.85);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(254, 253, 251, 0.5);
    letter-spacing: 0.02em;
}

/* ===== VISIT SECTION ===== */
.visit-section {
    padding: 100px 24px;
    background: #fef7f5;
}

.visit-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.visit-content {
    max-width: 500px;
}

.visit-content .section-header {
    text-align: left;
    margin: 0 0 28px;
}

.visit-desc {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 36px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf0f1;
    border-radius: 12px;
}

.visit-detail strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.visit-detail span,
.visit-detail-link {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.visit-detail-link {
    color: #8b1a2d;
    font-weight: 500;
    transition: color 0.2s ease;
}

.visit-detail-link:hover {
    color: #691422;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.visit-map-col {
    position: relative;
}

.visit-map {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(139, 26, 45, 0.12);
    aspect-ratio: 4/3;
    min-height: 360px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #fdf0f1 0%, #fce4e7 50%, #fdf5e8 100%);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-headline {
    font-family: 'Lora', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.cta-desc {
    font-size: 1rem;
    color: #666;
    margin-top: 6px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    padding: 64px 24px 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fce4e7;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(254, 253, 251, 0.45);
    max-width: 260px;
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 253, 251, 0.4);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.88rem;
    color: rgba(254, 253, 251, 0.6);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-link {
    color: rgba(254, 253, 251, 0.6);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fce4e7;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 253, 251, 0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(254, 253, 251, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1024px) {
    .hero-img-accent {
        display: block;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }

    .hero-image-col {
        height: 420px;
        order: -1;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .menu-category,
    .menu-category-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .story-image-col {
        height: 400px;
    }

    .story-content {
        max-width: 100%;
    }

    .story-content .section-header {
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

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

    .visit-content {
        max-width: 100%;
    }

    .visit-content .section-header {
        text-align: center;
    }

    .visit-map {
        position: relative;
        top: auto;
    }

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 40px;
    }

    .hero-image-col {
        height: 340px;
    }

    .hero-img-float {
        width: 55%;
        left: 4px;
        bottom: 8px;
    }

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

    .hero-stat-divider {
        width: 36px;
        height: 1px;
    }

    .menu-section {
        padding: 72px 20px 80px;
    }

    .story-section {
        padding: 72px 20px;
    }

    .story-image-col {
        height: 320px;
    }

    .testimonials-section {
        padding: 72px 20px;
    }

    .visit-section {
        padding: 72px 20px;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}
