@media (max-width: 1200px) {
  .header-container,
  .hero-container,
  .footer-container {
    width: min(100% - 40px, 1180px);
  }

  .nav {
    gap: 20px;
  }

  .signature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dish-card img {
    height: 160px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .map img,
  .location-gallery img {
    height: 220px;
  }
}

@media (max-width: 980px) {
  .header {
    height: 72px;
  }

  .logo {
    width: auto;
  }

  .logo-text strong {
    font-size: 22px;
  }

  .logo-text small {
    font-size: 14px;
  }

  .call-btn {
    display: none;
  }

  .burger {
    margin-left: auto;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(6,58,116,0.2);
    border-radius: 8px;
    background: white;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .burger span {
    width: 22px;
    height: 2px;
    background: var(--blue);
    display: block;
    margin: 3px 0;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 12px 24px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(6,58,116,0.1);
  }

  .nav a::after {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 620px;
    background:
      linear-gradient(rgba(250,247,241,0.94), rgba(250,247,241,0.78)),
      url("../assets/images/hero/hero-home.jpg") center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    padding: 55px 0;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero p {
    width: 100%;
    max-width: 540px;
  }

  .hero-infos {
    width: 100%;
    grid-template-columns: 1fr;
    height: auto;
  }

  .info-item {
    min-height: 65px;
    border-right: 0;
    border-bottom: 1px solid rgba(6,58,116,0.12);
  }

  .info-item:last-child {
    border-bottom: 0;
  }

  .story-container {
    grid-template-columns: 1fr;
  }

  .story-text p {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 22px 0;
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .service-item p {
    width: auto;
  }

  .footer {
    height: auto;
    padding: 25px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer p {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .container,
  .header-container,
  .hero-container,
  .footer-container {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-buttons {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .signature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }

  .dish-card img {
    height: 125px;
  }

  .dish-body {
    min-height: 105px;
  }

  .dish-body h3 {
    font-size: 21px;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

  .story-images img {
    height: 220px;
  }

  .service-buttons {
    flex-direction: column;
  }

  .service-buttons .btn {
    width: 100%;
  }

  .location-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 470px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .dish-card img {
    height: 190px;
  }

  .hero h1 {
    font-size: 42px;
  }
}
/* ============================= */
/* CORRECTION HERO MOBILE */
/* ============================= */

@media (max-width: 700px) {
  .hero {
    min-height: 690px;
    height: auto;

    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.92) 0%,
        rgba(250, 247, 241, 0.78) 38%,
        rgba(250, 247, 241, 0.42) 68%,
        rgba(250, 247, 241, 0.18) 100%
      ),
      url("../assets/images/hero/hero-home.jpg") 62% center / cover no-repeat;
  }

  .hero::after {
    height: 85px;
    background: linear-gradient(
      to top,
      var(--cream),
      rgba(250, 247, 241, 0)
    );
  }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 35px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 48px;
    line-height: 0.95;
    margin-bottom: 24px;
  }

  .hero p {
    max-width: 92%;
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .hero-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    height: 58px;
    font-size: 16px;
    border-radius: 7px;
  }

  .hero-infos {
    width: 100%;
    margin-top: 18px;
    grid-template-columns: 1fr;
    height: auto;
  }

  .info-item {
    min-height: 66px;
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 720px;

    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.94) 0%,
        rgba(250, 247, 241, 0.82) 35%,
        rgba(250, 247, 241, 0.48) 68%,
        rgba(250, 247, 241, 0.18) 100%
      ),
      url("../assets/images/hero/hero-home.jpg") 58% center / cover no-repeat;
  }

  .hero-container {
    width: calc(100% - 22px);
  }

  .hero h1 {
    font-size: 45px;
    max-width: 330px;
  }

  .hero p {
    font-size: 17px;
    max-width: 100%;
  }
}
/* ========================================================= */
/* RESPONSIVE PAGE CARTE */
/* ========================================================= */

@media (max-width: 1200px) {
  .menu-wrapper {
    width: calc(100% - 40px);
  }

  .menu-tabs {
    display: flex;
    overflow-x: auto;
  }

  .menu-tabs a {
    min-width: 150px;
    padding: 0 18px;
  }

  .entree-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .special-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-bottom-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-hero {
    height: auto;
    min-height: 370px;
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.96) 0%,
        rgba(250, 247, 241, 0.88) 42%,
        rgba(250, 247, 241, 0.55) 100%
      ),
      url("../assets/images/hero/hero-carte.jpg") center right / cover no-repeat;
  }

  .menu-hero-container {
    width: calc(100% - 28px);
  }

  .menu-hero-text {
    padding-top: 52px;
  }

  .menu-hero-text h1 {
    font-size: 48px;
  }

  .menu-hero-text h1 span {
    font-size: 62px;
  }

  .gold-separator {
    width: 260px;
  }

  .menu-hero-text p {
    font-size: 16px;
  }

  .menu-page {
    margin-top: -18px;
  }

  .menu-wrapper {
    width: calc(100% - 24px);
    padding: 14px 12px 24px;
    border-radius: 14px;
  }

  .menu-category-head h2,
  .menu-category.compact .menu-category-head h2 {
    font-size: 27px;
  }

  .entree-grid,
  .special-grid,
  .small-card-grid,
  .grill-grid,
  .fish-grid,
  .dessert-layout {
    grid-template-columns: 1fr 1fr;
  }

  .menu-card img {
    height: 125px;
  }

  .menu-card p {
    min-height: 58px;
  }

  .small-menu-card img {
    height: 110px;
  }

  .small-menu-card.featured {
    grid-column: span 2;
  }

  .line-dish {
    grid-template-columns: 76px 1fr auto;
  }

  .line-dish img {
    height: 58px;
  }
}

@media (max-width: 480px) {
  .menu-hero {
    min-height: 410px;
  }

  .menu-hero-text h1 {
    font-size: 42px;
  }

  .menu-hero-text h1 span {
    font-size: 54px;
  }

  .entree-grid,
  .special-grid,
  .small-card-grid,
  .grill-grid,
  .fish-grid,
  .dessert-layout {
    grid-template-columns: 1fr;
  }

  .small-menu-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .small-menu-card.featured img {
    height: 160px;
  }

  .menu-card img,
  .small-menu-card img {
    height: 165px;
  }

  .line-dish {
    grid-template-columns: 72px 1fr auto;
  }
}
/* ========================================================= */
/* RESPONSIVE PAGE SPECIALITES */
/* ========================================================= */

@media (max-width: 1200px) {
  .special-tabs {
    display: flex;
    overflow-x: auto;
  }

  .special-tabs a {
    min-width: 180px;
    padding: 0 18px;
  }

  .specialites-grid {
    grid-template-columns: 1fr 1fr;
  }

  .special-values {
    grid-template-columns: 1fr 1fr;
  }

  .value-item {
    border-bottom: 1px solid rgba(6, 58, 116, 0.12);
  }
}

@media (max-width: 760px) {
  .special-hero {
    height: auto;
    min-height: 360px;
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.96) 0%,
        rgba(250, 247, 241, 0.86) 45%,
        rgba(250, 247, 241, 0.52) 100%
      ),
      url("../assets/images/hero/hero-specialites.jpg") center right / cover no-repeat;
  }

  .special-hero-container {
    width: calc(100% - 28px);
  }

  .special-hero-text {
    padding-top: 56px;
  }

  .special-hero-text h1 {
    font-size: 44px;
  }

  .special-hero-text h1 span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 58px;
  }

  .special-hero-text p {
    font-size: 16px;
  }

  .special-tabs {
    width: calc(100% - 24px);
  }

  .specialites-grid {
    grid-template-columns: 1fr;
  }

  .special-card {
    grid-template-columns: 1fr;
  }

  .special-image img {
    height: 210px;
    min-height: auto;
  }

  .special-values {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .special-hero {
    min-height: 400px;
  }

  .special-hero-text h1 {
    font-size: 39px;
  }

  .special-hero-text h1 span {
    font-size: 52px;
  }

  .special-content {
    padding: 20px 18px;
  }

  .special-top h2 {
    font-size: 29px;
  }

  .value-item {
    grid-template-columns: 52px 1fr;
    padding: 20px 18px;
  }
}
/* ========================================================= */
/* RESPONSIVE PAGE LIVRAISON */
/* ========================================================= */

@media (max-width: 1200px) {
  .delivery-options {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    grid-template-columns: 90px 1fr 260px;
  }

  .delivery-details {
    grid-template-columns: 1fr;
  }

  .delivery-detail-item {
    border-right: none;
    border-bottom: 1px solid rgba(6, 58, 116, 0.12);
  }

  .delivery-contact {
    grid-template-columns: 1fr;
  }

  .delivery-map img,
  .delivery-gallery img {
    height: 220px;
  }
}

@media (max-width: 760px) {
  .delivery-hero {
    height: auto;
    min-height: 390px;
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.97) 0%,
        rgba(250, 247, 241, 0.86) 44%,
        rgba(250, 247, 241, 0.52) 100%
      ),
      url("../assets/images/hero/hero-livraison.jpg") center right / cover no-repeat;
  }

  .delivery-hero-container {
    width: calc(100% - 28px);
  }

  .delivery-hero-text {
    padding-top: 56px;
  }

  .delivery-hero-text h1 {
    font-size: 44px;
  }

  .delivery-hero-text span {
    font-size: 34px;
  }

  .delivery-hero-text p {
    font-size: 16px;
  }

  .delivery-card {
    grid-template-columns: 1fr;
  }

  .delivery-icon {
    padding-top: 24px;
  }

  .delivery-content {
    padding: 10px 22px 22px;
    text-align: center;
  }

  .tiny-gold-line {
    margin-left: auto;
    margin-right: auto;
  }

  .delivery-card img {
    height: 190px;
    min-height: auto;
  }

  .delivery-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .delivery-detail-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .delivery-detail-item img {
    height: 180px;
  }

  .delivery-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .delivery-hero {
    min-height: 420px;
  }

  .delivery-hero-text h1 {
    font-size: 39px;
  }

  .delivery-big-btn {
    font-size: 15px;
  }

  .delivery-big-btn.uber {
    font-size: 20px;
  }
}
/* ========================================================= */
/* RESPONSIVE PAGE GALERIE */
/* ========================================================= */

@media (max-width: 1100px) {
  .gallery-tabs {
    display: flex;
    overflow-x: auto;
  }

  .gallery-tabs a {
    min-width: 150px;
    padding: 0 18px;
  }

  .gallery-grid-page {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.big {
    grid-column: span 2;
  }

  .gallery-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gallery-cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .gallery-hero {
    height: auto;
    min-height: 370px;
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.97) 0%,
        rgba(250, 247, 241, 0.86) 45%,
        rgba(250, 247, 241, 0.52) 100%
      ),
      url("../assets/images/hero/hero-galerie.jpg") center right / cover no-repeat;
  }

  .gallery-hero-container {
    width: calc(100% - 28px);
  }

  .gallery-hero-text {
    padding-top: 58px;
  }

  .gallery-hero-text h1 {
    font-size: 48px;
  }

  .gallery-hero-text h1 span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
    font-size: 64px;
  }

  .gallery-hero-text p {
    font-size: 16px;
  }

  .gallery-grid-page {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
    gap: 12px;
  }

  .gallery-item.big,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item h3 {
    font-size: 24px;
  }

  .gallery-cta-buttons {
    flex-direction: column;
  }

  .gallery-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-hero {
    min-height: 405px;
  }

  .gallery-hero-text h1 {
    font-size: 42px;
  }

  .gallery-hero-text h1 span {
    font-size: 56px;
  }

  .gallery-grid-page {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.big,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-intro h2,
  .gallery-cta h2 {
    font-size: 34px;
  }
}
/* ========================================================= */
/* RESPONSIVE PAGE A PROPOS */
/* ========================================================= */

@media (max-width: 1100px) {
  .about-intro-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-images {
    min-height: auto;
  }

  .about-img-main {
    height: 360px;
  }

  .about-img-small {
    right: 20px;
  }

  .about-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .about-hero {
    height: auto;
    min-height: 380px;
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.97) 0%,
        rgba(250, 247, 241, 0.86) 45%,
        rgba(250, 247, 241, 0.52) 100%
      ),
      url("../assets/images/hero/hero-home.jpg") center right / cover no-repeat;
  }

  .about-hero-container {
    width: calc(100% - 28px);
  }

  .about-hero-text {
    padding-top: 58px;
  }

  .about-hero-text h1 {
    font-size: 46px;
  }

  .about-hero-text h1 span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 60px;
  }

  .about-hero-text p {
    font-size: 16px;
  }

  .about-intro-text h2,
  .about-story-text h2 {
    font-size: 36px;
  }

  .about-buttons {
    flex-direction: column;
  }

  .about-img-main {
    height: 300px;
  }

  .about-img-small {
    position: relative;
    width: 100%;
    height: 220px;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    border: none;
  }

  .about-story-gallery {
    grid-template-columns: 1fr;
  }

  .about-story-gallery img,
  .about-story-gallery img:first-child {
    grid-column: auto;
    height: 220px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats div {
    border-right: none;
    border-bottom: 1px solid rgba(6, 58, 116, 0.10);
  }

  .about-stats div:last-child {
    border-bottom: none;
  }

  .about-cta-buttons {
    flex-direction: column;
  }

  .about-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 410px;
  }

  .about-hero-text h1 {
    font-size: 40px;
  }

  .about-hero-text h1 span {
    font-size: 54px;
  }

  .about-cta h2 {
    font-size: 34px;
  }
}
/* ========================================================= */
/* RESPONSIVE PAGE RESERVATION */
/* ========================================================= */

@media (max-width: 1100px) {
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .reservation-bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reservation-bottom-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .reservation-hero {
    height: auto;
    min-height: 380px;
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.97) 0%,
        rgba(250, 247, 241, 0.86) 45%,
        rgba(250, 247, 241, 0.52) 100%
      ),
      url("../assets/images/hero/hero-reservation.jpg") center right / cover no-repeat;
  }

  .reservation-hero-container {
    width: calc(100% - 28px);
  }

  .reservation-hero-text {
    padding-top: 58px;
  }

  .reservation-hero-text h1 {
    font-size: 46px;
  }

  .reservation-hero-text h1 span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 60px;
  }

  .reservation-hero-text p {
    font-size: 16px;
  }

  .reservation-form-box {
    padding: 26px 18px;
  }

  .reservation-form-box h2 {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-side-buttons {
    grid-template-columns: 1fr;
  }

  .reservation-photo-stack {
    grid-template-columns: 1fr;
  }

  .reservation-photo-stack img {
    height: 220px;
  }

  .reservation-bottom-buttons {
    flex-direction: column;
  }

  .reservation-bottom-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .reservation-hero {
    min-height: 410px;
  }

  .reservation-hero-text h1 {
    font-size: 40px;
  }

  .reservation-hero-text h1 span {
    font-size: 54px;
  }

  .reservation-info-card {
    padding: 24px 18px;
  }

  .reservation-bottom h2 {
    font-size: 34px;
  }
}
/* ========================================================= */
/* RESPONSIVE PAGE CONTACT */
/* ========================================================= */

@media (max-width: 1100px) {
  .contact-grid,
  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-photo-card {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }

  .contact-photo-card img:first-child {
    grid-row: auto;
  }

  .contact-photo-card img {
    height: 220px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    height: auto;
    min-height: 380px;
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 241, 0.97) 0%,
        rgba(250, 247, 241, 0.86) 45%,
        rgba(250, 247, 241, 0.52) 100%
      ),
      url("../assets/images/hero/hero-contact.jpg") center right / cover no-repeat;
  }

  .contact-hero-container {
    width: calc(100% - 28px);
  }

  .contact-hero-text {
    padding-top: 58px;
  }

  .contact-hero-text h1 {
    font-size: 46px;
  }

  .contact-hero-text h1 span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 60px;
  }

  .contact-hero-text p {
    font-size: 16px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 26px 18px;
  }

  .contact-info-box h2,
  .contact-form-box h2 {
    font-size: 36px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
  }

  .contact-photo-card {
    grid-template-columns: 1fr;
  }

  .contact-photo-card img {
    height: 220px;
  }

  .contact-map-card img {
    height: 240px;
  }

  .contact-cta-buttons {
    flex-direction: column;
  }

  .contact-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 410px;
  }

  .contact-hero-text h1 {
    font-size: 40px;
  }

  .contact-hero-text h1 span {
    font-size: 54px;
  }

  .contact-info-item {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .contact-cta h2 {
    font-size: 34px;
  }
}
/* ========================================================= */
/* CORRECTIONS RESPONSIVE PREMIUM */
/* ========================================================= */

@media (max-width: 980px) {
  .logo-text strong {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .logo-text small {
    font-size: 15px;
    letter-spacing: 1.6px;
  }
}

@media (max-width: 760px) {
  .hero,
  .menu-hero,
  .special-hero,
  .delivery-hero,
  .gallery-hero,
  .about-hero,
  .reservation-hero,
  .contact-hero {
    background-position: 64% center !important;
  }

  .hero h1 {
    font-size: clamp(46px, 11vw, 64px);
    max-width: 360px;
    line-height: 0.96;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.65;
  }

  .menu-hero-text h1,
  .special-hero-text h1,
  .delivery-hero-text h1,
  .gallery-hero-text h1,
  .about-hero-text h1,
  .reservation-hero-text h1,
  .contact-hero-text h1 {
    font-size: 42px;
  }

  .menu-hero-text h1 span,
  .special-hero-text h1 span,
  .gallery-hero-text h1 span,
  .about-hero-text h1 span,
  .reservation-hero-text h1 span,
  .contact-hero-text h1 span {
    font-size: 54px;
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }

  .delivery-hero-text span {
    font-size: 30px;
  }

  .entree-grid,
  .special-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }

  .menu-card img,
  .menu-card.large img {
    height: 150px;
  }

  .menu-card h3,
  .menu-card.large h3 {
    min-height: auto;
    font-size: 21px;
  }

  .menu-card p,
  .menu-card.large p {
    min-height: auto;
    -webkit-line-clamp: 5;
  }
}

@media (max-width: 480px) {
  .logo-text strong {
    font-size: 20px;
  }

  .logo-text small {
    font-size: 13px;
  }

  .hero,
  .menu-hero,
  .special-hero,
  .delivery-hero,
  .gallery-hero,
  .about-hero,
  .reservation-hero,
  .contact-hero {
    background-position: 68% center !important;
  }

  .entree-grid,
  .special-grid {
    grid-template-columns: 1fr !important;
  }
}