/* ==========================================================================
   Charly's Burgers — Design System
   Red / White / Black — Shake Shack-inspired layout
   ========================================================================== */

:root {
  --red:            #D7141A;
  --red-deep:       #A30F14;
  --red-soft:       #E84247;
  --white:          #FFFFFF;
  --off-white:      #F6F4F1;
  --black:          #0B0B0B;
  --black-soft:     #1A1A1A;
  --ink:            #2A2A2A;
  --ink-soft:       #5A5A5A;
  --line:           #E6E3DE;

  --radius-sm:  6px;
  --radius:     14px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  --shadow-sm:  0 2px 8px rgba(11, 11, 11, 0.06);
  --shadow:     0 8px 24px rgba(11, 11, 11, 0.10);
  --shadow-lg:  0 20px 48px rgba(11, 11, 11, 0.18);

  --nav-h:      76px;
  --tab-h:      72px;

  --ease:       cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  body { padding-bottom: var(--tab-h); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Display type: punchy sans, tight tracking */
.display,
h1, h2, h3 {
  font-family: 'Archivo Black', 'Inter', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--black);
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2vw, 26px); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  margin-bottom: 14px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(215, 20, 26, 0.28);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(215, 20, 26, 0.38);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-light:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
}

.btn-sm { padding: 10px 18px; font-size: 12px; }

.btn-nav {
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media (max-width: 520px) {
  .btn-nav { padding: 8px 14px; font-size: 11px; letter-spacing: 0.04em; }
}
@media (max-width: 380px) {
  .btn-nav { padding: 7px 12px; font-size: 10.5px; }
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  background: var(--off-white);
  border-radius: var(--radius-pill);
  padding: 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.lang-toggle button {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer;
  line-height: 1;
}
.lang-toggle button.active {
  background: var(--black);
  color: var(--white);
}
.lang-toggle button:not(.active):hover { color: var(--black); }
@media (max-width: 520px) {
  .lang-toggle { font-size: 10px; letter-spacing: 0.06em; padding: 2px; }
  .lang-toggle button { padding: 5px 8px; }
}
@media (max-width: 380px) {
  .lang-toggle button { padding: 4px 7px; }
}
.btn-lg { padding: 20px 36px; font-size: 15px; }

/* ==========================================================================
   Top Nav
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .nav-left, .nav-right { gap: 14px; }
}
@media (max-width: 520px) {
  .nav .container { gap: 8px; }
  .nav-right { gap: 6px; }
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .nav-logo { height: 40px; }
}
@media (max-width: 380px) {
  .nav-logo { height: 32px; }
}

.nav-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.15s var(--ease);
  flex-shrink: 0;
}
.nav-menu-btn:hover { background: var(--off-white); }
@media (max-width: 520px) {
  .nav-menu-btn { width: 38px; height: 38px; }
  .nav-menu-btn svg { width: 20px; height: 20px; }
}

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
  margin-left: 20px;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--black);
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  border-bottom-color: var(--red);
  color: var(--red);
}


/* Drawer */
.drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--white);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.drawer-head img { height: 32px; }
.drawer-close {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer-close:hover { background: var(--off-white); }
.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-links a {
  display: block;
  padding: 16px 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--black);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.drawer-links a:hover { color: var(--red); padding-left: 20px; }
.drawer-cta { margin-top: 28px; }
.drawer-cta .btn { width: 100%; }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.backdrop.open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero — red full-bleed with overlay card + product carousel
   ========================================================================== */

/* Full-bleed hero — image first, text overlay, white CTA band below */
.hero {
  margin-top: var(--nav-h);
  background: var(--white);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 440px;
  max-height: 760px;
  background: var(--red);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-stage { height: 64vh; min-height: 460px; max-height: 640px; }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none;
  max-height: none;
  filter: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 38%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px 56px;
  z-index: 3;
  color: var(--white);
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero-overlay { padding: 40px 48px 64px; max-width: 72%; }
}
@media (min-width: 1200px) {
  .hero-overlay { padding: 56px 80px 72px; }
}

.hero-overlay .eyebrow {
  color: rgba(255, 255, 255, 0.95);
  display: inline-block;
  margin-bottom: 14px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
  max-width: 16ch;
  margin: 0;
}

.hero-footer {
  background: var(--white);
  padding: 32px 24px 44px;
  color: var(--black);
  text-align: center;
}
@media (min-width: 768px) {
  .hero-footer { padding: 44px 40px 56px; }
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--ink);
  font-weight: 500;
  margin: 0 auto 24px;
  max-width: 58ch;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-ctas .btn {
  min-width: 180px;
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
}

/* Piña mascot — character pop on the Piña slide */
.hero-mascot {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
}
.hero-mascot-pina {
  bottom: -2%;
  right: -4%;
  width: 42%;
  max-width: 340px;
  transform: rotate(-4deg);
  mix-blend-mode: screen;
}
@media (min-width: 1024px) {
  .hero-mascot-pina { width: 32%; max-width: 420px; right: 2%; bottom: 4%; }
}
@media (max-width: 600px) {
  .hero-mascot-pina { width: 50%; right: -8%; bottom: 18%; }
}

.stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--red);
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  transform: rotate(-8deg);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  line-height: 1;
  z-index: 4;
  border: 3px solid currentColor;
}
@media (min-width: 768px) {
  .stamp { font-size: 24px; padding: 14px 22px; top: 32px; right: 32px; }
}
@media (min-width: 1200px) {
  .stamp { font-size: 30px; padding: 16px 26px; top: 48px; right: 48px; }
}
.stamp.stamp-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
}

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.hero-arrow:hover { background: var(--black); color: var(--white); transform: translateY(-50%) scale(1.05); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
@media (min-width: 900px) {
  .hero-arrow { width: 56px; height: 56px; }
  .hero-arrow.prev { left: 24px; }
  .hero-arrow.next { right: 24px; }
}

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
@media (min-width: 900px) {
  .hero-dots { bottom: 28px; left: auto; right: 40px; transform: none; }
}
.hero-dot {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
  cursor: pointer;
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--white); width: 40px; }

/* ==========================================================================
   Chicago Flag Band (scrolling marquee)
   ========================================================================== */

.flag-band {
  --flag-blue: #41B6E6;
  --flag-white: #FFFFFF;
  display: block;
  position: relative;
  height: 96px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background:
    linear-gradient(to bottom,
      var(--flag-white) 0, var(--flag-white) 12%,
      var(--flag-blue)  12%, var(--flag-blue)  30%,
      var(--flag-white) 30%, var(--flag-white) 70%,
      var(--flag-blue)  70%, var(--flag-blue)  88%,
      var(--flag-white) 88%, var(--flag-white) 100%
    );
  border-top: 1px solid rgba(11,11,11,0.06);
  border-bottom: 1px solid rgba(11,11,11,0.06);
  transition: filter 0.2s var(--ease);
}
.flag-band:hover { filter: brightness(0.97); }
.flag-band:focus-visible { outline: 3px solid var(--red); outline-offset: -3px; }
@media (max-width: 600px) { .flag-band { height: 76px; } }

.flag-track {
  position: absolute;
  top: 30%;
  bottom: 30%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0;
  white-space: nowrap;
  width: max-content;
  animation: flag-scroll 32s linear infinite;
  will-change: transform;
}
@keyframes flag-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.flag-band:hover .flag-track { animation-play-state: paused; }

.flag-star {
  width: 36px;
  height: 36px;
  color: var(--red);
  flex-shrink: 0;
}
.flag-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.flag-text::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--red);
}
@media (max-width: 600px) {
  .flag-star { width: 26px; height: 26px; }
  .flag-text { font-size: 13px; }
  .flag-track { gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .flag-track { animation: none; }
}

/* ==========================================================================
   Menu Section (Burgers & More)
   ========================================================================== */

.menu-section {
  padding: 80px 0 60px;
  background: var(--white);
}
@media (min-width: 768px) {
  .menu-section { padding: 100px 0 80px; }
}

.menu-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.menu-head h2 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.menu-head p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-top: 10px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .menu-layout {
    grid-template-columns: 88px 1fr;
    gap: 48px;
  }
}

.menu-rail {
  display: none;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
@media (min-width: 900px) {
  .menu-rail { display: flex; }
}

.menu-rail a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 0;
  border-radius: var(--radius);
  color: var(--ink-soft);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-rail a svg { width: 36px; height: 36px; }
.menu-rail a:hover, .menu-rail a.active {
  color: var(--red);
  background: var(--off-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 620px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--white);
}

.card-media {
  aspect-ratio: 1 / 1;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--black);
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  line-height: 1.1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.badge.badge-red { background: var(--red); color: var(--white); }
.badge.badge-black { background: var(--black); color: var(--white); }
.badge small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card-body h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.card-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.card-foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.combo {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Feature Band — Seasonal Special
   ========================================================================== */

.feature {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .feature { padding: 110px 0; }
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .feature-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.feature-copy .eyebrow { color: var(--red-soft); }
.feature-copy h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.feature-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 28px;
}

.feature-media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.feature-media > img:not(.pattie-badge) {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-media .stamp {
  top: 22px;
  right: 22px;
}

/* ==========================================================================
   About / Born in Chicago
   ========================================================================== */

.about {
  background: var(--white);
  padding: 90px 0;
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}

.about h2 {
  text-transform: uppercase;
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 22px;
}
.about h2 span { color: var(--red); }
.about p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 48ch;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about-stats .stat-n {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--red);
  line-height: 1;
}
.about-stats .stat-l {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--red);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Media / Press section (minimal YT facade)
   ========================================================================== */

.media {
  background: var(--white);
  padding: 90px 0 100px;
  position: relative;
}
.media-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.media-head h2 {
  text-transform: uppercase;
  font-size: clamp(34px, 4.8vw, 58px);
}
.media-head p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-top: 12px;
  max-width: 52ch;
}

.yt {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}
.yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.yt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.yt:hover img { transform: scale(1.03); filter: brightness(0.9); }

.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  z-index: 2;
}
.yt-play svg {
  color: var(--red);
  margin-left: 6px;
}
.yt:hover .yt-play {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.08);
}
.yt:hover .yt-play svg { color: var(--white); }

.yt-meta {
  position: absolute;
  left: 22px;
  bottom: 18px;
  right: 22px;
  z-index: 2;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  pointer-events: none;
}
.yt-meta .title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  max-width: 70%;
}
.yt-meta .dur {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

/* Press quotes */
.press-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .press-row { grid-template-columns: repeat(3, 1fr); } }

.press {
  border-left: 3px solid var(--red);
  padding: 6px 0 6px 18px;
}
.press blockquote {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  line-height: 1.25;
  color: var(--black);
  text-transform: none;
  letter-spacing: -0.01em;
}
.press cite {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-style: normal;
}

/* Chicago skyline silhouette */
.skyline {
  position: relative;
  margin-top: 72px;
  line-height: 0;
  color: var(--red);
  overflow: hidden;
}
.skyline::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  opacity: 0.15;
}
.skyline svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}
.skyline-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.skyline-label::before,
.skyline-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--red);
  opacity: 0.25;
}

/* ==========================================================================
   Locations preview
   ========================================================================== */

.locations {
  background: var(--off-white);
  padding: 90px 0;
}
.locations-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}
.locations-head h2 {
  text-transform: uppercase;
  max-width: 600px;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1060px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}
.locations-grid.one-up {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.loc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.loc-card .tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
}
.loc-card h3 {
  font-size: 22px;
  text-transform: uppercase;
}
.loc-card .meta {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.loc-card .dirs {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.loc-card .dirs:hover { color: var(--red-deep); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 24px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 52ch;
  margin: 0 auto 30px;
}

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

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; }
}
.footer h4 {
  font-family: 'Archivo Black', sans-serif;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand img {
  width: 180px;
  filter: invert(1) brightness(10);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 36ch; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--red-soft); }

.newsletter {
  display: flex;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 6px;
  max-width: 340px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter button {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
}
.newsletter button:hover { background: var(--red-deep); }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.ig-link:hover { background: var(--red); transform: translateY(-2px); }
.ig-link svg { flex-shrink: 0; }

.footer-bar {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* Footer variant of the lang toggle (dark bg) */
.lang-toggle.lang-toggle-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.lang-toggle.lang-toggle-dark button {
  color: rgba(255,255,255,0.6);
}
.lang-toggle.lang-toggle-dark button.active {
  background: var(--red);
  color: var(--white);
}
.lang-toggle.lang-toggle-dark button:not(.active):hover { color: var(--white); }

/* Floating mobile variant — always reachable on small screens */
.lang-toggle.lang-toggle-float {
  position: fixed;
  left: 12px;
  bottom: calc(var(--tab-h) + 14px);
  z-index: 90;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  padding: 3px;
  font-size: 11px;
}
.lang-toggle.lang-toggle-float button {
  padding: 6px 10px;
  color: var(--ink-soft);
}
.lang-toggle.lang-toggle-float button.active {
  background: var(--black);
  color: var(--white);
}
@media (min-width: 768px) {
  .lang-toggle.lang-toggle-float { display: none; }
}

/* ==========================================================================
   Bottom Tab Bar (mobile)
   ========================================================================== */

.tabbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--tab-h);
  background: var(--white);
  border-top: 1px solid var(--line);
  display: flex;
  z-index: 100;
  padding: 0 8px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) { .tabbar { display: none; } }

.tabbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tabbar a svg { width: 22px; height: 22px; }
.tabbar a.active { color: var(--red); }
.tabbar a.active .tab-indicator {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--red);
  position: absolute;
  top: 6px;
}
.tabbar a { position: relative; }

/* ==========================================================================
   Menu page specifics
   ========================================================================== */

.page-head {
  background: var(--red);
  color: var(--white);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
}
.page-head h1 {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(44px, 7vw, 84px);
}
.page-head p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 14px;
  font-size: 17px;
}

.category-chips {
  position: sticky;
  top: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 40;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-chips::-webkit-scrollbar { display: none; }
.chip-row {
  display: flex;
  gap: 10px;
  padding: 0 24px;
  white-space: nowrap;
}
@media (min-width: 768px) { .chip-row { padding: 0 40px; justify-content: center; } }
.chip {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  cursor: pointer;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active { background: var(--red); color: var(--white); border-color: var(--red); }

.menu-page {
  padding: 60px 0 80px;
  background: var(--white);
}
.category {
  margin-bottom: 70px;
  scroll-margin-top: calc(var(--nav-h) + 80px);
}

.simple-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-width: 560px;
}
@media (min-width: 720px) {
  .simple-list { grid-template-columns: 1fr 1fr; gap: 4px 48px; max-width: none; }
}
.simple-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--line);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.simple-list .price-sm {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--red);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}

.disclaimer {
  margin-top: 60px;
  padding: 24px 28px;
  background: var(--off-white);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  max-width: 780px;
}
.disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.category-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--black);
}
.category-head h2 {
  text-transform: uppercase;
  font-size: clamp(28px, 3.5vw, 40px);
}
.category-head .num {
  font-family: 'Archivo Black', sans-serif;
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Legal / policy pages (Privacy · Terms · Accessibility)
   ========================================================================== */

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  color: var(--ink);
}
@media (min-width: 900px) { .legal-body { padding: 96px 24px 120px; } }

.legal-body .updated {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  margin-bottom: 40px;
}
.legal-body h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  text-transform: uppercase;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 24px;
  border-top: 2px solid var(--black);
  color: var(--black);
}
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-body p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--ink);
}
.legal-body ul {
  margin: 12px 0 24px 24px;
  padding: 0;
}
.legal-body ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
  color: var(--ink);
}
.legal-body a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.legal-body a:hover { color: var(--red-deep); }
.legal-body strong { color: var(--black); font-weight: 700; }

/* ==========================================================================
   Pattie Banner Badge — decorative yellow ribbon ("Home of the 90/10 Pattie")
   ========================================================================== */

.pattie-badge {
  display: block;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}
a:hover > .pattie-badge,
.pattie-badge.interactive:hover {
  transform: rotate(-3deg) scale(1.04);
}

/* On the home 90/10 Blend feature — overlaps the burger photo top-right */
.pattie-badge-feature {
  position: absolute;
  top: 14px;
  right: -10px;
  width: 38%;
  max-width: 220px;
  transform: rotate(-8deg);
  z-index: 3;
}
@media (min-width: 900px) {
  .pattie-badge-feature {
    top: -28px;
    right: -28px;
    width: 42%;
    max-width: 260px;
  }
}

/* About page — centered signature flourish between hero and lead */
.pattie-badge-flourish {
  width: 260px;
  max-width: 64%;
  margin: 0 auto 16px;
  transform: rotate(-4deg);
}
@media (min-width: 900px) {
  .pattie-badge-flourish { margin: -8px auto 20px; width: 300px; }
}

/* Menu page head — small decorative accent in the corner */
.pattie-badge-corner {
  position: absolute;
  top: 8px;
  right: 24px;
  width: 180px;
  max-width: 32%;
  transform: rotate(-8deg);
  z-index: 1;
}
@media (max-width: 768px) {
  .pattie-badge-corner {
    width: 120px;
    top: 4px;
    right: 8px;
    opacity: 0.85;
  }
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-h) + 60px) 0 72px;
  overflow: hidden;
  isolation: isolate;
  min-height: 460px;
}
@media (min-width: 900px) {
  .about-hero { padding: calc(var(--nav-h) + 80px) 0 96px; min-height: 540px; }
}
/* Storefront photo with brightness dim */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/storefront.png') center/cover no-repeat;
  filter: brightness(0.78) saturate(1.08);
  z-index: 0;
}
/* Lighter scrim — mostly bottom-left so right side stays visible */
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(11,11,11,0.5) 0%, rgba(11,11,11,0.32) 40%, rgba(11,11,11,0.06) 80%),
    linear-gradient(to bottom, rgba(11,11,11,0) 50%, rgba(11,11,11,0.32) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-hero .container { position: relative; z-index: 2; }

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-hero-grid { grid-template-columns: 1.35fr 1fr; gap: 40px; }
}

.about-hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.about-hero-copy h1 {
  color: var(--white);
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-hero-copy .subhead {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  max-width: 30ch;
}

.about-hero-visual {
  position: relative;
  min-height: 200px;
  display: none;
}
@media (min-width: 900px) {
  .about-hero-visual {
    display: block;
    min-height: 320px;
  }
}
.about-hero-visual img {
  position: absolute;
  right: -18%;
  top: 50%;
  width: 130%;
  max-width: 620px;
  transform: translateY(-50%) rotate(-8deg);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.38));
}

/* Body */
.about-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  color: var(--black);
}
@media (min-width: 900px) { .about-body { padding: 120px 24px 96px; } }

.about-body .lead {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 80px;
  max-width: 24ch;
}

/* Chapter */
.chapter {
  margin-bottom: 80px;
}
.chapter-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.chapter-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}
.chapter p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.chapter p strong { color: var(--black); font-weight: 700; }
.chapter p + p { margin-top: 20px; }

/* Pull Quote */
.hero-quote {
  position: relative;
  margin: 96px -4px;
  padding: 56px 48px 56px 72px;
  border-left: 4px solid var(--red);
  font-family: 'Playfair Display', 'Archivo Black', serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--black);
}
.hero-quote .quote-mark {
  position: absolute;
  left: 28px;
  top: -18px;
  font-size: clamp(120px, 18vw, 200px);
  line-height: 1;
  color: var(--red);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  pointer-events: none;
}
.hero-quote .quote-body { position: relative; z-index: 1; display: block; }
@media (max-width: 700px) {
  .hero-quote { margin: 64px 0; padding: 36px 24px 36px 40px; }
  .hero-quote .quote-mark { font-size: 96px; left: 10px; top: -8px; }
}

/* Photo slot */
.about-photo {
  position: relative;
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(135deg, rgba(215, 20, 26, 0.04), rgba(11, 11, 11, 0.04)),
    var(--off-white);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  margin-top: 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
}
.about-photo.about-photo-filled {
  border: none;
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.about-photo .photo-caption {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 14px;
  background: var(--white);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

/* Press Badge */
.press-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 12px 18px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  flex-wrap: wrap;
}
.press-badge .press-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.press-badge .press-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.005em;
}
.press-badge .press-note {
  font-size: 12px;
  color: var(--ink-soft);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

/* About CTA */
.about-cta {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 100px;
  text-align: center;
}
.about-cta h2 {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(36px, 5.5vw, 62px);
  margin-bottom: 14px;
}
.about-cta p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.55;
}
.about-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Outline-light button variant for black backgrounds */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Locations page specifics
   ========================================================================== */

.locations-page { padding: 60px 0 80px; background: var(--off-white); }
.loc-detail {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}
@media (min-width: 900px) {
  .loc-detail { grid-template-columns: 1fr 1fr; }
}
.loc-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.loc-info { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.loc-info h2 { font-size: 28px; text-transform: uppercase; }
.loc-info .row { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); font-size: 15px; line-height: 1.5; }
.loc-info .row svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.loc-info .hours { list-style: none; font-size: 14px; color: var(--ink); }
.loc-info .hours li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.loc-info .hours li:last-child { border: none; }
.loc-info .actions { display: flex; gap: 12px; margin-top: 6px; flex-wrap: wrap; }

/* ==========================================================================
   Utilities + Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Pancho — Floating Mascot + Speech Bubble
   ========================================================================== */

.pancho {
  position: fixed;
  right: 16px;
  bottom: calc(var(--tab-h) + 16px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-decoration: none;
  color: var(--black);
  pointer-events: auto;
  cursor: pointer;
}
@media (min-width: 768px) {
  .pancho { right: 28px; bottom: 28px; }
}

.pancho-wrap {
  animation: pancho-bob 3.6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  transform-origin: center bottom;
  transition: transform 0.2s var(--ease);
}
.pancho:hover .pancho-wrap {
  animation-play-state: paused;
  transform: scale(1.05) rotate(-4deg);
}
.pancho:active .pancho-wrap { transform: scale(0.96); }

.pancho-img {
  width: 128px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.30));
}
@media (min-width: 768px) { .pancho-img { width: 168px; } }

.pancho-bubble {
  background: var(--white);
  color: var(--black);
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  position: relative;
  white-space: nowrap;
  border: 2px solid var(--black);
  animation: pancho-pop 4.2s ease-in-out infinite;
  transform-origin: bottom right;
  margin-right: 18px;
  line-height: 1;
}
@media (min-width: 768px) { .pancho-bubble { font-size: 13px; padding: 11px 16px; } }

.pancho-bubble::before,
.pancho-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  background: var(--white);
  transform: rotate(45deg);
}
.pancho-bubble::before {
  right: 22px;
  width: 16px;
  height: 16px;
  background: var(--black);
  bottom: -10px;
  z-index: -1;
}
.pancho-bubble::after {
  right: 23px;
  width: 14px;
  height: 14px;
  bottom: -7px;
  background: var(--white);
}

.pancho-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  border: 2px solid var(--white);
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.pancho:hover .pancho-close,
.pancho:focus-within .pancho-close {
  opacity: 1;
  transform: scale(1);
}

.pancho.hidden { display: none; }

@keyframes pancho-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes pancho-pop {
  0%, 90%, 100% { transform: scale(1); }
  94%           { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .pancho-wrap, .pancho-bubble { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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