/* ============================================================================
   TEMPLATE UP — "PUNJAB ROYAL" DESIGN SYSTEM
   Heritage-luxury restaurant template: deep navy, burnished gold, parchment.
   Consumes tokens from theme.css. Per-store overrides live in custom.css.

   TABLE OF CONTENTS
   01  Base & typography
   02  Utilities
   03  Ornaments: kickers, headings, dividers
   04  Buttons & inline links
   05  Navigation
   06  Breadcrumb & floating order button
   07  Heroes (home / about / food / dish / legacy cs-)
   08  Split sections (image + content)
   09  Dish cards & grids
   10  Values, features & testimonials
   11  Galleries
   12  FAQ
   13  Map & contact
   14  CTA bands
   15  Reviews & info boxes (landing pages)
   16  Delivery / takeout pages (legacy classes)
   17  Location cards (places pages)
   18  Menu page
   19  Privacy & terms
   20  Footer
   21  Scroll reveals & motion
   ============================================================================ */


/* ============================================================
   01  BASE & TYPOGRAPHY
   ============================================================ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--gs-nav-height) + 24px);
}

body {
  font-family: var(--gs-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gs-text);
  background-color: var(--gs-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--gs-font-heading);
  font-weight: var(--gs-heading-weight);
  color: var(--gs-dark);
  line-height: 1.15;
}

ul {
  list-style: none;
}

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

iframe {
  border: 0;
  display: block;
}

::selection {
  background: var(--gs-accent);
  color: var(--gs-primary-deep);
}

:focus-visible {
  outline: 2px solid var(--gs-accent-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Refined scrollbar */
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--gs-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--gs-primary);
  border-radius: 6px;
  border: 2px solid var(--gs-bg-alt);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gs-accent-dark);
}


/* ============================================================
   02  UTILITIES
   ============================================================ */

.mt-1-5           { margin-top: 1.5rem; }
.btn-margin-top   { margin-top: 1.5rem; }
.btn-margin-bottom{ margin-bottom: 1.5rem; }
.btn-margin-left  { margin-left: 1rem; }
.iframe-no-border { border: 0; }

.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3.75rem, 7vw, 6rem) 1.5rem;
}


/* ============================================================
   03  ORNAMENTS: KICKERS, HEADINGS, DIVIDERS
   ============================================================ */

/* Kicker label — small caps, gold, hairline lead-in */
.gs-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--gs-font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gs-accent-dark);
  margin-bottom: 1rem;
}

.gs-section-label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gs-accent);
}

/* Serif headings */
.gs-heading {
  font-family: var(--gs-font-heading);
  font-weight: var(--gs-heading-weight);
  color: var(--gs-dark);
  line-height: 1.12;
  text-wrap: balance;
}

.gs-heading-md {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
}

.gs-section-heading {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  text-align: center;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.gs-section-desc {
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.8;
  max-width: 46rem;
}

/* Center-aligned contexts get a centered description */
.gs-content-section .gs-section-desc,
.gs-dishes .gs-section-desc {
  margin-inline: auto;
  text-align: center;
}

/* Ornamental divider: hairline — icon — hairline */
.gs-divider,
.gs-faq-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  margin: 1.1rem 0 1.6rem;
}

.gs-divider-line {
  width: 3.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gs-accent) 30%, var(--gs-accent) 70%, transparent);
}

.gs-divider-icon {
  color: var(--gs-accent);
  font-size: 1rem;
  line-height: 1;
}

/* Centered contexts */
.gs-dishes .gs-divider,
.gs-faq .gs-faq-divider,
.gs-faq-divider,
.gs-testimonials .gs-divider {
  justify-content: center;
  margin-inline: auto;
}

/* Empty divider (e.g. about testimonials) renders a gold rule with diamond */
.gs-divider:empty {
  position: relative;
  width: 8.5rem;
  height: 1px;
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
}

.gs-divider:empty::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--gs-bg);
  border: 1px solid var(--gs-accent);
  transform: translate(-50%, -50%) rotate(45deg);
}

.gs-testimonials .gs-divider:empty::after {
  background: var(--gs-primary-dark);
}


/* ============================================================
   04  BUTTONS & INLINE LINKS
   ============================================================ */

.btn,
.gs-btn,
.cs-button-solid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--gs-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1;
  padding: 1.05em 2.2em;
  border-radius: var(--gs-btn-radius);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
}

/* Solid gold — the default action */
.btn,
.gs-btn-primary,
.cs-button-solid,
.location-card-btn-primary {
  background: var(--gs-accent);
  border-color: var(--gs-accent);
  color: #14252c;
}

/* Sheen sweep on hover */
.btn::before,
.gs-btn-primary::before,
.cs-button-solid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn:hover::before,
.gs-btn-primary:hover::before,
.cs-button-solid:hover::before {
  left: 125%;
}

.btn:hover,
.gs-btn-primary:hover,
.cs-button-solid:hover,
.location-card-btn-primary:hover {
  background: var(--gs-accent-dark);
  border-color: var(--gs-accent-dark);
  color: #fffdf8;
  transform: translateY(-2px);
  box-shadow: var(--gs-shadow-gold);
}

/* Hairline outline — the quiet action */
.gs-btn-outline,
.location-card-btn {
  background: transparent;
  border-color: rgba(22, 57, 68, 0.4);
  color: var(--gs-primary-dark);
}

.gs-btn-outline:hover,
.location-card-btn:hover {
  background: var(--gs-primary);
  border-color: var(--gs-primary);
  color: #f4efe4;
  transform: translateY(-2px);
  box-shadow: var(--gs-shadow);
}

/* Outline buttons that sit on dark navy surfaces */
.gs-location-cta .gs-btn-outline,
.gs-map-info .gs-btn-outline,
.cta__container .gs-btn-outline,
.footer .gs-btn-outline {
  border-color: var(--gs-dark-border);
  color: var(--gs-dark-heading);
}

.gs-location-cta .gs-btn-outline:hover,
.gs-map-info .gs-btn-outline:hover,
.cta__container .gs-btn-outline:hover {
  background: var(--gs-accent);
  border-color: var(--gs-accent);
  color: #14252c;
}

/* Inline text links */
.gs-inline-link,
.link-primary-light {
  color: var(--gs-accent-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gs-border-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.gs-inline-link:hover,
.link-primary-light:hover {
  color: var(--gs-primary);
  text-decoration-color: var(--gs-primary);
}


/* ============================================================
   05  NAVIGATION
   ============================================================ */

/* The injected header lives inside #header-container; reserve its height */
#header-container {
  height: var(--gs-nav-height);
}

.nav__container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--gs-nav-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gs-dark-border);
}

.nav__container nav {
  max-width: 1360px;
  height: var(--gs-nav-height);
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__header {
  display: flex;
  align-items: center;
}

.logo__wrapper {
  display: inline-flex;
  align-items: center;
}

/* The crest artwork sits on a white plaque — frame it deliberately */
.logo__image {
  height: 62px;
  width: auto;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(233, 185, 94, 0.4), 0 4px 14px rgba(4, 16, 20, 0.35);
  transition: transform 0.35s ease;
}

.logo__wrapper:hover .logo__image {
  transform: scale(1.04);
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
}

.nav__links li a {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gs-dark-text);
  transition: color 0.3s ease;
}

.nav__links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gs-accent-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav__links li a:hover {
  color: var(--gs-dark-heading);
}

.nav__links li a:hover::after,
.nav__links li a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__links li a.active {
  color: var(--gs-accent-bright);
}

/* Order button (desktop) */
.nav__btn .btn {
  padding: 0.95em 1.9em;
}

/* Mobile hamburger */
.nav__menu__btn {
  display: none;
  font-size: 1.7rem;
  color: var(--gs-dark-heading);
  cursor: pointer;
  line-height: 1;
}

.nav__btn-mobile {
  display: none;
}

@media (max-width: 992px) {
  #header-container,
  .nav__container nav {
    height: var(--gs-nav-height-mobile);
  }

  html {
    scroll-padding-top: calc(var(--gs-nav-height-mobile) + 20px);
  }

  .logo__image {
    height: 50px;
  }

  .nav__container nav {
    position: relative;
    padding: 0 1.25rem;
  }

  .nav__header {
    flex: 1;
    justify-content: space-between;
  }

  .nav__menu__btn {
    display: block;
  }

  .nav__btn {
    display: none;
  }

  .nav__btn-mobile {
    display: block;
    margin-top: 0.75rem;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.8rem 1.5rem 1.8rem;
    background: var(--gs-nav-open-bg);
    border-bottom: 1px solid var(--gs-dark-border);
    box-shadow: 0 30px 50px rgba(4, 16, 20, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links li a {
    display: block;
    width: 100%;
    padding: 0.95rem 0;
    font-family: var(--gs-font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: none;
    border-bottom: 1px solid rgba(233, 185, 94, 0.12);
  }

  .nav__links li a::after {
    display: none;
  }

  .nav__links li:last-child a {
    border-bottom: none;
  }

  .nav__links .nav__btn-mobile .btn {
    display: inline-flex;
    width: auto;
    padding: 1em 2.2em;
    font-size: 0.85rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-family: var(--gs-font-body);
    border-bottom: none;
  }
}


/* ============================================================
   06  BREADCRUMB & FLOATING ORDER BUTTON
   ============================================================ */

/* Breadcrumbs exist only for their BreadcrumbList schema markup —
   they back up the nav header and are never shown on screen. */
.gs-breadcrumb {
  display: none;
}

/* Floating order pill */
.gs-floating-btn {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 990;
  animation: gs-float-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s backwards;
}

.gs-floating-btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--gs-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #14252c;
  background: var(--gs-accent);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.95em 1.7em;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(8, 28, 34, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.gs-floating-btn a:hover {
  background: var(--gs-accent-dark);
  color: #fffdf8;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(8, 28, 34, 0.4);
}

.gs-floating-btn i {
  font-size: 1.1em;
}

@keyframes gs-float-in {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   07  HEROES
   ============================================================ */

/* --- Full-bleed hero (home, contact, delivery, takeout) --- */
.gs-location-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(540px, 76vh, 780px);
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  overflow: hidden;
  text-align: center;
}

#home-hero.gs-location-hero {
  min-height: clamp(600px, 88vh, 900px);
}

.gs-location-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gs-kenburns 26s ease-in-out infinite alternate;
}

.gs-location-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gs-hero-overlay);
  z-index: 1;
}

.gs-location-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

.gs-location-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.gs-location-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gs-accent-bright);
  border: 1px solid rgba(233, 185, 94, 0.35);
  border-radius: 999px;
  padding: 0.7em 1.6em;
  margin-bottom: 1.75rem;
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
}

.gs-location-hero-badge i {
  font-size: 0.95rem;
}

.gs-location-hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 4.8rem);
  font-weight: 600;
  color: #f7f2e7;
  line-height: 1.06;
  text-wrap: balance;
  margin-bottom: 1.4rem;
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.gs-location-hero-text {
  max-width: 640px;
  margin: 0 auto 2.3rem;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(244, 239, 228, 0.88);
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s backwards;
}

.gs-location-hero-text .gs-inline-link {
  color: var(--gs-accent-bright);
  text-decoration-color: rgba(233, 185, 94, 0.4);
}

.gs-location-hero-text .gs-inline-link:hover {
  color: #fffdf8;
  text-decoration-color: #fffdf8;
}

.gs-location-hero .gs-btn {
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

@keyframes gs-hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gs-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}

/* --- About hero --- */
.gs-about-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(540px, 78vh, 800px);
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  overflow: hidden;
  text-align: center;
}

.gs-about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gs-kenburns 26s ease-in-out infinite alternate;
}

.gs-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gs-hero-overlay);
  z-index: 1;
}

.gs-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

.gs-about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.gs-about-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gs-accent-bright);
  margin-bottom: 1.5rem;
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
}

.gs-about-hero-tagline::before,
.gs-about-hero-tagline::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: rgba(233, 185, 94, 0.5);
}

.gs-about-hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.2rem);
  color: #f7f2e7;
  line-height: 1.08;
  text-wrap: balance;
  margin-bottom: 1.4rem;
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.gs-about-hero h1 span {
  display: block;
  font-family: var(--gs-font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gs-accent-bright);
  margin-top: 1.1rem;
}

.gs-about-hero-subtitle {
  max-width: 620px;
  margin: 0 auto 2.3rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(244, 239, 228, 0.88);
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s backwards;
}

.gs-about-hero .gs-btn {
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

/* --- Food gallery hero (navy, arch image, wave bottom) --- */
.gs-food-hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(208, 151, 51, 0.14), transparent 65%),
    var(--gs-primary-dark);
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem clamp(9rem, 16vw, 13rem);
}

.gs-food-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.16;
  pointer-events: none;
}

.gs-food-hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}

.gs-food-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gs-accent-bright);
  margin-bottom: 1.2rem;
}

.gs-food-hero-tagline::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: rgba(233, 185, 94, 0.5);
}

.gs-food-hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: var(--gs-dark-heading);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 1.3rem;
}

.gs-food-hero-subtitle {
  color: var(--gs-dark-text);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.2rem;
  max-width: 560px;
}

.gs-food-hero-subtitle .gs-inline-link {
  color: var(--gs-accent-bright);
  text-decoration-color: rgba(233, 185, 94, 0.4);
}

.gs-food-hero-subtitle .gs-inline-link:hover {
  color: #fffdf8;
  text-decoration-color: #fffdf8;
}

/* Mughal arch portrait */
.gs-food-hero-image {
  position: relative;
  justify-self: center;
}

.gs-food-hero-image img {
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 64px 8px 64px 8px;
  box-shadow: 0 30px 60px rgba(4, 16, 20, 0.45);
}

.gs-food-hero-image::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(233, 185, 94, 0.4);
  border-radius: 76px 10px 76px 10px;
  pointer-events: none;
}

.gs-food-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
}

.gs-food-hero-wave svg {
  width: 100%;
  height: auto;
}

.gs-food-hero-wave path {
  fill: var(--gs-bg);
}

/* --- Dish detail hero --- */
.gs-dish-hero {
  background:
    radial-gradient(ellipse 55% 45% at 85% 8%, rgba(208, 151, 51, 0.12), transparent 60%),
    var(--gs-bg);
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.gs-dish-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.gs-dish-hero-content h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.gs-dish-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--gs-star-color);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.gs-rating-count {
  margin-left: 0.6rem;
  font-size: 0.88rem;
  color: var(--gs-text-light);
}

.dish-description {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gs-text);
  margin-bottom: 1.8rem;
}

.gs-dish-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.gs-dish-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gs-primary-dark);
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-gold);
  border-radius: 999px;
  padding: 0.55em 1.2em;
}

.gs-dish-detail i {
  color: var(--gs-accent-dark);
  font-size: 1.05em;
}

.gs-dish-hero-image {
  position: relative;
  justify-self: center;
}

.gs-dish-hero-image img {
  width: min(100%, 460px);
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 64px 8px 64px 8px;
  box-shadow: var(--gs-shadow-hover);
}

.gs-dish-hero-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gs-border-gold);
  border-radius: 74px 10px 74px 10px;
  pointer-events: none;
}

/* --- Legacy cs- hero (older places pages) --- */
#home-hero:not(.gs-location-hero) {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 72vh, 720px);
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  overflow: hidden;
  text-align: center;
}

#home-hero:not(.gs-location-hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gs-hero-overlay);
  z-index: 1;
}

#home-hero:not(.gs-location-hero)::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

.cs-background {
  position: absolute;
  inset: 0;
}

.cs-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gs-kenburns 26s ease-in-out infinite alternate;
}

.cs-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cs-content .cs-title {
  font-family: var(--gs-font-heading);
  font-size: clamp(2.5rem, 5.8vw, 4.2rem);
  font-weight: 600;
  color: #f7f2e7;
  line-height: 1.08;
  text-wrap: balance;
  max-width: none;
  margin-bottom: 0.8rem;
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.cs-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gs-accent-bright);
  margin-bottom: 1.3rem;
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s backwards;
}

.cs-content .cs-text {
  max-width: 620px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(244, 239, 228, 0.88);
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

.cs-button-group {
  animation: gs-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s backwards;
}


/* ============================================================
   08  SPLIT SECTIONS (IMAGE + CONTENT)
   ============================================================ */

.gs-location-section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.gs-location-section:nth-of-type(even) {
  background: var(--gs-bg-alt);
}

.gs-location-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(3rem, 6.5vw, 6rem);
  align-items: center;
}

/* Offset gold frame behind the photograph */
.gs-location-image {
  position: relative;
}

.gs-location-image::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--gs-border-gold);
  border-radius: 8px;
  pointer-events: none;
}

.gs-location-image img {
  position: relative;
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--gs-shadow);
}

.gs-location-content h2 {
  margin-bottom: 0;
}

.gs-location-content p {
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.9rem;
}


/* ============================================================
   09  DISH CARDS & GRIDS
   ============================================================ */

.gs-dishes {
  background: var(--gs-bg-alt);
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  text-align: center;
}

.gs-dishes-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.gs-dishes-inner > .gs-heading {
  margin-bottom: 0;
}

.gs-dishes-desc {
  max-width: 44rem;
  margin: 0 auto 1.9rem;
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.8;
}

.gs-dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

/* Carousel shell — inert on desktop, one-card slider on mobile */
.gs-dishes-carousel {
  position: relative;
}

.gs-dishes-nav {
  display: none;
}

@media (max-width: 768px) {
  .gs-dishes-carousel .gs-dishes-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    column-gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 2px 20px;
  }

  .gs-dishes-carousel .gs-dishes-grid::-webkit-scrollbar {
    display: none;
  }

  .gs-dishes-carousel .gs-dish-card {
    scroll-snap-align: start;
  }

  .gs-dishes-nav {
    display: grid;
    place-items: center;
    position: absolute;
    top: 42%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gs-border-gold);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.92);
    color: var(--gs-accent-dark);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--gs-shadow);
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .gs-dishes-nav:active {
    background: var(--gs-accent);
    color: #14252c;
  }

  .gs-dishes-nav-prev {
    left: -6px;
  }

  .gs-dishes-nav-next {
    right: -6px;
  }
}

.gs-dish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

/* Gold hairline sweeps across the top on hover */
.gs-dish-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.gs-dish-card:hover::after {
  transform: scaleX(1);
}

.gs-dish-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--gs-shadow-hover);
}

.gs-dish-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-dish-card:hover img {
  transform: scale(1.05);
}

.gs-dish-title {
  font-size: 1.55rem;
  margin: 1.4rem 1.7rem 0.75rem;
}

.gs-dish-title::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 1px;
  background: var(--gs-accent);
  margin-top: 0.65rem;
}

.gs-dish-card p {
  flex-grow: 1;
  margin: 0 1.7rem;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gs-text-light);
}

.gs-dish-ratings {
  display: flex;
  gap: 0.2rem;
  color: var(--gs-star-color);
  font-size: 0.95rem;
  margin: 1.1rem 1.7rem 1.6rem;
}

/* Popular dishes carousel (homepage only) — desktop keeps the grid,
   mobile becomes a one-card auto-sliding carousel with prev/next */
.gs-dishes-carousel {
  position: relative;
}

.gs-dishes-nav {
  display: none;
}

@media (max-width: 768px) {
  .gs-dishes-carousel .gs-dishes-grid {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gs-dishes-carousel .gs-dishes-grid::-webkit-scrollbar {
    display: none;
  }

  .gs-dishes-carousel .gs-dish-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .gs-dishes-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 117px; /* centre of the 235px dish photo */
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--gs-border-light);
    border-radius: 50%;
    background: var(--gs-cream);
    color: var(--gs-accent-dark);
    font-size: 1.5rem;
    box-shadow: var(--gs-shadow);
    cursor: pointer;
    z-index: 2;
  }

  .gs-dishes-nav:active {
    background: var(--gs-accent);
    color: var(--gs-cream);
  }

  .gs-dishes-nav-prev {
    left: 0.6rem;
  }

  .gs-dishes-nav-next {
    right: 0.6rem;
  }
}


/* ============================================================
   10  VALUES, FEATURES & TESTIMONIALS
   ============================================================ */

.gs-values {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.gs-values-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.gs-values-inner > h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  margin-bottom: 0.9rem;
}

/* Ornament under the section title */
.gs-values-inner > h2::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 1px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
}

.gs-values-inner > .gs-section-desc {
  margin: 0 auto 1rem;
  text-align: center;
}

.gs-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.8rem;
  text-align: left;
}

.gs-value-card {
  position: relative;
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-radius: 6px;
  padding: 2.5rem 2.2rem 2.3rem;
  box-shadow: var(--gs-shadow);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.gs-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-hover);
}

/* Ghost serif numeral */
.gs-value-number {
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: var(--gs-font-heading);
  font-style: italic;
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gs-accent);
  opacity: 0.16;
  pointer-events: none;
}

.gs-value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.gs-value-card p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gs-text-light);
}

/* Feature variant with icon */
.gs-features {
  background: var(--gs-bg-alt);
}

.gs-value-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.4rem;
  background: var(--gs-accent-light);
  border: 1px solid var(--gs-border-gold);
  border-radius: 24px 6px 24px 6px;
}

.gs-value-icon img {
  width: 34px;
  height: 34px;
}

/* --- Testimonials (dark navy stage) --- */
.gs-testimonials {
  position: relative;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(208, 151, 51, 0.12), transparent 60%),
    var(--gs-primary-dark);
  padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem;
  overflow: hidden;
}

.gs-testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.14;
  pointer-events: none;
}

.gs-testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.gs-icon-circle {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.3rem;
  border: 1px solid rgba(233, 185, 94, 0.4);
  border-radius: 50%;
  color: var(--gs-accent-bright);
  font-size: 1.5rem;
}

.gs-testimonials label {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gs-accent-bright);
  margin-bottom: 0.8rem;
}

.gs-testimonials h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  color: var(--gs-dark-heading);
  margin-bottom: 1rem;
}

.gs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.6rem;
  text-align: left;
}

.gs-testimonial {
  position: relative;
  background: rgba(255, 253, 248, 0.045);
  border: 1px solid rgba(233, 185, 94, 0.18);
  border-radius: 6px;
  padding: 2.1rem 1.9rem 1.9rem;
  transition: border-color 0.4s ease, transform 0.4s ease, background-color 0.4s ease;
}

.gs-testimonial:hover {
  border-color: rgba(233, 185, 94, 0.45);
  background: rgba(255, 253, 248, 0.07);
  transform: translateY(-4px);
}

/* Oversized serif quote mark */
.gs-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.2rem;
  right: 1.3rem;
  font-family: var(--gs-font-heading);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--gs-accent);
  opacity: 0.28;
  pointer-events: none;
}

.gs-testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.gs-testimonial-avatar {
  width: 46px;
  height: 46px;
  padding: 9px;
  background: var(--gs-accent-light);
  border: 1px solid rgba(233, 185, 94, 0.35);
  border-radius: 50%;
}

.gs-testimonial-info h3 {
  font-size: 1.22rem;
  color: var(--gs-dark-heading);
  line-height: 1.2;
}

.gs-testimonial-info p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gs-dark-text-soft);
}

.gs-testimonial-text {
  font-family: var(--gs-font-heading);
  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--gs-dark-text);
}


/* ============================================================
   11  GALLERIES
   ============================================================ */

/* --- About: arched kitchen gallery --- */
.gs-about-gallery {
  background: var(--gs-bg-alt);
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.gs-about-gallery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.gs-about-gallery-inner h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  margin-bottom: 0.6rem;
}

.gs-about-gallery-inner h2 span {
  font-style: italic;
  color: var(--gs-accent-dark);
}

.gs-about-gallery-inner h2::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 1px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
}

.gs-about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.8rem;
}

.gs-about-gallery-item {
  position: relative;
  border-radius: 44px 6px 44px 6px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
}

/* Alternate the sweep direction for a modern rhythm */
.gs-about-gallery-item:nth-child(even) {
  border-radius: 6px 44px 6px 44px;
}

/* Inner gold line appears on hover */
.gs-about-gallery-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(233, 185, 94, 0.9);
  border-radius: 36px 4px 36px 4px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.gs-about-gallery-item:nth-child(even)::after {
  border-radius: 4px 36px 4px 36px;
}

.gs-about-gallery-item:hover::after {
  opacity: 1;
}

.gs-about-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-about-gallery-item:hover img {
  transform: scale(1.06);
}

/* --- About: wide banner trio --- */
.gs-about-gallery-alt {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
}

.gs-about-gallery-alt-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gs-about-gallery-alt-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
}

.gs-about-gallery-alt-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-about-gallery-alt-item:hover img {
  transform: scale(1.05);
}

/* --- Our Food: wall of nine arches --- */
.gs-food-gallery {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(4rem, 8vw, 7rem);
}

.gs-food-gallery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.gs-food-gallery-inner h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  margin-bottom: 0.7rem;
}

.gs-food-gallery-inner h2::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 1px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
}

.gs-food-gallery-inner .gs-section-desc {
  margin: 0 auto;
  text-align: center;
}

.gs-food-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.gs-food-gallery-item {
  position: relative;
  border-radius: 48px 6px 48px 6px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
}

/* Alternate the sweep direction for a modern rhythm */
.gs-food-gallery-item:nth-child(even) {
  border-radius: 6px 48px 6px 48px;
}

.gs-food-gallery-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(233, 185, 94, 0.9);
  border-radius: 40px 4px 40px 4px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.gs-food-gallery-item:nth-child(even)::after {
  border-radius: 4px 40px 4px 40px;
}

.gs-food-gallery-item:hover::after {
  opacity: 1;
}

.gs-food-gallery-item img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-food-gallery-item:hover img {
  transform: scale(1.06);
}


/* ============================================================
   12  FAQ
   ============================================================ */

.gs-faq,
.gs-faq-section {
  background: var(--gs-faq-section-bg);
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.gs-faq-container,
.gs-faq-inner {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  background: var(--gs-faq-container-bg);
  border: 1px solid var(--gs-border-gold);
  border-radius: 8px;
  padding: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
}

/* Corner brackets */
.gs-faq-container::before,
.gs-faq-inner::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--gs-accent);
  border-left: 2px solid var(--gs-accent);
  border-radius: 4px 0 0 0;
  opacity: 0.55;
  pointer-events: none;
}

.gs-faq-container::after,
.gs-faq-inner::after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid var(--gs-accent);
  border-right: 2px solid var(--gs-accent);
  border-radius: 0 0 4px 0;
  opacity: 0.55;
  pointer-events: none;
}

.gs-faq-title,
.gs-faq-container > h2,
.gs-faq-inner > h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.7rem);
  margin-bottom: 0.8rem;
  text-wrap: balance;
}

.gs-faq-desc {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.8;
}

.gs-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem 3.2rem;
  margin-top: 2.6rem;
  text-align: left;
}

.gs-faq-category > h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.42rem;
  margin-bottom: 0.4rem;
}

.gs-faq-category > h3::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--gs-accent);
}

.gs-faq-item {
  border-bottom: 1px solid var(--gs-border);
}

.gs-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.05rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--gs-font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gs-dark);
  transition: color 0.3s ease;
}

.gs-faq-question:hover {
  color: var(--gs-accent-dark);
}

.gs-faq-question i {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--gs-accent-dark);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-faq-question[aria-expanded="true"] .ri-add-line {
  transform: rotate(45deg);
}

.gs-faq-question[aria-expanded="true"] .ri-arrow-down-s-line {
  transform: rotate(-180deg);
}

.gs-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease,
              transform 0.4s ease, padding-bottom 0.4s ease;
}

.gs-faq-answer.open {
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1.3rem;
}

.gs-faq-answer p {
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.gs-faq-answer ul {
  margin: 0.4rem 0 0.6rem;
}

.gs-faq-answer li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1.25rem;
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.6;
}

.gs-faq-answer li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.95em;
  width: 5px;
  height: 5px;
  background: var(--gs-accent);
  transform: rotate(45deg);
}


/* ============================================================
   13  MAP & CONTACT
   ============================================================ */

.gs-map-section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.gs-map-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.5rem;
  align-items: stretch;
}

.gs-map-embed {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gs-border-gold);
  box-shadow: var(--gs-shadow);
}

.gs-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* Navy information panel */
.gs-map-info {
  position: relative;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(208, 151, 51, 0.1), transparent 60%),
    var(--gs-primary-dark);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.gs-map-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.14;
  pointer-events: none;
}

.gs-map-info > * {
  position: relative;
  z-index: 1;
}

.gs-map-info h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--gs-dark-heading);
  margin-bottom: 1.6rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--gs-dark-border);
}

.gs-map-info-block {
  margin-bottom: 1.4rem;
}

.gs-map-info-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gs-accent-bright);
  margin-bottom: 0.4rem;
}

.gs-map-info-label i {
  font-size: 1rem;
}

.gs-map-info-text {
  color: var(--gs-dark-text);
  font-weight: 300;
  line-height: 1.75;
}

.gs-map-info .gs-inline-link {
  color: var(--gs-dark-heading);
  text-decoration-color: rgba(233, 185, 94, 0.45);
}

.gs-map-info .gs-inline-link:hover {
  color: var(--gs-accent-bright);
}

.gs-map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* --- Contact page --- */
.gs-contact-section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.gs-contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}

.gs-contact-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gs-border-gold);
  box-shadow: var(--gs-shadow);
  min-height: 440px;
}

.gs-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.gs-contact-info h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 0.9rem;
}

.gs-contact-info h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--gs-accent);
  margin-top: 0.9rem;
}

.gs-contact-info > p {
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.gs-contact-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gs-contact-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--gs-text);
  font-weight: 400;
  transition: color 0.3s ease;
}

.gs-contact-list a:hover {
  color: var(--gs-accent-dark);
}

.gs-contact-list i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  font-size: 1.05rem;
  color: var(--gs-accent-dark);
  background: var(--gs-accent-light);
  border: 1px solid var(--gs-border-gold);
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.gs-contact-list a:hover i {
  background: var(--gs-accent);
  color: #14252c;
}

.gs-contact-hours {
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-left: 2px solid var(--gs-accent);
  border-radius: 6px;
  padding: 1.7rem 1.9rem;
  box-shadow: var(--gs-shadow);
}

.gs-contact-hours h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.gs-contact-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.94rem;
  border-bottom: 1px dashed var(--gs-border);
}

.gs-contact-hours li:last-child {
  border-bottom: none;
}

.gs-contact-hours li span:first-child {
  color: var(--gs-dark);
  font-weight: 500;
}

.gs-contact-hours li span:last-child {
  color: var(--gs-text-light);
  font-weight: 300;
}


/* ============================================================
   14  CTA BANDS
   ============================================================ */

.gs-location-cta {
  position: relative;
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, rgba(208, 151, 51, 0.16), transparent 62%),
    var(--gs-primary-dark);
  padding: clamp(4.5rem, 9vw, 7rem) 1.5rem;
  text-align: center;
  overflow: hidden;
}

.gs-location-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.14;
  pointer-events: none;
}

.gs-location-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

/* Ornamental diamond above the heading */
.gs-location-cta-inner::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto 1.6rem;
  border: 1px solid var(--gs-accent-bright);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(233, 185, 94, 0.12);
}

.gs-location-cta h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: var(--gs-dark-heading);
  text-wrap: balance;
  margin-bottom: 1.1rem;
}

.gs-location-cta p {
  color: var(--gs-dark-text);
  font-weight: 300;
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 2.4rem;
}

.gs-location-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


/* ============================================================
   15  REVIEWS & INFO BOXES (LANDING PAGES)
   ============================================================ */

/* Dish page reviews */
.gs-reviews {
  background: var(--gs-bg-alt);
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
  text-align: center;
}

.gs-reviews > h2,
.gs-reviews .gs-heading {
  margin-bottom: 0.8rem;
}

.gs-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  max-width: var(--max-width);
  margin: 2.6rem auto 0;
  text-align: left;
}

.gs-review-card,
.review-card {
  position: relative;
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-radius: 6px;
  padding: 1.9rem 1.8rem;
  box-shadow: var(--gs-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gs-review-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gs-shadow-hover);
}

.gs-review-card::before,
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.3rem;
  right: 1.2rem;
  font-family: var(--gs-font-heading);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--gs-accent);
  opacity: 0.2;
  pointer-events: none;
}

.gs-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.gs-reviewer-info h3,
.reviewer-name {
  font-family: var(--gs-font-heading);
  font-size: 1.2rem;
  color: var(--gs-dark);
}

.gs-review-date {
  font-size: 0.8rem;
  color: var(--gs-text-light);
}

.gs-review-rating,
.review-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--gs-star-color);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.gs-review-text,
.review-text {
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--gs-text-light);
  font-style: italic;
}

.reviewer-name {
  display: block;
  margin-top: 1rem;
  font-style: normal;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
  text-align: left;
}

/* Landing content sections (winnipeg page) */
.gs-content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
}

.gs-content-section .gs-section-heading::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
}

.gs-content-section > .gs-section-desc {
  margin-bottom: 1rem;
}

.gs-delivery-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.gs-info-box {
  position: relative;
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-top: 2px solid var(--gs-accent);
  border-radius: 6px;
  padding: 1.9rem 1.9rem 1.6rem;
  box-shadow: var(--gs-shadow);
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gs-info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--gs-shadow-hover);
}

.gs-info-box h3 {
  font-size: 1.42rem;
  margin-bottom: 0.8rem;
}

.gs-info-box li {
  padding: 0.5rem 0;
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--gs-text-light);
  line-height: 1.65;
  border-bottom: 1px dashed var(--gs-border-light);
}

.gs-info-box li:last-child {
  border-bottom: none;
}

.gs-info-box li strong {
  color: var(--gs-dark);
  font-weight: 500;
}

/* Dish page: about section + feature list */
.gs-about-dish {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
}

.gs-about-dish-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.gs-about-dish-inner .gs-heading {
  margin-bottom: 1rem;
}

.gs-about-dish-inner .gs-section-desc {
  margin: 0 auto 1rem;
  text-align: center;
}

.gs-dish-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 2.4rem;
  margin-top: 1.8rem;
  text-align: left;
}

.gs-dish-features li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  font-weight: 300;
  color: var(--gs-text);
  line-height: 1.6;
}

.gs-dish-features li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 1.15em;
  width: 6px;
  height: 6px;
  background: var(--gs-accent);
  transform: rotate(45deg);
}

.gs-dish-price {
  margin-top: 0.5rem;
}


/* ============================================================
   16  DELIVERY / TAKEOUT PAGES (LEGACY CLASSES)
   ============================================================ */

.section__header {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  text-align: center;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.section__header::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  margin: 1.05rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
}

.section-header-centered {
  text-align: center;
}

/* How-to-order timeline */
.how-to-order-steps {
  max-width: 780px;
  margin: 2.8rem auto 0;
  display: grid;
  gap: 2.1rem;
}

.order-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 1.5rem;
  row-gap: 0.15rem;
}

/* Number, heading and copy are siblings — pin the number to column one */
.order-step .step-number {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.order-step h3,
.order-step p {
  grid-column: 2;
}

/* Dashed gold connector between steps */
.order-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 62px;
  bottom: -2.1rem;
  border-left: 1px dashed var(--gs-border-gold);
}

.step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  font-family: var(--gs-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gs-accent-dark);
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-gold);
  border-radius: 50%;
  box-shadow: var(--gs-shadow);
}

.order-step h3 {
  font-size: 1.4rem;
  margin: 0.35rem 0 0.4rem;
}

.order-step p {
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.75;
}

.order-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Delivery area cards */
.delivery-areas-grid,
.delivery-areas-grid-styled {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.6rem;
}

.delivery-area-card {
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-top: 2px solid var(--gs-accent);
  border-radius: 6px;
  padding: 2.1rem 2.2rem;
  box-shadow: var(--gs-shadow);
}

.delivery-area-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.delivery-area-card-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-weight: 300;
  color: var(--gs-text);
  border-bottom: 1px dashed var(--gs-border-light);
}

.delivery-area-card-list li:last-child {
  border-bottom: none;
}

.delivery-area-card-list i {
  color: var(--gs-accent-dark);
  font-size: 1rem;
}

.delivery-note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--gs-text-light);
  font-weight: 300;
}

/* Explore split (image + content) */
.explore__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.section-reverse .explore__image {
  order: 2;
}

.explore__image {
  position: relative;
}

.explore__image::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid var(--gs-border-gold);
  border-radius: 8px;
  pointer-events: none;
}

.explore__image img {
  position: relative;
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--gs-shadow);
}

.explore__content .section__header {
  text-align: left;
}

.explore__content .section__header::after {
  margin-left: 0;
  background: linear-gradient(90deg, var(--gs-accent), transparent);
}

.explore__content p {
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.popular-dishes-list {
  margin: 1.2rem 0 1.6rem;
}

.popular-dishes-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-weight: 300;
  color: var(--gs-text);
}

.popular-dishes-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 1.05em;
  width: 6px;
  height: 6px;
  background: var(--gs-accent);
  transform: rotate(45deg);
}

.popular-dishes-list li strong {
  color: var(--gs-dark);
  font-weight: 500;
}

.explore__btn {
  margin-top: 1.6rem;
}

/* Navy CTA panel */
.cta__container {
  position: relative;
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, rgba(208, 151, 51, 0.16), transparent 62%),
    var(--gs-primary-dark);
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  margin-top: 2rem;
  margin-bottom: clamp(3.75rem, 7vw, 6rem);
}

.cta__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.14;
  pointer-events: none;
}

.cta__container > * {
  position: relative;
  z-index: 1;
}

.cta__container .section__header {
  color: var(--gs-dark-heading);
}

.cta__container p {
  color: var(--gs-dark-text);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Location box (delivery page) */
.location-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  margin-top: 2.6rem;
}

.location-box__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.location-box__info {
  padding: 2.6rem 2.5rem;
}

.location-box__info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.location-box__info p {
  color: var(--gs-text-light);
  font-weight: 300;
  margin-bottom: 0.6rem;
}

.location-box__hours {
  margin: 1.4rem 0;
  padding: 1.2rem 0;
  border-top: 1px dashed var(--gs-border);
  border-bottom: 1px dashed var(--gs-border);
}

.location-box__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

/* Map + contact block (takeout page) */
.map-contact-section {
  background: var(--gs-bg-alt);
}

.map-contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: stretch;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gs-border-gold);
  box-shadow: var(--gs-shadow);
  min-height: 400px;
}

.map-wrapper iframe,
.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 8px;
}

.gs-content-section .map-iframe {
  box-shadow: var(--gs-shadow);
  border: 1px solid var(--gs-border-gold);
  margin-top: 2.2rem;
}

.contact-details-box {
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-left: 2px solid var(--gs-accent);
  border-radius: 8px;
  padding: 2.4rem 2.3rem;
  box-shadow: var(--gs-shadow);
}

.contact-details-box h3 {
  font-size: 1.55rem;
  margin-bottom: 1.1rem;
}

.contact-details-box .address,
.contact-details-box .phone,
.contact-details-box .hours {
  margin-bottom: 1.1rem;
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.75;
}

.contact-details-box strong {
  color: var(--gs-dark);
  font-weight: 500;
}

.map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn-directions {
  background: transparent;
  border-color: rgba(22, 57, 68, 0.4);
  color: var(--gs-primary-dark);
}

.btn-directions:hover {
  background: var(--gs-primary);
  border-color: var(--gs-primary);
  color: #f4efe4;
}


/* ============================================================
   17  LOCATION CARDS (PLACES PAGES)
   ============================================================ */

.location-card-section .section__header {
  margin-bottom: 2.4rem;
}

.location-card-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
}

.location-card-map {
  min-height: 400px;
}

.location-card-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.location-card-info {
  padding: 2.5rem 2.4rem;
}

.location-card-title {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.location-card-title::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--gs-accent);
  margin-top: 0.7rem;
}

.location-card-address,
.location-card-phone {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--gs-dark);
  margin-bottom: 0.25rem;
}

.location-card-address-line {
  color: var(--gs-text-light);
  font-weight: 300;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.location-info-icon {
  color: var(--gs-accent-dark);
  font-size: 1.05rem;
}

.location-card-phone-link {
  color: var(--gs-dark);
  transition: color 0.25s ease;
}

.location-card-phone-link:hover {
  color: var(--gs-accent-dark);
}

.location-card-hours-title {
  font-size: 1.2rem;
  margin: 1.3rem 0 0.5rem;
}

.location-card-hours-text,
.location-card-hours-last {
  color: var(--gs-text-light);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
}

.location-card-hours-last {
  margin-bottom: 0.4rem;
}

.location-card-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}


/* ============================================================
   18  MENU PAGE
   ============================================================ */

/* Hero */
.header__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.header__image {
  position: relative;
}

.header__image::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid var(--gs-border-gold);
  border-radius: 8px;
  pointer-events: none;
}

.header__image img {
  position: relative;
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--gs-shadow);
}

.header__content h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 1.2rem;
}

.header__content h1 span {
  display: block;
  font-family: var(--gs-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gs-accent-dark);
  margin-top: 0.9rem;
}

.header__content .gs-section-desc {
  margin-bottom: 1.9rem;
}

/* Best dishes cards */
.best-dishes {
  background: var(--gs-bg-alt);
  border-radius: 10px;
}

.best-dishes-header h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  text-align: center;
  text-wrap: balance;
  margin-bottom: 0.6rem;
}

.best-dishes-header h2::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  margin: 1.05rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.6rem;
}

.cards_item {
  display: flex;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-hover);
}

.card_image {
  overflow: hidden;
}

.card_image img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card_image img {
  transform: scale(1.05);
}

.card_content {
  padding: 1.5rem 1.7rem 1.8rem;
}

.card_title {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.card_title::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 1px;
  background: var(--gs-accent);
  margin-top: 0.6rem;
}

.card_text p {
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gs-text-light);
}

/* Menu heading — ported verbatim from the production United Punjab site */
.menu-heading {
  margin: auto;
  padding: 0 1rem;
}

.menu-heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.menu-heading-wrapper .menu-title {
  font-size: 60px;
  font-weight: 700;
}

.menu-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.menu-btn-wrapper a {
  color: #fff;
  background-color: var(--gs-primary-dark);
  border-color: var(--gs-primary-dark);
}

.menu-btn-wrapper a:hover {
  color: var(--gs-primary-dark);
  background-color: #fff;
  border: 2px solid var(--gs-primary-dark);
}

@media only screen and (max-width: 600px) {
  .menu-heading-wrapper .menu-title {
    font-size: 36px;
  }
}

.header__btn {
  margin-top: 0.4rem;
}

/* Menu body — sticky category sidebar + card grid (production design) */
.menu {
  margin: 0 auto;
}

.menu-container {
  gap: 30px;
  margin: 0 auto;
  max-width: 1300px;
  min-height: 600px;
  transition: min-height 0.5s ease;
}

.menu-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0;
  white-space: normal;
  gap: 10px;
}

.menu-button {
  font-family: var(--gs-font-body);
  font-size: 1.1rem;
  background: none;
  border: none;
  color: var(--gs-text);
  margin: 0 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-button::after {
  content: "";
  margin-top: 0.5rem;
  display: block;
  width: 0;
  height: 2px;
  background: var(--gs-primary);
  transition: width 0.4s ease-out;
}

.menu-button:hover::after {
  width: 100%;
}

.menu-button:hover {
  opacity: 0.8;
}

.active-button {
  color: var(--gs-primary);
  opacity: 0.8;
  font-weight: bold;
}

.active-button:after {
  content: "";
  margin: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gs-primary);
}

.menu-items {
  margin: 2rem 0;
  transition: all 0.5s ease;
}

.menu-item {
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  margin: 0.7rem 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  animation: appear 2s;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.item-details {
  padding: 1rem;
}

.item-price {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: rgb(37, 37, 37);
  opacity: 0.8;
}

.item-desc span {
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (min-width: 600px) {
  .menu-item {
    display: grid;
    align-items: center;
    padding: 1rem;
    column-gap: 1rem;
  }

  .item-details {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .menu-item {
    padding: 0rem;
  }

  .item-details {
    padding: 0.5rem;
  }

  .item-name {
    font-size: 1rem;
  }

  .item-price {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }

  .item-desc {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .menu-item img {
    max-width: 80px;
    height: auto;
  }

  .fixed-nav {
    position: fixed;
    top: var(--gs-nav-height-mobile);
    width: 100%;
    max-width: 100%;
    background-color: white;
    z-index: 4;
    left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .menu-buttons.fixed-nav {
    top: calc(var(--gs-nav-height-mobile) - 3px);
    margin-top: 2.5px;
    padding-top: 12px;
    padding-bottom: 10px;
    background-color: #2d2d2d;
  }

  .menu-buttons.fixed-nav .menu-button {
    color: #fff;
  }

  .menu-buttons.fixed-nav .menu-button.active-button:after {
    margin-top: 3px;
    height: 3px;
  }
}

/* Desktop: sticky rounded sidebar of categories beside the item grid */
@media only screen and (min-width: 768px) {
  .menu-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }

  .menu-buttons {
    flex-direction: column;
    width: 25%;
    position: sticky;
    top: var(--gs-nav-height);
    margin: 0;
    padding: 1.4rem 0;
    gap: 5px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
      rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  }

  .menu-button {
    font-size: 0.9rem;
    text-align: left;
    padding: 0.2rem 0.8rem;
    background-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0;
  }

  .menu-items {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 1rem;
    margin: 0;
  }

  .menu-item {
    border-radius: 0.6rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    margin-top: 0;
    transition: all 0.3s ease-in-out;
    background: #ffffff;
  }

  .menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 15px 15px rgba(0, 0, 0, 0.15);
  }

  .item-price {
    color: var(--gs-primary);
  }
}

@media only screen and (min-width: 992px) {
  .menu-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 1200px) {
  .menu-buttons {
    width: 30%;
  }

  .menu-button {
    width: 85%;
  }
}

/* Mobile category headers injected by JS */
.category-header {
  background-color: var(--gs-accent-light);
  color: var(--gs-primary-dark);
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.2rem;
  text-align: center;
  display: none;
}

@media (max-width: 768px) {
  .category-header {
    display: block;
  }
}

/* Mobile search + category dropdown — JS toggles visibility */
@media (max-width: 768px) {
  .menu-buttons {
    display: none;
  }

  .mobile-menu-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(250, 246, 238, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gs-border-light);
    position: sticky;
    top: var(--gs-nav-height-mobile);
    z-index: 995; /* below .nav__container (1000) so the open nav menu covers this bar */
    box-shadow: 0 10px 26px rgba(22, 40, 47, 0.08);
  }

  #menu-search {
    flex-grow: 1;
    min-width: 0;
    font-family: var(--gs-font-body);
    font-size: 15px;
    color: var(--gs-dark);
    background-color: var(--gs-cream);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a87616' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    border: 1px solid var(--gs-border);
    border-radius: 999px;
    padding: 10px 16px 10px 40px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  #menu-search::placeholder {
    color: var(--gs-text-light);
    font-weight: 300;
  }

  #menu-search:focus {
    outline: none;
    border-color: var(--gs-accent);
    box-shadow: 0 0 0 3px var(--gs-accent-light);
  }

  .dropdown {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
  }

  .dropbtn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--gs-font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    background-color: var(--gs-primary-dark);
    color: #f4efe4;
    padding: 10px 18px;
    border: 1px solid var(--gs-primary-dark);
    cursor: pointer;
    border-radius: 999px;
    max-width: 46vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.25s ease;
  }

  .dropbtn i,
  .dropbtn .fa,
  .dropbtn .fa-caret-down {
    color: var(--gs-accent-bright);
  }

  .dropbtn:active {
    background-color: var(--gs-primary);
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background-color: var(--gs-cream);
    min-width: 210px;
    border: 1px solid var(--gs-border);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(22, 40, 47, 0.08), 0 22px 46px rgba(22, 40, 47, 0.2);
    z-index: 1;
    max-height: 350px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--gs-accent) transparent;
  }

  .dropdown-content::-webkit-scrollbar {
    width: 7px;
  }

  .dropdown-content::-webkit-scrollbar-track {
    background: transparent;
  }

  .dropdown-content::-webkit-scrollbar-thumb {
    background: var(--gs-accent);
    border-radius: 4px;
  }

  .dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--gs-accent-dark);
  }

  .dropdown-content a {
    color: var(--gs-text);
    font-size: 14.5px;
    padding: 11px 18px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--gs-border-light);
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .dropdown-content a:last-of-type {
    border-bottom: none;
  }

  .dropdown-content a:hover {
    background-color: var(--gs-accent-light);
    color: var(--gs-accent-dark);
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-menu-controls {
    display: none;
  }
}

.scroll-indicator {
  position: sticky;
  bottom: 0;
  height: 26px;
  background: linear-gradient(180deg, transparent, var(--gs-cream));
  pointer-events: none;
}


/* ============================================================
   19  PRIVACY & TERMS
   ============================================================ */

.header__terms {
  align-items: center;
}

.privacy__image {
  border-radius: 8px;
}

.header__terms .header__content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.privacy-policy-content {
  max-width: 860px;
}

.privacy-main-desc {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gs-text);
  margin-bottom: 2.4rem;
}

.privacy-item {
  margin-bottom: 2.4rem;
}

.privacy-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.privacy-title::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: var(--gs-accent);
  flex-shrink: 0;
}

.privacy-desc {
  color: var(--gs-text-light);
  font-weight: 300;
  line-height: 1.85;
}

.privacy-desc a {
  color: var(--gs-accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content-lists ul {
  margin: 0.6rem 0 0.6rem 0.2rem;
}

.privacy-content-lists ul li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.4rem;
  color: var(--gs-text-light);
  font-weight: 300;
}

.privacy-content-lists ul li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.95em;
  width: 5px;
  height: 5px;
  background: var(--gs-accent);
  transform: rotate(45deg);
}


/* ============================================================
   20  FOOTER
   ============================================================ */

.footer {
  position: relative;
  background: var(--gs-footer-bg);
  border-top: 1px solid var(--gs-dark-border);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gs-grain);
  opacity: 0.12;
  pointer-events: none;
}

.footer__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: 4.2rem;
  padding-bottom: 3.2rem;
}

.footer__logo__img {
  width: 150px;
  margin-bottom: 1.2rem;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(233, 185, 94, 0.35), 0 6px 18px rgba(4, 16, 20, 0.3);
}

.footer__description {
  color: var(--gs-footer-text);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 260px;
}

.footer__col h4 {
  font-family: var(--gs-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gs-accent-bright);
  margin-bottom: 1.3rem;
}

.footer__col h4::after {
  content: "";
  display: block;
  width: 1.9rem;
  height: 1px;
  background: rgba(233, 185, 94, 0.45);
  margin-top: 0.65rem;
}

.footer__links li {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gs-footer-text);
  padding: 0.22rem 0;
}

.footer__links a {
  color: var(--gs-footer-text);
  transition: color 0.25s ease;
}

.footer__links a[href]:hover {
  color: var(--gs-accent-bright);
}

.social-icons-wrapper {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(233, 185, 94, 0.35);
  border-radius: 50%;
  color: var(--gs-accent-bright);
  font-size: 1.05rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background: var(--gs-accent);
  color: #14252c;
  transform: translateY(-3px);
}

.footer__policy {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
  padding: 1.3rem 1.5rem;
  border-top: 1px solid rgba(233, 185, 94, 0.14);
}

.footer__policy a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gs-footer-text);
  transition: color 0.25s ease;
}

.footer__policy a:hover {
  color: var(--gs-accent-bright);
}

.footer__bar,
.footer__company {
  position: relative;
  z-index: 1;
  background: var(--gs-footer-bar-bg);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--gs-footer-text);
}

.footer__bar {
  padding: 1rem 1.5rem 0.2rem;
}

.footer__company {
  padding: 0.2rem 1.5rem 1.1rem;
}

.footer__company a {
  color: var(--gs-footer-text);
  transition: color 0.25s ease;
}

.footer__company span {
  color: var(--gs-accent-bright);
  font-weight: 500;
}

.footer__company a:hover {
  color: var(--gs-dark-heading);
}


/* ============================================================
   21  SCROLL REVEALS & MOTION
   ============================================================ */

/* Applied by script.js via IntersectionObserver */
.gs-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--gs-reveal-delay, 0s);
}

.gs-reveal-left {
  transform: translateX(-40px);
}

.gs-reveal-right {
  transform: translateX(40px);
}

.gs-reveal.gs-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .gs-reveal {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   22  PAGE FLOW & SECTION TRANSITIONS
   Each page gets its own signature transition — no two alike.
   ============================================================ */

/* --- HOME: the signature story rises out of the hero as a card --- */
#signature-dish {
  background: transparent;
  position: relative;
  z-index: 2;
  padding-top: 0;
}

#signature-dish .gs-location-inner {
  background: var(--gs-cream);
  border: 1px solid var(--gs-border-light);
  border-top: 3px solid var(--gs-accent);
  border-radius: 14px;
  box-shadow: var(--gs-shadow-hover);
  padding: clamp(1.8rem, 4vw, 3.5rem);
  margin-top: -84px;
}

/* --- HOME: popular dishes floats as a full plate-curved slab --- */
#about {
  background: transparent;
}

.gs-dishes {
  border-radius: 50% / 58px;
}

/* --- ABOUT: hero exits on a diagonal cut --- */
.gs-about-hero {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
  margin-bottom: -1px;
}

/* --- ABOUT: testimonials open with a quote-bubble notch --- */
.gs-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 22px solid var(--gs-bg);
}

/* --- CONTACT: the page content slides over the hero like a sheet --- */
.gs-location-hero + .gs-contact-section {
  position: relative;
  z-index: 2;
  margin-top: -64px;
  background: var(--gs-bg);
  border-radius: 44px 44px 0 0;
  padding-top: 4rem;
}

/* Gold grab-handle on the sheet */
.gs-location-hero + .gs-contact-section::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: var(--gs-accent);
  opacity: 0.65;
}

/* --- DISH PAGES: a gold spotlight falls on the dish story --- */
.gs-about-dish {
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(208, 151, 51, 0.09), transparent 62%);
}

/* --- LANDING PAGES: medallion diamonds bridge stacked content sections --- */
.gs-content-section + .gs-content-section::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto 2.4rem;
  border: 1px solid var(--gs-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(208, 151, 51, 0.12);
}

/* --- ABOUT: the "Why Choose Us" band is a skewed parallelogram,
       echoing the hero's diagonal --- */
.gs-features {
  clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
  padding-top: calc(clamp(4rem, 8vw, 7rem) + 30px);
  padding-bottom: calc(clamp(4rem, 8vw, 7rem) + 30px);
}

/* --- CLOSING CTA (about / food / contact / tag pages):
       the navy band tilts up toward the order buttons --- */
.gs-location-cta {
  clip-path: polygon(0 34px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(4.5rem, 9vw, 7rem) + 34px);
}

/* --- TAG PAGES: a hairline-and-dot "gate" seam under the hero --- */
.gs-location-hero:not(#home-hero) + .gs-location-section::before,
#home-hero:not(.gs-location-hero) + .gs-location-section::before {
  content: "";
  display: block;
  width: 158px;
  height: 9px;
  margin: 0 auto clamp(2.2rem, 5vw, 3.5rem);
  background:
    linear-gradient(var(--gs-accent), var(--gs-accent)) left center / 60px 1px no-repeat,
    linear-gradient(var(--gs-accent), var(--gs-accent)) right center / 60px 1px no-repeat,
    radial-gradient(circle, var(--gs-accent) 0 3px, transparent 3.5px) center / 9px 9px no-repeat;
}

/* --- SITE-WIDE: a gold pin where every page meets the footer --- */
.footer {
  overflow: visible;
}

.footer::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: var(--gs-accent);
  z-index: 2;
}

@media (max-width: 768px) {
  #signature-dish .gs-location-inner {
    margin-top: -56px;
  }

  .gs-about-hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
  }

  .gs-location-hero + .gs-contact-section {
    margin-top: -48px;
    border-radius: 28px 28px 0 0;
  }

  .gs-dishes {
    border-radius: 50% / 30px;
  }

  .gs-features {
    clip-path: polygon(0 16px, 100% 0, 100% calc(100% - 16px), 0 100%);
    padding-top: calc(clamp(4rem, 8vw, 7rem) + 16px);
    padding-bottom: calc(clamp(4rem, 8vw, 7rem) + 16px);
  }

  .gs-location-cta {
    clip-path: polygon(0 18px, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(clamp(4.5rem, 9vw, 7rem) + 18px);
  }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .gs-dishes-grid,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer__container {
    grid-template-columns: 1fr 1fr;
    padding-top: 3.4rem;
  }
}

@media (max-width: 900px) {
  .gs-location-inner,
  .gs-map-inner,
  .gs-contact-inner,
  .explore__container,
  .gs-food-hero-container,
  .gs-dish-hero-container,
  .header__container,
  .location-box,
  .location-card-wrapper,
  .map-contact-container {
    grid-template-columns: 1fr;
  }

  .section-reverse .explore__image {
    order: 0;
  }

  .gs-food-hero-image,
  .gs-dish-hero-image {
    order: -1;
  }

  .gs-food-hero-image img,
  .gs-dish-hero-image img {
    width: min(100%, 360px);
  }

  .gs-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .gs-map-embed,
  .gs-map-embed iframe {
    min-height: 340px;
  }

  .gs-contact-map,
  .gs-contact-map iframe {
    min-height: 340px;
  }

  .delivery-areas-grid,
  .delivery-areas-grid-styled {
    grid-template-columns: 1fr;
  }

  .gs-dish-features {
    grid-template-columns: 1fr;
  }

  /* Menu hero image reads better after the text on small screens */
  .header__container .header__image {
    order: 2;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .gs-dishes-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .gs-values-grid {
    grid-template-columns: 1fr;
  }

  .gs-about-gallery-alt-grid {
    grid-template-columns: 1fr;
  }

  .gs-food-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gs-floating-btn {
    right: 1rem;
    bottom: 1rem;
  }

  .gs-floating-btn a {
    font-size: 0.8rem;
    padding: 0.9em 1.4em;
  }

  .gs-location-hero,
  #home-hero.gs-location-hero,
  .gs-about-hero {
    min-height: clamp(480px, 72vh, 640px);
  }
}

@media (max-width: 520px) {
  .gs-about-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .gs-food-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gs-location-cta-buttons,
  .gs-map-buttons,
  .location-box__buttons,
  .location-card-buttons,
  .map-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .gs-location-cta-buttons .gs-btn,
  .gs-map-buttons .gs-btn,
  .location-box__buttons .btn,
  .location-card-buttons .btn,
  .map-buttons .btn {
    width: 100%;
  }

  .order-step {
    grid-template-columns: 46px 1fr;
    gap: 1.1rem;
  }

  .step-number {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }

  .order-step:not(:last-child)::before {
    left: 23px;
    top: 50px;
  }
}
