:root {
  --coal: #141414;
  --coal-light: #1f1f1f;
  --ember: #ea580c;
  --flame: #f97316;
  --ash: #a3a3a3;
  --cream: #fef3c7;
  --white: #fafafa;
  --font-display: "Anton", sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--coal);
  color: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

.wrap {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* Header */
.head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.head__inner {
  width: min(1100px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
}

.head__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-right: auto;
}

.head__logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ember);
  text-transform: uppercase;
}

.head__nav {
  display: flex;
  gap: 1.25rem;
}

.head__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ash);
  transition: color 0.2s;
}

.head__nav a:hover {
  color: var(--cream);
}

.head__cta {
  background: var(--ember);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
}

.head__toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(234, 88, 12, 0.35), transparent),
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.12), transparent 40%),
    linear-gradient(180deg, #0a0a0a 0%, var(--coal) 100%);
}

.hero__content {
  position: relative;
  max-width: 680px;
}

.hero__tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--ember);
}

.hero__text {
  color: var(--ash);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__price {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.85;
}

.hero__status {
  font-size: 0.88rem;
  font-weight: 600;
  color: #86efac;
}

.hero__status.closed {
  color: #fca5a5;
}

/* Buttons */
.btn {
  display: inline-flex;
  padding: 0.75rem 1.35rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--fire {
  background: var(--ember);
  color: var(--white);
}

.btn--fire:hover {
  background: #c2410c;
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Bands */
.band {
  padding: 4rem 0;
  background: var(--coal-light);
}

.band--dark {
  background: var(--coal);
}

.band--quotes {
  background: linear-gradient(135deg, #2a1508 0%, var(--coal) 100%);
}

.band__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.band__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.band__head p {
  color: var(--ash);
}

/* Menu */
.menu-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dish {
  background: var(--coal-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.25rem;
  border-top: 3px solid var(--ember);
  transition: transform 0.2s;
}

.band--dark .dish {
  background: #252525;
}

.dish:hover {
  transform: translateY(-3px);
}

.dish.hidden {
  display: none;
}

.dish__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.dish h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.dish p {
  font-size: 0.88rem;
  color: var(--ash);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.filter-bar input,
.filter-bar select {
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: var(--coal-light);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
}

.filter-bar input {
  min-width: 200px;
}

/* Perks */
.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.perk {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.perk strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.perk span {
  font-size: 0.85rem;
  color: var(--ash);
}

/* Quotes */
.band--quotes h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quotes blockquote {
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--ember);
  padding: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.quotes__meta {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ash);
}

/* Map */
.map-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 420px;
}

.map-split__info {
  padding: 3rem 2rem 3rem 4vw;
  background: var(--coal);
}

.map-split__info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.map-split__info address {
  line-height: 1.75;
  color: var(--ash);
  margin-bottom: 0.75rem;
}

.map-split__code {
  font-size: 0.88rem;
  color: var(--ash);
  margin-bottom: 1.25rem;
}

.hours {
  margin-bottom: 1.5rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.hours dt {
  font-weight: 600;
}

.hours dd {
  color: var(--ash);
}

.hours div.today {
  color: var(--flame);
}

.hours div.today dd {
  color: var(--cream);
}

.map-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.map-split__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Footer */
.foot {
  padding: 1.5rem 0 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ash);
}

.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.foot__nav a {
  color: var(--flame);
  font-weight: 600;
}

.mob-nav {
  display: none;
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mob-nav a {
  text-align: center;
  padding: 0.95rem;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--coal-light);
}

.mob-nav a:first-child {
  background: var(--ember);
}

/* Legal subpages */
.page {
  padding: 6rem 0 3rem;
  min-height: 70vh;
}

.page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.page h2 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--flame);
}

.page p,
.page li {
  color: var(--ash);
  margin-bottom: 0.75rem;
}

.page ul {
  padding-left: 1.25rem;
}

.page a {
  color: var(--flame);
  font-weight: 600;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-cards section {
  background: var(--coal-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: 8px;
}

.contact-cards h2 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-cards p,
.contact-cards address {
  color: var(--white);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-row,
  .perks,
  .quotes {
    grid-template-columns: 1fr 1fr;
  }

  .map-split {
    grid-template-columns: 1fr;
  }

  .map-split__info {
    padding: 2.5rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .head__toggle {
    display: block;
  }

  .head__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--coal);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .head__nav.open {
    display: flex;
  }

  .head__cta {
    display: none;
  }

  .menu-row,
  .perks,
  .quotes {
    grid-template-columns: 1fr;
  }

  .mob-nav {
    display: grid;
  }

  .foot {
    padding-bottom: 4.5rem;
  }
}
