/* ============================================
   Showboat Bikini & Sports Resort
   Bold Editorial Style — Teal + Slate Grey
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-900: #042f2e;
    --teal-800: #0f4f4e;
    --teal-700: #136b6a;
    --teal-600: #1a8a88;
    --teal-500: #23a8a4;
    --teal-400: #3ec5c0;
    --teal-300: #6dd5d0;
    --teal-200: #a8e6e2;
    --teal-100: #d4f4f2;
    --teal-50:  #f0faf9;

    --slate-950: #0a0f14;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;

    --cream: #faf9f6;
    --warm-white: #fefdfb;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.text-accent {
    color: var(--teal-700);
    font-style: italic;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-700);
    color: #fff;
    border: 2px solid var(--teal-700);
}

.btn-primary:hover {
    background: var(--teal-800);
    border-color: var(--teal-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 47, 46, 0.25);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1200px;
    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: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo {
    color: var(--slate-900);
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    opacity: 0.9;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-400);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: #fff;
}

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

.nav.scrolled .nav-link {
    color: var(--slate-600);
}

.nav.scrolled .nav-link:hover {
    color: var(--slate-900);
}

.nav.scrolled .nav-link::after {
    background: var(--teal-600);
}

.nav-cta-btn {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--teal-600);
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.nav-cta-btn:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
}

.nav.scrolled .nav-cta-btn {
    color: #fff;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    color: #fff;
    padding: 4px;
    transition: color 0.3s;
}

.nav.scrolled .nav-toggle {
    color: var(--slate-900);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--slate-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    padding: 8px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--teal-400);
}

.mobile-link-cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal-400);
    border: 1px solid var(--teal-600);
    padding: 14px 32px;
    border-radius: 100px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--teal-900) 0%,
        var(--teal-800) 25%,
        var(--slate-800) 60%,
        var(--slate-900) 100%
    );
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

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

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-300);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 28px;
}

.hero-headline-accent {
    color: var(--teal-300);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--slate-300);
    max-width: 560px;
    margin: 0 auto 40px;
}

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

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

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-400);
}

.hero-trust-item svg {
    color: var(--teal-400);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-image-wrap {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    background: var(--teal-200);
    border-radius: 16px;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

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

.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--slate-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal-700);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--slate-200);
}

/* --- Menu --- */
.menu {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-600), transparent);
}

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

.menu-header .section-eyebrow {
    color: var(--teal-400);
}

.menu-header .section-heading {
    color: #fff;
}

.menu-header .text-accent {
    color: var(--teal-400);
}

.menu-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--slate-400);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.menu-card {
    background: var(--slate-800);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-out);
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 168, 164, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.menu-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 168, 164, 0.1);
    border-radius: 16px;
    color: var(--teal-400);
    margin-bottom: 24px;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.menu-item-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--slate-200);
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* --- Vibe --- */
.vibe {
    padding: 120px 0;
    background: var(--cream);
}

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

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

.vibe-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.vibe-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-800), var(--slate-800));
    z-index: 0;
}

.vibe-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
    z-index: 1;
}

.vibe-card:hover img {
    transform: scale(1.08);
}

.vibe-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 20, 0.9) 0%, rgba(10, 15, 20, 0.2) 50%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 32px;
    transition: background 0.4s;
}

.vibe-card:hover .vibe-card-overlay {
    background: linear-gradient(to top, rgba(4, 47, 46, 0.95) 0%, rgba(4, 47, 46, 0.3) 50%, transparent 100%);
}

.vibe-card-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: 8px;
}

.vibe-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.vibe-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-300);
}

/* --- Gallery --- */
.gallery {
    padding: 120px 0 80px;
    background: var(--warm-white);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 8;
    aspect-ratio: 8/5;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    aspect-ratio: 5/5;
}

.gallery-item:nth-child(3) {
    grid-column: 1 / 6;
    aspect-ratio: 5/5;
}

.gallery-item:nth-child(4) {
    grid-column: 6 / 13;
    aspect-ratio: 7/5;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--slate-900) 100%);
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-600), transparent);
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.visit-content .section-heading {
    color: #fff;
}

.visit-content .text-accent {
    color: var(--teal-400);
}

.visit-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 64px;
    text-align: left;
}

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

.visit-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 168, 164, 0.12);
    border-radius: 12px;
    color: var(--teal-400);
    flex-shrink: 0;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--slate-200);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--teal-400);
    transition: color 0.3s;
}

.visit-detail-value a:hover {
    color: var(--teal-300);
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

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

.contact-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 40px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-700);
    padding: 16px 24px;
    background: var(--warm-white);
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s var(--ease-out);
}

.contact-quick-link:hover {
    border-color: var(--teal-400);
    color: var(--teal-700);
    transform: translateX(4px);
}

.contact-quick-link svg {
    color: var(--teal-600);
}

/* Form */
.contact-form-wrap {
    background: var(--warm-white);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-600);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--slate-900);
    background: var(--cream);
    border: 1.5px solid var(--slate-200);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: var(--teal-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(46, 168, 164, 0.1);
}

.form-input::placeholder {
    color: var(--slate-400);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    border-radius: 12px;
    margin-top: 16px;
    color: var(--teal-800);
    font-weight: 500;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--slate-950);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.footer-links-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--slate-400);
    transition: color 0.3s;
}

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

.footer-links span {
    font-size: 0.9375rem;
    color: var(--slate-500);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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) {
    .about-grid {
        gap: 48px;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .vibe-card:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 16/9;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .about {
        padding: 80px 0;
    }

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

    .about-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .menu {
        padding: 80px 0;
    }

    .vibe {
        padding: 80px 0;
    }

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

    .vibe-card {
        aspect-ratio: 4/3;
    }

    .vibe-card:last-child {
        aspect-ratio: 4/3;
    }

    .gallery {
        padding: 80px 0 60px;
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        aspect-ratio: 4/3;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-details {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact {
        padding: 80px 0;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .menu-card {
        padding: 28px 24px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }
}
