/* =============================================
   Tulsa Food Court – VIBRANT LUXURY REBUILD
   Dark · Colorful · Full-bleed · Zero dead space
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,900;1,500&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #0b0b0f;
  --bg-section: #111118;
  --bg-card: #1a1a24;
  --bg-card-hover: #222230;
  --bg-elevated: #252535;

  --red: #c41230;
  --red-light: #e8334f;
  --red-glow: rgba(196, 18, 48, 0.4);
  --gold: #d4a017;
  --gold-light: #f0c850;
  --gold-glow: rgba(212, 160, 23, 0.35);
  --orange: #e65100;
  --orange-light: #ff7a2e;
  --teal: #00897b;
  --teal-light: #26a69a;
  --purple: #7c3aed;

  --text-primary: #faf5ef;
  --text-secondary: #c8c0b8;
  --text-muted: #8a8490;
  --text-gold: #f0c850;
  --text-price: #ff6b6b;

  --border-subtle: rgba(255,255,255,0.06);
  --border-glow: rgba(212,160,23,0.25);
  --border-red: rgba(196,18,48,0.3);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow-red: 0 0 40px rgba(196,18,48,0.25), 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow-gold: 0 0 40px rgba(212,160,23,0.2), 0 8px 32px rgba(0,0,0,0.5);

  --transition: 0.3s ease;
  --transition-bounce: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--orange-light); }

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

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 1000px;
}

.container--wide {
  max-width: 1600px;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,11,15,0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(11,11,15,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 52px; width: auto; }

.header-nav { display: none; }
@media (min-width: 960px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .header-nav a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: color var(--transition);
  }
  .header-nav a:hover { color: var(--gold-light); }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0; background: transparent;
  border: none; cursor: pointer;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: linear-gradient(180deg, #0d0d14 0%, #151520 100%);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow: auto;
}
.mobile-nav[aria-hidden="false"] { transform: translateX(0); }
@media (min-width: 960px) { .mobile-nav { display: none; } }
.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-bounce);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  min-height: 48px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #a0102a 50%, var(--red) 100%);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-glow-red);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(196,18,48,0.4), 0 12px 40px rgba(0,0,0,0.5);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8880f 100%);
  color: #0d0d0d;
  border: none;
  box-shadow: var(--shadow-glow-gold);
  font-weight: 800;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px) scale(1.02);
  color: #0d0d0d;
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline--light {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline--light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}
.btn-outline--on-dark {
  border-color: rgba(212,160,23,0.5);
  color: var(--gold-light);
}
.btn-outline--on-dark:hover {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold-light);
  color: #fff;
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  min-height: 54px;
}
.btn-cta-nav {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}
.btn-cta-nav:hover { background: var(--red-light); color: #fff; }
.btn-hiring-nav {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-hiring-nav:hover {
  background: rgba(212, 160, 23, 0.12);
  border-color: var(--gold-light);
  color: #fff;
  box-shadow: var(--shadow-glow-gold);
}
.mobile-nav .btn-hiring-nav {
  display: inline-flex;
  justify-content: center;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .btn-lg { width: 100%; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(72px + 3rem) 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-gallery { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  background: var(--bg-dark);
}
.hero-slide.active {
  opacity: 1; z-index: 1;
  pointer-events: auto;
}
.hero-slide .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.15) contrast(1.05) brightness(0.7);
}
.hero-slide .hero-bg-img--cover {
  position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
  max-width: none; transform: none;
  object-fit: cover; object-position: center;
  border-radius: 0; box-shadow: none;
  filter: saturate(1.15) contrast(1.08) brightness(0.65);
}
.hero-slide .hero-bg-img--poster {
  position: absolute;
  left: 50%; top: 50%;
  width: min(90%, 1000px);
  height: min(85%, 700px);
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: brightness(0.9) saturate(1.1);
}
.hero-slide.active .hero-bg-img--cover { animation: none; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.hero-overlay--deep {
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, transparent 0%, rgba(11,11,15,0.6) 100%),
    linear-gradient(to top, rgba(11,11,15,0.95) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(11,11,15,0.5) 0%, transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 6;
  max-width: 920px;
}
.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  margin: 0 0 1rem;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-lead {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  font-weight: 500;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-buttons .btn { animation: heroBtnRise 0.7s ease backwards; }
  .hero-buttons .btn:nth-child(1) { animation-delay: 0.1s; }
  .hero-buttons .btn:nth-child(2) { animation-delay: 0.2s; }
  .hero-buttons .btn:nth-child(3) { animation-delay: 0.3s; }
}
@keyframes heroBtnRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-food-kicker {
  position: absolute;
  top: calc(72px + 0.5rem);
  left: 0; right: 0;
  z-index: 7;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8);
  pointer-events: none;
}
.hero-gallery-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 0.5rem;
}
.hero-gallery-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-gallery-dot:hover {
  background: rgba(212,160,23,0.5);
  border-color: var(--gold-light);
}
.hero-gallery-dot.active {
  background: var(--gold);
  border-color: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ========== DIVIDER RIBBON ========== */
.wow-flare-ribbon {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 25%, var(--gold) 50%, var(--teal) 75%, var(--purple) 100%);
  background-size: 200% 100%;
  animation: ribbonSlide 8s linear infinite;
}
@keyframes ribbonSlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ========== SECTIONS ========== */
.section {
  padding: 4rem 0;
  scroll-margin-top: 80px;
}
@media (max-width: 767px) {
  .section { padding: 3rem 0; }
}
.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
  line-height: 1.12;
}
.section-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}
.section-head--tight { margin-bottom: 1.5rem; }

/* ========== VALUE / ABOUT ========== */
.lux-value {
  background: linear-gradient(180deg, #121218 0%, #0e0e14 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0 !important;
}
.lux-value__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .lux-value__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.lux-value__intro { text-align: center; }
@media (min-width: 900px) { .lux-value__intro { text-align: left; } }
.lux-value__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}
.lux-value__lead {
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.lux-value__highlights {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (max-width: 520px) {
  .lux-value__highlights { grid-template-columns: 1fr; }
}
.lux-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.lux-stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}
.lux-stat-card__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.lux-stat-card__label {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.lux-stat-card__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========== LUNCH EXPRESS ========== */
.lux-lunch-express {
  background: linear-gradient(180deg, #14141c 0%, #0f0f16 100%) !important;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 3.5rem 0 !important;
}
.lux-lunch-express__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.lux-lunch-express__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.lux-lunch-express__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}
.lux-lunch-express__lede {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--red-light);
}
.lux-lunch-express__hours {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.lux-lunch-express__hours-sep {
  margin: 0 0.35rem;
  color: var(--gold);
}
.lux-lunch-express__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .lux-lunch-express__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lux-lunch-card {
  position: relative;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.lux-lunch-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.lux-lunch-card__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--gold);
  border-radius: 999px;
}
.lux-lunch-card__badge--fast {
  color: #fff;
  background: var(--red);
}
.lux-lunch-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.lux-lunch-card__name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  flex: 1;
}
.lux-lunch-card__price {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-price);
}
.lux-lunch-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.lux-lunch-express__note {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.lux-lunch-express__cta {
  margin-top: 1.5rem;
  text-align: center;
}
.lux-lunch-express__btn {
  min-width: min(100%, 14rem);
}

/* ========== DRIP SEAFOOD ========== */
.lux-drip-seafood {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(196,18,48,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(212,160,23,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0d0d14 0%, #111118 50%, #0d0d14 100%);
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 !important;
}
.lux-drip-seafood__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .lux-drip-seafood__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.lux-drip-seafood__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.lux-drip-seafood__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}
.lux-drip-seafood__sub {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.lux-drip-seafood__glow-line {
  display: block;
  width: 100%; max-width: 12rem;
  height: 3px;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 60%, transparent 100%);
  box-shadow: 0 0 20px var(--red-glow);
}
.lux-drip-seafood__body { margin-bottom: 1.75rem; max-width: 32rem; }
.lux-drip-seafood__punch {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
}
.lux-drip-seafood__para {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.lux-drip-seafood__tagline {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}
.lux-drip-seafood__sauces-block {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glow);
}
.lux-drip-seafood__sauces-lead--rubs {
  margin-top: 0.75rem;
}
.lux-drip-seafood__sauces-lead {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.lux-drip-seafood__sauces {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  gap: 0.35rem 1rem;
  grid-template-columns: 1fr;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}
@media (min-width: 520px) {
  .lux-drip-seafood__sauces { grid-template-columns: repeat(2, 1fr); }
}
.lux-drip-seafood__sauces li {
  position: relative;
  padding-left: 1rem;
}
.lux-drip-seafood__sauces li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}
.lux-drip-seafood__reminder {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--gold-light);
}
.lux-drip-seafood__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.75rem; padding: 0;
}
.lux-drip-seafood__badges li {
  padding: 0.35rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  background: rgba(212,160,23,0.08);
}
.lux-drip-seafood__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.lux-drip-seafood__btn-primary { }
.lux-drip-seafood__btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--gold);
  font-weight: 700;
}
.lux-drip-seafood__btn-secondary:hover {
  background: rgba(212,160,23,0.12);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
}
.lux-drip-seafood__figure { margin: 0; }
.lux-drip-seafood__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(85vh, 800px);
  object-fit: contain;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 80px rgba(196,18,48,0.1);
  transition: transform var(--transition-bounce);
}
.lux-drip-seafood__figure:hover .lux-drip-seafood__img {
  transform: translateY(-4px) scale(1.01);
}
.lux-drip-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.lux-drip-reveal.is-inview { opacity: 1; transform: translateY(0); }

/* ========== DRIP STAMP ========== */
.drip-stamp-section {
  background: var(--bg-section);
  padding: 2.5rem 0 !important;
}
.drip-stamp-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  box-shadow: var(--shadow-card);
}
.drip-stamp-card::after {
  content: "DRIP";
  position: absolute;
  right: 1rem; top: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--red);
  color: var(--red-light);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.drip-stamp-card__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red-light);
}
.drip-stamp-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
  color: var(--text-primary);
}
.drip-stamp-card__copy, .drip-stamp-card__price {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.drip-stamp-card__price { margin-top: 0.25rem; }
.drip-stamp-card__grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .drip-stamp-card__grid {
    grid-template-columns: 2fr 1fr;
  }
}
.drip-stamp-card__subhead {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
}
.drip-stamp-card__list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  gap: 0.25rem 1rem;
  grid-template-columns: 1fr;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
@media (min-width: 760px) {
  .drip-stamp-card__list { grid-template-columns: repeat(2, 1fr); }
  .drip-stamp-card__col--rubs .drip-stamp-card__list { grid-template-columns: 1fr; }
}
.drip-stamp-card__list li {
  position: relative;
  padding-left: 0.9rem;
}
.drip-stamp-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ========== BRAND NAV STRIP ========== */
.brand-nav-strip {
  padding: 0.75rem 0;
  background: rgba(17,17,24,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 72px;
  z-index: 80;
}
.brand-pills-sticky { z-index: 80; }
.brand-nav-label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-align: center;
  color: var(--gold);
}
.brand-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.brand-nav--pills {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0.4rem;
  padding: 0.15rem 0;
}
.brand-nav--pills::-webkit-scrollbar { display: none; }
.brand-nav a, .brand-nav--pills a {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  white-space: nowrap;
  transition: all var(--transition);
}
.brand-nav a:hover, .brand-nav--pills a:hover {
  border-color: var(--red);
  color: var(--red-light);
  background: rgba(196,18,48,0.1);
}
.brand-nav--pills a.is-active {
  background: linear-gradient(135deg, var(--red) 0%, #a0102a 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--red-glow);
}

/* Hide the secondary nav strip */
#brand-nav-secondary { display: none; }

/* ========== BRAND SECTIONS ========== */
.section-brands {
  padding-top: 2rem;
  background: var(--bg-dark);
}
.section-brands .container {
  max-width: 1400px;
}
.brand-block {
  display: grid;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  align-items: start;
  position: relative;
  transition: border-color var(--transition);
}
.brand-block:hover {
  border-color: rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .brand-block-left {
    grid-template-columns: 1fr 1.2fr;
  }
  .brand-block-right {
    grid-template-columns: 1.2fr 1fr;
  }
  .brand-block-right .brand-block-media { order: 2; }
  .brand-block-right .brand-block-content { order: 1; }
}
.brand-block:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.brand-block-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.brand-logo-first {
  width: 100%;
  max-height: 130px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: filter var(--transition), transform var(--transition);
}
.brand-block-media:hover .brand-logo-first {
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
  transform: scale(1.02);
}
.brand-logo {
  max-height: 130px;
  width: auto;
  object-fit: contain;
}
.brand-food-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-bounce), box-shadow var(--transition);
}
.brand-food-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 40px rgba(196,18,48,0.1);
}
.brand-food-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.brand-food-wrap:hover .brand-food-img {
  transform: scale(1.03);
}
.brand-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.brand-food-grid--3 { grid-template-columns: repeat(3, 1fr); }
.brand-food-grid--2 { grid-template-columns: 1fr 1fr; }
.brand-food-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.brand-sauce-lineup {
  margin: 0;
  padding: 0.65rem 0.5rem 0.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #0d0d12 0%, #1a1520 100%);
  box-shadow: var(--shadow-card);
  overflow: visible;
}
.brand-sauce-lineup__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
}
@media (max-width: 900px) {
  .brand-food-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .brand-food-grid, .brand-food-grid--2 { grid-template-columns: 1fr; }
}

/* Brand content card */
.brand-block-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--red);
  transition: border-color var(--transition);
}
.brand-block-content::before { display: none; }
.brand-block:hover .brand-block-content {
  border-left-color: var(--gold);
}
.shared-menu-block .brand-block-content {
  margin-top: 1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
  line-height: 1.15;
}
.brand-desc {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}
.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.brand-actions .btn {
  flex: 1 1 auto;
  min-width: 120px;
}
@media (max-width: 767px) {
  .brand-actions { flex-direction: column; }
  .brand-actions .btn { width: 100%; }
}
.brand-drip-reminder {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 600;
}

/* Chippers spotlight */
.lux-chippers-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 640px) {
  .lux-chippers-spotlight { grid-template-columns: repeat(2, 1fr); }
}
.lux-chippers-spotlight__fig {
  margin: 0; padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}
.lux-chippers-spotlight__img {
  display: block;
  width: 100%; height: auto;
  max-height: min(45vh, 400px);
  object-fit: contain;
}
.lux-chippers-spotlight__cap {
  margin: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--bg-dark);
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
.lux-chippers-brand { }

/* ========== MENU ITEMS ========== */
.brand-menu {
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
.menu-category {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--gold);
  margin: 1.25rem 0 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(212,160,23,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-category:first-child { margin-top: 0; }
.menu-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9375rem;
  padding: 0.45rem 0;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.menu-item--highlight {
  padding: 0.65rem 0.75rem;
  margin: 0.35rem 0 0.25rem;
  border: 1px solid rgba(212,160,23,0.45);
  border-radius: var(--radius-md);
  background: rgba(212,160,23,0.08);
  border-bottom: 1px solid rgba(212,160,23,0.45);
}
.menu-item--highlight .menu-item-price { color: var(--gold-light); }
.menu-item:last-of-type { border-bottom: 0; }
.menu-item-name { flex: 1; font-weight: 600; }
.menu-item-price {
  flex-shrink: 0;
  color: var(--text-price);
  font-weight: 800;
  font-size: 1rem;
}
.menu-item-block {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.menu-item-block:last-of-type { border-bottom: none; }
.menu-item-block-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}

/* Coming soon — big stamp overlay on brand blocks */
.brand-block-coming-soon {
  position: relative;
  overflow: hidden;
}
.brand-block-coming-soon .brand-block-media,
.brand-block-coming-soon .brand-block-content {
  opacity: 0.4;
  filter: grayscale(0.35) saturate(0.7);
  pointer-events: none;
  user-select: none;
}
.brand-coming-soon-stamp {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 1rem;
}
.brand-nav-soon-tag {
  display: inline-block;
  font-size: 0.65em;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold, #d4a017);
  vertical-align: middle;
  margin-left: 0.15em;
}
.brand-nav--soon .brand-nav-soon-tag {
  padding: 0.1em 0.35em;
  border-radius: 3px;
  background: rgba(196, 18, 48, 0.35);
  color: #fff;
}
.brand-coming-soon-stamp span {
  display: block;
  transform: rotate(-14deg);
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border: 0.14em solid var(--red, #c41230);
  outline: 0.08em dashed rgba(255, 255, 255, 0.45);
  outline-offset: 0.12em;
  padding: 0.28em 0.5em 0.32em;
  border-radius: 0.08em;
  background: rgba(196, 18, 48, 0.88);
  box-shadow:
    0 0 0 6px rgba(196, 18, 48, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.55);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Coming soon badge */
.brand-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.brand-badge-big {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(196,18,48,0.2), rgba(212,160,23,0.1));
  border: 2px solid var(--border-glow);
  margin: 0.75rem 0 1.25rem;
}
.brand-hours-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin: 0.75rem 0;
}
.brand-hours-box h3 {
  font-size: 0.9375rem;
  margin: 0 0 0.25rem;
  color: var(--gold);
}
.brand-hours-box p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.brand-actions-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* Shared menu */
.shared-menu-block {
  grid-template-columns: 1fr !important;
  display: flex !important;
  flex-direction: column;
  gap: 1.5rem;
}
.shared-menu-block .brand-block-content { max-width: 100%; }
.shared-menu-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.shared-menu-visuals--trio {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .shared-menu-visuals--trio { grid-template-columns: 1fr; }
}
.shared-menu-content-inner { max-width: 100%; }
.shared-menu-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .shared-menu-grid { grid-template-columns: 1fr 1fr; }
}
.shared-menu-grid--trio {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .shared-menu-grid--trio { grid-template-columns: 1fr; }
}

/* Inline CTA */
.order-cta-block, .lux-inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  margin-top: 1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(196,18,48,0.15) 0%, rgba(212,160,23,0.1) 100%);
  border: 1px solid var(--border-glow);
}
.lux-inline-cta__text h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--text-primary);
}
.lux-inline-cta__text p {
  margin: 0;
  color: var(--text-secondary);
}
.lux-inline-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.order-cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}
.order-cta-block p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}
@media (max-width: 767px) {
  .lux-inline-cta, .order-cta-block {
    text-align: center;
    justify-content: center;
  }
  .lux-inline-cta__actions { justify-content: center; }
}

/* ========== WONDERFUL SAUCES ========== */
.section-wonderful-sauces, .lux-sauces {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(196,18,48,0.12), transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 80%, rgba(212,160,23,0.1), transparent 45%),
    linear-gradient(180deg, #0d0d14 0%, #111118 50%, #0d0d14 100%);
  color: var(--text-primary);
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border-subtle);
}
.lux-sauces__ambient {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0;
}
.lux-sauces .container, .lux-sauces__head, .lux-sauces__shop, .lux-sauces__order {
  position: relative; z-index: 1;
}
.lux-sauces__head { margin-bottom: 2rem; }
.sauces-intro {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}
.sauces-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.sauces-heading {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.12;
  color: #fff;
}
.sauces-lead {
  margin: 0 auto 1.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 36rem;
}
.sauces-lux-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto 1rem;
}
@media (min-width: 640px) {
  .sauces-lux-strip { grid-template-columns: repeat(3, 1fr); }
}
.sauces-lux-card {
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}
.sauces-lux-card--feature {
  border-color: var(--border-glow);
  box-shadow: 0 0 40px rgba(212,160,23,0.1);
  transform: scale(1.02);
}
.sauces-lux-amount {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-light);
}
.sauces-lux-cap {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}
.sauces-hero-actions { margin-top: 1.25rem; }
.sauces-trio-explainer {
  margin: 0 auto 1rem;
  max-width: 34rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.sauces-cta-line { margin: 0; }

.lux-sauces-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .lux-sauces-layout { grid-template-columns: 1fr 280px; }
}
.lux-sauces-main { min-width: 0; }

.sauces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .sauces-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .sauces-grid { grid-template-columns: repeat(3, 1fr); }
}
.sauce-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.sauce-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.sauce-card--pulse {
  animation: sauceCardPulse 0.4s ease-out;
}
@keyframes sauceCardPulse {
  0% { box-shadow: 0 0 0 0 rgba(212,160,23,0.5); }
  100% { box-shadow: 0 0 0 14px transparent; }
}
.sauce-card-photo-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0; margin: 0 0 0.75rem;
  border: none;
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.3);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.sauce-card-photo-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 2px var(--gold), 0 8px 32px rgba(0,0,0,0.4);
}
.sauce-card-photo-btn img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1; object-fit: contain;
}
.sauce-card-photo-btn--portrait img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: center bottom;
  min-height: 220px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}
.sauce-card-tap-badge {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.45rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #0d0d0d;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.sauce-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--text-primary);
}
.sauce-card-desc {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-muted);
  flex-grow: 1;
}
.sauce-card-price-badge {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}
.sauce-card-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: auto;
}
.sauce-qty-btn {
  width: 2.5rem; height: 2.5rem;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glow);
  background: rgba(0,0,0,0.3);
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--transition);
}
.sauce-qty-btn:hover {
  background: rgba(212,160,23,0.15);
  border-color: var(--gold);
}
.sauce-card-qty { display: flex; align-items: center; margin: 0; }
.sauce-card-qty input[type='number'] {
  width: 3rem;
  padding: 0.4rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}
.sauce-card-qty input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.sauces-bundle-bar {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-glow);
}
.sauces-bundle-note {
  margin: 0.75rem auto 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 36rem;
}
.sauces-estimate {
  margin: 0.75rem 0;
  padding: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

/* Cart panel */
.sauces-cart-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 1024px) {
  .sauces-cart-panel {
    position: sticky;
    top: calc(72px + 80px);
  }
}
@media (max-width: 1023px) {
  .sauces-cart-panel {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 0.75rem 1rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
  .sauces-cart-panel__title {
    flex: 1 0 100%;
    margin: 0;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .sauces-cart-panel__estimate {
    flex: 1 1 auto; margin: 0;
    font-size: 0.8125rem;
  }
  .sauces-cart-panel__cta {
    flex: 0 0 auto;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    min-height: 44px;
  }
  .lux-sauces__order { padding-bottom: 6.5rem; }
}
.sauces-cart-panel__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-primary);
}
.sauces-cart-lines {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  max-height: 9rem;
  overflow-y: auto;
}
.sauces-cart-lines__item {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.12);
}
.sauces-cart-lines__empty {
  font-size: 0.8125rem;
  color: var(--text-muted, #666);
  font-style: italic;
}
.sauces-cart-panel__estimate {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}
.sauces-cart-panel__cta { width: 100%; text-align: center; }

/* Sauce order form */
.sauces-order-wrap, .lux-order-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--text-primary);
}
.lux-sauces__order .lux-order-card { margin-top: 2rem; }
.lux-order-card--wide { max-width: 800px; margin: 0 auto; }
.sauces-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}
.sauces-form-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.sauces-form-subheading {
  margin: 1.25rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}
.sauces-form-hint {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.sauces-checkout-hint {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.sauces-form .btn { margin-top: 0.5rem; width: 100%; }
@media (min-width: 480px) { .sauces-form .btn { width: auto; } }

/* ========== FORMS ========== */
.form-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-row { margin-bottom: 0.75rem; }
.form-grid .form-row { margin-bottom: 0; }
.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}
.form-row label .req { color: var(--red-light); }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row input[type="date"],
.form-row select,
.form-row textarea,
.lux-form .form-row input,
.lux-form .form-row select,
.lux-form .form-row textarea,
.sauces-order-wrap select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row--full { grid-column: 1 / -1; }
@media (min-width: 600px) {
  .form-grid .form-row--full { grid-column: 1 / -1; }
}
/* ========== NOW HIRING ========== */
.lux-hiring {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  scroll-margin-top: 88px;
}
.lux-hiring__banner {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background:
    linear-gradient(135deg, rgba(11, 11, 15, 0.97) 0%, rgba(17, 17, 24, 0.92) 50%, rgba(11, 11, 15, 0.97) 100%),
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(212, 160, 23, 0.18), transparent 60%);
  border-bottom: 1px solid var(--border-glow);
  overflow: hidden;
}
.lux-hiring__banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0.85;
}
.lux-hiring__banner-inner {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}
.lux-hiring__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.lux-hiring__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
}
.lux-hiring__sub {
  margin: 0 0 0.5rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  color: var(--text-gold);
  font-weight: 600;
  line-height: 1.45;
}
.lux-hiring__note {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.lux-hiring__form-wrap {
  padding: clamp(2rem, 5vw, 3rem) 1rem 3.5rem;
}
.hiring-form-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: linear-gradient(165deg, var(--bg-card) 0%, #12121a 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow-gold);
}
.hiring-form-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
}
.hiring-form-card__lead {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hiring-form__submit {
  margin-top: 0.5rem;
  width: 100%;
}
@media (min-width: 480px) {
  .hiring-form__submit { width: auto; min-width: 220px; }
}

/* ========== EXPERIENCE ========== */
.section-experience {
  background: linear-gradient(180deg, #0f0f16 0%, #141420 50%, #0f0f16 100%);
  border-top: 1px solid var(--border-subtle);
}
.lux-strip-section { background: none; }
.section-experience .section-eyebrow { color: var(--red-light); }
.section-experience .section-head h2 { color: var(--text-primary); }
.section-experience .section-lead { color: var(--text-secondary); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}
.experience-grid--lux .experience-card { border-radius: var(--radius-lg); }
.experience-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-bounce), border-color var(--transition), box-shadow var(--transition);
}
.experience-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 32px rgba(196,18,48,0.08);
}
.experience-icon {
  display: block;
  color: var(--red);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.experience-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--text-primary);
}
.experience-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ========== ORDER ONLINE ========== */
.section-order, .lux-order-section {
  background: var(--bg-section);
  border-top: 1px solid var(--border-subtle);
}
.order-links-block, .lux-order-links {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
}
.order-links-block p {
  margin: 0 0 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}
.order-cta-note { margin-top: 1rem; font-size: 0.9375rem; }

/* ========== CATERING ========== */
.section-catering, .lux-catering {
  background: linear-gradient(180deg, #0d0d14 0%, #111118 100%);
  border-top: 1px solid var(--border-subtle);
}
.lux-catering-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 280px;
  max-width: 1400px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
@media (max-width: 767px) {
  .lux-catering-hero {
    grid-template-columns: 1fr;
    margin: 0 1rem 2rem;
  }
}
.lux-catering-hero__media { min-height: 220px; }
.lux-catering-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.lux-catering-hero__copy {
  background: linear-gradient(135deg, #1a1a28 0%, #0d0d14 100%);
  color: var(--text-primary);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.lux-catering-hero__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0; line-height: 1.15;
}
.lux-catering-hero__copy p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}
.lux-catering-hero__copy .section-eyebrow { color: var(--gold); }
.catering-24hr {
  font-size: 1rem;
  color: var(--red-light);
  margin: 0; font-weight: 700;
}
.catering-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  border-radius: var(--radius-xl);
}
.catering-form { text-align: left; }
.catering-form .btn { margin-top: 0.5rem; width: 100%; }
@media (min-width: 480px) { .catering-form .btn { width: auto; } }

/* ========== LOCATION ========== */
.section-location {
  background: var(--bg-section);
  border-top: 1px solid var(--border-subtle);
}
.location-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.location-info h3 {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 0.35rem;
}
.location-info h3:not(:first-child) { margin-top: 1.5rem; }
.location-info p {
  margin: 0 0 0.5rem;
  color: var(--text-secondary);
}
.location-info a { color: var(--gold-light); }
.location-master-menu {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
}
.map-placeholder {
  aspect-ratio: 16/10;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(196,18,48,0.2), transparent 55%),
    var(--bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
}
.map-placeholder p { margin: 0.25rem 0; }
.map-placeholder__hint {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* ========== FOOTER ========== */
.site-footer, .lux-footer {
  padding: 2.5rem 0 1.5rem;
  background: #080810;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.site-footer a { color: var(--text-secondary); }
.site-footer a:hover { color: var(--gold-light); }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.footer-brand__logo-link {
  display: inline-block;
  margin-bottom: 0.25rem;
}
.footer-brand__logo-link img {
  height: 56px; width: auto;
  filter: brightness(1.1);
}
.footer-brand a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}
.footer-brand p {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  font-size: 0.875rem;
  font-weight: 600;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a { font-size: 0.875rem; }
.footer-copy {
  width: 100%;
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8125rem; }

/* ========== RESPONSIVE CLEANUP ========== */
@media (max-width: 767px) {
  .brand-block-content { padding: 1.5rem 1rem; }
  .brand-name { font-size: 1.5rem; }
  .section-head h2 { font-size: 1.75rem; }
  .hero { padding-top: calc(72px + 2rem); }
  .brand-block { padding: 1.25rem 1rem; }
}
