/* Seasonal announcement bar */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  padding: 0.55rem 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.announcement-bar .announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  position: relative; /* allow right-aligned close button */
}
.announcement-bar .announcement-icon {
  font-size: 1.1rem;
}
.announcement-bar .announcement-text {
  flex: 0 1 auto;
}
.announcement-bar .announcement-cta {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar .announcement-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.5rem;
}
.announcement-bar .announcement-close:hover {
  color: var(--accent-gold);
}
/* Home */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background:
    linear-gradient(
      90deg,
      var(--hero-overlay-left) 0%,
      rgba(15, 26, 42, 0.28) 52%,
      var(--hero-overlay-right) 100%
    ),
    linear-gradient(
      180deg,
      var(--hero-overlay-top) 0%,
      var(--hero-overlay-mid) 58%,
      var(--hero-overlay-bottom) 100%
    ),
    url("/branding/hero.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Changed from fixed for iOS compatibility */
  color: var(--white);
  padding: 88px 1rem 2.25rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  transition: transform var(--anim-duration) ease;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(244, 181, 40, 0.26),
      transparent 36%
    ),
    linear-gradient(135deg, rgba(197, 19, 23, 0.2), transparent 52%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1120px;
}

.hero-content {
  max-width: 640px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(244, 181, 40, 0.16);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.hero p {
  font-size: clamp(1rem, 4vw, 1.25rem);
  margin-bottom: 1.6rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.94);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-top: 1.2rem;
}

.hero .btn {
  min-width: 160px;
}

.hero .btn-call-hero {
  min-width: 175px;
}

.priority-location-section {
  position: relative;
}

.priority-location-section > h2 {
  margin-bottom: 1rem;
}

.location-priority-card {
  border: 1px solid rgba(197, 19, 23, 0.28);
  box-shadow: 0 14px 34px rgba(18, 21, 28, 0.12);
}

.location-priority-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.6rem;
}

.location-priority-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--anim-duration) ease,
    box-shadow var(--anim-duration) ease;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 181, 40, 0.12) 0%,
    rgba(197, 19, 23, 0.12) 100%
  );
  opacity: 0;
  transition: opacity var(--anim-duration) ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .card-thumb {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform var(--anim-duration) ease;
}

.service-card:hover .card-thumb {
  transform: scale(1.05);
}

.service-card h3 {
  color: var(--primary);
  margin: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  text-align: center;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 1.5rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  text-align: center;
  flex: 1;
}

.service-card .card-actions {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
  margin: 2rem 0;
}

.lead-text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

#lead {
  background: var(--gray-100);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 181, 40, 0.12) 0%,
    rgba(197, 19, 23, 0.12) 100%
  );
  z-index: 1;
}

#lead .container {
  position: relative;
  z-index: 2;
}

#quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
}

#quote-form input,
#quote-form textarea {
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--anim-duration) ease;
  background: var(--gray-100);
  color: var(--gray-800);
}

#quote-form textarea {
  resize: vertical;
  min-height: 120px;
  grid-column: span 2;
}

#quote-form input:focus,
#quote-form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(197, 19, 23, 0.15);
}

#quote-form .btn {
  grid-column: span 2;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-preview {
  background: var(--gray-100);
  padding: 6rem 0;
  margin: 4rem 0;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-preview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--gray-800);
}

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

.achievement {
  text-align: center;
}

.achievement strong {
  display: block;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.achievement span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center; /* center the stacked buttons */
  }

  .hero .btn {
    width: auto; /* prevent full-width on mobile */
    max-width: 300px;
    margin: 0 auto; /* center each button */
  }

  /* iOS Safari: fixed backgrounds often glitch; use scroll */
  .hero {
    background-attachment: scroll;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #quote-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  #quote-form textarea,
  #quote-form .btn {
    grid-column: span 1;
  }

  .hero-buttons {
    flex-direction: column;
  }

  /* Center About Us button in the About preview on mobile */
  .about-preview-content .btn {
    display: block;
    margin: 1rem auto 0;
    max-width: 280px;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 425px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-buttons {
    gap: 0.75rem;
    align-items: center;
  }
  .hero .btn {
    width: auto;
    max-width: 260px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
  }
}

/* Find Us Section */
.find-us-section {
  background: var(--gray-100);
  padding: 5rem 0 6rem;
  position: relative;
}
.find-us-title {
  margin: 0 0 2.5rem;
  text-align: left;
  color: var(--primary);
  font-size: 2.25rem;
}
.find-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}
.find-us-map .map-frame {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.find-us-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.05) brightness(0.95);
}
.find-us-map .map-note {
  font-size: 0.75rem;
  margin-top: 0.75rem;
  color: var(--gray-600);
  text-align: left;
}
.find-us-card {
  background: var(--white);
  padding: 2.25rem 2.25rem 2.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.find-us-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 37, 59, 0.04),
    rgba(188, 47, 36, 0)
  );
  pointer-events: none;
  border-radius: inherit;
}
.find-us-card h3.company-name {
  margin: 0;
  font-size: 1.6rem;
  color: var(--primary);
}
.find-us-card .address {
  font-style: normal;
  line-height: 1.5;
  color: var(--gray-800);
}
.find-us-card .contact-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.find-us-card .contact-links a:hover {
  text-decoration: underline;
}
.find-us-card .hours h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-600);
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.hours-list li strong {
  color: var(--primary);
  font-weight: 600;
}
.cta-row {
  margin-top: 0.5rem;
}
.whatsapp-btn {
  background: var(--primary-light);
  color: var(--white);
}
.whatsapp-btn:hover {
  background: var(--primary-light-hover);
  color: var(--white);
}

@media (max-width: 1024px) {
  .find-us-grid {
    grid-template-columns: 1fr;
  }
  .find-us-map .map-frame {
    aspect-ratio: 16/10;
  }
}
@media (max-width: 640px) {
  .location-priority-actions .btn {
    width: 100%;
  }

  .find-us-card {
    padding: 1.75rem 1.5rem 2.25rem;
  }
  .find-us-title {
    font-size: 2rem;
  }
}

/* ============================================================
   FOOD-FOCUSED HOMEPAGE SECTIONS
   ============================================================ */

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 1.6rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  font-style: italic;
}

/* ============================================================
   CURRENT LOCATION SECTION
   ============================================================ */

.priority-location-section {
  background: var(--gray-50);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.priority-location-section > .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.priority-location-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Location Priority Card */
.location-priority-card {
  border: 2px solid var(--accent-gold);
  box-shadow: 0 14px 34px rgba(18, 21, 28, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}

.location-priority-info {
  flex: 1;
}

.location-priority-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.location-priority-card h3 {
  margin: 0;
  font-size: 1.75rem;
  color: var(--primary);
}

.location-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.location-badge.active {
  background: rgba(188, 47, 36, 0.2);
  color: var(--primary-light);
}

.location-badge.upcoming {
  background: rgba(211, 177, 106, 0.2);
  color: var(--accent-gold);
}

.location-subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-address {
  font-size: 1.1rem;
  color: var(--gray-800);
  margin: 0.75rem 0;
  font-weight: 500;
}

.location-hours {
  color: var(--gray-600);
  margin: 0;
}

.location-priority-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-priority-actions .btn {
  flex: 1;
  min-width: 150px;
}

/* Map Embed Container */
.map-embed-container {
  margin-top: 2rem;
}

.map-embed {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 21, 28, 0.15);
}

/* ============================================================
   MENU PREVIEW SECTION
   ============================================================ */

.menu-preview-section {
  margin: 3rem 0;
}

.menu-image-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
}

.menu-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.menu-card {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(18, 21, 28, 0.15);
}

.menu-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.menu-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.menu-card p {
  flex: 1;
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-200);
  padding-top: 0.75rem;
}

.menu-price {
  font-size: 1.25rem;
  color: var(--primary-light);
}

/* ============================================================
   UPCOMING STOPS SECTION
   ============================================================ */

.upcoming-stops-section {
  margin: 3rem 0;
}

.stop-card {
  position: relative;
  transition: all 0.3s ease;
}

.stop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(18, 21, 28, 0.15);
}

.stop-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.stop-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.stop-address {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0.5rem 0;
  font-weight: 500;
}

.stop-time {
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-sm {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

/* ============================================================
   BOOKING TEASER SECTION
   ============================================================ */

.booking-teaser-section {
  background: linear-gradient(
    135deg,
    rgba(22, 37, 59, 0.05) 0%,
    rgba(188, 47, 36, 0.08) 100%
  );
  padding: 3rem 0;
  margin: 3rem 0;
}

.booking-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  border: 2px solid rgba(188, 47, 36, 0.2);
  background: var(--white);
  padding: 2.5rem;
}

.booking-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.booking-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.booking-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 8px;
}

.feature-icon {
  font-size: 1.5rem;
}

.feature span {
  font-weight: 500;
  color: var(--gray-800);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  width: 100%;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section {
  margin: 3rem 0;
}

.gallery-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image-wrapper img {
  transform: scale(1.06);
}

.gallery-card {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(18, 21, 28, 0.15);
}

.gallery-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gallery-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.gallery-card p {
  flex: 1;
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   REVIEWS / TESTIMONIALS SECTION
   ============================================================ */

.reviews-section {
  background: var(--gray-100);
  padding: 4rem 0;
  margin: 3rem 0 0 0;
}

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

.review-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--gray-200);
}

.review-stars {
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.review-author {
  margin: 0;
  color: var(--primary);
  font-size: 0.95rem;
}

/* ============================================================
   RESPONSIVE DESIGN - TABLETS AND BELOW
   ============================================================ */

@media (max-width: 1024px) {
  .location-priority-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-teaser {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .booking-actions {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .location-priority-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .location-priority-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .location-priority-card h3 {
    font-size: 1.5rem;
  }

  .location-priority-actions {
    gap: 0.75rem;
  }

  .location-priority-actions .btn {
    flex: 1;
    min-width: 120px;
  }

  .menu-image-wrapper {
    height: 150px;
  }

  .map-embed-container .map-embed[style] {
    height: 300px !important;
  }

  .booking-teaser {
    padding: 1.5rem;
  }

  .booking-content p {
    font-size: 0.95rem;
  }

  .booking-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-lg {
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }

  .gallery-image-wrapper {
    height: 200px;
  }

  .reviews-grid {
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-kicker {
    font-size: 0.65rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .location-priority-card {
    padding: 1.25rem;
  }

  .location-priority-header {
    gap: 0.5rem;
  }

  .location-priority-card h3 {
    font-size: 1.25rem;
  }

  .location-address {
    font-size: 1rem;
  }

  .location-priority-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .location-priority-actions .btn {
    width: 100%;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-card-body {
    padding: 1rem;
  }

  .menu-price {
    font-size: 1.1rem;
  }

  .booking-teaser {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1rem;
  }

  .booking-content h2 {
    font-size: 1.5rem;
  }

  .booking-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .feature-icon {
    font-size: 1.25rem;
  }

  .feature span {
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  .gallery-image-wrapper {
    height: 180px;
  }

  .gallery-card-body {
    padding: 1rem;
  }

  .gallery-card h3 {
    font-size: 1rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-card p {
    font-size: 0.9rem;
  }

  .review-author {
    font-size: 0.9rem;
  }

  .map-embed-container .map-embed[style] {
    height: 250px !important;
  }
}

/* Small phones */
@media (max-width: 425px) {
  .location-priority-actions .btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .booking-content p {
    font-size: 0.9rem;
  }

  .menu-card h3 {
    font-size: 1.05rem;
  }

  .menu-card p {
    font-size: 0.9rem;
  }
}

/* ============================================================
   HOMEPAGE REDESIGN — NEW SECTIONS
   ============================================================ */

/* Outline-white button for dark backgrounds */
.btn.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

/* Hero mobile overrides */
@media (max-width: 768px) {
  .announcement-bar {
    padding: 0.45rem 0;
  }

  .announcement-bar .announcement-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.35rem 0.5rem;
    padding-right: 0;
  }

  .announcement-bar .announcement-text {
    flex: 1 1 100%;
    text-align: left;
  }

  .announcement-bar .announcement-close {
    position: static;
    transform: none;
    margin-left: auto;
    padding-right: 0;
  }

  .hero {
    min-height: 78vh;
    align-items: flex-end;
    padding: 6.2rem 0.95rem 2rem;
    background-position: 58% center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero .container,
  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
  }

  .hero-subtitle {
    margin: 0 auto 1.6rem;
  }
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ── Now Serving ── */
.now-serving-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2rem 0;
  border-top: 3px solid var(--primary-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  scroll-margin-top: 92px;
}

.now-serving-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.serving-badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.serving-badge.live {
  background: rgba(188, 47, 36, 0.28);
  color: #ff8080;
  border: 1px solid rgba(188, 47, 36, 0.45);
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.serving-badge.upcoming {
  background: rgba(211, 177, 106, 0.18);
  color: var(--accent-gold);
  border: 1px solid rgba(211, 177, 106, 0.32);
}

.serving-badge.offline {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.serving-badge.open-status {
  background: rgba(22, 163, 74, 0.22);
  color: #4ade80;
  border: 1px solid rgba(22, 163, 74, 0.4);
}

.serving-badge.main-location {
  background: rgba(244, 181, 40, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(244, 181, 40, 0.28);
}

.now-serving-title {
  color: var(--white);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.serving-address {
  color: rgba(255, 255, 255, 0.75);
  margin: 0.2rem 0;
  font-size: 0.97rem;
}

.serving-hours {
  color: var(--accent-gold);
  margin: 0.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.serving-offline-text {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.93rem;
  max-width: 380px;
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

.now-serving-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .now-serving-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .now-serving-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .now-serving-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    text-align: center;
  }
}

/* ── Featured Food ── */
.featured-food-section {
  background: var(--gray-100);
  padding: 4.5rem 0;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.food-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--anim-duration) ease,
    box-shadow var(--anim-duration) ease;
}

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

.food-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.food-card:hover .food-card-img {
  transform: scale(1.04);
}

.food-card-img-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
}

.food-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.food-card-body h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--primary);
}

.food-card-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.food-card-price {
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary-light);
  margin-top: 0.4rem;
  display: block;
}

.food-section-cta {
  text-align: center;
}

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

@media (max-width: 480px) {
  .food-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Why People Keep Coming Back ── */
.reasons-section {
  background: var(--white);
  padding: 4.5rem 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.reason-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--anim-duration) ease;
}

.reason-card:hover {
  box-shadow: var(--shadow-md);
}

.reason-icon {
  font-size: 2.4rem;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.reason-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.reason-card p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ── How It Works ── */
.how-it-works-section {
  background: var(--primary);
  color: var(--white);
  padding: 4.5rem 0;
}

.how-it-works-section .section-header h2 {
  color: var(--white);
}

.how-it-works-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 0 0.5rem;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 14px rgba(188, 47, 36, 0.4);
}

.step h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ── From the Cart Gallery ── */
.home-gallery-section {
  background: var(--gray-100);
  padding: 4.5rem 0;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.home-gallery-item {
  all: unset;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  background: var(--gray-200);
  cursor: zoom-in;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-gallery-item:hover img {
  transform: scale(1.07);
}

/* ============================================================
   PREMIUM HOMEPAGE POLISH PASS
   ============================================================ */

.hero {
  min-height: clamp(76vh, 88vh, 94vh);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -32% auto;
  width: clamp(260px, 34vw, 460px);
  height: clamp(260px, 34vw, 460px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 181, 40, 0.22) 0%,
    rgba(197, 19, 23, 0.18) 48%,
    transparent 72%
  );
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(160deg, rgba(12, 10, 8, 0.48), rgba(12, 10, 8, 0.2)),
    rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.26);
}

.hero h1 {
  letter-spacing: 0.04em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.1rem 0 1rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-scroll-cue {
  display: inline-flex;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  padding-bottom: 0.16rem;
  transition: color var(--anim-duration) ease;
}

.hero-scroll-cue:hover {
  color: #fff;
}

.featured-food-section,
.reasons-section,
.how-it-works-section,
.home-gallery-section {
  padding-top: clamp(3.7rem, 7vw, 5.6rem);
  padding-bottom: clamp(3.7rem, 7vw, 5.6rem);
}

.section-header {
  margin: 0 auto 2.8rem;
  max-width: 720px;
}

.section-header h2 {
  letter-spacing: 0.03em;
}

.section-header p {
  font-style: normal;
  color: #5a4338;
}

.food-card,
.reason-card,
.step,
.home-gallery-item {
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  border-color: #ebd1a0;
}

.step {
  border-radius: 14px;
  padding: 0.7rem 0.7rem 1rem;
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
}

.home-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.home-gallery-item:focus-visible,
.hero-scroll-cue:focus-visible {
  outline: 3px solid rgba(244, 181, 40, 0.7);
  outline-offset: 2px;
}

.btn,
.food-card,
.reason-card,
.home-gallery-item,
.step {
  -webkit-tap-highlight-color: transparent;
}

@media (hover: none) {
  .btn:active,
  .food-card:active,
  .reason-card:active,
  .home-gallery-item:active,
  .step:active {
    transform: scale(0.985);
  }

  .btn {
    transition-duration: 0.18s;
  }
}

.home-section-enter {
  animation: home-rise 520ms ease both;
}

.featured-food-section.home-section-enter {
  animation-delay: 40ms;
}

.reasons-section.home-section-enter {
  animation-delay: 90ms;
}

.how-it-works-section.home-section-enter {
  animation-delay: 140ms;
}

.home-gallery-section.home-section-enter {
  animation-delay: 180ms;
}

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 82vh;
    padding-bottom: 1.6rem;
  }

  .hero-content {
    border-radius: 16px;
    padding: 1rem 0.9rem 1.2rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .hero-meta {
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
  }

  .hero-meta span {
    font-size: 0.69rem;
    padding: 0.24rem 0.58rem;
  }

  .hero-scroll-cue {
    margin-top: 0.8rem;
    font-size: 0.74rem;
  }

  .now-serving-section {
    padding: 1.6rem 0;
  }

  .featured-food-section,
  .reasons-section,
  .how-it-works-section,
  .home-gallery-section {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .home-gallery-grid {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 74vh;
    padding: 5.85rem 0.8rem 1.1rem;
    background-position: 62% center;
  }

  .hero-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.045em;
    padding: 0.25rem 0.52rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 11vw, 2.55rem);
    margin-bottom: 0.72rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-meta {
    margin-bottom: 0.75rem;
  }

  .hero-meta span {
    font-size: 0.64rem;
    letter-spacing: 0.035em;
    padding: 0.22rem 0.46rem;
  }

  .hero-buttons {
    gap: 0.55rem;
  }

  .hero .btn {
    max-width: none;
    width: 100%;
  }

  .hero-scroll-cue {
    margin-top: 0.62rem;
    font-size: 0.7rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-header p {
    font-size: 0.96rem;
  }

  .food-card-body {
    padding: 1rem;
  }

  .reason-card,
  .step {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .home-gallery-item {
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-section-enter,
  .food-card,
  .reason-card,
  .step,
  .home-gallery-item,
  .hero-scroll-cue,
  .btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  .home-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ============================================================
   BOOKING PAGE
   ============================================================ */

.booking-hero {
  position: relative;
  background:
    linear-gradient(
      180deg,
      var(--hero-overlay-top) 0%,
      rgba(15, 26, 42, 0.3) 48%,
      var(--hero-overlay-bottom) 100%
    ),
    url("/branding/hero.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 7rem 1rem 4rem;
  min-height: 46vh;
  display: flex;
  align-items: center;
}

.booking-hero .container {
  position: relative;
  z-index: 1;
}

.booking-hero-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--white);
}

.booking-hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.15;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.booking-hero p {
  font-size: clamp(0.97rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 0 1.25rem;
  line-height: 1.6;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.booking-hero-event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.booking-event-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.booking-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* How booking works */
.booking-process-section {
  background: var(--white);
  padding: 4rem 0;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.booking-step {
  text-align: center;
  padding: 0 0.5rem;
}

.booking-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 14px rgba(188, 47, 36, 0.35);
}

.booking-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.booking-step p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Form section */
.booking-form-section {
  background: var(--gray-100);
  padding: 4.5rem 0;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.booking-form-wrapper h2 {
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.booking-form-intro {
  color: var(--gray-600);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.booking-form {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  margin-bottom: 0.3rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font: inherit;
  background: var(--gray-50);
  transition: var(--transition);
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(188, 47, 36, 0.12);
}

.booking-form input:hover,
.booking-form textarea:hover,
.booking-form select:hover {
  border-color: var(--primary);
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Sidebar */
.booking-sidebar-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
}

.booking-sidebar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.booking-sidebar-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.booking-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.booking-checklist li::before {
  content: "✓ ";
  color: var(--primary-light);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .booking-sidebar-card {
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .booking-steps {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .booking-form-row {
    grid-template-columns: 1fr;
  }
  .booking-hero {
    text-align: center;
    padding: 6rem 1rem 3rem;
    background-position: 56% center;
  }
  .booking-hero p {
    margin: 0 auto 1.25rem;
  }
  .booking-hero-event-types {
    justify-content: center;
  }
  .booking-hero-actions {
    justify-content: center;
  }
  .booking-hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .booking-sidebar {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: 1.5rem;
  }
}

/* ============================================================
   MENU PAGE — View Menu Image button
   ============================================================ */

.menu-image-btn {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.find-us-note {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-style: italic;
  margin: 0.65rem 0 0;
  line-height: 1.5;
  max-width: 380px;
}

/* ============================================================
   CONTACT — hero background fallback (uses .jpg if .webp missing)
   ============================================================ */

.contact-hero {
  background:
    linear-gradient(
      180deg,
      rgba(15, 26, 42, 0.14) 0%,
      rgba(15, 26, 42, 0.28) 54%,
      rgba(15, 26, 42, 0.52) 100%
    ),
    url("/branding/hero.jpg") no-repeat center / cover;
}

/* ============================================================
   HOURS STATUS BADGE (used on Locations page hours section)
   ============================================================ */

.hours-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hours-status-badge.open {
  background: rgba(22, 163, 74, 0.22);
  color: #4ade80;
  border: 1px solid rgba(22, 163, 74, 0.4);
}

.hours-status-badge.closed {
  background: rgba(94, 83, 69, 0.15);
  color: var(--gray-600);
  border: 1px solid rgba(94, 83, 69, 0.28);
}

.hours-status-badge.unknown {
  background: rgba(244, 181, 40, 0.18);
  color: var(--accent-gold);
  border: 1px solid rgba(244, 181, 40, 0.35);
}

@media (max-width: 640px) {
  .hours-status-badge {
    font-size: 0.72rem;
  }
}
