/* ==========================================================================
   Longshot Pizza & Wings — site styles
   Brand: Longshot Black #000000 · Warm White #F2F1EC · Longshot Red #FF2D2D
   Type:  Bebas Neue (headlines, uppercase) · Montserrat (everything else)
   ========================================================================== */

/* --- Fonts: self-hosted, latin subset. No third-party request. ----------- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/bebas-neue-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-var.woff2') format('woff2-variations'),
       url('../fonts/montserrat-var.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* --- Tokens ------------------------------------------------------------- */
:root {
  --black:      #000000;
  --ink:        #0b0b0b;   /* page background, a hair off pure black */
  --panel:      #131313;
  --panel-2:    #1b1a19;
  --warm:       #f2f1ec;
  --warm-dim:   #b8b6ae;
  --warm-faint: #7d7b75;
  --red:        #ff2d2d;
  --red-deep:   #c81f1f;
  --line:       rgba(242, 241, 236, 0.14);
  --line-soft:  rgba(242, 241, 236, 0.08);

  --display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 4px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--warm);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--warm); text-decoration-color: var(--red); text-underline-offset: 3px; }
a:hover { color: var(--red); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .035em;   /* Bebas needs +2–7% tracking per brand standard */
  line-height: .95;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.9rem, 8.5vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h3 { font-size: clamp(1.45rem, 3vw, 1.9rem); }
h4 { font-size: 1.2rem; letter-spacing: .06em; }
p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
}
.eyebrow--warm { color: var(--warm-faint); }
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--warm-dim); max-width: 62ch; }
.tagline { font-family: var(--display); letter-spacing: .05em; color: var(--red); }
.muted { color: var(--warm-dim); }
.faint { color: var(--warm-faint); font-size: .85rem; }
.nowrap { white-space: nowrap; }

/* --- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3.25rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.section--panel { background: var(--panel); border-block: 1px solid var(--line-soft); }
.section--red { background: var(--red-deep); }
.rule { height: 4px; width: 78px; background: var(--red); border: 0; margin: 0 0 1.75rem; }
.center { text-align: center; }
.center .rule, .center .lede { margin-inline: auto; }
.stack > * + * { margin-top: 1.15rem; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 205px), 1fr)); }

/* --- Skip link ---------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: .85rem 1.25rem; font-weight: 700;
}
.skip:focus { left: 0; color: #fff; }

/* --- Announcement bar --------------------------------------------------- */
.announce {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .55rem var(--gut);
}
@media (max-width: 560px) {
  .announce { font-size: .68rem; letter-spacing: .08em; line-height: 1.5; }
}
.announce a { color: #fff; text-decoration-color: rgba(255,255,255,.6); }
.announce a:hover { color: #fff; }

/* --- Header ------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 6, 6, .94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header__bar {
  max-width: var(--wrap); margin-inline: auto; padding: .7rem var(--gut);
  display: flex; align-items: center; gap: 1rem;
}
.header__logo { flex: 0 0 auto; line-height: 0; }
.header__logo img { width: 172px; }
@media (max-width: 420px) { .header__logo img { width: 138px; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(.9rem, 1.9vw, 1.6rem); }
.nav a {
  font-family: var(--body);
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--warm); white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--red); }
.nav__cta { margin-left: .3rem; }

.nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid var(--line); color: var(--warm);
  font-family: var(--body); font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: .6rem .85rem; border-radius: var(--radius); cursor: pointer;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; order: 3; width: 100%; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    border-top: 1px solid var(--line-soft); padding-top: .5rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .1rem; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
  .nav__cta { margin: .75rem 0 .35rem; text-align: center; }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  padding: .95rem 1.7rem; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn--ghost { background: transparent; color: var(--warm); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--warm); color: var(--warm); background: rgba(242,241,236,.06); }
.btn--light { background: var(--warm); color: var(--black); border-color: var(--warm); }
.btn--light:hover { background: transparent; color: var(--warm); }
.btn--lg { font-size: .95rem; padding: 1.15rem 2.3rem; }
.btn--block { display: block; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(255,45,45,.16) 0%, transparent 58%),
    linear-gradient(180deg, #000 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--wrap); margin-inline: auto; padding: clamp(2.75rem, 7vw, 5rem) var(--gut);
  display: grid; gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: 1.15fr .85fr; align-items: center;
}
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 1.25rem; }
  /* Keep Loki small enough that the headline and the order button stay
     above the fold on a phone. */
  .hero__art { order: -1; max-width: 210px; margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
  .hero .lede, .hero .rule { margin-inline: auto; }
  .hero__meta { justify-content: center; }
}
@media (max-width: 420px) {
  .hero__art { max-width: 168px; }
}
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--red); display: block; }
.hero__art img { width: 100%; max-width: 380px; margin-inline: auto; }
.hero__meta {
  margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .82rem; letter-spacing: .05em; color: var(--warm-dim);
}
.hero__meta strong { color: var(--warm); font-weight: 600; }

/* --- Cards -------------------------------------------------------------- */
.card {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.9rem);
}
.card--link { text-decoration: none; color: inherit; display: block; transition: border-color .15s ease, background-color .15s ease; }
.card--link:hover { border-color: var(--red); background: var(--panel-2); color: inherit; }
.card__label {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: .6rem;
}
.card h3 { margin-bottom: .45rem; }
.card p { font-size: .95rem; color: var(--warm-dim); }
.card__more { display: inline-block; margin-top: .9rem; font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--red); }

/* --- Menu --------------------------------------------------------------- */
.menu-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1.25rem;
  border-bottom: 2px solid var(--red); padding-bottom: .6rem; margin-bottom: 1.75rem;
}
.menu-head h2, .menu-head h3 { margin: 0; }
.menu-head .sizes {
  margin-left: auto; font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--warm-faint);
}
/* One big price beside a section title, for sections where everything is
   the same price (wraps and salads). Baseline-aligns with the h2. */
.menu-head__price {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: .95;
  letter-spacing: .03em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.items { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.items--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: 1.4rem clamp(1.5rem, 4vw, 3rem); }
.item { border-bottom: 1px dotted var(--line); padding-bottom: 1.1rem; }
.item:last-child { border-bottom: 0; }
.item__top { display: flex; align-items: baseline; gap: 1rem; }
.item__name {
  font-family: var(--display); font-size: 1.42rem; letter-spacing: .04em;
  text-transform: uppercase; margin: 0; line-height: 1.05;
}
.item__price {
  margin-left: auto; flex: 0 0 auto;
  font-family: var(--display); font-size: 1.3rem; letter-spacing: .04em; color: var(--red);
  font-variant-numeric: tabular-nums;
}
.item__desc { margin: .35rem 0 0; font-size: .9rem; line-height: 1.55; color: var(--warm-dim); }
.veg {
  display: inline-block; margin-left: .45rem; vertical-align: middle;
  font-family: var(--body); font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  color: #7ec87e; border: 1px solid #7ec87e; border-radius: 2px; padding: .1rem .28rem; line-height: 1;
}

/* simple price rows (wings, sides, drinks) */
.rows { list-style: none; margin: 0; padding: 0; }
.rows li {
  display: flex; align-items: baseline; gap: .75rem;
  padding: .62rem 0; border-bottom: 1px dotted var(--line);
  font-size: .95rem;
}
.rows li:last-child { border-bottom: 0; }
.rows .dots { flex: 1 1 auto; border-bottom: 1px dotted var(--line-soft); transform: translateY(-.25rem); }
.rows .p { font-family: var(--display); font-size: 1.15rem; letter-spacing: .04em; color: var(--red); font-variant-numeric: tabular-nums; }

/* --- Wing heat scale ---------------------------------------------------- */
.heat { list-style: none; margin: 0; padding: 0; }
.heat__axis {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--warm-faint); padding-bottom: .5rem; border-bottom: 1px solid var(--line);
  margin-bottom: .25rem;
}
.heat li {
  display: flex; align-items: baseline; gap: .9rem;
  padding: .7rem 0; border-bottom: 1px dotted var(--line);
}
.heat li:last-child { border-bottom: 0; }
.heat .name {
  font-family: var(--display); font-size: 1.2rem; letter-spacing: .04em;
  text-transform: uppercase; line-height: 1; flex: 0 0 auto;
}
/* scoped name — a bare .note would inherit the callout-box styling below */
.heat__note { font-size: .8rem; color: var(--warm-faint); }
.heat .meter {
  margin-left: auto; flex: 0 0 auto; display: flex; gap: 3px; align-self: center;
}
.heat .meter span {
  display: block; width: 15px; height: 9px; border-radius: 1px;
  background: rgba(242, 241, 236, .13);
}
.heat .meter span.on { background: var(--red); }
.heat .meter span.on:nth-child(1) { background: #ff8a4c; }
.heat .meter span.on:nth-child(2) { background: #ff6a34; }
.heat .meter span.on:nth-child(3) { background: #ff4a2e; }
@media (max-width: 420px) {
  .heat .meter span { width: 11px; }
  .heat .name { font-size: 1.05rem; }
}

/* topping / flavor chip lists */
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li {
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 2px; padding: .42rem .7rem; color: var(--warm-dim);
}
.chips--heat li { position: relative; }

/* step blocks for build-your-own */
.step__num {
  font-family: var(--display); font-size: 2.6rem; line-height: 1; color: var(--red);
  letter-spacing: .04em; margin: 0 0 .2rem;
}

/* --- Tables (accessible, machine-readable pricing) ---------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.25rem; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 380px; }
caption { text-align: left; font-size: .8rem; color: var(--warm-faint); padding-bottom: .6rem; }
th, td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line-soft); }
th {
  font-family: var(--body); font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--warm-faint); border-bottom-color: var(--line);
}
td.p, th.p { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
td.p { color: var(--red); font-weight: 600; }

/* --- Bites callout ------------------------------------------------------ */
.bites {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%);
  color: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); text-align: center;
}
.bites h2, .bites h3 { color: #fff; margin-bottom: .35rem; }
.bites p { color: rgba(255,255,255,.94); max-width: 54ch; margin-inline: auto; }
.bites .on-us {
  display: inline-block; margin-top: .9rem;
  font-family: var(--display); font-size: 1.5rem; letter-spacing: .12em;
  border: 2px solid #fff; padding: .3rem 1.1rem; border-radius: var(--radius);
}

/* --- FAQ ---------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line-soft); }
.faq__q {
  border-bottom: 1px solid var(--line-soft); padding: 1.35rem 0;
}
.faq__q h3 { font-family: var(--body); font-size: 1.02rem; font-weight: 700;
  text-transform: none; letter-spacing: 0; line-height: 1.4; margin: 0 0 .55rem; }
.faq__q p { font-size: .95rem; color: var(--warm-dim); margin-bottom: 0; }
.faq__q p + p { margin-top: .7rem; }

/* --- Photo slots (drop real photography in later) ----------------------- */
.photo-slot {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: .3rem; padding: 1.25rem;
  background:
    repeating-linear-gradient(45deg, rgba(242,241,236,.028) 0 12px, transparent 12px 24px),
    var(--panel);
  border: 2px dashed var(--line); border-radius: var(--radius);
  color: var(--warm-faint);
}
.photo-slot::before { content: "▣"; font-size: 1.5rem; color: var(--line); line-height: 1; }
.photo-slot b {
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--warm-dim);
}
.photo-slot span { font-size: .74rem; line-height: 1.45; max-width: 34ch; }
.photo-slot--wide { aspect-ratio: 16 / 9; }
.photo-slot--square { aspect-ratio: 1 / 1; }
.photo-slot--tall { aspect-ratio: 4 / 5; }

/* --- Forms -------------------------------------------------------------- */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--warm-dim); margin-bottom: .45rem;
}
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--warm);
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .8rem .9rem;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: .78rem; color: var(--warm-faint); margin-top: .35rem; }
.form-note { font-size: .82rem; color: var(--warm-faint); margin-top: 1rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- Info blocks (hours, address) --------------------------------------- */
.info dt {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: .3rem;
}
.info dd { margin: 0 0 1.3rem; font-size: .98rem; color: var(--warm-dim); }
.info dd a { color: var(--warm); }
.info dd strong { color: var(--warm); font-weight: 600; }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: .5rem 0; border-bottom: 1px dotted var(--line-soft); font-size: .92rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .d { color: var(--warm-dim); }
.hours-list .h { color: var(--warm); font-weight: 600; font-variant-numeric: tabular-nums; }

/* --- Breadcrumbs -------------------------------------------------------- */
.crumbs {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--warm-faint); padding-top: 1.5rem;
}
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: var(--line); }
.crumbs a { color: var(--warm-faint); text-decoration: none; }
.crumbs a:hover { color: var(--red); }

/* --- Footer ------------------------------------------------------------- */
.footer { background: #060606; border-top: 1px solid var(--line-soft); padding-block: clamp(2.5rem, 6vw, 4rem) 2rem; }
.footer__grid { display: grid; gap: 2.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); }
.footer h4 { font-family: var(--body); font-size: .72rem; font-weight: 700; letter-spacing: .18em; color: var(--red); margin-bottom: 1rem; }
.footer__logo img { width: 180px; margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .55rem; font-size: .9rem; }
.footer a { color: var(--warm-dim); text-decoration: none; }
.footer a:hover { color: var(--red); }
.footer address { font-style: normal; font-size: .9rem; color: var(--warm-dim); line-height: 1.75; }
.footer__base {
  margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center;
  font-size: .78rem; color: var(--warm-faint);
}
.footer__base .tagline { margin-left: auto; font-size: 1.1rem; }
@media (max-width: 620px) { .footer__base .tagline { margin-left: 0; } }

/* --- Utilities ---------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.note {
  border-left: 3px solid var(--red); background: var(--panel);
  padding: 1.1rem 1.35rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem; color: var(--warm-dim);
}
.note strong { color: var(--warm); }

@media print {
  .header, .footer, .announce, .btn, .nav-toggle, .photo-slot { display: none !important; }
  body { background: #fff; color: #000; }
  .item__price, .rows .p, td.p { color: #000; }
}
