@media (min-width: 981px) {
      .reservation-form__form {
        margin-top: 18px;
      }
    }

@media (max-width: 980px) {
      .reservation-form__inner {
        grid-template-columns: 1fr;
      }

      .reservation-form__row,
      .reservation-form__actions {
        grid-template-columns: 1fr;
        flex-direction: column;
      }

      .reservation-form__or {
        font-size: 15px;
      }
    }

@media (max-width: 980px) {
      :root {
        --top-bar-height: 34px;
        --header-height: 70px;
      }

      .top-bar__inner {
        text-align: left;
      }

      .logo {
        max-width: 240px;
        font-size: 21px;
      }

      .menu-toggle {
        display: block;
      }

      .nav__links {
        position: fixed;
        top: var(--nav-offset, 104px);
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 0;
        padding: 24px 30px;
        background: rgba(11, 11, 11, 0.98);
        transform: translateX(100%);
        transition: transform 260ms ease;
      }

      .nav__links.is-open {
        transform: translateX(0);
      }

      .nav__links a {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
      }

      .nav__links a.nav__cta {
        justify-content: center;
        width: 100%;
        margin-top: 14px;
        padding: 14px 18px;
        border-bottom: 0;
      }

      .hero {
        min-height: 92vh;
      }

      .hero__content {
        padding: 92px 0 108px;
      }

      .hero h1 {
        white-space: normal;
      }

      .hero__subtitle {
        white-space: normal;
      }

      .split,
      .location-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .restaurant-info__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 0;
      }

      .restaurant-info__item:nth-child(odd) {
        border-left: 0;
      }

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

      .google-reviews__head {
        grid-template-columns: 1fr;
      }

      .google-review-card {
        flex-basis: min(44vw, 340px);
      }

      .floating-card {
        width: min(100%, 560px);
        margin: 0 auto;
      }

    }

@media (max-width: 900px) {
      .gallery-masonry {
        display: block;
        columns: 3;
        column-gap: 18px;
      }

      .gallery-column {
        display: contents;
      }

      .gallery-masonry .gallery-item {
        margin-bottom: 18px;
      }
    }

@media (max-width: 640px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .section-pad,
      .gallery-feature {
        padding: 74px 0;
      }

      .hero__actions,
      .reservation-strip__contacts {
        flex-direction: column;
        align-items: stretch;
      }

      .btn,
      .badge {
        width: 100%;
        text-align: center;
      }

      .eyebrow::before,
      .eyebrow::after,
      .section-label::before,
      .section-label::after {
        width: 24px;
      }

      .placeholder,
      .atmosphere__wrap,
      .map-placeholder {
        min-height: 360px;
      }

      .location-grid {
        gap: 22px;
      }

      .map-placeholder {
        aspect-ratio: 4 / 3;
        min-height: 280px;
      }

      .address-card {
        width: 100%;
        min-width: 0;
      }

      .gallery-masonry {
        columns: 2;
        column-gap: 14px;
      }

      .gallery-masonry .gallery-item {
        margin-bottom: 14px;
      }

      .floating-card {
        padding: 30px 24px;
      }

      .story-trust-strip {
        flex-direction: column;
        align-items: stretch;
      }

      .story-trust-item {
        padding: 18px 0;
      }

      .story-trust-divider {
        width: 100%;
        height: 1px;
        margin: 0;
        background: linear-gradient(90deg, transparent, rgba(155, 107, 61, 0.72), transparent);
      }

      .restaurant-info {
        padding: 34px 0;
      }

      .restaurant-info__grid {
        grid-template-columns: 1fr;
      }

      .restaurant-info__item {
        justify-items: start;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 6px 14px;
        padding: 18px 0;
        text-align: left;
      }

      .restaurant-info__item + .restaurant-info__item {
        border-top: 1px solid rgba(23, 27, 30, 0.12);
        border-left: 0;
      }

      .restaurant-info__icon {
        grid-row: span 2;
        margin-top: 2px;
      }

      .menu-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 16px;
      }

      .dish-placeholder {
        width: 76px;
        font-size: 8px;
      }

      .menu-price {
        grid-column: 2;
        justify-self: start;
      }

      .testimonial,
      .address-card {
        padding: 28px 24px;
      }

      .google-reviews.section-pad {
        padding: 46px 0 58px;
      }

      .google-review-card {
        flex-basis: min(84vw, 330px);
      }

      .google-reviews__controls {
        align-items: flex-start;
        flex-direction: column;
      }
    }

@media (prefers-reduced-motion: reduce) {
      .top-bar__track {
        animation: none;
      }

      .hero__placeholder img {
        animation: none;
      }

      .google-reviews__track {
        animation: none;
      }
    }

@media (max-width: 720px) {
      .menu-modal__content {
        max-height: 92vh;
      }

      .menu-modal__frame {
        padding: 14px;
      }

      .menu-modal__close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
      }
    }
