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

:root {
    --emerald-900: #064E3B;
    --emerald-800: #065F46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10B981;
    --cream-50: #FAF8F5;
    --cream-100: #F5F0E8;
    --cream-200: #EDE5D8;
    --cream-300: #E0D5C4;
    --warm-500: #D4A574;
    --warm-600: #B8865A;
    --warm-700: #9C6F45;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-tertiary: #7A7A7A;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background-color: var(--cream-50);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── LINE DECORATIONS ─── */
.line-decoration {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    display: flex;
    gap: 0;
    z-index: 1001;
    pointer-events: none;
}

.line-decoration span {
    flex: 1;
    background: linear-gradient(90deg, var(--emerald-900), var(--emerald-600), var(--warm-500));
    opacity: 0.7;
}

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.06);
    transition: all 0.5s var(--ease-out);
}

.header.scrolled {
    box-shadow: 0 1px 30px rgba(6, 78, 59, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--emerald-900);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.logo-mark {
    color: var(--emerald-700);
}

.nav ul {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s var(--ease-smooth);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-600);
    transition: width 0.4s var(--ease-out);
}

.nav a:hover {
    color: var(--emerald-800);
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.btn-primary {
    background: var(--emerald-900);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--emerald-800);
    border: 1px solid var(--emerald-200);
}

.btn-ghost:hover {
    border-color: var(--emerald-600);
    background: rgba(6, 78, 59, 0.04);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 0;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--emerald-500);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--emerald-700);
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    padding-bottom: 2rem;
}

.hero-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(6, 78, 59, 0.12);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: floatIn 0.8s var(--ease-out) both;
}

.stat-card--accent {
    background: var(--emerald-900);
    color: var(--white);
    top: 10%;
    right: -2rem;
}

.stat-card:not(.stat-card--accent) {
    bottom: 15%;
    left: -2rem;
}

.stat-card:nth-child(3) {
    bottom: 2%;
    right: 1rem;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--emerald-700);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-card--accent .stat-number {
    color: var(--warm-500);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.stat-card--accent .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream-300), transparent);
}

.hero-divider span {
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-900), var(--emerald-500), var(--warm-500));
    border-radius: 2px;
    margin: 0 auto;
    width: 120px;
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 560px;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ─── ABOUT ─── */
.about {
    padding: 8rem 0;
    background: var(--white);
}

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

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

.about-image-col img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(6, 78, 59, 0.1);
}

.about-accent-box {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--emerald-900);
    color: var(--white);
    padding: 2rem 2.25rem;
    border-radius: 14px;
    max-width: 280px;
    box-shadow: 0 16px 50px rgba(6, 78, 59, 0.25);
}

.about-accent-box p {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.about-text-col {
    padding-top: 2rem;
}

.about-text-col > p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.about-features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    color: var(--emerald-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature span:last-child {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-top: 0.2rem;
}

/* ─── MENU ─── */
.menu {
    padding: 8rem 0;
    background: var(--cream-50);
}

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

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: all 0.5s var(--ease-out);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.1);
    border-color: transparent;
}

.menu-card-image {
    overflow: hidden;
    height: 220px;
}

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

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

.menu-card-body {
    padding: 2rem;
}

.menu-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.menu-card-body > p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.menu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--emerald-400);
}

.menu-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-style: italic;
    font-family: var(--font-serif);
}

/* ─── SPACE ─── */
.space {
    padding: 8rem 0;
    background: var(--white);
}

.space-header {
    text-align: center;
    margin-bottom: 4rem;
}

.space-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.space-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.space-gallery-item--large {
    grid-row: 1 / 3;
    min-height: 520px;
}

.space-gallery-item:not(.space-gallery-item--large) {
    min-height: 250px;
}

.space-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.space-gallery-item:hover .space-gallery-caption {
    opacity: 1;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 8rem 0;
    background: var(--cream-50);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(6, 78, 59, 0.08);
    border-color: transparent;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--emerald-200);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.testimonial-source {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--emerald-700);
    letter-spacing: 0.04em;
}

/* ─── CTA ─── */
.cta {
    padding: 8rem 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.cta .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta .section-eyebrow {
    color: var(--warm-500);
}

.cta .eyebrow-line {
    background: var(--warm-500);
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cta-headline em {
    font-style: italic;
    color: var(--warm-500);
}

.cta-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--warm-500);
    color: var(--emerald-900);
}

.cta .btn-primary:hover {
    background: var(--warm-600);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.3);
}

.cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.cta .btn-ghost:hover {
    border-color: var(--warm-500);
    background: rgba(212, 165, 116, 0.1);
}

.cta-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    min-height: 560px;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── VISIT ─── */
.visit {
    padding: 8rem 0;
    background: var(--cream-50);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-detail {
    display: flex;
    gap: 1rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--cream-200);
}

.visit-detail:first-child {
    padding-top: 2rem;
}

.visit-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-icon {
    color: var(--emerald-600);
    flex-shrink: 0;
    margin-top: 3px;
}

.visit-detail h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 0.4rem;
}

.visit-detail p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--emerald-700);
    transition: color 0.3s var(--ease-smooth);
}

.visit-detail a:hover {
    color: var(--emerald-500);
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(6, 78, 59, 0.08);
    min-height: 480px;
    border: 1px solid rgba(6, 78, 59, 0.06);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--emerald-900);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-500);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 0.35rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease-smooth);
}

.footer-contact a:hover {
    color: var(--warm-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── MOBILE MENU ─── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 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 0.4s var(--ease-out);
}

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

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    transition: color 0.3s var(--ease-smooth);
}

.mobile-menu a:hover {
    color: var(--emerald-700);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 500px;
    }

    .stat-card--accent {
        right: 0;
    }

    .stat-card:not(.stat-card--accent) {
        left: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-accent-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1.5rem;
        max-width: 100%;
    }

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

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

    .space-gallery-item--large {
        grid-row: auto;
        min-height: 300px;
    }

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

    .cta .container {
        grid-template-columns: 1fr;
    }

    .cta-visual {
        min-height: 360px;
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav, .header .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .stat-card {
        position: relative;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        margin-top: 1rem;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image-card {
        height: auto;
        aspect-ratio: 4/5;
    }

    .about {
        padding: 5rem 0;
    }

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

    .menu {
        padding: 5rem 0;
    }

    .space {
        padding: 5rem 0;
    }

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

    .testimonials {
        padding: 5rem 0;
    }

    .cta {
        padding: 5rem 0;
    }

    .visit {
        padding: 5rem 0;
    }

    .visit-map {
        min-height: 300px;
    }

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

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

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

    .section-title {
        font-size: 1.75rem;
    }

    .menu-card-body {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}
