@media (max-width: 575px) {
  
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
      font-size: 13px;
    }
  }

  @media (max-width:480px){
    .logo_img{
      height: 60px;
      width: auto;
      max-width: 176px;
      object-fit: contain;
      object-position: left center;
    }
  }
  @media (max-width:800px){
    .logo_img{
      height: 68px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      object-position: left center;
    }
  }

   /* Navmenu - Desktop */
   @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      padding: 18px 15px;
      font-size: 14px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
    
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }

  /* Navmenu - Mobile */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: white;
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
    #menu_link{
      color: white;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: white;
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: white;
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: white;
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }

  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 60px;
    }
  }

  @media (max-width: 480px) {
    .hero .cta-btn {
      font-size: 12px;
    }
  }
  
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 32px;
    }
  
    .hero p {
      font-size: 18px;
    }
  }

  @media (max-width: 992px) {
    .specials .nav-link {
      border: 0;
      padding: 15px;
    }
  
    .specials .nav-link.active {
      color: var(--accent-color);
      background: var(--accent-color);
    }
    .custom-navbar .navbar-collapse{
      /* Legacy template nav — superseded by ws-mobile-drawer */
      display: none !important;
    }
  }

  @media (max-width: 575px) {
    .book-a-table .php-email-form {
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .button_01 {
      font-size: 12px;
    }
  }


/* ==========================================================
   Walton Spice — Responsive (moved from index.html)
   ========================================================== */
@media (min-width: 992px) {
      .ws-nav-panel {
        flex-grow: 1;
        display: flex !important;
        justify-content: center;
      }

      .ws-navbar .navbar-collapse ul {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        overflow: visible !important;
        transform: none !important;
        animation: none !important;
        flex-direction: row !important;
      }

      .ws-cta-desktop {
        display: inline-flex !important;
      }

      .ws-mobile-drawer {
        display: none !important;
      }
    }

@media (max-width: 991.98px) {
      .ws-navbar {
        padding: 0.65rem 0 0.85rem !important;
      }

      .ws-navbar-float {
        padding: 0 0.75rem;
      }

      .ws-navbar-frame {
        border-radius: 16px;
        overflow: hidden;
      }

      .ws-navbar-row {
        min-height: 72px;
        padding: 0 0.35rem;
      }

      .ws-navbar-row > .btn-book-a-table {
        display: none !important;
      }

      .ws-hamburger {
        margin-left: auto;
        position: relative;
        z-index: 10102;
      }

      .ws-brand { padding: 0.3rem 0.45rem 0.3rem 0.35rem; }
      .ws-brand-spine { display: none; }
      .ws-navbar .logo_img { height: 68px; width: auto; max-height: 68px; max-width: 200px; object-fit: contain; }

      /* —— Mobile drawer (right-side panel) —— */
      .ws-mobile-drawer {
        position: fixed;
        inset: 0;
        z-index: 10100;
        display: none !important;
        pointer-events: none;
      }

      .ws-mobile-drawer.show,
      .ws-mobile-drawer[aria-hidden="false"] {
        display: block !important;
        pointer-events: auto;
      }

      .ws-mobile-drawer-backdrop {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(26, 54, 73, 0.55);
        opacity: 0;
        transition: opacity 0.35s ease;
      }

      .ws-mobile-drawer.show .ws-mobile-drawer-backdrop,
      .ws-mobile-drawer[aria-hidden="false"] .ws-mobile-drawer-backdrop {
        opacity: 1;
      }

      .ws-drawer {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: min(72vw, 300px);
        height: 100%;
        max-height: 100dvh;
        display: flex;
        flex-direction: column;
        background: #21445d;
        border-radius: 48px 0 0 0;
        border-left: 3px solid #c5a059;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.28);
        transform: translateX(105%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        padding-bottom: env(safe-area-inset-bottom);
      }

      .ws-mobile-drawer.show .ws-drawer,
      .ws-mobile-drawer[aria-hidden="false"] .ws-drawer {
        transform: translateX(0);
      }

      .ws-drawer__head {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.25rem 1.5rem 0;
      }

      .ws-drawer__avatar {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 3px solid #c5a059;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      }

      .ws-drawer__logo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .ws-drawer__name {
        margin: 0 0 0.35rem;
        font-family: "Poppins", sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.01em;
        line-height: 1.2;
      }

      .ws-drawer__tagline {
        margin: 0;
        font-family: "Poppins", sans-serif;
        font-size: 0.8rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.4;
      }

      .ws-drawer__divider {
        width: 100%;
        margin: 1.35rem 0 0;
        border: 0;
        border-top: 1px solid rgba(197, 160, 89, 0.35);
      }

      .ws-drawer__nav {
        flex: 1;
        overflow-y: auto;
        padding: 0.75rem 0 0.5rem;
        -webkit-overflow-scrolling: touch;
      }

      .ws-drawer__link {
        display: flex;
        align-items: center;
        gap: 1.1rem;
        padding: 1.05rem 1.75rem;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.9);
        font-family: "Poppins", sans-serif;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        border-left: 3px solid transparent;
      }

      .ws-drawer__link .bi {
        font-size: 1.25rem;
        color: #c5a059;
        width: 1.35rem;
        text-align: center;
        flex-shrink: 0;
      }

      .ws-drawer__link:hover,
      .ws-drawer__link.active {
        color: #d4af6a;
        background: rgba(197, 160, 89, 0.14);
        border-left-color: #c5a059;
      }

      .ws-drawer__link:hover .bi,
      .ws-drawer__link.active .bi {
        color: var(--ws-gold);
      }

      .ws-drawer__foot {
        flex-shrink: 0;
        padding: 0.75rem 1.5rem 1.5rem;
      }

      .ws-drawer__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        width: 100%;
        padding: 0.95rem 1.25rem;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--ws-gold-soft) 0%, var(--ws-gold) 100%);
        color: #ffffff !important;
        font-family: "Poppins", sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(184, 137, 58, 0.28);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .ws-drawer__cta .bi {
        font-size: 1.1rem;
      }

      .ws-drawer__cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(184, 137, 58, 0.36);
        color: #ffffff !important;
      }

      body.ws-nav-open .ws-header {
        z-index: 10101;
      }

      body.ws-nav-open .main {
        z-index: 1;
      }
    }

@media (max-width: 575.98px) {
      .ws-header { --ws-nav-h: 72px; }
      .ws-navbar .logo_img { height: 60px; width: auto; max-height: 60px; max-width: 176px; object-fit: contain; }
      .ws-brand-spine { display: none; }
    }

@media (min-width: 992px) {
      .ws-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }

      .ws-hero-content {
        max-width: min(760px, 100%);
        padding: 0;
        margin-inline: auto;
        text-align: center;
      }

      .ws-hero #text-welcome {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        line-height: 1.08 !important;
        margin-bottom: 1.15rem !important;
        text-align: center;
      }

      .ws-hero-welcome {
        font-family: "Poppins", sans-serif !important;
        font-size: clamp(0.72rem, 1vw, 0.82rem) !important;
        font-weight: 600 !important;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--ws-hero-ink-muted) !important;
        line-height: 1.45 !important;
      }

      .ws-hero-welcome::after {
        content: none;
      }

      .ws-hero-name {
        display: block;
        font-family: "Playfair Display", serif !important;
        font-size: clamp(2.35rem, 3.8vw, 3.6rem) !important;
        font-weight: 700 !important;
        line-height: 1.06 !important;
        color: var(--ws-hero-gold) !important;
        max-width: 100%;
      }
    }

@media (min-width: 992px) {
      .ws-hero-aside {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
        padding-right: 0.5rem;
      }
    }

@media (min-width: 768px) { .ws-hero-scroll { display: flex; } }

@media (min-width: 992px) {
      .ws-about-layout {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
        align-items: stretch;
      }

      .ws-about .about-img {
        min-height: 100%;
        max-height: none;
        aspect-ratio: auto;
        height: 100%;
        object-position: center 32%;
      }

      .ws-about-img-accent {
        top: 1.35rem;
        right: 1.35rem;
        left: auto;
        width: 42%;
        max-width: 230px;
      }
    }

@media (min-width: 768px) {
      .ws-about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
      }
    }

@media (min-width: 768px) {
      .ws-about-stats {
        grid-template-columns: repeat(4, 1fr);
      }
    }

@media (min-width: 768px) {
      .ws-about-stat {
        border-bottom: none;
      }
      .ws-about-stat:last-child {
        border-right: none;
      }
    }

@media (max-width: 767.98px) {
      .ws-about-stat:nth-child(2),
      .ws-about-stat:nth-child(4) {
        border-right: none;
      }
      .ws-about-stat:nth-child(3),
      .ws-about-stat:nth-child(4) {
        border-bottom: none;
      }
    }

@media (max-width: 991.98px) {
      .ws-about {
        padding: 3.5rem 0 4rem !important;
      }

      .ws-about-visual {
        order: 1;
      }

      .ws-about-content {
        order: 2;
      }

      .ws-about .about-img {
        min-height: 280px;
        max-height: 480px;
        aspect-ratio: 4 / 5;
        object-position: center 30%;
      }

      .ws-about-img-accent {
        top: 0.85rem;
        right: 0.85rem;
        left: auto;
        width: 40%;
        max-width: 170px;
      }

      .ws-about-year-tag {
        right: 1rem;
        bottom: -1rem;
      }
    }

@media (max-width: 767.98px) {
      .ws-about-features {
        grid-template-columns: 1fr;
      }
    }

@media (max-width: 575.98px) {
      .ws-about-prose {
        padding: 1.65rem 1.25rem 1.35rem;
      }

      .ws-about .content .fst-italic,
      .ws-about-prose .fst-italic {
        font-size: 0.98rem !important;
      }

      .ws-about-year-num {
        font-size: 1.65rem;
      }

      .ws-about .about-img {
        min-height: 240px;
        max-height: 400px;
        object-position: center 28%;
      }

      .ws-about-img-accent {
        top: 0.6rem;
        right: 0.6rem;
        left: auto;
        width: 42%;
        max-width: 140px;
        box-shadow:
          0 10px 24px rgba(44, 38, 32, 0.18),
          0 0 0 4px #f3ece2;
      }

      .ws-about-img-stack {
        padding-bottom: 1.75rem;
      }

      .ws-about-stats {
        margin-top: 2.5rem;
      }
    }

@media (max-width: 991.98px) {
      .ws-header {
        --ws-header-h: 110px;
      }

      .ws-header:has(.top_notice_bar) {
        --ws-header-h: 148px;
      }

      .ws-hero {
        min-height: 100svh;
        height: auto;
      }

      .ws-hero-container {
        justify-content: center !important;
        align-items: center !important;
        min-height: 100svh;
        box-sizing: border-box;
        padding-top: calc(var(--ws-header-h) + 0.5rem);
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: calc(var(--ws-header-h) + 0.5rem);
        text-align: center !important;
      }

      .ws-hero-content {
        max-width: 100%;
        width: 100%;
        border-radius: 20px;
        margin: 0;
        padding: 1.85rem 1.5rem 2rem;
        background: #ffffff;
        box-shadow: 0 12px 40px rgba(28, 26, 23, 0.14);
        overflow: visible;
      }

      .ws-hero-content::after {
        display: none;
      }

      .ws-hero-eyebrow {
        max-width: 100%;
        white-space: normal;
        line-height: 1.45;
        font-size: 0.62rem;
        letter-spacing: 0.1em;
        padding: 0.5rem 0.9rem;
        margin-bottom: 1.15rem;
      }

      .ws-hero h2,
      .ws-hero #text-welcome {
        font-size: clamp(1.65rem, 6vw, 2.35rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 0.85rem !important;
      }

      .ws-hero-offers {
        max-height: none;
        overflow: visible;
      }

      .ws-hero-offers p {
        font-size: 0.88rem !important;
      }

      .ws-hero-actions {
        margin-top: 1.5rem !important;
        padding-bottom: 0.15rem;
      }

      .ws-hero-strip {
        display: none;
      }

      .ws-hero-particles,
      .ws-hero-glow-accent {
        display: none;
      }

      .ws-hero .ws-hero-img {
        object-position: center 30%;
        animation: none;
        transform: none;
      }

      .ws-hero-overlay {
        background: linear-gradient(
          180deg,
          rgba(28, 26, 23, 0.28) 0%,
          rgba(28, 26, 23, 0.12) 38%,
          rgba(28, 26, 23, 0.38) 100%
        );
      }
    }

@media (max-width: 575.98px) {
      .ws-header {
        --ws-header-h: 98px;
      }

      .ws-header:has(.top_notice_bar) {
        --ws-header-h: 136px;
      }

      .ws-hero-container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
        padding-top: calc(var(--ws-header-h) + 0.5rem);
        padding-bottom: calc(var(--ws-header-h) + 0.5rem);
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
      }

      .ws-hero-content {
        padding: 1.65rem 1.25rem 1.85rem;
        border-radius: 18px;
      }

      .ws-hero h2,
      .ws-hero #text-welcome {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
      }

      .ws-hero-eyebrow {
        font-size: 0.58rem;
        margin-bottom: 1rem;
      }

      .ws-hero-actions {
        margin-top: 1.25rem !important;
      }

      .ws-hero .cta-btn { width: 100%; text-align: center; }
      .ws-hero-actions { flex-direction: column; }

      .ws-hero .ws-hero-img {
        object-position: center 22%;
      }
    }

@media (min-width: 992px) {
      .ws-spice-moment__layout {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 4rem;
      }

      .ws-spice-moment__visual {
        margin: 0;
        min-height: 480px;
      }

      .ws-spice-moment__content {
        margin: 0;
        max-width: none;
      }
    }

@media (max-width: 767.98px) {
      .ws-spice-moment {
        padding: 3.5rem 0 4rem !important;
      }

      .ws-spice-moment__visual {
        min-height: 300px;
        max-width: 100%;
      }

      .ws-spice-moment__frame--accent {
        bottom: -0.5rem;
        width: 46%;
      }

      .ws-spice-moment__seal {
        right: 12%;
        padding: 0.5rem 0.8rem;
      }

      .ws-spice-float {
        font-size: 2rem;
        opacity: 0.5;
      }

      .ws-spice-moment__cta {
        width: 100%;
        justify-content: center;
      }

      .ws-menu {
        padding: 3.5rem 0 4rem !important;
      }

      .ws-menu-head {
        margin-bottom: 2rem;
      }

      .ws-menu-stage::before {
        inset: 0 0.25rem;
      }

      .ws-menu .popular-card,
      .ws-menu-card {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
      }

      .ws-menu .popular-card-img-wrapper {
        height: 112px !important;
      }

      .ws-menu .popular-card-img {
        max-height: 96px;
      }

      .ws-menu .popular-card-prices {
        min-height: 6.75rem;
        max-height: 6.75rem;
      }

      .ws-chef {
        padding: 3.5rem 0 4rem !important;
      }

      .ws-chef-proteins {
        gap: 0.4rem;
        margin-bottom: 1.75rem;
      }

      .ws-chef-protein {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
      }

      .ws-chef-dish {
        padding: 1.15rem 1.15rem 1.15rem 1.35rem;
      }

      .ws-chef-dish__name {
        font-size: 0.95rem;
      }
    }

@media (min-width: 992px) {
      .ws-surrey-showcase {
        grid-template-columns: 1fr 1.05fr;
        gap: 2.5rem;
        align-items: stretch;
      }

      .ws-surrey-visual {
        height: 100%;
      }

      .ws-surrey-visual__frame img {
        min-height: 100%;
        max-height: none;
        aspect-ratio: auto;
        object-position: center 45%;
      }
    }

@media (max-width: 767.98px) {
      .ws-surrey {
        padding: 3.75rem 0 4rem !important;
      }

      .ws-surrey-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .ws-surrey-btn {
        width: 100%;
      }

      .ws-surrey-stamp {
        width: 62px;
        height: 62px;
        right: 0.75rem;
      }

      .ws-surrey-visual__frame img {
        min-height: 220px;
        aspect-ratio: 4 / 3;
        object-position: center 42%;
      }

      .ws-surrey-bg__text {
        font-size: 3.5rem;
      }
    }

@media (min-width: 768px) {
      .ws-chef-dishes {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
      }
    }

@media (min-width: 768px) {
      .ws-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
      }
    }

@media (max-width: 767.98px) {
      .ws-reviews {
        padding: 3.75rem 0 4rem !important;
      }

      .ws-reviews-slider-wrap {
        padding: 0 3rem;
      }

      .ws-reviews-nav {
        display: flex;
        width: 36px;
        height: 36px;
      }

      .ws-gallery {
        padding: 3.75rem 0 4rem !important;
      }

      .ws-gallery-head {
        margin-bottom: 2rem;
      }

      .ws-gallery-grid {
        gap: 0.75rem;
      }

      .ws-gallery-item {
        border-radius: 12px;
      }
    }

@media (min-width: 992px) {
      .ws-contact-split {
        grid-template-columns: 1fr 1.15fr;
        gap: 2rem;
      }

      .ws-contact-side {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
      }

      .ws-contact-map {
        height: 360px;
      }
    }

@media (max-width: 767.98px) {
      .ws-contact {
        padding: 3.75rem 0 4rem !important;
      }

      .ws-contact-head {
        margin-bottom: 1.75rem;
      }

      .ws-contact-map {
        height: 240px;
        border-radius: 14px;
        margin-bottom: 1.75rem;
      }

      .ws-contact-form-card {
        padding: 1.35rem 1.15rem;
        border-radius: 14px;
      }
    }

@media (min-width: 768px) {
      .ws-footer-grid {
        grid-template-columns: 1.4fr 0.75fr 0.75fr 0.9fr;
        gap: 2rem 2.5rem;
        align-items: start;
      }

      .ws-footer-hours li {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
      }

      .ws-footer-hours__time {
        text-align: right;
        flex-shrink: 0;
      }
    }

@media (min-width: 992px) {
      .ws-footer-inner {
        padding: 4rem 1rem 0;
      }

      .ws-footer-grid {
        gap: 2rem 3.5rem;
      }
    }

@media (max-width: 767.98px) {
      .ws-footer-inner {
        padding: 3rem 1rem 0;
      }

      .ws-footer-grid {
        gap: 2rem;
        justify-items: center;
      }

      .ws-footer .footer-about,
      .ws-footer .footer-links,
      .ws-footer .footer-openingHours,
      .ws-footer-brand-col,
      .ws-footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }

      .ws-footer .footer-links ul,
      .ws-footer .footer-openingHours ul {
        align-items: center;
      }

      .ws-footer-logo {
        justify-content: center;
      }

      .ws-footer-tagline,
      .ws-footer-address {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .ws-footer-fields {
        justify-content: center;
        align-items: center;
        width: 100%;
      }

      .ws-footer-field {
        align-items: center;
        text-align: center;
      }

      .ws-footer-col__title {
        text-align: center;
      }

      .ws-footer-list {
        align-items: center;
      }

      .ws-footer-list li {
        text-align: center !important;
      }

      .ws-footer-hours li {
        align-items: center;
        text-align: center;
      }

      .ws-footer-hours__time {
        text-align: center;
      }
    }

@media (prefers-reduced-motion: reduce) {
      .ws-hero .ws-hero-img, .ws-hero-blob, .ws-hero-shimmer, .ws-hero-pattern,
      .ws-hero-content, .ws-hero-eyebrow, .ws-hero #text-welcome, .ws-hero-offers,
      .ws-hero-actions, .ws-hero-card, .ws-hero-card-icon, .ws-hero-strip,
      .ws-hero-eyebrow-dot, .ws-hero-scroll, .ws-particle, .ws-particle--star,
      .ws-hero-glow-accent, .ws-hero-content::after, .ws-marquee-track,
      .ws-hero .cta-btn:first-child::after, .ws-about-year-num,
      .ws-about-features li i,
      .ws-drawer__link, .ws-drawer, .ws-mobile-drawer-backdrop,
      .ws-hamburger__line { animation: none !important; transition: none !important; }
      .ws-about-img-stack:hover .ws-about-img-main .about-img,
      .ws-about-img-stack:hover .ws-about-img-accent img,
      .ws-about-features li:hover,
      .ws-about-stat:hover { transform: none !important; }
      .ws-spice-moment__pill:hover,
      .ws-spice-moment__cta:hover,
      .ws-spice-moment__visual:hover .ws-spice-moment__frame--main img,
      .ws-spice-moment__visual:hover .ws-spice-moment__frame--accent img { transform: none !important; }
      .ws-menu .popular-card:hover .popular-card-img,
      .ws-menu .popular-btn:hover { transform: none !important; }
      .ws-chef-dish:hover { transform: none !important; }
      .ws-surrey-btn--fill:hover,
      .ws-surrey-btn--line:hover { transform: none !important; }
      .ws-gallery-item:hover,
      .ws-gallery-item:hover img { transform: none !important; }
      .ws-reviews-nav:hover { transform: none !important; }
      .ws-contact-card:hover,
      .ws-contact-chip:hover,
      .ws-contact-submit:hover { transform: none !important; }
      .ws-contact-postcard,
      .ws-contact-letter { transform: none !important; }
      .ws-footer-logo:hover,
      .ws-footer-field a:hover,
      .ws-footer-list a:hover,
      .ws-footer-bar .credits a:hover { transition: none !important; }
    }