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

:root {
    --terracotta: #C2703F;
    --terracotta-dark: #A85A2E;
    --terracotta-light: #D4916B;
    --sand: #FDF6EE;
    --sand-dark: #F5E6D3;
    --sand-mid: #EDE0D0;
    --cream: #FFF9F3;
    --brown-dark: #3D2B1F;
    --brown-mid: #5C4033;
    --brown-light: #8B6F5E;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.06);
    --shadow-md: 0 8px 30px rgba(61, 43, 31, 0.1);
    --shadow-lg: 0 20px 60px rgba(61, 43, 31, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--sand);
    color: var(--brown-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 246, 238, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Frauncie', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--brown-dark);
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown-mid);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: width var(--transition);
}

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

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

.nav-cta {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background var(--transition), transform var(--transition) !important;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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

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

.mobile-menu-link {
    font-family: 'Frauncie', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--brown-dark);
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--terracotta);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 0;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(194, 112, 63, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--terracotta);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Frauncie', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--brown-dark);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-title-accent {
    color: var(--terracotta);
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(194, 112, 63, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--brown-light);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(194, 112, 63, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 112, 63, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--brown-dark);
    box-shadow: var(--shadow-sm);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: 'Frauncie', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--brown-light);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-mid);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 680px;
}

.hero-img-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-1 {
    top: 0;
    right: 0;
    width: 85%;
    height: 78%;
}

.hero-img-2 {
    bottom: 0;
    left: 0;
    width: 65%;
    height: 45%;
    border: 6px solid var(--sand);
}

.hero-img-badge {
    position: absolute;
    bottom: 38%;
    left: 55%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brown-dark);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.hero-img-badge svg {
    color: var(--terracotta);
}

.hero-wave {
    margin-top: -1px;
}

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

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(194, 112, 63, 0.1);
    color: var(--terracotta);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.section-title {
    font-family: 'Frauncie', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--brown-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-title-light {
    color: var(--white);
}

.text-accent {
    color: var(--terracotta);
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--sand-dark);
    position: relative;
}

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

.about-visual {
    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-float {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--sand-dark);
}

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

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 72px;
    height: 72px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(194, 112, 63, 0.3);
}

.about-content {
    max-width: 520px;
}

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

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

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    box-shadow: var(--shadow-sm);
}

.about-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brown-dark);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.88rem;
    color: var(--brown-light);
}

/* ========== FOOD ========== */
.food {
    padding: 100px 0;
    background: var(--sand);
}

.food-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.food-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--brown-light);
}

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

.food-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.food-card-img {
    height: 240px;
    overflow: hidden;
}

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

.food-card:hover .food-card-img img {
    transform: scale(1.06);
}

.food-card-body {
    padding: 28px;
}

.food-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(194, 112, 63, 0.1);
    color: var(--terracotta);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.food-card-body h3 {
    font-family: 'Frauncie', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.food-card-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--brown-light);
}

/* ========== VIBE ========== */
.vibe {
    padding: 100px 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}

.vibe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.vibe-marquee {
    overflow: hidden;
    margin-bottom: 60px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track span {
    font-family: 'Frauncie', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.marquee-dot {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vibe-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.vibe-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.vibe-stat {
    display: flex;
    flex-direction: column;
}

.vibe-stat-num {
    font-family: 'Frauncie', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
}

.vibe-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.vibe-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.vibe-visual {
    position: relative;
}

.vibe-img-grid {
    position: relative;
    height: 580px;
}

.vibe-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 82%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vibe-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--terracotta);
}

.vibe-img-main img,
.vibe-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.visit-info {
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.visit-detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brown-dark);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.92rem;
    color: var(--brown-light);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--terracotta);
    font-weight: 500;
    transition: color var(--transition);
}

.visit-detail a:hover {
    color: var(--terracotta-dark);
}

.btn-map {
    margin-top: 12px;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 480px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--brown-dark);
    padding: 72px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Frauncie', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    transition: color var(--transition);
}

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

.footer-contact a {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    transition: color var(--transition);
}

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

.footer-contact p {
    font-size: 0.92rem;
    margin-top: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========== ANIMATIONS ========== */
.reveal {
    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);
}

.reveal.visible {
    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) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-visual {
        height: 560px;
    }
    
    .about-grid,
    .vibe-grid {
        gap: 50px;
    }
    
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .food-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        height: 420px;
        order: -1;
    }
    
    .hero-img-1 {
        width: 100%;
        height: 80%;
    }
    
    .hero-img-2 {
        width: 60%;
        height: 40%;
    }
    
    .hero-img-badge {
        bottom: 30%;
        left: 50%;
        font-size: 0.82rem;
        padding: 10px 16px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .hero-stat-num {
        font-size: 1.3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-float {
        bottom: -20px;
        right: -10px;
        width: 55%;
    }
    
    .about-accent {
        top: -12px;
        left: -12px;
        width: 56px;
        height: 56px;
    }
    
    .about-accent svg {
        width: 24px;
        height: 24px;
    }
    
    .food-grid {
        grid-template-columns: 1fr;
    }
    
    .food-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .vibe-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .vibe-img-grid {
        height: 400px;
        order: -1;
    }
    
    .vibe-img-main {
        width: 100%;
        height: 75%;
    }
    
    .vibe-img-small {
        width: 65%;
        height: 45%;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .visit-info {
        padding: 32px;
    }
    
    .visit-map {
        min-height: 320px;
    }
    
    .map-placeholder iframe {
        min-height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-img-float {
        display: none;
    }
    
    .vibe-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .vibe-stat-divider {
        display: none;
    }
    
    .marquee-track span {
        font-size: 1.2rem;
    }
}
