
:root {
  --cream: #fbf4e8;
  --tan: #f4ead9;
  --red: #dc2626;
  --dark: #100909;
  --ink: #18181b;
  --muted: #5d5d66;
  --border: rgba(0,0,0,.10);
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
  padding-top: 78px;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: rgba(251,244,232,.98) !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 42px; width: auto; max-width: 180px; }

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 900;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a.active, .main-nav a:hover { color: var(--red); }
.mobile-menu-toggle, .mobile-order-link { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--ink); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: white; }
.btn-white-outline { border-color: white; color: white; background: transparent; }
.btn-white-outline:hover { background: white; color: var(--ink); }
.btn-dark { background: var(--ink); color: white; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button-row.center { justify-content: center; }

.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  color: white;
  background: #111;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .70;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.20), transparent);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 570px;
  padding: 90px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.5);
  animation: pill-pulse 2.4s cubic-bezier(.2,.7,.2,1) infinite;
  flex-shrink: 0;
}
@keyframes pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  60% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
@media (prefers-reduced-motion: reduce) {
  .pill-dot { animation: none; }
}
.hero h1 {
  max-width: 920px;
  margin: 20px 0 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.04em;
  font-weight: 1000;
}
.hero h1 span { color: var(--red); }
.hero p:not(.pill) {
  max-width: 680px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.7;
}

.ticker {
  overflow: hidden;
  background: var(--red);
  color: white;
  padding: 12px 0;
}
.ticker div {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: tickerLoop 24s linear infinite;
}
.ticker span {
  padding-right: 32px;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@keyframes tickerLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
.section-tan {
  max-width: none;
  background: var(--tan);
  padding-left: max(20px, calc((100vw - 1200px)/2 + 20px));
  padding-right: max(20px, calc((100vw - 1200px)/2 + 20px));
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 13px;
  font-weight: 1000;
}
h1, h2, h3 {
  line-height: 1;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(44px, 7vw, 82px);
  margin: 16px 0 20px;
  font-weight: 1000;
  letter-spacing: -.04em;
}
h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin: 14px 0 20px;
  font-weight: 1000;
  letter-spacing: -.04em;
}
p { color: var(--muted); line-height: 1.75; }

.food-slider {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
  background: #111;
}
.food-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.food-slider img.active { opacity: 1; }
.food-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.3), transparent);
}
.slider-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  background: rgba(255,255,255,.9);
  color: var(--red);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.slider-dots {
  position: absolute;
  right: 20px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.slider-dots button {
  height: 10px;
  width: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
}
.slider-dots button.active { width: 32px; background: white; }

.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card, .food-card, .location-card, .detail-grid article {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
}
.info-card strong {
  color: #f0a8a8;
  font-size: 38px;
  font-weight: 1000;
}
.info-card h3, .info-card h2 { font-size: 22px; margin: 18px 0 10px; }
.info-card a { color: var(--red); font-weight: 900; }

.cta-section {
  position: relative;
  overflow: hidden;
  background: #111;
  color: white;
  text-align: center;
  padding: 96px 20px;
}
.cta-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .30;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}
.cta-section > div {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section h2 { color: white; }
.cta-section p { color: rgba(255,255,255,.8); }

.page { min-height: 60vh; }
.rounded-img {
  border-radius: 32px;
  background: white;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.feature-photo {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
}
.feature-photo img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  opacity: .82;
}
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
}
.feature-photo div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
  color: white;
}
.feature-photo p { color: rgba(255,255,255,.75); }

.food-card { padding: 0; overflow: hidden; }
.food-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.food-card h2, .food-card p { padding-left: 28px; padding-right: 28px; }
.food-card p { padding-bottom: 28px; }
.top-space { margin-top: 64px; }

.experience-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  margin-top: 64px;
}
.dark-card {
  background: #111;
  color: white;
  border-radius: 32px;
  padding: 38px;
}
.dark-card p { color: rgba(255,255,255,.72); }
.dark-card ol {
  padding-left: 22px;
  line-height: 2;
  font-weight: 900;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.center-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.locator-panel {
  max-width: 1000px;
  margin: 40px auto 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}
.locator-panel input, .locator-panel select {
  height: 48px;
  border: 1px solid rgba(0,0,0,.12);
  background: var(--cream);
  border-radius: 12px;
  padding: 0 14px;
  font-weight: 700;
}
.location-bar {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.location-bar p {
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: .12em;
}
.location-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.location-card h3 { font-size: 26px; margin: 8px 0 0; }
.location-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 11px 7px 9px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}
/* Open: solid filled dot + colored ring around pill (works for color-blind users) */
.status-open {
  background: #dcfce7;
  color: #166534;
  border-color: #86efac;
}
.status-open::before {
  background: #166534;
}
/* Coming Soon: hollow dot + dashed-look ring (shape distinct from Open) */
.status-soon {
  background: #fef3c7;
  color: #78350f;
  border-color: #fcd34d;
}
.status-soon::before {
  background: transparent;
  border: 2px solid #78350f;
  width: 10px;
  height: 10px;
}
.location-name {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 1000;
}
.location-phone { color: var(--ink); font-weight: 1000; }
.no-results {
  margin-top: 40px;
  text-align: center;
  background: white;
  border-radius: 22px;
  padding: 40px;
}
.narrow { max-width: 900px; }
.faq-list { display: grid; gap: 18px; }

.site-footer { background: var(--dark); color: white; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 46px;
}
.footer-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer p, .site-footer a {
  color: rgba(255,255,255,.65);
  display: block;
  margin-top: 10px;
}
.site-footer a:hover { color: white; }
.site-footer h3 { font-size: 16px; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

@media (max-width: 900px) {
  body { padding-top: 96px !important; }

  .site-header.menu-open {
    max-height: 100vh;
    overflow-y: auto;
  }

  .header-inner {
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    padding: 14px 18px !important;
  }

  .brand-logo img {
    height: 56px !important;
    max-width: 170px !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    justify-self: end !important;
    width: 56px !important;
    height: 56px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--red) !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    cursor: pointer !important;
    padding: 0 !important;
  }
  .mobile-menu-toggle span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 999px !important;
    transition: transform .2s ease, opacity .2s ease !important;
  }
  .site-header.menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
  .site-header.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0 !important; }
  .site-header.menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

  .main-nav {
    display: none !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    padding: 12px 0 6px !important;
    overflow: visible !important;
    gap: 8px !important;
  }
  .site-header.menu-open .main-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .main-nav a {
    display: block !important;
    width: 100% !important;
    border-radius: 16px !important;
    background: #fff !important;
    padding: 14px 16px !important;
    color: var(--ink) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-align: center !important;
  }
  .main-nav a.active {
    background: #ffe7e7 !important;
    color: var(--red) !important;
  }
  .mobile-order-link {
    display: block !important;
    background: var(--red) !important;
    color: #fff !important;
    font-weight: 900 !important;
  }
  .header-order { display: none !important; }

  .hero { min-height: 560px; }
  .hero-content {
    min-height: 560px;
    padding: 64px 20px;
  }
  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: .92;
    max-width: 100%;
  }
  .hero p:not(.pill) {
    font-size: 17px;
    line-height: 1.65;
    max-width: 100%;
  }
  .hero .button-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .button-row .btn {
    width: 100%;
    min-height: 56px;
  }

  .ticker { padding: 10px 0; }
  .ticker span { font-size: 13px; }

  .section, .page { padding: 58px 20px; }
  .section-tan {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .two-col, .experience-grid, .card-grid.three, .location-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid { grid-template-columns: 1fr; }
  .locator-panel {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: .95;
  }
  h2 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: .95;
  }
  p { font-size: 16px; }
  .food-slider, .feature-photo img {
    min-height: 340px;
    height: 340px;
  }
  .location-card { padding: 22px; }
  .location-grid { gap: 16px; }
}

@media (max-width: 420px) {
  body { padding-top: 86px !important; }
  .brand-logo img {
    height: 48px !important;
    max-width: 145px !important;
  }
  .hero h1 { font-size: 40px; }
  .button-row .btn { width: 100%; }
}

/* Hero video pause/play control */
.hero { position: relative; }
.hero-pause-btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: #1a1a1a;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.hero-pause-btn:hover { background:#fff; transform: scale(1.05); }
.hero-pause-btn:focus-visible { outline: 2px solid var(--red, #e0252b); outline-offset: 2px; }
.hero-pause-btn svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
  /* Top-right on mobile: avoids overlap with full-width stacked CTAs at bottom of hero. */
  .hero-pause-btn {
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
    width: 44px;
    height: 44px; /* WCAG 2.5.5 AAA tap target */
  }
}


/* ============================================================
   Impeccable pass (impeccable-1) — added 2026-06-14
   ============================================================ */

/* Info-card icon + variant treatment so the three cards aren't identical */
.info-card .info-card-icon {
  display: block;
  width: 38px;
  height: 38px;
  color: var(--red, #e0252b);
  margin: 0 0 14px;
  flex-shrink: 0;
}
/* Subtle differentiation between the three info-cards (varied prominence) */
.info-card--clock { transform: none; }
.info-card--menu {
  background: var(--ink, #111);
  color: white;
  border-color: var(--ink, #111);
}
.info-card--menu h3,
.info-card--menu p,
.info-card--menu a { color: white; }
.info-card--menu .info-card-icon { color: white; }
.info-card--menu a { border-bottom: 1px solid rgba(255,255,255,.45); }
.info-card--menu a:hover { border-bottom-color: white; }
.info-card--faq { background: transparent; border-style: dashed; }
@media (max-width: 820px) {
  .info-card--menu, .info-card--faq, .info-card--clock { background: white; color: var(--ink); border-style: solid; border-color: var(--border); }
  .info-card--menu h3, .info-card--menu p, .info-card--menu a, .info-card--menu .info-card-icon { color: var(--ink); }
  .info-card--menu a { border-bottom-color: var(--ink); }
}

/* Caption line — replaces eyebrow under feature-photo */
.caption-line {
  font-size: 14px;
  color: var(--ink, #111);
  opacity: .7;
  margin-top: 6px;
  max-width: 36ch;
}

/* FAQ <details> — native disclosure, no JS, full keyboard a11y */
.faq-list details {
  background: white;
  border: 1px solid var(--border, rgba(0,0,0,.1));
  border-radius: 14px;
  margin: 0 0 12px;
  overflow: hidden;
  transition: border-color .25s cubic-bezier(.2,.7,.2,1);
}
.faq-list details[open] { border-color: var(--red, #e0252b); }
.faq-list details summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink, #111);
  user-select: none;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary::after {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
  color: var(--red, #e0252b);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list details summary:focus-visible {
  outline: 2px solid var(--red, #e0252b);
  outline-offset: -2px;
}
.faq-list details p {
  padding: 0 26px 22px;
  margin: 0;
  color: var(--ink, #111);
  opacity: .78;
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 70ch;
}
@media (prefers-reduced-motion: reduce) {
  .faq-list details summary::after { transition: none; }
}
