/* =====================================================
   Hickory Joe's — Smokehouse · Editorial / BBQ Joint
   ===================================================== */

:root {
  --bg: #100a07;
  --bg-2: #1a110b;
  --bg-3: #221610;
  --paper: #f3e8d4;       /* cream paper */
  --paper-2: #ede0c4;
  --ink: #1a110b;
  --muted: #998468;
  --line: rgba(243, 232, 212, 0.12);

  --red: #c8252b;
  --red-deep: #9f1c22;
  --ember: #e8581c;
  --gold: #ffb547;
  --mustard: #e8a72a;

  --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, 0.42);

  --font-display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-rugged:  "Rye", "Black Ops One", "Bebas Neue", serif;
  --font-head:    "Oswald", "Helvetica Neue", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-script:  "Caveat", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-display: swap;
}

/* Reserve hero height to prevent layout shift on font load */
.hero h1 { font-synthesis: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.015em;
  margin: 0 0 0.4em;
  line-height: 1.02;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 500;
}
.eyebrow--dark { color: var(--ink); opacity: 0.7; }

.apos { color: var(--red); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 10px 26px rgba(200, 37, 43, 0.4);
}
.btn--primary:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; box-shadow: 0 14px 34px rgba(200, 37, 43, 0.55); }

.btn--outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(243, 232, 212, 0.4);
}
.btn--outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: transparent;
  padding: 10px 0;
  letter-spacing: 0.22em;
  font-size: 12px;
  position: relative;
}
.btn--ghost::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform .25s;
}
.btn--ghost:hover { color: var(--gold); transform: none; }
.btn--ghost:hover::after { transform: scaleX(1); }

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

.btn--small { padding: 10px 18px; font-size: 11px; letter-spacing: 0.16em; }
.btn--large { padding: 17px 32px; font-size: 14px; }
.btn--xl { padding: 22px 42px; font-size: 16px; }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(16, 10, 7, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.nav.is-scrolled { background: rgba(16, 10, 7, 0.92); }

.nav__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-rugged);
  font-size: 20px;
  letter-spacing: 0.04em;
}
.nav__brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(200, 37, 43, 0.5);
  display: block;
  flex-shrink: 0;
}
.nav__brand-text { color: var(--paper); white-space: nowrap; }
.nav__brand:hover { color: var(--paper); }

.nav__brand--lg { font-size: 28px; }
.nav__brand--lg .nav__brand-logo { width: 60px; height: 60px; border-radius: 14px; }

.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  font-weight: 500;
}
.nav__links a { position: relative; padding: 6px 0; color: var(--paper); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 11px 22px; font-size: 12px; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  margin-left: auto;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--paper);
  transition: transform .25s, opacity .25s;
}

/* Floating ORDER button (mobile + scrolled state) */
.floating-order {
  position: fixed;
  z-index: 90;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 13px;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(200, 37, 43, 0.55);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.8,.3,1.1), opacity .25s, background .25s;
}
.floating-order.is-visible { transform: translateY(0); opacity: 1; }
.floating-order:hover { background: var(--red-deep); color: #fff; transform: translateY(-3px); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 28px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.05);
  animation: zoomSlow 18s ease-in-out infinite alternate;
}
@keyframes zoomSlow {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 10, 7, 0.55) 0%, rgba(16, 10, 7, 0.55) 40%, rgba(16, 10, 7, 0.92) 100%),
    radial-gradient(circle at 80% 20%, rgba(200, 37, 43, 0.25), transparent 50%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.6) 100%);
}

.hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(243, 232, 212, 0.18);
  backdrop-filter: blur(6px);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--paper);
  margin-bottom: 36px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: #5dd47a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(93, 212, 122, 0.25);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(93, 212, 122, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(93, 212, 122, 0.05); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.88;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero__title .hero__line { display: block; }
.hero__title em {
  font-family: var(--font-rugged);
  font-style: normal;
  color: var(--gold);
  font-size: 0.78em;
  letter-spacing: 0.01em;
  display: inline-block;
  transform: rotate(-3deg);
}
.hero__title .hero__line:nth-child(2),
.hero__title .hero__line:nth-child(4) { margin-top: -0.08em; }

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gold);
  margin: 0 0 20px;
  transform: rotate(-2deg);
}

.hero__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(243, 232, 212, 0.85);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(243, 232, 212, 0.4);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--paper);
  border-radius: 2px;
  animation: scrollMouse 1.6s ease-in-out infinite;
}
@keyframes scrollMouse {
  0% { opacity: 0; top: 6px; }
  50% { opacity: 1; }
  100% { opacity: 0; top: 24px; }
}

/* =====================================================
   MARQUEE STRIP
   ===================================================== */
.strip-marquee {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.marquee { overflow: hidden; }
.marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 70s linear infinite;
}
.marquee__item {
  font-family: var(--font-rugged);
  font-size: 26px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.marquee__item::after {
  content: "";
  display: inline-block;
  margin-left: 60px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.marquee__item:last-child::after { display: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Location chip row under marquee */
.loc-chips {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.loc-chip { color: var(--paper); transition: color .25s; display: inline-flex; align-items: center; gap: 8px; }
.loc-chip span { color: var(--gold); font-weight: 600; }
.loc-chip:hover { color: var(--gold); }
.loc-chips__dot { color: var(--red); font-size: 10px; line-height: 1; }

/* =====================================================
   SECTION HEADERS
   ===================================================== */
section { position: relative; }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header h2 {
  font-size: clamp(44px, 6.5vw, 96px);
}
.section__lede {
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}
.section__header--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: left;
  gap: 24px;
  flex-wrap: wrap;
}
.section__header--row h2 { margin-bottom: 0; }

/* =====================================================
   CROWD FAVOURITES
   ===================================================== */
.favs {
  padding: 110px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.favs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fav {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .35s, border-color .25s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  padding: 0;
}
.fav:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 37, 43, 0.45);
  box-shadow: var(--shadow-md);
}
.fav__num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}
.fav__media { aspect-ratio: 4 / 5; overflow: hidden; }
.fav__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.fav:hover .fav__media img { transform: scale(1.07); }
.fav__body { padding: 18px 20px 22px; }
.fav__name {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.fav__desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.fav__price {
  font-family: var(--font-rugged);
  font-size: 22px;
  color: var(--gold);
}

/* =====================================================
   STORY
   ===================================================== */
.story {
  padding: 120px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 37, 43, 0.08), transparent 50%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story__sticker {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 150px;
  height: 150px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-rugged);
  font-size: 26px;
  line-height: 1.1;
  box-shadow: 0 14px 36px rgba(200, 37, 43, 0.5);
  transform: rotate(-8deg);
  border: 4px solid var(--bg-2);
}
.story__sticker-amp { font-size: 30px; opacity: 0.7; line-height: 0.9; }

.story__copy h2 {
  font-size: clamp(40px, 5.2vw, 72px);
  margin-bottom: 24px;
}
.story__copy p {
  color: rgba(243, 232, 212, 0.85);
  font-size: 17px;
  margin: 0 0 18px;
}
.story__sign {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--gold) !important;
  margin: 24px 0 32px !important;
}
.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
}
.story__stats > div {
  display: flex;
  flex-direction: column;
}
.story__stats strong {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.story__stats span {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

/* =====================================================
   MENU
   ===================================================== */
.menu {
  padding: 120px 0;
  background: var(--bg);
}
.menu__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
  position: sticky;
  top: 71px;
  z-index: 10;
  padding: 18px 0;
  background: var(--bg);
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.6);
}
.menu__tabs::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  width: 100vw;
  height: calc(100% + 2px);
  background: var(--bg);
  transform: translateX(-50%);
  z-index: -1;
}
.menu__tab {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(243, 232, 212, 0.8);
  cursor: pointer;
  transition: all .25s;
}
.menu__tab:hover {
  border-color: rgba(200, 37, 43, 0.55);
  color: var(--paper);
}
.menu__tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 37, 43, 0.4);
}

.menu__section { margin-bottom: 80px; scroll-margin-top: 170px; }
.menu__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap;
}
.menu__section-head h3 {
  font-size: clamp(32px, 4.4vw, 56px);
  margin: 0;
}
.menu__section-head p {
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

/* Item card */
.item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  padding: 0;
  position: relative;
}
.item:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 37, 43, 0.45);
  box-shadow: var(--shadow-md);
}
.item__media {
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.item__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.item:hover .item__media img { transform: scale(1.06); }
.item__media--placeholder {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(200, 37, 43, 0.4);
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
}
.item__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.item__name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--paper);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.item__desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.item__price {
  font-family: var(--font-rugged);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.item__more {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.item:hover .item__more { color: var(--gold); }
.item__more::after { content: "→"; transition: transform .25s; }
.item:hover .item__more::after { transform: translateX(4px); }

/* SAUCES — special bottle-card layout */
.menu__section--sauces .menu__grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.sauce {
  position: relative;
  border-radius: 20px;
  padding: 32px 26px 28px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  isolation: isolate;
}
.sauce::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sauce-bg, linear-gradient(160deg, var(--bg-3), var(--bg-2)));
  opacity: 0.92;
  z-index: -1;
}
.sauce::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(0, 0, 0, 0.25), transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.sauce:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: rgba(243, 232, 212, 0.25);
  box-shadow: var(--shadow-md);
}
.sauce__bottle {
  width: 70px;
  height: 110px;
  align-self: flex-start;
}
.sauce__name {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
}
.sauce__tag {
  font-family: var(--font-script);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin: 4px 0 0;
  transform: rotate(-2deg);
  display: inline-block;
}
.sauce__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sauce__price {
  font-family: var(--font-rugged);
  font-size: 26px;
  color: #fff;
}
.sauce__cta {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}
.sauce__cta::after { content: " →"; }

/* =====================================================
   LOCATIONS — editorial alternating blocks
   ===================================================== */
.locations {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(200, 37, 43, 0.08), transparent 50%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.loc-list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.loc-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  scroll-margin-top: 110px;
}
.loc-row--reverse { grid-template-columns: 1fr 1.05fr; }
.loc-row--reverse .loc-row__media { order: 2; }
.loc-row--reverse .loc-row__body { order: 1; }

.loc-row__index {
  position: absolute;
  top: -40px;
  left: 0;
  font-family: var(--font-display);
  font-size: 220px;
  line-height: 0.8;
  color: rgba(200, 37, 43, 0.08);
  letter-spacing: 0.02em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.loc-row--reverse .loc-row__index {
  left: auto;
  right: 0;
  text-align: right;
}

.loc-row__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.loc-row__map {
  width: 100%;
  height: 100%;
  background: var(--bg-3);
  filter: grayscale(0.2) contrast(1.05) brightness(0.95);
  transition: filter .4s;
}
.loc-row:hover .loc-row__map { filter: grayscale(0) contrast(1) brightness(1); }

/* Override Leaflet defaults so it matches the theme */
.loc-row__map .leaflet-control-attribution {
  background: rgba(16, 10, 7, 0.7);
  color: rgba(243, 232, 212, 0.65);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px 0 0 0;
}
.loc-row__map .leaflet-control-attribution a { color: var(--gold); }

/* Custom marker */
.leaflet-pin {
  position: relative;
}
.leaflet-pin__dot {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  animation: pinPulse 2s ease-out infinite;
}
.leaflet-pin__dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(200, 37, 43, 0.5);
  animation: pinRing 2s ease-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes pinRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.loc-row__pin {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
  transition: transform .25s, background .25s;
}
.loc-row__pin:hover { transform: scale(1.08); background: var(--red-deep); color: #fff; }

.loc-row__body { position: relative; z-index: 1; }

.loc-row__chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(255, 181, 71, 0.1);
  border: 1px solid rgba(255, 181, 71, 0.25);
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 0 24px;
}
.loc-row__chip--hot {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.loc-row__body h3 {
  font-size: clamp(56px, 7vw, 104px);
  margin: 0 0 18px;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.loc-row__addr {
  font-size: 18px;
  color: rgba(243, 232, 212, 0.85);
  margin: 0 0 28px;
  line-height: 1.45;
}

.loc-row__meta {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px dashed var(--line);
}
.loc-row__meta li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: rgba(243, 232, 212, 0.9);
  align-items: baseline;
}
.loc-row__meta span {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
.loc-row__meta a { color: var(--gold); }
.loc-row__meta a:hover { color: var(--paper); }

.loc-row__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.loc {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.loc:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 37, 43, 0.4);
  box-shadow: var(--shadow-md);
}
.loc--featured {
  border-color: rgba(200, 37, 43, 0.5);
  box-shadow: 0 0 0 1px rgba(200, 37, 43, 0.2);
}
.loc__map {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
  display: block;
}
.loc__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05) brightness(0.92);
  transition: filter .35s, transform .5s;
  pointer-events: none;
}
.loc:hover .loc__map iframe { filter: grayscale(0) contrast(1) brightness(1); transform: scale(1.04); }
.loc__map-pin {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.loc__map-pin::after {
  content: "Open Maps";
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 600;
}

.loc__body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.loc__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.loc__row h3 {
  font-size: 38px;
  margin: 0;
}
.loc__chip {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(243, 232, 212, 0.08);
  color: var(--muted);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.loc__chip--hot {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.loc__addr {
  color: rgba(243, 232, 212, 0.85);
  margin: 0 0 8px;
  font-size: 15px;
}
.loc__hours {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 14px;
}
.loc__phone {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
  font-size: 15px;
  letter-spacing: 0.04em;
  display: inline-block;
}
.loc__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}
.loc__actions .btn { flex: 1; min-width: 100px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  padding: 120px 0;
  background: var(--bg);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 30px;
  position: relative;
  margin: 0;
}
.quote::before {
  content: "”";
  position: absolute;
  top: -18px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 110px;
  color: var(--red);
  line-height: 1;
}
.quote__stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 15px;
  margin-bottom: 16px;
}
.quote blockquote {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--paper);
}
.quote figcaption {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.quote figcaption strong { color: var(--paper); font-weight: 600; }

.testimonials__more {
  text-align: center;
  margin: 48px 0 0;
}
.testimonials__more a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(255, 181, 71, 0.4);
  padding-bottom: 4px;
}
.testimonials__more a:hover { color: var(--paper); border-color: var(--paper); }

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-strip h2 {
  font-size: clamp(48px, 7vw, 96px);
  margin: 0;
  color: #fff;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #0a0604;
  padding: 90px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__brand .nav__brand { margin-bottom: 18px; }
.footer__tag {
  color: var(--muted);
  font-style: italic;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.footer h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer p { color: rgba(243, 232, 212, 0.75); margin: 0 0 10px; font-size: 14px; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* =====================================================
   MODAL
   ===================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[aria-hidden="false"] { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 2, 0.82);
  backdrop-filter: blur(8px);
  animation: fade .25s ease;
}
.modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  animation: pop .3s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s;
}
.modal__close:hover { background: var(--red); }
.modal__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-3);
  overflow: hidden;
}
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__media--placeholder {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(200, 37, 43, 0.45);
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
}
.modal__body { padding: 32px 36px 36px; }
.modal__cat {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--gold);
  margin: 0 0 10px;
}
.modal__title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 18px;
  color: var(--paper);
}
.modal__desc {
  color: rgba(243, 232, 212, 0.85);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.65;
}
.modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.modal__price {
  font-family: var(--font-rugged);
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

body.no-scroll { overflow: hidden; }

/* ===== Sauce-modal (custom rich layout) ===== */
.modal--sauce .modal__panel {
  width: min(820px, 100%);
  background: transparent;
  border: 0;
  overflow: hidden;
}
.sauce-modal {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--sauce-bg, var(--bg-2));
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  position: relative;
}
.sauce-modal::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(0,0,0,0.35), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.sauce-modal__bottle {
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
}
.sauce-modal__bottle svg { width: 140px; height: auto; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35)); }
.sauce-modal__body { padding: 40px 44px; position: relative; z-index: 1; }
.sauce-modal__cat {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 10px;
}
.sauce-modal__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: 0.02em;
}
.sauce-modal__tag {
  font-family: var(--font-script);
  font-size: 24px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 22px;
  transform: rotate(-2deg);
  display: inline-block;
}
.sauce-modal__heat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.25);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.sauce-modal__heat-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
}
.sauce-modal__heat-icons { font-size: 14px; letter-spacing: 2px; }
.sauce-modal__desc {
  color: rgba(255,255,255,0.92);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.sauce-modal__pairs h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.sauce-modal__pairs ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sauce-modal__pairs li {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
}
.sauce-modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.sauce-modal__price {
  font-family: var(--font-rugged);
  font-size: 38px;
  letter-spacing: 0.02em;
  color: #fff;
}
.btn--outline-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--outline-light:hover { background: transparent; color: #fff; border-color: #fff; }

@media (max-width: 700px) {
  .sauce-modal { grid-template-columns: 1fr; }
  .sauce-modal__bottle { padding: 28px 20px 20px; }
  .sauce-modal__bottle svg { width: 100px; }
  .sauce-modal__body { padding: 26px 24px 28px; }
  .sauce-modal__title { font-size: 30px; }
  .sauce-modal__tag { font-size: 20px; margin-bottom: 18px; }
  .sauce-modal__price { font-size: 30px; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .favs__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .container { padding: 0 20px; }

  .nav__inner { padding: 12px 20px; gap: 16px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 24px;
    background: rgba(16, 10, 7, 0.98);
    border-bottom: 1px solid var(--line);
    gap: 22px;
    font-size: 15px;
  }

  .hero { padding: 100px 20px 70px; min-height: 88vh; }

  .story { padding: 90px 0; }
  .story__grid { grid-template-columns: 1fr; gap: 60px; }
  .story__media { aspect-ratio: 4 / 3; max-width: 520px; margin: 0 auto; }
  .story__sticker { width: 110px; height: 110px; font-size: 20px; bottom: -16px; right: -16px; }
  .story__sticker-amp { font-size: 22px; }

  .favs { padding: 90px 0; }
  .menu { padding: 90px 0; }
  .locations { padding: 90px 0; }
  .loc-list { gap: 70px; }
  .loc-row, .loc-row--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .loc-row--reverse .loc-row__media { order: 1; }
  .loc-row--reverse .loc-row__body { order: 2; }
  .loc-row__index { font-size: 140px; top: -28px; }
  .loc-row__body h3 { font-size: clamp(44px, 9vw, 72px); }
  .testimonials { padding: 90px 0; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .cta-strip { padding: 70px 0; }
  .cta-strip__inner { text-align: center; justify-content: center; }
  .cta-strip h2 { width: 100%; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section__header { margin-bottom: 40px; }

  .marquee__item { font-size: 22px; }
  .marquee__item::after { margin-left: 40px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }

  .nav__inner { padding: 10px 16px; }
  .nav__brand { font-size: 17px; gap: 10px; }
  .nav__brand-logo { width: 38px; height: 38px; border-radius: 9px; }

  .hero { padding: 96px 18px 100px; min-height: auto; }
  .hero__badge { padding: 7px 14px; font-size: 10px; letter-spacing: 0.2em; margin-bottom: 24px; }
  .hero__title { line-height: 0.94; margin-bottom: 16px; gap: 0; }
  .hero__title em { font-size: 0.72em; transform: rotate(-2deg); }
  .hero__script { font-size: 24px; margin-bottom: 16px; }
  .hero__lede { font-size: 15px; margin-bottom: 30px; padding: 0 4px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }

  .strip-marquee { padding: 16px 0; }
  .marquee__item { font-size: 18px; }
  .marquee__item::after { margin-left: 28px; width: 6px; height: 6px; }

  .btn { padding: 13px 22px; font-size: 12px; letter-spacing: 0.16em; }
  .btn--small { padding: 10px 16px; font-size: 11px; }
  .btn--large { padding: 16px 26px; font-size: 13px; }
  .btn--xl { padding: 18px 32px; font-size: 14px; }

  .section__header { margin-bottom: 32px; }

  .favs { padding: 70px 0; }
  .favs__grid { grid-template-columns: 1fr; gap: 16px; }
  .fav__media { aspect-ratio: 16 / 11; }
  .fav__body { padding: 16px 18px 20px; }
  .fav__name { font-size: 22px; }

  .story { padding: 70px 0; }
  .story__copy h2 { font-size: clamp(34px, 9vw, 50px); }
  .story__copy p { font-size: 15px; }
  .story__stats { grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 22px; }
  .story__stats strong { font-size: 32px; }
  .story__stats span { font-size: 10px; letter-spacing: 0.14em; }

  .menu { padding: 70px 0; }
  .menu__tabs {
    top: 57px;
    margin-bottom: 32px;
    padding: 10px 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
  }
  .menu__tabs::-webkit-scrollbar { display: none; }
  .menu__tab { flex: 0 0 auto; padding: 10px 16px; font-size: 11px; letter-spacing: 0.14em; scroll-snap-align: start; }

  .menu__section { margin-bottom: 52px; scroll-margin-top: 140px; }
  .menu__section-head { margin-bottom: 20px; padding-bottom: 14px; }
  .menu__grid { grid-template-columns: 1fr; gap: 14px; }
  .menu__section--sauces .menu__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .item { border-radius: 16px; }
  .item__media { aspect-ratio: 16 / 10; }
  .item__body { padding: 16px 18px 18px; }
  .item__name { font-size: 17px; }
  .item__desc { font-size: 13px; -webkit-line-clamp: 3; }
  .item__price { font-size: 20px; }

  .sauce { padding: 22px 18px 20px; min-height: 220px; gap: 14px; }
  .sauce__bottle { width: 50px; height: 80px; }
  .sauce__name { font-size: 22px; }
  .sauce__tag { font-size: 16px; }
  .sauce__price { font-size: 22px; }
  .sauce__cta { font-size: 10px; letter-spacing: 0.14em; }

  .locations { padding: 70px 0; }
  .loc-list { gap: 56px; }
  .loc-row__media { aspect-ratio: 16 / 11; border-radius: 18px; }
  .loc-row__chip { font-size: 10px; letter-spacing: 0.2em; padding: 6px 12px; margin-bottom: 16px; }
  .loc-row__addr { font-size: 16px; margin-bottom: 22px; }
  .loc-row__meta { margin-bottom: 24px; }
  .loc-row__meta li { grid-template-columns: 70px 1fr; font-size: 14px; padding: 12px 0; }
  .loc-row__actions .btn { flex: 1; min-width: 130px; }
  .loc-row__index { font-size: 100px; top: -22px; }

  .testimonials { padding: 70px 0; }
  .quote { padding: 28px 22px; border-radius: 18px; }
  .quote blockquote { font-size: 15.5px; }

  .cta-strip { padding: 56px 0; }
  .cta-strip h2 { font-size: clamp(40px, 10vw, 64px); }

  .footer { padding: 60px 0 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }

  .modal { padding: 0; align-items: flex-end; }
  .modal__panel {
    width: 100%;
    max-height: 94vh;
    border-radius: 22px 22px 0 0;
    animation: slideUp .3s cubic-bezier(.2,.9,.3,1.05);
  }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .modal__body { padding: 24px 22px 28px; }
  .modal__title { font-size: 26px; }
  .modal__desc { font-size: 14.5px; margin-bottom: 22px; }
  .modal__footer { padding-top: 18px; }
  .modal__price { font-size: 30px; }
  .modal__close { width: 36px; height: 36px; top: 10px; right: 10px; font-size: 22px; }

  .floating-order { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 12px; letter-spacing: 0.16em; }
}

@media (max-width: 380px) {
  .nav__brand-text { display: none; }
  .menu__tab { font-size: 10px; padding: 9px 14px; }
}

@media (min-width: 641px) and (max-width: 960px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__section--sauces .menu__grid { grid-template-columns: repeat(3, 1fr); }
  .menu__tabs { top: 67px; }
}

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