:root {
    --terracotta: #c1774a;
    --terracotta-dark: #9b5c3a;
    --green: #4f6b4f;
    --green-dark: #3d553d;
    --black: #1b120b;
    --cream: #fbf4ec;
    --cream-dark: #f2e4d6;
    --mustard: #f3c26b;
    --cheese: #f6d48f;
    --sky: #d8e0d3;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: radial-gradient(circle at 10% 10%, #fff7ef 0%, var(--cream) 40%, var(--cream-dark) 100%);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

section {
    scroll-margin-top: 120px;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 10000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.1;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(251, 244, 236, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(27, 18, 11, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--black);
}

.logo-duck {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.logo:hover .logo-duck {
    transform: rotate(-8deg) scale(1.05);
}

.logo-duck img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

nav .logo-text {
    display: none;
}

nav .logo-duck {
    width: 120px;
    height: 120px;
}

nav .logo-duck img {
    transform: scale(1.1);
    transform-origin: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav-cta {
    background: var(--black);
    color: var(--cream) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

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

.nav-cta:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff3e6 0%, var(--cream) 45%, #f8dcc4 100%);
}

@supports (height: 100svh) {
    .hero {
        min-height: 100svh;
    }
}
.hero::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle at 30% 30%, rgba(243, 194, 107, 0.55), rgba(243, 194, 107, 0));
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    bottom: -180px;
    left: -120px;
    background: radial-gradient(circle at 40% 40%, rgba(79, 107, 79, 0.28), rgba(79, 107, 79, 0));
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 1;
}

.hero-kickers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(27, 18, 11, 0.1);
    border-radius: 100px;
    padding: 0.45rem 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--black);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--black);
    opacity: 0.85;
    max-width: 540px;
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 2rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--black);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(193, 119, 74, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--cream);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

.hero-image-main {
    width: 100%;
    aspect-ratio: 1;
    background: var(--cream);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(27, 18, 11, 0.22);
    border: 8px solid rgba(255, 255, 255, 0.65);
}

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


/* About Section */
.about {
    padding: 8rem 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.about-content h2 span {
    color: var(--terracotta);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--black);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Inline pronunciation styling */
.maillard-word {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.25em;
}

.maillard-pronunciation {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--terracotta);
    font-weight: 500;
    font-size: 0.95em;
    letter-spacing: 0.01em;
}

/* Menu Section */
.menu {
    padding: 8rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, var(--cream), transparent);
    pointer-events: none;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.menu-header .section-label {
    color: var(--mustard);
}

.menu-header h2 {
    font-size: clamp(3rem, 6vw, 4.8rem);
    color: var(--cream);
}

.menu-header h2 span {
    color: var(--terracotta);
}

.menu-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.menu-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.menu-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--terracotta);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.menu-card:hover::before {
    opacity: 0.15;
}

.menu-card-content {
    position: relative;
    z-index: 1;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-card h3 {
    font-size: 1.5rem;
    color: var(--cream);
    font-family: 'Fraunces', serif;
}

.menu-card-price {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mustard);
}

.menu-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-card-tag {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

.menu-extras {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.menu-extra {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-extra h4 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.menu-extra p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.menu-extra .price {
    color: var(--mustard);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

/* Locations Section */
.locations {
    padding: 8rem 0;
    background: var(--cream);
}

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

.locations-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.locations-header h2 span {
    color: var(--terracotta);
}

.locations-intro {
    margin-top: 1rem;
    color: rgba(27, 18, 11, 0.7);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--terracotta);
}

.location-card.featured {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: white;
}

.location-card.featured h3,
.location-card.featured p {
    color: white;
}

.location-card.featured .location-badge {
    background: var(--mustard);
    color: var(--black);
}

.location-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-family: 'Fraunces', serif;
}

.location-card p {
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.location-card .hours {
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.location-card.featured .hours {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.location-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.75;
}

.coming-soon-card {
    background: var(--black);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-card h3 {
    color: var(--cream);
}

/* Press Section */
.press {
    padding: 7rem 0;
    background: var(--cream-dark);
}

.press-header {
    text-align: center;
    margin-bottom: 3rem;
}

.press-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.press-intro {
    margin-top: 1rem;
    color: rgba(27, 18, 11, 0.7);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.press-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    border: 1px solid rgba(27, 18, 11, 0.08);
    padding: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.press-item:hover {
    transform: translateY(-4px);
}

.press-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.press-logo {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(48%) sepia(29%) saturate(689%) hue-rotate(338deg) brightness(93%) contrast(89%);
}

.press-quote {
    margin: 0;
}

.press-quote p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(27, 18, 11, 0.78);
    line-height: 1.6;
}

.press-meta {
    margin-top: auto;
}

.press-read {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: var(--terracotta-dark);
}

.press-read:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background: var(--terracotta);
    text-align: center;
}

.newsletter h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    background: white;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.newsletter-form button {
    background: var(--black);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.newsletter-form button:hover {
    background: var(--green);
    transform: translateY(-2px);
}

/* Instagram Section */
.instagram {
    padding: 6rem 0;
    background: var(--black);
    text-align: center;
}

.instagram h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: 1rem;
}

.instagram p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-preview {
    margin-top: 2rem;
}

.instagram-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem 4rem;
    background: var(--cream);
    border-radius: 24px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.instagram-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.12);
}

.instagram-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(27, 18, 11, 0.08);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(27, 18, 11, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.instagram-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-cta:hover .instagram-cta-icon {
    transform: scale(1.05);
}

.instagram-cta-text {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
}

.instagram-cta-subtext {
    display: block;
    font-size: 0.95rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--cream);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-brand .logo-duck {
    background: var(--terracotta);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-col h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description,
    .hero-note {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-image {
        max-width: 520px;
        margin: 0 auto;
    }

    nav .logo-duck {
        width: 88px;
        height: 88px;
    }

    nav .logo-duck img {
        transform: scale(1.06);
    }

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

@media (max-width: 900px) {
    nav {
        position: sticky;
        top: 0;
        background: rgba(251, 244, 236, 0.92);
        backdrop-filter: blur(12px);
    }

    .nav-links {
        display: none;
        position: absolute;
        right: 2rem;
        top: 100%;
        flex-direction: column;
        background: var(--cream);
        border-radius: 16px;
        padding: 1rem 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(27, 18, 11, 0.08);
    }

    .nav-links a {
        padding: 0.35rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1.1rem;
    }

    nav .logo-duck {
        width: 64px;
        height: 64px;
    }

    nav .logo-duck img {
        transform: none;
    }

    .hero {
        padding-top: 12px;
    }

    .hero-content {
        padding: 4.25rem 0 2rem;
        gap: 2rem;
    }

    .hero-kickers {
        justify-content: center;
        margin-bottom: 0.75rem;
    }

    .hero-kicker {
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
        letter-spacing: 0.2em;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-note {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-sticker {
        right: -4%;
    }

    .hero-sticker.alt {
        left: -4%;
    }

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