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

:root {
    --terracotta: #C4724E;
    --terracotta-dark: #A85A3A;
    --terracotta-light: #D4916F;
    --sand: #F5F0E8;
    --sand-dark: #E8DFD0;
    --sand-light: #FAF7F2;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --warm-gray: #6B6560;
    --warm-gray-light: #9B9590;
    --cream: #FFFDF9;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(26,26,26,0.06);
    --shadow-md: 0 4px 16px rgba(26,26,26,0.08);
    --shadow-lg: 0 12px 40px rgba(26,26,26,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,253,249,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196,114,78,0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-gray);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--charcoal);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 10px 20px;
    background: var(--charcoal);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
    background: var(--terracotta);
    transform: translateY(-1px);
}

.nav__cta::after {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn--outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn--terracotta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* ── SECTION HELPERS ── */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 520px;
    line-height: 1.7;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,114,78,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--terracotta);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__accent {
    color: var(--terracotta);
    font-style: italic;
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 36px;
}

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

.hero__info {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

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

.hero__info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
}

.hero__info-value {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.5;
}

.hero__info-divider {
    width: 1px;
    background: var(--sand-dark);
    margin: 4px 0;
}

.hero__image-stack {
    position: relative;
    height: 600px;
}

.hero__img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero__img--main {
    width: 360px;
    height: 460px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero__img--accent {
    width: 220px;
    height: 280px;
    bottom: 40px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero__badge {
    position: absolute;
    bottom: 160px;
    right: 20px;
    z-index: 4;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.hero__badge svg {
    color: var(--terracotta);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terracotta), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ── FEATURES ── */
.features {
    padding: 100px 24px;
    background: var(--cream);
}

.features__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--sand-light);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--terracotta-light);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.feature-card:hover .feature-card__icon {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ── MENU ── */
.menu {
    padding: 100px 24px;
    background: var(--sand);
}

.menu__header {
    text-align: center;
    margin-bottom: 60px;
}

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

.menu__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.menu-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}

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

.menu-card__img {
    height: 100%;
    overflow: hidden;
}

.menu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.menu-card__desc {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

.menu__cta {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.menu__cta p {
    font-size: 1rem;
    color: var(--warm-gray);
}

/* ── ABOUT ── */
.about {
    padding: 100px 24px;
    background: var(--cream);
}

.about__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__visual {
    position: relative;
    height: 600px;
}

.about__img-main {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__img-float {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 200px;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

.about__content .section-title {
    margin-bottom: 24px;
}

.about__text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--sand-dark);
}

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

.about__stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--terracotta);
    line-height: 1;
}

.about__stat-label {
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-weight: 500;
}

.about__stat-divider {
    width: 1px;
    background: var(--sand-dark);
    align-self: stretch;
    margin: 8px 0;
}

/* ── GALLERY ── */
.gallery {
    padding: 100px 24px;
    background: var(--charcoal);
}

.gallery__header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery__header .section-eyebrow {
    color: var(--terracotta-light);
}

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

.gallery__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    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.6s ease;
}

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

.gallery__item--wide {
    grid-column: span 8;
    height: 300px;
}

.gallery__item:not(.gallery__item--wide) {
    height: 260px;
}

/* ── VISIT ── */
.visit {
    padding: 100px 24px;
    background: var(--sand-light);
}

.visit__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit__info .section-title {
    margin-bottom: 36px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.visit__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit__detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

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

.visit__detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.6;
}

.visit__detail-value a {
    color: var(--terracotta);
    transition: color var(--transition);
}

.visit__detail-value a:hover {
    color: var(--terracotta-dark);
}

.visit__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visit__form-wrap {
    position: sticky;
    top: 100px;
}

.visit__form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

.visit__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.visit__form-sub {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--sand-light);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(196,114,78,0.1);
}

.form-input::placeholder {
    color: var(--warm-gray-light);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}

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

.form-success svg {
    color: var(--terracotta);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
}

.form-success p {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

/* ── FOOTER ── */
.footer {
    background: var(--charcoal);
    padding: 60px 24px 32px;
    color: var(--white);
}

.footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    max-width: 240px;
    line-height: 1.6;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer__link {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--terracotta-light);
}

.footer__contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact p {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
}

.footer__phone {
    font-size: 1rem;
    font-weight: 600;
    color: var(--terracotta-light);
    transition: color var(--transition);
}

.footer__phone:hover {
    color: var(--terracotta);
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }

    .hero__image-stack {
        height: 500px;
    }

    .hero__img--main {
        width: 300px;
        height: 380px;
    }

    .hero__img--accent {
        width: 180px;
        height: 230px;
    }

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

    .about__grid {
        gap: 48px;
    }

    .about__img-float {
        right: -20px;
        width: 160px;
        height: 190px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--sand-dark);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav__menu.open {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

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

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

    .hero__visual {
        order: -1;
    }

    .hero__image-stack {
        height: 360px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__img--main {
        width: 240px;
        height: 300px;
    }

    .hero__img--accent {
        width: 150px;
        height: 190px;
        bottom: 20px;
    }

    .hero__badge {
        bottom: 100px;
        right: 10px;
        padding: 10px 14px;
        font-size: 0.8rem;
    }

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

    .hero__info-divider {
        width: 100%;
        height: 1px;
    }

    .hero__scroll {
        display: none;
    }

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

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

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

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

    .about__visual {
        height: 400px;
        order: -1;
    }

    .about__img-main {
        height: 340px;
    }

    .about__img-float {
        right: -10px;
        width: 130px;
        height: 160px;
    }

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

    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 6;
    }

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

    .visit__form-wrap {
        position: static;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__tagline {
        margin: 0 auto;
    }

    .footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer__contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.25rem;
    }

    .hero__actions {
        flex-direction: column;
    }

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

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

    .menu-card__img {
        height: 200px;
    }

    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 12;
    }

    .visit__form-card {
        padding: 24px;
    }
}
