/* ========================================================================
   KNOCKBACK NAT'S — design tokens
   ======================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap");

:root {
  /* color */
  --ink: #141110;
  --ink-soft: #1d1917;
  --paper: #f8f4ec;
  --paper-dim: #efe7d8;
  --red: #cf1c2c;
  --red-dark: #8f0f1c;
  --gold: #e8a53d;
  --line: rgba(20, 17, 16, 0.14);
  --line-light: rgba(247, 242, 231, 0.16);

  /* type */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Barlow Condensed", "Segoe UI", sans-serif;

  /* rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(3.25rem, 8vw, 6.5rem);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 14px 30px rgba(20, 17, 16, 0.12);
  --shadow-card-dark: 0 16px 34px rgba(0, 0, 0, 0.35);
}

/* ========================================================================
   Reset
   ======================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; text-transform: uppercase; }

p { margin: 0; }

button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ========================================================================
   Buttons
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--red {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 6px 0 var(--red-dark);
}
.btn--red:hover { box-shadow: 0 8px 0 var(--red-dark); }
.btn--red:active { box-shadow: 0 3px 0 var(--red-dark); }

.btn--outline {
  border-color: var(--paper);
  color: var(--paper);
}
.btn--outline:hover { background: var(--paper); color: var(--ink); }

.btn--outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline-dark:hover { background: var(--ink); color: var(--paper); }

.btn--block { width: 100%; justify-content: center; }

.btn--arrow svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn--arrow:hover svg { transform: translateX(4px); }

/* ========================================================================
   Utility bar + header
   ======================================================================== */

.utility-bar {
  background: var(--ink);
  color: var(--paper-dim);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.utility-bar .container::-webkit-scrollbar { display: none; }
.utility-bar a:hover { color: var(--gold); }
.utility-bar__sep { opacity: 0.4; }
.utility-bar__age {
  margin-left: auto;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .utility-bar { font-size: 0.66rem; letter-spacing: 0.02em; }
  .utility-bar .container { gap: 0.4rem; }
  .utility-bar__hours { display: none; }
  .utility-bar .utility-bar__sep { display: none; }
}

.site-header {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.7rem;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; display: block; }

.brand--footer .brand-logo { height: 48px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 1.8rem; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  position: relative;
  padding-block: 0.3rem;
}
.main-nav a:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  width: 40px; height: 34px;
  background: none; border: none;
  position: relative;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px;
  height: 3px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__bars { top: 15px; }
.nav-toggle__bars::before { top: -9px; }
.nav-toggle__bars::after { top: 9px; }

.mobile-nav { display: none; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--ink);
    transition: max-height 0.25s ease;
  }
  .mobile-nav.is-open { max-height: 480px; }
  .mobile-nav ul { padding: 1rem var(--gutter) 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
  .mobile-nav a { color: var(--paper); font-family: var(--font-display); font-size: 1.05rem; }
  .mobile-nav .btn { margin-top: 0.4rem; }
}

/* ========================================================================
   Hero
   ======================================================================== */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 9vw, 6rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,16,0.68) 0%, rgba(20,17,16,0.8) 55%, rgba(20,17,16,0.95) 100%),
    linear-gradient(90deg, rgba(20,17,16,0.92) 0%, rgba(20,17,16,0.6) 48%, rgba(20,17,16,0.78) 100%);
}
.hero__age-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 170px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.hero__age-ribbon span {
  position: absolute;
  top: 28px;
  right: -46px;
  width: 200px;
  transform: rotate(45deg);
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.45rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}
@media (max-width: 480px) {
  .hero__age-ribbon { width: 130px; height: 130px; }
  .hero__age-ribbon span { top: 20px; right: -42px; width: 160px; font-size: 0.75rem; padding: 0.35rem 0; }
}
.hero .container {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 720px;
}
.hero__eyebrow {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.0;
}
.hero h1 span { color: var(--red); }
.hero__sub {
  margin-top: 1.1rem;
  max-width: 46ch;
  font-size: 1.18rem;
  color: var(--paper-dim);
}
.hero__actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.hero__actions .btn {
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
}
.hero__actions .btn--red { box-shadow: 0 4px 0 var(--red-dark); }
.hero__actions .btn--red:hover { box-shadow: 0 6px 0 var(--red-dark); }
.hero__actions .btn--red:active { box-shadow: 0 2px 0 var(--red-dark); }
.hero__meta {
  margin-top: 1.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(247, 242, 231, 0.55);
}
.hero__meta--address { margin-top: 0.35rem; }

@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero .container { max-width: 100%; }
}

/* ========================================================================
   Ticker
   ======================================================================== */

.ticker {
  background: linear-gradient(90deg, var(--ink) 0%, var(--red) 6%, var(--red) 94%, var(--ink) 100%);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  border-top: 3px solid var(--ink);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker__set { display: flex; align-items: center; }
.ticker__item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.6rem;
  white-space: nowrap;
}
.ticker__item::after { content: "\2605"; margin-left: 1.6rem; opacity: 0.7; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ========================================================================
   Sections
   ======================================================================== */

.section { padding-block: var(--section-pad); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--red { background: var(--red); color: var(--paper); }
.section--dim { background: var(--paper-dim); }

.section__head { max-width: 62ch; margin-bottom: 2.6rem; }
.section__head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-display);
  color: var(--red);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.section--dark .eyebrow, .section--red .eyebrow { color: var(--gold); }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section__head p { margin-top: 0.8rem; font-size: 1.1rem; opacity: 0.85; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- About / vibe ---- */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.about-text p + p { margin-top: 1rem; }
.about-text__tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--red);
}
.about-photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-photos img:not(.vibe-sign-badge) {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
}
.about-photos img:nth-child(1) { transform: translateY(-14px); }
.about-photos img:nth-child(2) { transform: translateY(14px); }

.vibe-sign-badge {
  position: absolute;
  bottom: -3.75rem;
  left: 50%;
  width: 62%;
  max-width: 260px;
  transform: translateX(-50%) rotate(-4deg);
  border: 4px solid var(--paper);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  z-index: 2;
}

@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-photos img:nth-child(1), .about-photos img:nth-child(2) { transform: none; }
  .vibe-sign-badge { bottom: -2.8rem; width: 55%; }
}

/* ---- Wings highlight ---- */

.wings-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.wings-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--ink);
}
.wings-photo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.wings-photo--home {
  border: none;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  aspect-ratio: 2/1;
}
.wings-photo--home img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
}

.wings-content__eyebrow { margin-bottom: 0; }
.wings-content__headline {
  margin-top: 0.6rem;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 1.06;
}
.wings-content__desc {
  margin-top: 1.3rem;
  font-size: 1.1rem;
  line-height: 1.65;
  text-transform: none;
  opacity: 0.9;
}
.wings-content__cta { margin-top: 2.3rem; padding: 0.75rem 1.9rem; font-size: 0.95rem; letter-spacing: 0.06em; }

@media (max-width: 640px) {
  .wings-photo--home { aspect-ratio: 4/3; }
}

.press-badge {
  margin-top: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 1rem 0.5rem 0.9rem;
  border-left: 3px solid var(--red);
  background: var(--ink);
  border-radius: 0 4px 4px 0;
}
.press-badge img { height: 22px; width: auto; }
.press-badge span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--paper-dim);
}

.press-badge--trophy {
  gap: 0.65rem;
  padding: 0.6rem 1.2rem;
  background: var(--paper-dim);
  border-left: none;
  border-radius: 999px;
}
.press-badge__icon {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}
.press-badge--trophy span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
}
.press-badge__brand {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink) !important;
  margin-left: 0.15rem;
}
.press-badge__brand strong {
  font-weight: 800;
  font-style: italic;
  color: var(--red);
}

.press-badge--home {
  margin-top: 1.9rem;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-left: 4px solid var(--red);
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  border-radius: 10px;
  background: rgba(247, 242, 231, 0.05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
.press-badge--home img { height: 26px; }
.press-badge--home span { font-size: 0.92rem; letter-spacing: 0.04em; }

.wing-sizes-home {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.wing-size-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1rem 0.6rem;
  background: rgba(247, 242, 231, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 12px;
}
.wing-size-home strong {
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--paper-dim);
}
.wing-size-home span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
}

@media (max-width: 640px) {
  .wing-size-home { padding: 0.85rem 0.4rem; }
  .wing-size-home strong { font-size: 0.7rem; }
  .wing-size-home span { font-size: 1.25rem; }
}

.sauce-list {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.sauce-chip {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.42rem 1.05rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 2px 0 rgba(20,17,16,0.12);
}
.sauce-chip--hot { border-color: var(--red); color: var(--paper); background: var(--red); }

.section--dark .sauce-chip {
  border-color: var(--line-light);
  background: rgba(247, 242, 231, 0.1);
  color: var(--paper);
  box-shadow: none;
}
.section--dark .sauce-chip--hot { border-color: var(--red); color: var(--paper); background: var(--red); }

.wings-content__sauces {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.wings-content__sauces .sauce-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 0.6rem;
}

@media (max-width: 860px) {
  .wings-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .wings-content__sauces { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Gallery / slideshow ---- */

.slideshow { position: relative; }
.slideshow__viewport {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--ink);
}
.slideshow__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.5s ease;
}
.slideshow__slide.is-active { opacity: 1; }
.slideshow__slide img { width: 100%; height: 100%; object-fit: cover; }

.slideshow__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20,17,16,0.55);
  color: var(--paper);
  border: 2px solid var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.slideshow__arrow:hover { background: var(--red); }
.slideshow__arrow svg { width: 20px; height: 20px; }
.slideshow__arrow--prev { left: 14px; }
.slideshow__arrow--next { right: 14px; }

.slideshow__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}
.slideshow__caption { font-size: 1rem; opacity: 0.8; }
.slideshow__dots { display: flex; gap: 0.5rem; }
.slideshow__dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--ink); background: transparent; padding: 0;
}
.slideshow__dot.is-active { background: var(--red); border-color: var(--red); }

.gallery-cta { margin-top: 2rem; display: flex; justify-content: center; }

/* ---- Reviews ---- */

.rating-stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}
.rating-stat__stars { color: var(--gold); font-size: 1.9rem; letter-spacing: 0.06em; }
.rating-stat__score { font-family: var(--font-display); font-size: 2.6rem; color: var(--ink); line-height: 1; }
.rating-stat__outof { font-size: 1.3rem; opacity: 0.55; margin-left: 0.1rem; }
.rating-stat__source {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.reviews-carousel { max-width: 640px; margin-inline: auto; }
.reviews-carousel__viewport { overflow: hidden; }
.reviews-carousel__track {
  display: flex;
  transition: transform 0.6s ease;
}
.review-slide { flex: 0 0 100%; min-width: 0; }
.review-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 2px solid var(--ink);
  height: 100%;
}
.review-card__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.6rem; }
.review-card p { font-size: 1.05rem; }
.review-card__name { margin-top: 0.9rem; font-family: var(--font-display); font-size: 0.9rem; opacity: 0.75; }

.reviews-carousel__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.2rem; }
.reviews-carousel__dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--ink); background: transparent; padding: 0;
}
.reviews-carousel__dot.is-active { background: var(--red); border-color: var(--red); }

/* ---- Visit / hours ---- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: 0.45rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr.is-today td { color: var(--red); font-weight: 700; }
.hours-block + .hours-block { margin-top: 1.8rem; }
.hours-block h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }

.hours-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.hours-toggle:hover { background: var(--ink); color: var(--paper); }
.hours-toggle svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.hours-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.hours-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.hours-panel.is-open { max-height: 700px; margin-top: 1.6rem; }

.visit-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.visit-card address { font-style: normal; font-size: 1.1rem; margin-top: 0.6rem; }
.visit-card address a:hover { text-decoration: underline; }
.visit-card__actions { margin-top: 1.4rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.visit-card__map {
  margin-top: 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--line-light);
}
.visit-card__map iframe { width: 100%; height: 220px; border: 0; display: block; }
.visit-card__note { margin-top: 1rem; font-size: 0.9rem; opacity: 0.75; }

@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* ---- Menu page ---- */

.menu-header {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 6rem);
  text-align: center;
}
.menu-header .hero__bg::after {
  background:
    linear-gradient(180deg, rgba(20,17,16,0.55) 0%, rgba(20,17,16,0.65) 55%, rgba(20,17,16,0.9) 100%);
}
.menu-header .container { position: relative; z-index: 2; max-width: 100%; }
.menu-header h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.menu-header p { margin-top: 0.7rem; opacity: 0.8; font-size: 1.1rem; }

.menu-section .wings-photo {
  position: relative;
  margin-bottom: 2.4rem;
  aspect-ratio: auto;
  overflow: visible;
}
.menu-section .wings-photo img {
  aspect-ratio: 21/9;
  border-radius: calc(var(--radius) - 3px);
}

.wings-photo__badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  border: 4px solid var(--paper);
  box-shadow: 0 10px 22px rgba(0,0,0,0.3);
  z-index: 2;
  white-space: nowrap;
}

.special-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 0.9rem 1.4rem;
  margin-top: 1.8rem;
}
.special-banner__text { display: flex; flex-direction: column; gap: 0.25rem; }
.special-banner__day {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
}
.special-banner__deal {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.special-banner__price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--red);
  line-height: 1;
}

.menu-section + .menu-section { margin-top: 1.5rem; }

.wings-pricing { text-align: center; margin-bottom: 1rem; }
.wings-pricing .wing-sizes {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.wings-pricing .wing-size {
  background: var(--paper-dim);
  border-radius: var(--radius);
  padding: 0.75rem 1.4rem;
  border-right: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 0;
  max-width: 9.5rem;
}
.wings-pricing .wing-size strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
  width: 100%;
}
.wings-pricing .wing-size span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--red);
  opacity: 1;
}
.menu-section__title {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.45rem;
  margin-bottom: 1.1rem;
}
.menu-section__title h2 { font-size: 1.6rem; }
.menu-section__title--hero h2 { font-size: clamp(2rem, 5vw, 2.6rem); }
.menu-section__title span { font-size: 0.95rem; opacity: 0.6; }

.wing-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.6rem;
  padding-bottom: 1.1rem;
  border-bottom: 2px solid currentColor;
}
.wing-size {
  text-align: center;
  padding-inline: 1.7rem;
  border-right: 1px solid var(--line);
}
.wing-size:first-child { padding-left: 0; }
.wing-size:last-child { border-right: none; }
.wing-size strong { display: block; font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--red); }
.wing-size span { opacity: 0.75; }
.section--dark .wing-size { border-right-color: var(--line-light); }
.wing-size span { font-size: 0.85rem; opacity: 0.7; }

.wing-sizes--prominent { gap: 0; flex-wrap: nowrap; }
.wing-sizes--prominent .wing-size {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-inline: 2rem;
}
.wing-sizes--prominent .wing-size:first-child { padding-left: 0; }
.wing-sizes--prominent .wing-size strong { display: inline; font-size: 2.4rem; }
.wing-sizes--prominent .wing-size span { font-size: 1.15rem; opacity: 0.85; }

@media (max-width: 520px) {
  .wing-sizes--prominent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: none;
    padding-bottom: 0;
  }
  .wing-sizes--prominent .wing-size {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding-inline: 0.4rem;
    padding-bottom: 1.1rem;
    border-right: none;
    border-bottom: 2px solid currentColor;
  }
  .wing-sizes--prominent .wing-size:first-child { padding-left: 0.4rem; }
  .wing-sizes--prominent .wing-size strong { font-size: 1.9rem; }
  .wing-sizes--prominent .wing-size span { font-size: 0.95rem; }
}

.sauce-panel {
  background: var(--paper-dim);
  border-radius: var(--radius);
  padding: 0.9rem 1.3rem;
  margin-bottom: 1.1rem;
}
.sauce-panel h3 { font-size: 0.95rem; margin-bottom: 0.55rem; }
.sauce-panel .sauce-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.sauce-panel .sauce-chip {
  text-align: center;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  border-width: 1px;
  box-shadow: none;
}

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2.4rem; }
.menu-item { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.55rem; border-bottom: 1px dashed var(--line); }
.menu-item__name { font-weight: 700; }
.menu-item__desc { display: block; font-size: 0.92rem; opacity: 0.7; font-weight: 500; margin-top: 0.15rem; }
.menu-item__price { font-family: var(--font-display); color: var(--red); white-space: nowrap; }

.menu-note { margin-top: 1rem; font-size: 0.95rem; opacity: 0.7; }

.menu-accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.accordion-item__toggle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--red);
  transition: transform 0.25s ease;
}
.accordion-item__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item__panel.is-open { max-height: 1600px; }
.accordion-item__inner { padding-bottom: 1.6rem; }
.accordion-item__inner .menu-note { margin-top: 1.2rem; }

@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ---- Our Story page ---- */

.story-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}
.story-hero .hero__bg::after {
  background:
    linear-gradient(180deg, rgba(20,17,16,0.55) 0%, rgba(143,15,28,0.55) 55%, rgba(20,17,16,0.85) 100%);
}
.story-hero .container { position: relative; z-index: 2; max-width: 100%; }
.story-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

.timeline { display: grid; gap: 1.6rem; margin-top: 1.6rem; }
.timeline__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.timeline__year { font-family: var(--font-display); font-size: 1.6rem; color: var(--red); }
.timeline__item p { margin-top: 0.35rem; }
.timeline__item h3 { font-size: 1.15rem; }

.quote-block {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  margin-block: 3rem;
}
.quote-block p { font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.7rem); line-height: 1.35; text-transform: none; }
.quote-block cite { display: block; margin-top: 1rem; font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }

.story-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
.story-columns p + p { margin-top: 1rem; }

@media (max-width: 860px) {
  .story-columns { grid-template-columns: 1fr; }
  .timeline__item { grid-template-columns: 70px 1fr; }
}

.source-note {
  margin-top: 2.4rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
.source-note a { color: var(--red); text-decoration: underline; }

/* ========================================================================
   Footer
   ======================================================================== */

.site-footer {
  background: var(--ink);
  color: var(--paper-dim);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.4rem;
}
.footer-brand svg { height: 44px; width: auto; }
.footer-brand p { margin-top: 0.9rem; max-width: 32ch; opacity: 0.75; }
.footer-social { margin-top: 1.2rem; display: flex; gap: 0.9rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper-dim);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 19px; height: 19px; }

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--paper);
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.98rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.65;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ---- Jobs page ---- */

.jobs-hero,
.gallery-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}
.jobs-hero .hero__bg::after,
.gallery-hero .hero__bg::after {
  background:
    linear-gradient(180deg, rgba(20,17,16,0.5) 0%, rgba(20,17,16,0.6) 55%, rgba(20,17,16,0.92) 100%);
}
.jobs-hero .container,
.gallery-hero .container { position: relative; z-index: 2; max-width: 640px; margin-inline: auto; }
.jobs-hero h1,
.gallery-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.jobs-hero p,
.gallery-hero p { margin-top: 1rem; font-size: 1.1rem; opacity: 0.85; text-transform: none; }

/* ---- Gallery page ---- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.gallery-item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--paper-dim);
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 17, 16, 0.94);
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}
.lightbox.is-open { display: flex; }
.lightbox__image {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247, 242, 231, 0.1);
  border: 2px solid var(--line-light);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__close:hover { background: var(--red); border-color: var(--red); }
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(247, 242, 231, 0.1);
  border: 2px solid var(--line-light);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__arrow svg { width: 22px; height: 22px; }
.lightbox__arrow:hover { background: var(--red); border-color: var(--red); }
.lightbox__arrow--prev { left: 1rem; }
.lightbox__arrow--next { right: 1rem; }

@media (max-width: 600px) {
  .lightbox__arrow { width: 40px; height: 40px; }
  .lightbox__close { top: 0.8rem; right: 0.8rem; }
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.job-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.job-card h3 { font-size: 1.3rem; color: var(--red); }
.job-card p { margin-top: 0.7rem; text-transform: none; font-size: 1rem; opacity: 0.85; }

@media (max-width: 860px) {
  .jobs-grid { grid-template-columns: 1fr; }
}

.apply-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.apply-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.apply-form input,
.apply-form select,
.apply-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
}
.apply-form textarea { resize: vertical; }
.apply-form__full { grid-column: 1 / -1; }
.apply-form button { align-self: flex-start; }

@media (max-width: 600px) {
  .apply-form__row { grid-template-columns: 1fr; }
}
