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

:root {
    --burgundy: #6B1B2A;
    --burgundy-deep: #4A1220;
    --burgundy-light: #8B2E3F;
    --blush: #F2D5CE;
    --blush-light: #FBF0ED;
    --blush-mid: #E8C4BC;
    --cream: #FDF8F6;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --text-muted: #A0A0A0;
    --line: rgba(107, 27, 42, 0.12);
    --line-strong: rgba(107, 27, 42, 0.25);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --nav-height: 72px;
}

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

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

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
}

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

.nav-logo-mark {
    width: 28px;
    height: 28px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8h1a4 4 0 1 1 0 8h-1' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3Cpath d='M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V8z' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3Cline x1='6' y1='2' x2='6' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='10' y1='2' x2='10' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='14' y1='2' x2='14' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8h1a4 4 0 1 1 0 8h-1' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3Cpath d='M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V8z' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3Cline x1='6' y1='2' x2='6' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='10' y1='2' x2='10' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='14' y1='2' x2='14' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--text-mid);
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

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

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 8px 20px !important;
    border-radius: 100px;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--burgundy) !important;
}

.nav.scrolled .nav-cta {
    border-color: var(--burgundy) !important;
    color: var(--burgundy) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--burgundy) !important;
    color: var(--white) !important;
}

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

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

.nav.scrolled .nav-toggle-line {
    background: var(--burgundy);
}

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

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

.nav-toggle.active .nav-toggle-line:nth-child(1),
.nav-toggle.active .nav-toggle-line:nth-child(2) {
    background: var(--burgundy) !important;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 18, 32, 0.82) 0%,
        rgba(107, 27, 42, 0.65) 40%,
        rgba(107, 27, 42, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    padding-top: var(--nav-height);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 32px;
    max-width: 700px;
}

.hero-title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: heroLine 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title-line:nth-child(2) { animation-delay: 0.12s; }
.hero-title-line:nth-child(3) { animation-delay: 0.24s; }
.hero-title-line:nth-child(4) { animation-delay: 0.36s; }

@keyframes heroLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

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

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 27, 42, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

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

/* ─── SECTION EYEBROW & TITLE ─── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--burgundy);
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* ─── INTRO / STORY ─── */
.intro {
    padding: 140px 0;
    background: var(--cream);
}

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

.intro-text .section-title {
    margin-bottom: 32px;
}

.intro-body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
}

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

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--line-strong);
}

.intro-image {
    position: relative;
}

.intro-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
}

.intro-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--blush);
    border-radius: 4px;
    z-index: -1;
}

/* ─── MENU ─── */
.menu {
    padding: 120px 0;
    background: var(--white);
}

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

.menu-header .section-eyebrow {
    justify-content: center;
}

.menu-header .section-eyebrow::before {
    display: none;
}

.menu-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
}

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

.menu-card {
    border-radius: 4px;
    overflow: hidden;
    background: var(--cream);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
    transform: translateY(-4px);
}

.menu-card--featured {
    grid-column: span 7;
}

.menu-card:not(.menu-card--featured) {
    grid-column: span 5;
}

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

.menu-card--featured .menu-card-img {
    height: 280px;
}

.menu-card-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-card-img img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 28px 28px 32px;
}

.menu-card-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    border: 1px solid var(--burgundy);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── EXPERIENCE ─── */
.experience {
    padding: 140px 0;
    background: var(--cream);
}

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

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

.experience-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.experience-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.experience-feature-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.experience-feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.experience-images {
    position: relative;
    height: 600px;
}

.experience-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
}

.experience-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.experience-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
}

.experience-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 4px solid var(--cream);
}

/* ─── MARQUEE ─── */
.marquee-section {
    padding: 48px 0;
    background: var(--burgundy);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.marquee-track span:nth-child(odd) {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
}

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

/* ─── VISIT ─── */
.visit {
    padding: 140px 0;
    background: var(--white);
}

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

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.visit-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.visit-detail-value {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit-phone {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s;
}

.visit-phone:hover {
    color: var(--burgundy-light);
    text-decoration: underline;
}

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

/* ─── FORM ─── */
.visit-form-wrap {
    background: var(--cream);
    padding: 48px;
    border-radius: 4px;
}

.visit-form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 32px;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--burgundy);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 100px;
    line-height: 1.7;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(107, 27, 42, 0.06);
    border-radius: 4px;
    color: var(--burgundy);
    font-size: 0.9rem;
}

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

/* ─── FOOTER ─── */
.footer {
    background: var(--burgundy-deep);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-logo-mark {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.6);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8h1a4 4 0 1 1 0 8h-1' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3Cpath d='M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V8z' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3Cline x1='6' y1='2' x2='6' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='10' y1='2' x2='10' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='14' y1='2' x2='14' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8h1a4 4 0 1 1 0 8h-1' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3Cpath d='M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V8z' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3Cline x1='6' y1='2' x2='6' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='10' y1='2' x2='10' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='14' y1='2' x2='14' y2='4' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 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) {
    .container {
        padding: 0 32px;
    }

    .intro-layout,
    .experience-layout,
    .visit-layout {
        gap: 48px;
    }

    .menu-card--featured {
        grid-column: span 12;
    }

    .menu-card:not(.menu-card--featured) {
        grid-column: span 6;
    }

    .experience-images {
        height: 450px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--burgundy-deep);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-title-line {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-scroll {
        display: none;
    }

    .intro {
        padding: 80px 0;
    }

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

    .intro-image {
        order: -1;
    }

    .intro-img {
        height: 350px;
    }

    .intro-image-accent {
        display: none;
    }

    .menu {
        padding: 80px 0;
    }

    .menu-card--featured,
    .menu-card:not(.menu-card--featured) {
        grid-column: span 12;
    }

    .experience {
        padding: 80px 0;
    }

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

    .experience-images {
        height: 350px;
        order: -1;
    }

    .visit {
        padding: 80px 0;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .intro-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }
}
