:root {
  --ink: #171713;
  --charcoal: #242622;
  --paper: #fffaf0;
  --cream: #f4ead7;
  --leaf: #f47b20;
  --leaf-dark: #8f1d14;
  --tomato: #d92d20;
  --mustard: #ffd166;
  --white: #ffffff;
  --muted: #6d6a61;
  --line: rgba(23, 23, 19, 0.14);
  --shadow: 0 24px 70px rgba(23, 23, 19, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 23, 19, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(23, 23, 19, 0.12) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  opacity: 0.16;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

code {
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  background: rgba(23, 23, 19, 0.08);
  font-size: 0.9em;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  min-height: 4.35rem;
  margin: 1.35rem auto 0;
  padding: 0.72rem;
  color: var(--white);
  overflow: visible;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 14px 44px rgba(23, 23, 19, 0.12);
  backdrop-filter: blur(16px);
}

.brand-mark {
  position: absolute;
  top: 50%;
  left: 0.72rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
  transform: translateY(-50%);
}

.brand-mark__logo-wrap {
  display: grid;
  place-items: center;
  width: clamp(6.4rem, 8vw, 7.4rem);
  height: clamp(6.4rem, 8vw, 7.4rem);
}

.brand-mark__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(23, 23, 19, 0.22);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .site-nav,
.site-header:focus-within .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.site-nav a {
  padding: 0.65rem 0.82rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--mustard);
  outline: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(11, 12, 10, 0.9) 0%, rgba(11, 12, 10, 0.64) 40%, rgba(11, 12, 10, 0.2) 76%),
    linear-gradient(0deg, rgba(11, 12, 10, 0.82) 0%, transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 8.5rem 0 8rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--tomato);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--leaf);
}

.hero h1,
.section h2,
.about-band h2 {
  max-width: 820px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 13vw, 9.5rem);
  text-transform: uppercase;
}

.hero__copy {
  max-width: 620px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__actions,
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button,
.menu-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.menu-tab:hover,
.menu-tab:focus-visible,
.menu-tab.is-active {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  outline: none;
}

.button--primary,
.menu-tab.is-active {
  background: var(--leaf);
}

.button--secondary {
  color: var(--white);
  background: var(--tomato);
}

.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100% - 2rem, var(--max));
  margin: -4.2rem auto 0;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.quick-info > div {
  min-width: 0;
  padding: 1.25rem;
  background: var(--mustard);
}

.quick-info > div:nth-child(2) {
  background: var(--leaf);
}

.quick-info > div:nth-child(3) {
  color: var(--white);
  background: var(--tomato);
}

.quick-info__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.section,
.about-band {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section__intro {
  max-width: 760px;
}

.section__intro h2,
.about-band h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  text-transform: uppercase;
}

.section__intro p:not(.eyebrow),
.about-band p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-tabs {
  margin-top: 2.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.menu-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  padding: 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 6px 6px 0 rgba(23, 23, 19, 0.9);
}

.menu-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: auto;
}

.menu-card__top span {
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.75rem;
  font-weight: 900;
}

.menu-card__top strong {
  font-size: 1.1rem;
}

.menu-card h3 {
  margin: 2rem 0 0.55rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
}

.section--flavours {
  padding-top: 0;
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.flavour-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 17rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(244, 123, 32, 0.32), transparent 52%),
    var(--ink);
  box-shadow: 6px 6px 0 var(--tomato);
}

.flavour-card__number {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3.4rem;
  line-height: 0.9;
}

.flavour-card__heat {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mustard);
  font-size: 0.75rem;
  font-weight: 900;
}

.flavour-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.flavour-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.hours-panel {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--ink);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row.is-today {
  background: var(--leaf);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.16), transparent 45%),
    var(--ink);
}

.about-band .eyebrow {
  color: var(--mustard);
}

.about-band p {
  color: rgba(255, 255, 255, 0.78);
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.about-highlight span {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--ink);
  background: var(--leaf);
  box-shadow: 3px 3px 0 var(--tomato);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-card,
.contact-form {
  min-width: 0;
  padding: 1.2rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 6px 6px 0 var(--ink);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-style: normal;
}

.contact-card__label {
  color: var(--tomato);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.15rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 0.85rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 2px solid var(--ink);
  font-weight: 900;
}

@media (max-width: 960px) {
  .menu-grid,
  .flavour-grid,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-column: 1 / -1;
  }

  .section--split,
  .about-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 1rem);
    min-height: 4rem;
    margin-top: 1rem;
  }

  .brand-mark__logo-wrap {
    width: 5.6rem;
    height: 5.6rem;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 2px solid currentColor;
    border-radius: var(--radius);
    color: inherit;
    background: rgba(255, 255, 255, 0.18);
  }

  .nav-toggle span:not(.sr-only) {
    width: 1.25rem;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    backdrop-filter: none;
  }

  .site-header.is-scrolled .site-nav,
  .site-header:focus-within .site-nav {
    background: var(--paper);
    border-color: var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(11, 12, 10, 0.9) 0%, rgba(11, 12, 10, 0.56) 70%, rgba(11, 12, 10, 0.2) 100%);
  }

  .hero__content {
    padding: 8rem 0 6rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.6rem);
  }

  .quick-info {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }

  .menu-grid,
  .flavour-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
