/* Frequently asked questions.
 *
 * Structured like the venue's own menu rather than a grid of cards: hairline
 * rules, a question where a dish name would sit, the answer beneath. The page
 * is a lookup tool, not a read, so nothing is hidden behind an accordion and a
 * live status bar answers the three most-asked questions before any scrolling.
 *
 * Everything is scoped under .faq-page.
 */

.faq-page {
  --gold: #f6d64a;
  --gold-deep: #c9a92f;
  --chalk: #fff;
  --haze: rgba(255, 255, 255, 0.58);
  --faint: rgba(255, 255, 255, 0.38);
  --rule: rgba(255, 255, 255, 0.13);
  --rule-strong: rgba(246, 214, 74, 0.5);
  --live: #6fd39a;

  background-color: #000;
  color: var(--chalk);
  padding: 118px 20px 80px;
}
@media (max-width: 1139px) { .faq-page { padding: 96px 18px 56px; } }
@media (max-width: 478px) { .faq-page { padding: 84px 14px 44px; } }

/* min-width:0 matters here: these are flex items, whose automatic minimum size
   is their content width. Without it the no-wrap category row below refuses to
   shrink and drags the whole page wider than the phone. */
.faq-page .faq-wrap { width: 1080px; max-width: 100%; min-width: 0; margin: 0 auto; align-items: stretch; }

/* =============================================================== masthead */

.faq-page .faq-intro { margin-bottom: 28px; }
.faq-page .faq-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.faq-page .faq-intro h1 {
  font-size: clamp(38px, 6.4vw, 66px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0 0 16px;
  max-width: 14ch;
}
.faq-page .faq-intro p {
  color: var(--haze);
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}

/* ====================================================== the "right now" bar
   The signature element. Hidden until the script has computed it, so it can
   never show a stale or wrong state. */

.faq-page .faq-now {
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0 20px;
  margin-bottom: 40px;
  animation: faq-now-in 0.45s ease both;
}
@keyframes faq-now-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq-page .faq-now { animation: none; } }

.faq-page .now-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--chalk);
}
.faq-page .now-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--faint);
  flex: none;
  align-self: center;
}
.faq-page .faq-now[data-open="yes"] .now-dot { background-color: var(--live); box-shadow: 0 0 0 4px rgba(111, 211, 154, 0.16); }
.faq-page .now-age {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.faq-page .now-rows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background-color: var(--rule);
  border: 1px solid var(--rule);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 560px) { .faq-page .now-rows { grid-template-columns: 1fr; } }
.faq-page .now-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  background-color: #000;
  padding: 11px 14px;
}
.faq-page .now-area {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--faint);
}
.faq-page .now-row[data-open="yes"] .now-area { color: var(--chalk); }
.faq-page .now-detail { font-size: 14px; font-variant-numeric: tabular-nums; color: var(--haze); white-space: nowrap; }
.faq-page .now-row[data-open="yes"] .now-detail { color: var(--gold); }

.faq-page .now-tonight { margin: 14px 0 0; font-size: 14.5px; color: var(--haze); }
.faq-page .now-tonight a { color: var(--chalk); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold-deep); }
.faq-page .now-tonight a:hover { color: var(--gold); }

/* ========================================================== category nav */

.faq-page .faq-nav {
  position: sticky;
  top: 74px;                       /* clears the site's sticky header */
  z-index: 5;
  background-color: #000;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 44px;
  padding: 10px 0;
  /* the row inside scrolls sideways; without these the nav reports its full
     content width as a minimum and widens the page on a phone */
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 767px) { .faq-page .faq-nav { top: 62px; } }

.faq-page .faq-jump {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 0;
  padding: 0 0 2px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
  max-width: 100%;
}
.faq-page .faq-jump::-webkit-scrollbar { display: none; }
@media (min-width: 900px) { .faq-page .faq-jump { flex-wrap: wrap; overflow: visible; } }

.faq-page .faq-jump a {
  display: block;
  white-space: nowrap;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--haze);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}
.faq-page .faq-jump a:hover { color: var(--chalk); border-color: var(--rule); }
.faq-page .faq-jump a.is-current { color: #111; background-color: var(--gold); border-color: var(--gold); }
.faq-page .faq-jump a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ============================================================== sections */

.faq-page .faq-section { margin-bottom: 56px; scroll-margin-top: 150px; }
.faq-page .faq-section:last-of-type { margin-bottom: 40px; }

.faq-page .faq-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 10px;
  margin-bottom: 4px;
}
.faq-page .faq-head h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.faq-page .faq-count {
  margin-left: auto;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 1.4px;
  font-variant-numeric: tabular-nums;
}
.faq-page .faq-lede { color: var(--faint); font-size: 13.5px; margin: 0 0 8px; }

/* entries: menu rules, not cards */
.faq-page .faq-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; align-items: start; }
@media (max-width: 900px) { .faq-page .faq-grid { grid-template-columns: 1fr; column-gap: 0; } }

.faq-page .faq-item { border-top: 1px solid var(--rule); padding: 20px 0 22px; }
.faq-page .faq-item.is-wide { grid-column: 1 / -1; }

.faq-page .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1px;
  margin: 0 0 9px;
  color: var(--chalk);
  /* site.css capitalises every heading; questions read better in sentence case */
  text-transform: none;
}
.faq-page .faq-item p { color: var(--haze); font-size: 15px; line-height: 1.68; margin: 0 0 10px; }
.faq-page .faq-item p:last-child { margin-bottom: 0; }
.faq-page .faq-item strong { color: var(--chalk); font-weight: 600; }
.faq-page .faq-item a {
  color: var(--chalk);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold-deep);
  transition: color 0.15s;
}
.faq-page .faq-item a:hover { color: var(--gold); }
.faq-page .faq-item a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* hours, set as three compact columns rather than three stacked tables */
.faq-page .faq-hourset { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; margin-top: 16px; }
@media (max-width: 640px) { .faq-page .faq-hourset { grid-template-columns: 1fr; gap: 20px; } }
.faq-page .faq-hours { width: 100%; border-collapse: collapse; font-size: 14px; }
.faq-page .faq-hours caption {
  text-align: left;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4px;
}
.faq-page .faq-hours th,
.faq-page .faq-hours td { padding: 6px 0; text-align: left; font-weight: 400; }
.faq-page .faq-hours th { color: var(--faint); font-size: 13px; }
.faq-page .faq-hours td { color: var(--chalk); text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }

.faq-page .faq-note { display: block; color: var(--faint); font-size: 12.5px; margin-top: 16px; }

/* ================================================================= close */

.faq-page .faq-cta {
  border-top: 2px solid var(--gold);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-page .faq-cta h2 { font-size: 21px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin: 0 0 4px; }
.faq-page .faq-cta p { color: var(--haze); font-size: 14.5px; margin: 0; }
.faq-page .faq-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.faq-page .faq-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: background-color 0.15s, color 0.15s;
}
.faq-page .faq-actions .is-primary { background-color: var(--gold); color: #111; }
.faq-page .faq-actions .is-primary:hover { background-color: #ffe071; }
.faq-page .faq-actions .is-ghost { border: 1px solid var(--rule); color: var(--chalk); }
.faq-page .faq-actions .is-ghost:hover { border-color: var(--gold); color: var(--gold); }
.faq-page .faq-actions a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
