/* ============================================================
   gs-theme.css — Craving Curries
   Design system adapted from the shared restaurant template.
   Brand recolor: green #59ac4b -> gold #990A0E,
   yellow #f1c65e -> maroon #6E0A12, red glows -> gold glows.
   Fonts: Playfair Display (headings) + Source Sans 3 (body).
   ============================================================ */

/* ============================================ */
/*          Shared Variables & Base             */
/* ============================================ */

:root {
  --gs-red: #990A0E;
  --gs-red-dark: #6E0A12;
  --gs-red-light: rgba(153, 10, 14, 0.1);
  --gs-dark: #1a1a1a;
  --gs-text: #333333;
  --gs-text-light: #6b7280;
  --gs-white: #ffffff;
  --gs-bg: #fafafa;
  --gs-cream: #fdf8f3;
  --gs-border: #e5e7eb;
  --gs-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --gs-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================ */
/*          Shared Typography                   */
/* ============================================ */

.gs-section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gs-red);
  margin-bottom: 0.75rem;
  display: block;
}

.gs-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gs-dark);
  line-height: 1.2;
}

.gs-heading-lg {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

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

.gs-heading-sm {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.gs-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
}

.gs-text-accent {
  color: var(--gs-red);
}

/* ============================================ */
/*          Shared Decorative Divider           */
/* ============================================ */

.gs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.gs-divider-line {
  width: 60px;
  height: 2px;
  background: var(--gs-red);
}

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

/* ============================================ */
/*          Shared Buttons                      */
/* ============================================ */

.gs-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
}

.gs-btn-primary {
  background: var(--gs-red);
  color: var(--gs-white);
  border: 2px solid var(--gs-red);
}

.gs-btn-primary:hover {
  background: var(--gs-red-dark);
  border-color: var(--gs-red-dark);
  transform: translateY(-2px);
}

.gs-btn-outline {
  background: transparent;
  color: var(--gs-red);
  border: 2px solid var(--gs-red);
}

.gs-btn-outline:hover {
  background: var(--gs-red);
  color: var(--gs-white);
}

.gs-btn-dark {
  background: var(--gs-dark);
  color: var(--gs-white);
  border: 2px solid var(--gs-dark);
}

.gs-btn-dark:hover {
  background: #333;
  border-color: #333;
}

/* ============================================ */
/*          Shared Icon Circle                  */
/* ============================================ */

.gs-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gs-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.gs-icon-circle i {
  font-size: 2rem;
  color: var(--gs-red);
}

/* ============================================ */
/*          Shared Floating Button              */
/* ============================================ */

.gs-floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.gs-floating-btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gs-red);
  color: var(--gs-white);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(153, 10, 14, 0.4);
  transition: all 0.3s ease;
}

.gs-floating-btn a:hover {
  background: var(--gs-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(153, 10, 14, 0.5);
}

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

/* ============================================ */
/*          Shared Hero Section                 */
/* ============================================ */

.gs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 90px 1rem 80px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gs-hero {
    min-height: auto;
    padding: 70px 1rem 48px;
  }
}

.gs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.gs-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  z-index: 0;
  filter: brightness(0.7);
}

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

.gs-hero-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  margin-bottom: 2rem;
}

.gs-hero-badge span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gs-white);
}

.gs-hero-badge i {
  color: var(--gs-red);
  margin: 0 0.75rem;
}

.gs-hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #F03A3A;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 0 14px rgba(0, 0, 0, 0.8), 0 1px 1px rgba(0, 0, 0, 1);
}

.gs-hero h1 .accent {
  color: var(--gs-red);
}

.gs-hero-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.gs-hero .gs-divider-line {
  background: var(--gs-red);
}

.gs-hero .gs-divider-icon {
  color: var(--gs-red);
}

.gs-hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.gs-hero-stat {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 1.25rem 2rem;
  border-radius: 8px;
  min-width: 180px;
}

.gs-hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gs-red);
  margin-bottom: 0.25rem;
}

.gs-hero-stat-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.gs-hero-circle {
  position: absolute;
  border: 1px solid rgba(153, 10, 14, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.gs-hero-circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -50px;
}

.gs-hero-circle-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: -30px;
}

.gs-hero-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.25rem;
  color: var(--gs-red);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.gs-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================ */
/*          Shared Achievements Banner          */
/* ============================================ */

.gs-achievements {
  background: var(--gs-red);
  padding: 4rem 1rem;
}

.gs-achievements-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-achievements h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--gs-white);
  margin-bottom: 0.5rem;
}

.gs-achievements-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.gs-achievements-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.gs-achievement {
  text-align: center;
}

.gs-achievement-value {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gs-white);
  margin-bottom: 0.25rem;
}

.gs-achievement-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================ */
/*          Shared Testimonials Section         */
/* ============================================ */

.gs-testimonials {
  padding: 6rem 1rem;
  background: var(--gs-bg);
}

.gs-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gs-testimonial {
  background: var(--gs-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

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

.gs-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gs-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-testimonial-avatar i {
  font-size: 1.25rem;
  color: var(--gs-red);
}

.gs-testimonial-info h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  color: var(--gs-dark);
  margin-bottom: 0.25rem;
}

.gs-testimonial-info span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--gs-text-light);
}

.gs-testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.gs-testimonial p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================ */
/*          Shared CTA Banner                   */
/* ============================================ */

.gs-cta {
  position: relative;
  padding: 6rem 1rem;
  background: var(--gs-dark);
  overflow: hidden;
}

.gs-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/backgrounds/3.webp') center/cover no-repeat;
  opacity: 0.8;
}

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

.gs-cta h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gs-white);
  margin-bottom: 1rem;
}

.gs-cta p {
  font-family: 'Source Sans 3', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.gs-cta .gs-btn-primary {
  background: var(--gs-red);
  border-color: var(--gs-red);
}

.gs-cta .gs-btn-outline {
  color: var(--gs-white);
  border-color: var(--gs-white);
}

.gs-cta .gs-btn-outline:hover {
  background: var(--gs-white);
  color: var(--gs-dark);
}

/* ============================================ */
/*          Shared Breadcrumb                   */
/* ============================================ */

.gs-breadcrumb {
  background: var(--gs-bg);
  padding: 1rem 1.5rem;
  margin-top: 80px;
}

.gs-breadcrumb-list {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
}

.gs-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-breadcrumb-list a {
  color: var(--gs-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.gs-breadcrumb-list a:hover {
  color: var(--gs-red);
}

.gs-breadcrumb-list li:last-child span {
  color: var(--gs-dark);
  font-weight: 500;
}

.gs-breadcrumb-list i {
  color: var(--gs-text-light);
  font-size: 0.8rem;
}

/* ============================================ */
/*          Shared Map Section                  */
/* ============================================ */

.gs-map-section {
  padding: 4rem 1rem;
  background: var(--gs-bg);
}

.gs-map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background: var(--gs-white);
}

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

.gs-map-wrapper {
  min-height: 400px;
}

.gs-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

.gs-map-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gs-white);
}

.gs-map-info h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--gs-dark);
  margin-bottom: 1.5rem;
}

.gs-map-info h4 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--gs-dark);
  margin-bottom: 1.5rem;
}

.gs-map-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.gs-map-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gs-map-detail i {
  font-size: 1.25rem;
  color: var(--gs-red);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.gs-map-detail a {
  color: var(--gs-red);
  font-weight: 600;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
}

.gs-map-detail a:hover {
  text-decoration: underline;
}

.gs-map-detail div,
.gs-map-detail span {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text);
  line-height: 1.5;
}

.gs-map-detail small {
  color: var(--gs-text-light);
  font-size: 0.9rem;
}

.gs-map-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gs-map-buttons .gs-btn {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gs-map-buttons .gs-btn i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .gs-map-info {
    padding: 2rem 1.5rem;
  }

  .gs-map-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gs-map-buttons .gs-btn {
    flex: 1;
    min-width: 140px;
  }
}

/* ============================================ */
/*          Shared Animation                    */
/* ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gs-animate {
  animation: fadeInUp 0.8s ease forwards;
}

.gs-animate-delay-1 { animation-delay: 0.1s; }
.gs-animate-delay-2 { animation-delay: 0.2s; }
.gs-animate-delay-3 { animation-delay: 0.3s; }
.gs-animate-delay-4 { animation-delay: 0.4s; }

/* ============================================ */
/*          Shared Utility                      */
/* ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   INDEX PAGE STYLES
   ============================================================ */

.gs-experience {
  padding: 6rem 1rem;
  background: var(--gs-bg);
}

.gs-experience-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.gs-feature {
  text-align: center;
  padding: 2rem 1.5rem;
}

.gs-feature h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-dark);
  margin-bottom: 1rem;
}

.gs-feature p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.gs-story {
  padding: 2rem;
  background: var(--gs-white);
}

.gs-story-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-story-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gs-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .gs-story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gs-story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gs-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gs-story-text h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gs-red);
  margin-bottom: 1.5rem;
}

.gs-story-text p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gs-menu-categories {
  padding: 6rem 1rem;
  background: var(--gs-white);
}

.gs-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.gs-menu-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

.gs-menu-card:hover img {
  transform: scale(1.08);
}

.gs-menu-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.gs-menu-card-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gs-white);
}

.gs-catering {
  padding: 6rem 1rem;
  background: var(--gs-bg);
}

.gs-catering-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .gs-catering-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gs-catering-text h3 {
  margin-bottom: 2rem;
}

.gs-catering-text p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gs-catering-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.gs-catering-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gs-location {
  padding: 6rem 1rem;
  background: var(--gs-white);
}

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

.gs-location-card {
  background: var(--gs-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.gs-location-card-image {
  position: relative;
  height: 250px;
  background: var(--gs-dark);
}

.gs-location-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.gs-location-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.gs-location-card-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gs-white);
  margin-bottom: 0.25rem;
}

.gs-location-card-overlay p {
  font-family: 'Source Sans 3', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.gs-location-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gs-location-detail i {
  color: var(--gs-red);
  font-size: 1.1rem;
}

.gs-location-detail span {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text);
}

.gs-location-detail a {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-red);
  font-weight: 600;
  text-decoration: none;
}

.gs-location-hours {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

/* Index FAQ Section */
.gs-faq {
  padding: 5rem 1rem;
  background: #f5f5f5;
}

.gs-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 20px;
  padding: 4rem 3rem;
}

.gs-faq-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--gs-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.gs-faq-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gs-faq-divider span {
  width: 60px;
  height: 2px;
  background: var(--gs-red);
}

.gs-faq-divider i {
  color: var(--gs-red);
  font-size: 1.25rem;
}

.gs-faq-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--gs-text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.gs-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

  .gs-faq-container {
    padding: 2.5rem 1.5rem;
  }
}

.gs-faq-category {
  background: var(--gs-white);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.gs-faq-category-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gs-red);
  margin-bottom: 1.25rem;
}

.gs-faq-item {
  border-bottom: 1px solid #f0f0f0;
}

.gs-faq-item:last-child {
  border-bottom: none;
}

.gs-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gs-dark);
  transition: color 0.3s ease;
}

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

.gs-faq-question i {
  font-size: 1.25rem;
  color: var(--gs-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.gs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.gs-faq-answer.open {
  max-height: 500px;
  padding-bottom: 1rem;
}

.gs-faq-answer p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--gs-text-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.gs-faq-answer ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.gs-faq-answer li {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--gs-text-light);
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.gs-faq-answer a {
  color: var(--gs-red);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.gs-faq-answer a:hover {
  color: var(--gs-red-dark);
  text-decoration: underline;
}

.gs-faq-answer strong {
  color: var(--gs-dark);
  font-weight: 600;
}

/* ============================================================
   MENU PAGE STYLES
   ============================================================ */

.gs-menu-hero {
  padding: 160px 1rem 60px;
  background: var(--gs-bg);
  text-align: center;
}

.gs-menu-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.gs-menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gs-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gs-menu-hero p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1.1rem;
}

/* Menu Location Card */
.gs-location-card-section {
  padding: 0 1rem 3rem;
  background: var(--gs-bg);
}

.gs-location-card-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.gs-menu-page .gs-location-card {
  background: var(--gs-cream);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 0;
  overflow: visible;
}

.gs-location-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gs-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.gs-location-card-icon i {
  font-size: 1.5rem;
  color: var(--gs-red);
}

.gs-menu-page .gs-location-card h2 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gs-dark);
  margin-bottom: 0.75rem;
}

.gs-location-card-address {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.gs-location-card-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.gs-location-card-phone i {
  color: var(--gs-red);
}

.gs-location-card-phone a {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-red);
  font-weight: 600;
  text-decoration: none;
}

.gs-location-card-email {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Menu Info Cards */
.gs-info-cards {
  padding: 3rem 1rem;
  background: var(--gs-white);
}

.gs-info-cards-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.gs-info-card {
  background: var(--gs-white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.gs-info-card-icon {
  color: var(--gs-red);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.gs-info-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gs-dark);
  margin-bottom: 0.75rem;
}

.gs-info-card p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Menu Section */
.gs-menu-section {
  padding: 4rem 1rem;
  background: var(--gs-bg);
}

.gs-menu-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.gs-menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.gs-menu-tabs .menu-button {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  background: var(--gs-white);
  color: var(--gs-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gs-menu-tabs .menu-button:hover {
  border-color: var(--gs-red);
  color: var(--gs-red);
}

.gs-menu-tabs .menu-button.active-button {
  background: var(--gs-red);
  border-color: var(--gs-red);
  color: var(--gs-white);
}

.gs-menu-section .category-header {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--gs-dark);
  text-align: center;
  margin: 3rem 0 2rem;
  padding-bottom: 1rem;
}

.gs-menu-section .category-header:first-of-type {
  margin-top: 0;
}

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

/* Desktop Grid Layout with Sidebar */
@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 !important;
    width: 25%;
    position: sticky;
    top: 85px;
    margin: 0;
    padding: 1.4rem 0;
    gap: 5px;
    border-radius: 18px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    display: flex !important;
  }

  .menu-button {
    font-size: 0.9rem;
    text-align: left;
    padding: 0.5rem 1rem;
    background-color: #fafafa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .menu-button:hover {
    background-color: rgba(153, 10, 14, 0.1);
    color: var(--gs-red);
  }

  .menu-button.active-button {
    background-color: rgba(153, 10, 14, 0.15);
    color: var(--gs-red);
    font-weight: 600;
  }

  .menu-items {
    flex: 1;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
    margin: 0;
    width: 100%;
  }

  .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;
  }

  .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);
  }
}

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

@media only screen and (min-width: 1400px) {
  .gs-menu-section-inner {
    max-width: 1600px;
  }

  .menu-buttons {
    width: 280px;
    padding: 10px;
  }

  .menu-items {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Mobile Menu Controls */
.gs-mobile-controls {
  display: none;
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 85px;
  z-index: 90;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .gs-mobile-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .gs-menu-tabs {
    display: none;
  }

  .gs-menu-items .menu-item {
    padding: 0rem 1rem;
  }
}

.gs-mobile-controls input#menu-search {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: #333333;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.gs-mobile-controls input#menu-search:focus {
  border-color: #990A0E;
}

.gs-mobile-controls input#menu-search::placeholder {
  color: #9ca3af;
}

.gs-mobile-controls .dropdown {
  position: relative;
  flex-shrink: 0;
  width: 120px;
}

.gs-mobile-controls .dropdown .dropbtn {
  width: 100%;
  height: 44px;
  padding: 0 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
  overflow: hidden;
}

.gs-mobile-controls .dropdown .dropbtn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.gs-mobile-controls .dropdown .dropbtn:hover,
.gs-mobile-controls .dropdown .dropbtn:focus {
  border-color: #990A0E;
}

.gs-mobile-controls .dropdown .dropbtn i {
  color: #6b7280;
  font-size: 12px;
  flex-shrink: 0;
}

.gs-mobile-controls .dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: auto;
  min-width: 200px;
  max-width: 280px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gs-mobile-controls .dropdown .dropdown-content a {
  display: block;
  padding: 12px 14px;
  color: #333333;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
  background: #ffffff;
  white-space: normal;
  word-wrap: break-word;
}

.gs-mobile-controls .dropdown .dropdown-content a:last-child {
  border-bottom: none;
}

.gs-mobile-controls .dropdown .dropdown-content a:hover {
  background: #f9fafb;
  color: #990A0E;
}

/* Mobile Card View */
@media (max-width: 767px) {
  .menu-item {
    padding: 0;
  }

  .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-buttons {
    display: none !important;
  }

  .menu-items {
    margin: 1rem 0;
  }
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

.gs-about-hero {
  padding: 160px 1rem 80px;
  background: var(--gs-bg);
  text-align: center;
}

.gs-about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.gs-about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gs-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gs-about-hero p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.gs-journey {
  padding: 6rem 1rem;
  background: var(--gs-white);
}

.gs-journey-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .gs-journey-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gs-journey-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gs-journey-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gs-journey-text h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--gs-dark);
  margin-bottom: 1rem;
}

.gs-journey-text h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gs-red);
  margin-bottom: 1.5rem;
}

.gs-journey-text p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gs-values {
  padding: 6rem 1rem;
  background: var(--gs-bg);
}

.gs-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gs-value-card {
  background: var(--gs-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gs-value-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gs-dark);
  margin-bottom: 1rem;
}

.gs-value-card p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* About Gallery */
.gs-gallery {
  padding: 6rem 1rem;
  background: var(--gs-white);
}

.gs-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

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

@media (max-width: 576px) {
  .gs-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gs-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.gs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gs-visit {
  padding: 6rem 1rem;
  background: var(--gs-white);
}

.gs-visit-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gs-visit h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gs-dark);
  margin-bottom: 1.5rem;
}

.gs-visit p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gs-visit-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   OUR FOOD PAGE STYLES
   ============================================================ */

.gs-gallery-header {
  padding: 10rem 1.5rem 4rem !important;
  text-align: center !important;
  background: var(--gs-bg) !important;
  margin-top: 0 !important;
  position: relative !important;
}

.gs-gallery-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.gs-gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gs-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gs-gallery-subtitle {
  font-size: 1.1rem;
  color: var(--gs-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gs-gallery-section {
  padding: 4rem 1.5rem 5rem;
  background: var(--gs-white);
}

.gs-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Our Food gallery grid (overrides about gallery's 4-col / 3:4) */
.gs-gallery-section .gs-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gs-gallery-section .gs-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-gallery-section .gs-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gs-gallery-section .gs-gallery-item img {
  transition: transform 0.5s ease;
}

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

.gs-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem 1.25rem 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gs-gallery-item-title {
  color: var(--gs-white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.25rem;
}

.gs-gallery-item-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* Our Food CTA */
.gs-gallery-cta {
  padding: 4rem 1.5rem 6rem;
  background: var(--gs-white);
}

.gs-cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gs-bg);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gs-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gs-dark);
  margin-bottom: 1rem;
}

.gs-cta-text {
  font-size: 1rem;
  color: var(--gs-text-light);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Our Food responsive */
@media (max-width: 1024px) {
  .gs-gallery-section .gs-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gs-gallery-header {
    padding: 7rem 1rem 4rem;
  }

  .gs-gallery-section {
    padding: 3rem 1rem 4rem;
  }

  .gs-gallery-section .gs-gallery-grid {
    gap: 1rem;
  }

  .gs-gallery-cta {
    padding: 3rem 1rem 5rem;
  }

  .gs-cta-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .gs-gallery-section .gs-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gs-gallery-section .gs-gallery-item {
    aspect-ratio: 16/10;
  }

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

  .gs-floating-btn a {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }

  .gs-gallery-cta .gs-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gs-gallery-cta .gs-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Our Food scroll reveal */
.gs-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gs-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.gs-gallery-section .gs-gallery-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gs-gallery-section .gs-gallery-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

.gs-contact-section {
  padding: 5rem 1.5rem;
  background: var(--gs-white);
}

.gs-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gs-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.gs-contact-card {
  background: var(--gs-bg);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gs-contact-card .gs-icon-circle {
  width: 70px;
  height: 70px;
}

.gs-contact-card .gs-icon-circle i {
  font-size: 1.75rem;
}

.gs-contact-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gs-dark);
  margin-bottom: 1rem;
}

.gs-contact-card p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.gs-contact-card a {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.gs-contact-card a:hover {
  color: var(--gs-red-dark);
}

/* Contact Map Section */
.gs-map-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gs-map-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--gs-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .gs-map-box {
    grid-template-columns: 1fr;
  }
}

.gs-map-iframe {
  min-height: 400px;
}

.gs-map-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gs-map-detail-content h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gs-text-light);
  margin-bottom: 0.25rem;
}

.gs-map-detail-content p,
.gs-map-detail-content a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--gs-dark);
}

.gs-map-detail-content a {
  color: var(--gs-red);
  text-decoration: none;
  font-weight: 600;
}

.gs-map-detail-content a:hover {
  text-decoration: underline;
}

/* Social Links Section */
.gs-social-section {
  padding: 5rem 1.5rem;
  background: var(--gs-white);
}

.gs-social-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gs-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.gs-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gs-bg);
  border-radius: 50px;
  text-decoration: none;
  color: var(--gs-dark);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gs-social-link:hover {
  background: var(--gs-red);
  color: var(--gs-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(153, 10, 14, 0.3);
}

.gs-social-link i {
  font-size: 1.5rem;
}

.gs-social-link:hover i {
  color: var(--gs-white);
}

/* Contact Responsive */
@media (max-width: 600px) {
  .gs-contact-section,
  .gs-social-section {
    padding: 3rem 1rem;
  }

  .gs-map-buttons {
    flex-direction: column;
  }

  .gs-map-buttons .gs-btn {
    width: 100%;
    justify-content: center;
  }

  .gs-social-links {
    flex-direction: column;
    align-items: center;
  }

  .gs-social-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============================================================
   DELIVERY PAGE STYLES
   ============================================================ */

.gs-delivery-service {
  padding: 6rem 1rem;
  background: var(--gs-white);
}

.gs-delivery-service-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .gs-delivery-service-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gs-delivery-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gs-delivery-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gs-delivery-text h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--gs-dark);
  margin-bottom: 0.5rem;
}

.gs-delivery-text h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gs-red);
  margin-bottom: 1.5rem;
}

.gs-delivery-text p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gs-delivery-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.gs-delivery-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text);
  font-size: 1rem;
}

.gs-delivery-features li i {
  color: var(--gs-red);
  font-size: 1.25rem;
}

.gs-delivery-areas {
  padding: 6rem 1rem;
  background: var(--gs-bg);
}

.gs-delivery-areas-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.gs-area-card {
  background: var(--gs-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.gs-area-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gs-red);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gs-area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gs-area-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--gs-text-light);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
}

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

.gs-how-to-order {
  padding: 6rem 1rem;
  background: var(--gs-white);
}

.gs-how-to-order-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gs-step {
  text-align: center;
  padding: 1.5rem;
}

.gs-step-number {
  width: 60px;
  height: 60px;
  background: var(--gs-red);
  color: var(--gs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 auto 1.25rem;
}

.gs-step h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gs-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gs-step p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gs-step a {
  color: var(--gs-red);
  font-weight: 600;
  text-decoration: none;
}

.gs-step a:hover {
  text-decoration: underline;
}

/* Delivery CTA Section (red background variant) */
.gs-cta-section {
  padding: 5rem 1rem;
  background: var(--gs-red);
  text-align: center;
}

.gs-cta-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.gs-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gs-white);
  margin-bottom: 1rem;
}

.gs-cta-section p {
  font-family: 'Source Sans 3', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.gs-cta-section .gs-btn-primary {
  background: var(--gs-white);
  color: var(--gs-red);
  border-color: var(--gs-white);
}

.gs-cta-section .gs-btn-primary:hover {
  background: var(--gs-dark);
  color: var(--gs-white);
  border-color: var(--gs-dark);
}

.gs-cta-section .gs-btn-outline {
  color: var(--gs-white);
  border-color: var(--gs-white);
}

.gs-cta-section .gs-btn-outline:hover {
  background: var(--gs-white);
  color: var(--gs-red);
}

/* Delivery/Dish Location Box */
.gs-location-section {
  padding: 6rem 1rem;
  background: var(--gs-bg);
}

.gs-location-box {
  background: var(--gs-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  margin: 0 auto;
}

.gs-location-box-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

@media (max-width: 768px) {
  .gs-location-box-inner {
    grid-template-columns: 1fr;
  }
}

.gs-location-map {
  min-height: 350px;
}

.gs-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gs-location-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gs-white);
}

.gs-location-details h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gs-dark);
  margin-bottom: 1.5rem;
}

.gs-location-info {
  margin-bottom: 1.5rem;
}

.gs-location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gs-text-light);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.gs-location-info-item i {
  color: var(--gs-red);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.gs-location-info-item a {
  color: var(--gs-red);
  text-decoration: none;
  font-weight: 600;
}

.gs-location-info-item a:hover {
  text-decoration: underline;
}

.gs-location-info-item strong {
  color: var(--gs-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.gs-location-buttons .gs-btn {
  padding: 0.875rem 1.5rem;
  font-size: 0.85rem;
}

/* ============================================================
   TAKEOUT PAGE STYLES
   ============================================================ */

.gs-section {
  padding: 6rem 1rem;
}

.gs-section-white {
  background: var(--gs-white);
}

.gs-section-gray {
  background: var(--gs-bg);
}

.gs-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gs-feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.gs-feature ul li {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.gs-feature ul li:last-child {
  border-bottom: none;
}

.gs-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .gs-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gs-image-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gs-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.gs-content-box h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--gs-dark);
  margin-bottom: 1.5rem;
}

.gs-content-box h2 span {
  color: var(--gs-red);
  display: block;
}

.gs-content-box p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gs-content-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.gs-content-box ul li {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gs-content-box ul li i {
  color: var(--gs-red);
}

/* Takeout Location Box (flex variant) */
.gs-location .gs-location-box {
  display: flex;
  flex-wrap: wrap;
  max-width: none;
}

.gs-location .gs-location-map {
  flex: 1 1 50%;
  min-width: 300px;
  min-height: 400px;
}

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

.gs-location .gs-location-info {
  flex: 1 1 50%;
  min-width: 300px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}

.gs-location .gs-location-info h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gs-dark);
  margin-bottom: 2rem;
}

.gs-location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.gs-location-item i {
  color: var(--gs-red);
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}

.gs-location-item a {
  color: var(--gs-text-light);
  text-decoration: none;
}

.gs-location-item a:hover {
  color: var(--gs-red);
}

@media (max-width: 768px) {
  .gs-location .gs-location-box {
    flex-direction: column;
  }

  .gs-location .gs-location-map {
    min-height: 300px;
  }

  .gs-location .gs-location-info {
    padding: 2rem;
  }

  .gs-location .gs-location-buttons {
    flex-direction: column;
  }

  .gs-location .gs-location-buttons .gs-btn {
    width: 100%;
    text-align: center;
  }
}

/* Takeout CTA (red bg variant) */
.gs-cta.gs-cta-red {
  background: var(--gs-red);
  padding: 5rem 1rem;
  text-align: center;
}

.gs-cta.gs-cta-red::before {
  display: none;
}

.gs-cta.gs-cta-red .gs-btn {
  background: var(--gs-white);
  color: var(--gs-red);
  border: 2px solid var(--gs-white);
  margin: 0 0.5rem;
}

.gs-cta.gs-cta-red .gs-btn:hover {
  background: transparent;
  color: var(--gs-white);
}

/* ============================================================
   DISH PAGE STYLES
   ============================================================ */

.gs-dish-hero {
  padding: 140px 1rem 80px;
  background: var(--gs-bg);
}

.gs-dish-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .gs-dish-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gs-dish-content h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: var(--gs-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gs-dish-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.gs-dish-rating i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.gs-dish-rating span {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.gs-dish-description {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.gs-dish-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--gs-text);
}

.gs-dish-feature i {
  color: var(--gs-red);
  font-size: 1.25rem;
}

.gs-dish-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gs-dish-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gs-about-dish {
  padding: 6rem 1rem;
  background: var(--gs-white);
}

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

.gs-about-dish h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--gs-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.gs-about-dish p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gs-about-dish h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gs-dark);
  margin: 2.5rem 0 1rem;
}

.gs-about-dish h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gs-red);
  margin: 2rem 0 1rem;
}

.gs-about-dish ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.gs-about-dish li {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Dish Reviews */
.gs-reviews {
  padding: 6rem 1rem;
  background: var(--gs-bg);
}

.gs-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gs-review-card {
  background: var(--gs-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

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

.gs-reviewer-name {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  color: var(--gs-dark);
  margin-bottom: 0.25rem;
}

.gs-reviewer-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--gs-text-light);
}

.gs-review-stars {
  color: #fbbf24;
}

.gs-review-text {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.gs-review-date {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  color: var(--gs-text-light);
}

/* ============================================================
   REGINA RESTAURANT PAGE STYLES
   ============================================================ */

.gs-about {
  padding: 5rem 1.5rem;
  background: var(--gs-white);
}

.gs-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .gs-about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gs-about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gs-about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gs-about-content h2 {
  margin-bottom: 1rem;
}

.gs-about-content p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Regina Features */
.gs-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gs-feature-card {
  background: var(--gs-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gs-feature-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gs-dark);
  margin-bottom: 1rem;
}

.gs-feature-card p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Regina Dishes */
.gs-dishes {
  padding: 5rem 1.5rem;
  background: var(--gs-white);
}

.gs-dishes-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.gs-dish-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gs-dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gs-dish-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.gs-dish-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
}

.gs-dish-info h4 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gs-white);
  margin-bottom: 0.25rem;
}

.gs-dish-info p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Regina Areas */
.gs-areas {
  padding: 5rem 1.5rem;
  background: var(--gs-white);
}

.gs-areas-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.gs-area-tag {
  background: var(--gs-bg);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--gs-text);
  transition: all 0.3s ease;
}

.gs-area-tag:hover {
  background: var(--gs-red-light);
  color: var(--gs-red);
}

/* Regina FAQ (simple variant) */
.gs-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.gs-faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gs-faq-item {
  background: var(--gs-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Regina responsive */
@media (max-width: 600px) {
  .gs-floating-btn {
    bottom: 1.5rem;
    right: 1rem;
  }

  .gs-floating-btn a {
    padding: 0.875rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ============================================================
   PLACES/LOCATION LANDING PAGE STYLES
   ============================================================ */

/* Places breadcrumb variant */
.gs-breadcrumb.gs-breadcrumb-places {
  padding: 7rem 1rem 1rem;
  margin-top: 0;
}

.gs-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
}

.gs-breadcrumb li {
  color: var(--gs-text-light);
}

.gs-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--gs-text-light);
}

.gs-breadcrumb a {
  color: var(--gs-red);
  text-decoration: none;
}

.gs-breadcrumb a:hover {
  text-decoration: underline;
}

/* Location Hero */
.gs-location-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.gs-location-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

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

.gs-location-hero-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--gs-white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.gs-location-hero-badge i {
  color: var(--gs-red);
}

.gs-location-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gs-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gs-location-hero-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 2rem;
}

/* Places Content Section */
.gs-location-section .gs-location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .gs-location-section .gs-location-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gs-location-content {
  text-align: center;
}

.gs-location-content p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gs-text);
  margin-bottom: 1.5rem;
}

.gs-location-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
}

.gs-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gs-heading span {
  color: var(--gs-red);
  font-style: italic;
}

/* Places CTA */
.gs-location-cta {
  background: linear-gradient(135deg, var(--gs-dark) 0%, #2d2d2d 100%);
  padding: 5rem 1rem;
  text-align: center;
}

.gs-location-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.gs-location-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gs-white);
  margin-bottom: 1rem;
}

.gs-location-cta p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.gs-location-cta .gs-btn-outline {
  border-color: var(--gs-white);
  color: var(--gs-white);
}

.gs-location-cta .gs-btn-outline:hover {
  background: var(--gs-white);
  color: var(--gs-dark);
}

/* Places Info Box */
.gs-info-box {
  background: var(--gs-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--gs-shadow);
  margin-top: 2rem;
  text-align: left;
}

.gs-info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gs-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gs-border);
  text-align: center;
}

.gs-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gs-border);
}

.gs-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gs-info-item i {
  color: var(--gs-white);
  background: var(--gs-red);
  font-size: 0.9rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gs-info-item a {
  color: var(--gs-red);
  text-decoration: none;
  font-weight: 600;
}

.gs-info-item a:hover {
  text-decoration: underline;
}

.gs-info-item span,
.gs-info-item div {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text);
  line-height: 1.5;
  font-size: 0.95rem;
}

.gs-location-content > .gs-btn {
  margin-top: 1.5rem;
  display: inline-block;
}

/* Places Featured Dishes */
.gs-featured-section {
  padding: 5rem 1rem;
  background: var(--gs-bg);
}

.gs-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gs-featured-card {
  background: var(--gs-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--gs-shadow);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gs-featured-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gs-dark);
  margin-bottom: 0.75rem;
}

.gs-featured-card p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--gs-text);
  line-height: 1.6;
  margin: 0;
}

/* Places Divider variant */
.gs-location-section .gs-divider {
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gs-location-section .gs-divider-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  opacity: 0.5;
}

.gs-location-section .gs-divider-icon {
  font-size: 1.25rem;
}

/* ============================================ */
/*   gs-popular — rich dish cards (Craving)     */
/*   Preserves dish image + description + stars */
/*   in the gs- design language.                */
/* ============================================ */
.gs-popular {
  padding: 5rem 1.5rem;
  background: var(--gs-cream);
}
.gs-popular-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gs-popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.gs-popular-card {
  background: var(--gs-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gs-popular-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-hover);
}
.gs-popular-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.gs-popular-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gs-popular-card:hover .gs-popular-card-img img {
  transform: scale(1.07);
}
.gs-popular-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.gs-popular-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gs-dark);
  margin: 0;
}
.gs-popular-card-body p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gs-text-light);
  margin: 0;
  flex: 1;
}
.gs-popular-stars {
  color: #fbbf24;
  font-size: 1rem;
  display: flex;
  gap: 0.15rem;
}

/* ============================================ */
/*   Utility classes (used by gs-* markup)      */
/* ============================================ */
.text-gs-red { color: var(--gs-red); }
.justify-start { justify-content: flex-start; }
.border-none { border: none; }

/* ============================================ */
/*   gs-page-hero — compact hero for subpages   */
/* ============================================ */
.gs-page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 1.5rem 90px;
  overflow: hidden;
}
.gs-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45);
}
.gs-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.gs-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.gs-page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: var(--gs-white);
  margin-bottom: 1.25rem;
}
.gs-page-hero-content h1 .accent { color: var(--gs-red); }
.gs-page-hero-content p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
}
.gs-page-hero-content p a { color: var(--gs-red); text-decoration: underline; }

/* ============================================ */
/*   gs-gallery — image gallery grid            */
/* ============================================ */
.gs-gallery {
  padding: 5rem 1.5rem;
  background: var(--gs-white);
}
.gs-gallery.cream { background: var(--gs-cream); }
.gs-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.gs-gallery-grid.wide {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.gs-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--gs-shadow);
}
.gs-gallery-grid.wide .gs-gallery-item { aspect-ratio: 4/3; }
.gs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gs-gallery-item:hover img { transform: scale(1.07); }
/* feature card with an image icon (svg) instead of ri- glyph */
.gs-feature .gs-icon-circle img { width: 30px; height: 30px; }

/* ============================================ */
/*   Legacy-class compat layer                  */
/*   Restyles old template classes to the gs-    */
/*   aesthetic on pages still using them         */
/*   (SEO location/dish tag pages + menu          */
/*   best-dishes). Loaded after styles.css so     */
/*   these win.                                   */
/* ============================================ */

/* Legacy hero (#home-hero) — darken bg + serif title */
#home-hero .cs-background img { filter: brightness(0.5); }
#home-hero .cs-title,
.cs-title { font-family: 'Playfair Display', serif; }
.cs-tagline { color: var(--gs-red); font-style: italic; }
.cs-subtitle { font-family: 'Source Sans 3', sans-serif; color: var(--gs-red); letter-spacing: 0.05em; }
.cs-text { font-family: 'Source Sans 3', sans-serif; }

/* Section headings / descriptions */
.section__header { font-family: 'Playfair Display', serif; }
.section__header span { color: var(--gs-red); }
.section__description { font-family: 'Source Sans 3', sans-serif; }

/* Explore (alternating content) blocks */
.explore__content .section__header,
.explore__content .section__description { text-align: left; }

/* Special (dish) cards → gs card look */
.special__card {
  border-radius: 16px;
  box-shadow: var(--gs-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: var(--gs-white);
}
.special__card:hover { transform: translateY(-6px); box-shadow: var(--gs-shadow-hover); }
.special-card-title { font-family: 'Playfair Display', serif; }
.special__ratings span { color: #fbbf24; }

/* Inline & menu buttons keep brand colours via .btn (styles.css) */
