:root {
  --red: #D62828;
  --black: #0B0B0B;
  --charcoal: #1E1E1E;
  --white: #FFFFFF;
  --ash: #F5F5F5;
}

* { box-sizing: border-box; }
html, body { height: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--red);
  color: var(--white);
  z-index: 1000;
  display: inline-block;
}

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hero .container { max-width: 1280px; }
.hero .container { max-width: 1280px; width: 100%; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: var(--black); color: var(--white); border-bottom: 1px solid #111; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 2px 0; }
.logo { color: var(--white); text-decoration: none; font-weight: 800; letter-spacing: 0.5px; }
.logo img { display: block; height: 72px; width: auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name { color: var(--white); font-weight: 800; letter-spacing: 0.3px; font-family: 'Oswald', Arial, sans-serif; font-size: 32px; }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle .bar { display: block; width: 24px; height: 3px; background: var(--white); margin: 3px 0; }
.site-nav { display: flex; gap: 16px; align-items: center; }
.site-nav a { color: var(--white); text-decoration: none; opacity: 0.9; }
.site-nav a:hover { opacity: 1; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 6px; border: 2px solid transparent; font-weight: 700; text-decoration: none; line-height: 1.2; text-align: center; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { filter: brightness(0.95); }
.btn-ghost { color: var(--black); border-color: var(--red); }
.btn-ghost:hover { background: var(--red); color: var(--white); }

/* Hero with Video */
.hero { position: relative; padding: 8px 0 24px; background: var(--black); color: var(--white); overflow: hidden; }
.hero-video { overflow: hidden; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
}

/* Video wrapper */
.hero-video-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  /* Crop vertical video height to show center ~65% */
  aspect-ratio: 45 / 52; /* ≈ 0.865 (was 9/16 ≈ 0.5625) */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(214, 40, 40, 0.3), 0 0 0 2px rgba(214, 40, 40, 0.4);
  justify-self: center;
  margin: 0 auto;
  background: #000 url('./assets/hero.webp') center/cover no-repeat;
}
.hero-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  background: #000;
}
.hero-video-wrapper video.is-visible {
  opacity: 1;
}
.hero-video-wrapper.video-playing {
  background-image: none;
}

/* Info carousel (above hero) */
.info-carousel { background: var(--black); color: var(--white); padding: 4px 0 4px; overflow: hidden; }
.info-carousel .container { max-width: none; width: 100%; padding: 0 16px; }
.info-carousel-inner { display: grid; gap: 6px; }
.info-carousel-viewport { overflow: hidden; }
.info-carousel-track { display: flex; align-items: center; gap: 10px; will-change: transform; }
.info-carousel-track.is-animated { animation: info-marquee linear infinite; }
.info-slide { flex: 0 0 auto; display: flex; justify-content: center; align-items: center; min-height: 48px; padding: 4px 0; }
.info-slide-cta { gap: 10px; flex-wrap: wrap; }
.info-slide-cta .btn { min-width: 140px; }
.info-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}
.info-carousel-dots { display: none; }

@keyframes info-marquee {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(var(--info-marquee-distance, -50%),0,0); }
}

@media (max-width: 860px) {
  .info-carousel { padding: 4px 0 4px; }
  .info-carousel .container { padding: 0 10px; }
  .info-slide { min-height: 46px; }
  .info-pill { font-size: 13px; padding: 9px 12px; }
  .info-slide-cta .btn { flex: 1; min-width: 0; }
  .hero { padding: 8px 0 22px; }
}

/* Hero headline - above video, overlapping top */
.hero-headline {
  text-align: center;
  margin: 0 0 -36px 0;
  font-size: 32px;
  line-height: 1.1;
  font-family: 'Oswald', Arial, sans-serif;
  text-shadow: 0 3px 12px rgba(0,0,0,0.8);
  z-index: 5;
  position: relative;
  padding: 0 10px;
}

/* Hero copy below video */
.hero-copy {
  text-align: center;
  max-width: 500px;
  width: 100%;
  padding: 0 10px;
}
.hero-mobile-ctas {
  display: none;
  gap: 10px;
  justify-content: center;
  margin: -24px auto 8px;
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 5;
}
.hero-mobile-ctas .btn {
  flex: 1;
  width: 100%;
  font-size: 18px;
  font-weight: 800;
}
.hero p { margin: 0 0 14px 0; font-size: 16px; color: #e0e0e0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn { min-width: 140px; }
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.5); }
.hero .btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* Hero buttons */
.hero .btn { padding: 12px 18px; font-size: 14px; min-height: 44px; }
.hero .btn-primary { padding: 14px 24px; font-size: 17px; min-height: 52px; }
.btn-hero-order {
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(214, 40, 40, 0.6); }
}

/* Hero badges */
.hero-badges { display: flex; gap: 8px; align-items: center; margin: 10px 0 8px; flex-wrap: wrap; justify-content: center; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.1); color: #fff; font-weight: 700; font-size: 13px; border: 1px solid rgba(255,255,255,0.2); }
.hero-meta { margin: 4px 0 16px; font-size: 13px; color: #ccc; opacity: 0.9; }
.hero-trust { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; margin: 6px 0 12px; color: #f4f4f4; font-weight: 700; }
.hero-trust span { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 6px 12px; font-size: 13px; }

/* Desktop layout */
@media (min-width: 861px) {
  .hero { padding: 22px 0 46px; }
  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }
  .hero-headline { 
    font-size: 50px; 
    margin-bottom: -52px;
  }
  .hero-video-wrapper {
    width: 90%;
    max-width: 700px;
  }
  .hero-copy {
    text-align: center;
    max-width: 600px;
    width: 100%;
  }
  .hero p { font-size: 18px; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
}

/* Payment badges */
.payment-badges { display: flex; gap: 8px; align-items: center; margin: 10px 0 0; flex-wrap: wrap; }
.pay-badge { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 8px; background: rgba(255,255,255,0.1); color: #fff; font-weight: 800; font-size: 13px; border: 1px solid rgba(255,255,255,0.2); letter-spacing: 0.3px; }

/* Slideshow */
.slideshow { padding: 0; position: relative; }
.slideshow .container { padding: 0; max-width: none; }
.slideshow-viewport { position: relative; overflow: hidden; width: 100%; height: clamp(180px, 56vw, 620px); --peek: 0px; contain: layout style paint; }
.slideshow-track { display: flex; will-change: transform; transition: transform 600ms ease; margin: 0; padding: 0; list-style: none; }
.slide { flex: 0 0 calc(100% - var(--peek) * 2); opacity: 0.95; transform: scale(0.995); transition: transform 600ms ease, opacity 600ms ease; }
.slide.is-active { opacity: 1; transform: scale(1); }
.slide img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 0; border: 0; background: none; content-visibility: auto; }
.slideshow-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 10px; display: flex; justify-content: center; gap: 8px; padding: 0; }
.slideshow-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #d0d0d0; opacity: 0.7; cursor: pointer; }
.slideshow-dots button[aria-selected="true"] { background: var(--red); opacity: 1; }
.slideshow-dots button:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 10px; }

@media (min-width: 900px) {
  .slideshow-viewport { --peek: 36px; }
}
@media (min-width: 1200px) {
  .slideshow-viewport { --peek: 64px; }
}

/* Sections */
.section { padding: 48px 0; }
.section.alt { background: var(--ash); }
.section-title { margin: 0 0 16px 0; font-size: 28px; font-family: 'Oswald', Arial, sans-serif; }
.section-note { margin: -8px 0 16px 0; font-size: 14px; color: #555; }
 h1, h2, h3, .footer-brand { font-family: 'Oswald', Arial, sans-serif; font-weight: 700; }

/* Stepper */
.stepper { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.step { border: 2px dashed var(--red); padding: 16px; border-radius: 8px; background: var(--white); }
.step[role="button"] { cursor: pointer; }
.step[role="button"]:hover { box-shadow: 0 0 0 3px rgba(214,40,40,0.15) inset; }
.step-media { margin-bottom: 8px; }
.step-media img { width: 100%; height: 100px; object-fit: cover; border-radius: 6px; border: 2px dashed var(--red); background: #fff; }
.step h3 { margin: 0 0 6px 0; font-size: 18px; }
.step p { margin: 0; color: #333; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 8px; }
.price-card { background: var(--white); border: 2px dashed var(--red); border-radius: 8px; padding: 16px; text-align: center; }
.price-size { font-weight: 800; margin-bottom: 6px; }
.price-value { font-size: 20px; }
.price-note { margin: 8px 0 0; color: #444; }
.center { text-align: center; margin-top: 10px; }

/* Social proof strip */
.social-proof { background: var(--ash); padding: 16px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.social-proof-inner { display: flex; gap: 10px; align-items: center; justify-content: center; font-weight: 700; }
.social-proof .stars { color: #ffb400; letter-spacing: 2px; }
.social-proof .proof-text { color: #222; }

/* Reservations */
.reservations { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
.reservations-media img { width: 100%; height: 280px; object-fit: cover; border: 2px dashed var(--red); border-radius: 8px; }
.reservations .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

/* Simple Reservations CTA */
.reservations-simple {
  text-align: center;
  padding: 48px 20px;
}
.reservations-simple p {
  margin: 0 0 24px;
  font-size: 18px;
  color: #555;
}
.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  border-radius: 8px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  transition: all 250ms ease;
}
.btn-reserve:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Reservation Form */
.reservation-form { margin-top: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-weight: 600; font-size: 14px; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #999; }
.form-group textarea { resize: vertical; min-height: 60px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.form-note { margin-top: 12px; font-size: 13px; color: #666; }

/* Form Success State */
.form-success {
  text-align: center;
  padding: 32px 20px;
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: 8px;
}
.form-success[hidden] { display: none; }
.form-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #22c55e;
  color: white;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 12px;
}
.form-success h3 { margin: 0 0 8px; font-size: 22px; color: #166534; }
.form-success p { margin: 0 0 16px; color: #15803d; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.plan-visit { display: flex; }
.plan-visit-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

/* Footer */
.site-footer { background: var(--black); color: var(--white); margin-top: 24px; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; padding: 28px 0; }
.footer-brand { font-weight: 800; margin-bottom: 6px; }
.footer-title { font-weight: 800; margin-bottom: 6px; }
.hours, .links { list-style: none; padding: 0; margin: 0; }
.hours li, .links li { margin: 4px 0; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.footer-bottom { border-top: 1px solid #111; padding: 12px 0 20px; font-size: 14px; color: #ddd; }

/* Focus styles */
a:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 4px; }

/* Menu lists */
.menu-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.menu-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--white); border: 2px dashed var(--red); border-radius: 8px; padding: 12px 14px; }
.menu-item-name { font-weight: 800; }
.menu-item-price { font-weight: 700; }
.menu-item-desc { font-size: 14px; color: #555; margin-top: 4px; }

/* Responsive */
@media (max-width: 860px) {
  .reservations { grid-template-columns: 1fr; }
  /* Hero mobile adjustments */
  .hero { padding: 16px 0 28px; }
  .hero-headline { 
    font-size: 32px; 
    margin-bottom: -36px;
  }
  .hero-video-wrapper { 
    width: 94%;
    max-width: 560px;
  }
  .hero-copy { padding-top: 0; }
  .hero p { font-size: 15px; margin-bottom: 10px; }
  .hero .btn { padding: 11px 16px; font-size: 14px; min-height: 42px; }
  .hero .btn-primary { padding: 14px 22px; font-size: 17px; min-height: 50px; }
  .hero-meta { font-size: 12px; }
  .badge { font-size: 12px; padding: 5px 8px; }
  .hero-trust { gap: 8px; margin: 6px 0 10px; }
  .hero-trust span { font-size: 12px; padding: 5px 10px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mobile-ctas {
    display: flex;
    flex-wrap: wrap;
    padding: 0 12px;
    margin-top: -38px;
    gap: 14px;
  }
  .hero-mobile-ctas .btn {
    flex: 1;
    min-width: 0;
    font-size: 20px;
    font-weight: 800;
    padding: 10px 12px;
  }
  .hero-mobile-ctas .btn-reserve-mobile {
    flex: 0 0 100%;
    text-align: center;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
  }
  .hero-mobile-ctas .btn-reserve-mobile:hover {
    background: var(--white);
    color: var(--black);
  }
  .hero-mobile-ctas .btn-primary {
    animation: pulse-glow 2s ease-in-out infinite;
  }
  /* Hide secondary nav links on mobile; keep primary Order CTA visible */
  .site-nav .nav-secondary { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 0;
    border-radius: 0;
  }
  .nav-toggle .bar {
    width: 24px;
    height: 3px;
    margin: 4px 0;
    background: var(--white);
    border-radius: 2px;
  }
  .site-nav { position: absolute; right: 20px; top: 58px; background: var(--black); padding: 12px 16px; border-bottom-left-radius: 8px; display: none; flex-direction: column; gap: 12px; }
  body.nav-open .site-nav { display: flex; }
  /* Larger step images on mobile to avoid over-cropping */
  .step-media img { height: 160px; }
  /* Sticky order bar spacing on mobile */
  body.has-sticky-bar { padding-bottom: 76px; }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-headline { 
    font-size: 28px; 
    margin-bottom: -28px;
  }
  .hero-video-wrapper { 
    width: 92%;
    max-width: 440px;
  }
  .hero-copy { padding-top: 0; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: grid; place-items: center; padding: 20px; z-index: 100; }
.modal-overlay[hidden] { display: none !important; }
.modal-card { position: relative; width: 100%; max-width: 700px; background: #000; color: #fff; border-radius: 12px; padding: 20px; border: 2px solid var(--red); }
.modal-card { max-height: 85vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal-close { background: transparent; border: 0; color: #fff; font-size: 24px; line-height: 1; cursor: pointer; position: absolute; top: 10px; right: 12px; margin: 0; }
.modal-card h3 { margin: 0 0 12px 0; font-family: 'Oswald', Arial, sans-serif; }
.options-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.options-grid li { background: #111; border: 1px solid #222; padding: 10px 12px; border-radius: 8px; }

/* Sticky order bar */
.sticky-order-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 2px solid var(--red);
  z-index: 999;
}
.sticky-order-bar[hidden] {
  display: none !important;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-sticky {
  padding: 12px 24px;
  font-size: 16px;
  min-height: 48px;
}
.sticky-order-bar .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}
.hero-mobile-ctas .btn-ghost {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.hero-mobile-ctas .btn-ghost:hover {
  background: var(--ash);
  color: var(--black);
}
/* Status button with stacked text */
.btn-status {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  padding: 6px 14px;
}
.btn-status .status-info {
  font-size: 11px;
  opacity: 0.9;
}
/* Open/Closed colors */
.status-open { color: #22c55e; font-weight: 700; }
.status-closed { color: #ef4444; font-weight: 700; }
@media (max-width: 860px) {
  .sticky-order-bar:not([hidden]) { display: flex; }
  body.nav-open .sticky-order-bar { transform: translateY(100%); transition: transform 200ms ease; }
}
@media (max-width: 400px) {
  .btn-sticky { padding: 8px 12px; font-size: 13px; }
  .sticky-order-bar { gap: 6px; padding: 8px 8px; }
}

/* Visual Effects */
/* Sticky header shadow + smooth transition */
.site-header { transition: box-shadow 250ms ease, background-color 250ms ease; }
.site-header.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,0.28); background: var(--black); }

/* Scroll-reveal animation */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 300ms ease, transform 300ms ease; transition-delay: var(--sr-delay, 0ms); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Gradient headline text (hero/title accent) */
.gradient-text {
  background: linear-gradient(90deg, #ff7a18, #ffb347 60%, #ffd89b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Primary button glow and micro-interactions */
.btn-primary { box-shadow: 0 0 0 rgba(214,40,40,0); transition: box-shadow 300ms ease, transform 150ms ease, filter 200ms ease; }
.btn-primary:hover { box-shadow: 0 8px 22px rgba(214,40,40,0.35), 0 0 0 2px rgba(214,40,40,0.25) inset; transform: translateY(-1px); filter: none; }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(214,40,40,0.28), 0 0 0 2px rgba(214,40,40,0.35) inset; }

/* Image hover: subtle zoom + saturation for media blocks */
.step-media img,
.reservations-media img { transition: transform 400ms ease, filter 400ms ease; transform-origin: center; content-visibility: auto; }
.step:hover .step-media img { transform: scale(1.04); filter: saturate(1.15) contrast(1.05); }
.reservations-media img:hover { transform: scale(1.03); filter: saturate(1.1) contrast(1.05); }

/* Red underline accent for hero headline */
.headline-underline { position: relative; display: inline-block; }
.headline-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 4px;
  width: 100%;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 700ms 120ms ease-out forwards;
}
@keyframes underline-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .headline-underline::after { animation: none; transform: scaleX(1); }
}

/* Health Score Section */
.health-score-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.health-score-text {
  color: #555;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.6;
}
.health-score-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0;
  border: 3px dashed var(--red);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.health-score-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(214, 40, 40, 0.25);
}
.health-score-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top; /* Show top of image where score is */
}
.health-score-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}
.health-score-icon {
  font-size: 18px;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.92);
  overflow: auto;
}
.lightbox-overlay[hidden] {
  display: none !important;
}
.lightbox-overlay img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  border: 0;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
  transition: transform 150ms ease, background 150ms ease;
}
.lightbox-close:hover {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .health-score-card {
    max-width: 280px;
  }
  .health-score-card img {
    height: 220px;
  }
  .health-score-text {
    font-size: 15px;
  }
}

/* Promo Banner - Mongolian Beef */
.promo-banner {
  background: var(--ash);
  padding: 48px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.promo-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}
.promo-media {
  width: 100%;
}
.promo-image {
  width: 100%;
  max-height: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid var(--red);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  background: #111;
}
.promo-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #fef3c7;
  color: #92400e;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  width: fit-content;
}
.promo-title {
  margin: 0;
  font-size: 32px;
  font-family: 'Oswald', Arial, sans-serif;
  color: #161616;
}
.promo-desc {
  margin: 0;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}
.promo-points {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.promo-points li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: #444;
}
.promo-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}
.promo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.promo-actions .btn {
  min-width: 180px;
}
@media (max-width: 720px) {
  .promo-inner {
    grid-template-columns: 1fr;
  }
  .promo-copy {
    text-align: center;
    align-items: center;
  }
  .promo-badge {
    margin: 0 auto;
  }
  .promo-points {
    text-align: left;
  }
  .promo-actions {
    justify-content: center;
  }
}

/* First Timer Explainer */
.first-timer {
  background: var(--white);
}
.first-timer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.first-timer-badge {
  display: inline-block;
  padding: 8px 18px;
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
  font-size: 15px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.first-timer .section-title {
  margin-bottom: 8px;
}
.first-timer-intro {
  font-size: 18px;
  color: #333;
  margin: 0 0 24px;
}
.first-timer-steps {
  text-align: left;
  margin: 0 auto 24px;
  padding-left: 24px;
  max-width: 520px;
}
.first-timer-steps li {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}
.first-timer-steps li strong {
  color: var(--black);
}
.first-timer-note {
  font-size: 15px;
  color: #666;
  font-style: italic;
  margin: 0 0 20px;
}
.first-timer-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Customer Reviews */
.reviews {
  background: var(--ash);
}
.reviews-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.reviews-slider {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
}
.reviews-track {
  display: flex;
  transition: transform 420ms ease;
}
.review-slide {
  flex: 0 0 100%;
  padding: 6px;
}
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-stars {
  color: #ffb400;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.review-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 14px;
}
.review-name {
  font-weight: 700;
  color: var(--black);
}
.review-source {
  font-size: 13px;
  color: #888;
}
.review-source::before {
  content: "•";
  margin-right: 8px;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 4px;
}
.reviews-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d0d0d0;
  opacity: 0.75;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}
.reviews-dots button[aria-selected="true"] {
  background: var(--red);
  opacity: 1;
  transform: scale(1.05);
}
.reviews-dots button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 6px;
}
.reviews-cta {
  text-align: center;
  margin-top: 12px;
}
.reviews-cta .btn-ghost {
  color: #555;
  border-color: #ccc;
}
.reviews-cta .btn-ghost:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

