/* ============================================
   Java Jukebox — CSS
   ============================================ */

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

:root {
    --burgundy: #900C3F;
    --burgundy-dark: #6C0A30;
    --burgundy-light: #C11259;
    --blush: #FCE4EC;
    --blush-light: #FFF0F3;
    --cream: #FFF5F0;
    --accent: #FFD166;
    --accent-dark: #E6B84D;
    --dark: #1A0A10;
    --dark-soft: #2D1520;
    --text: #2D1520;
    --text-light: #6B4555;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(144, 12, 63, 0.08);
    --shadow-md: 0 8px 30px rgba(144, 12, 63, 0.12);
    --shadow-lg: 0 20px 60px rgba(144, 12, 63, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

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

/* ========== DECORATIVE SHAPES ========== */
.site-wrapper {
    position: relative;
    overflow: hidden;
}

.deco-circle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.deco-circle--blush {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 228, 236, 0.5) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.deco-circle--burgundy {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(144, 12, 63, 0.06) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
}

.deco-circle--accent {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.15) 0%, transparent 70%);
    top: 50%;
    right: 5%;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 245, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(144, 12, 63, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 245, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--burgundy);
}

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

.logo__text {
    letter-spacing: -0.02em;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--text);
    transition: var(--transition);
}

.nav__link:hover {
    background: var(--blush);
    color: var(--burgundy);
}

.nav__link--cta {
    background: var(--burgundy);
    color: var(--white);
}

.nav__link--cta:hover {
    background: var(--burgundy-dark);
    color: var(--white);
}

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

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush);
    color: var(--burgundy);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero__title span {
    color: var(--burgundy);
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(144, 12, 63, 0.3);
}

.btn--primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(144, 12, 63, 0.35);
}

.btn--ghost {
    background: var(--white);
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn--ghost:hover {
    background: var(--blush);
    transform: translateY(-2px);
}

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

/* ========== HERO IMAGE ========== */
.hero__image-wrap {
    position: relative;
}

.hero__image-bg {
    position: absolute;
    inset: 20px -20px -20px 20px;
    background: var(--burgundy);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 6/7;
}

.hero__float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hero__float-card--menu {
    bottom: 60px;
    left: -30px;
}

.hero__float-card--hours {
    top: 40px;
    right: -20px;
}

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

.hero__float-value {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--burgundy);
}

/* ========== HERO WAVE ========== */
.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========== MARQUEE ========== */
.marquee {
    background: var(--burgundy);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee__group {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 16px;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.938rem;
    white-space: nowrap;
}

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

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blush);
    color: var(--burgundy);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title__accent {
    color: var(--burgundy);
    position: relative;
}

.section-title__accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent);
    border-radius: 3px;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.063rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== MENU ========== */
.menu {
    padding: 80px 0;
    background: var(--cream);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-cat {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--text-light);
    background: var(--white);
    border: 2px solid transparent;
    transition: var(--transition);
}

.menu-cat:hover {
    color: var(--burgundy);
    border-color: var(--blush);
}

.menu-cat.active {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

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

.menu-grid.hidden {
    display: none;
}

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

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--dark);
    padding: 4px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 1;
}

.menu-card__visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.menu-card__body {
    padding: 20px;
}

.menu-card__name {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.menu-card__desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: 32px;
    padding: 16px 24px;
    background: var(--blush);
    border-radius: var(--radius-md);
    color: var(--burgundy);
    font-size: 0.938rem;
    font-weight: 500;
}

/* ========== ABOUT ========== */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about__img-stack {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

.about__img-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.about__accent-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: var(--radius-md);
    transform: rotate(15deg);
    z-index: -1;
}

.about__text {
    font-size: 1.063rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--blush);
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 4px;
}

.about__stat-label {
    font-size: 0.813rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 80px 0;
    background: var(--cream);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

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

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

.visit__text {
    font-size: 1.063rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.visit__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text);
}

.visit__detail svg {
    flex-shrink: 0;
    color: var(--burgundy);
    margin-top: 2px;
}

.visit__detail strong {
    display: block;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.visit__detail a {
    color: var(--burgundy);
    font-weight: 600;
    transition: var(--transition);
}

.visit__detail a:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

.visit__detail span {
    color: var(--text);
}

.visit__hours-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.visit__hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visit__hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--blush-light);
    border-radius: var(--radius-sm);
    font-size: 0.938rem;
}

.visit__hour-row span:first-child {
    color: var(--text-light);
}

.visit__hour-row span:last-child {
    font-weight: 600;
    color: var(--burgundy);
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 450px;
    background: var(--blush);
}

/* ========== CONTACT ========== */
.contact {
    padding: 80px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(252, 228, 236, 0.08);
    border-radius: 50%;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__content .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
}

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

.contact__content .section-title__accent {
    color: var(--accent);
}

.contact__content .section-title__accent::after {
    background: var(--blush);
}

.contact__text {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-top: 16px;
}

.contact__form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--blush);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.938rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(144, 12, 63, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F0FDF4;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    color: #16A34A;
    font-weight: 500;
}

.form-success p {
    margin: 0;
    font-size: 0.938rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.938rem;
    margin-top: 12px;
    max-width: 280px;
}

.footer__link-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer__link-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.938rem;
    transition: var(--transition);
}

.footer__link-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__link-col span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.938rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ========== MOBILE MENU ========== */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav__link {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav__link--cta {
        text-align: center;
        margin-top: 16px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 10, 16, 0.5);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

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

    .hero__float-card--menu {
        left: -10px;
        bottom: 40px;
    }

    .hero__float-card--hours {
        right: -10px;
        top: 20px;
    }

    .hero__wave svg {
        height: 50px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about__img-secondary {
        right: -10px;
        bottom: -20px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

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

    .visit__map {
        min-height: 300px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero {
        padding: 80px 0 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__float-card {
        display: none;
    }

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

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .about__stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact__form {
        padding: 20px;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .marquee__track {
        animation: none;
    }
}
