/* ============================================
   LU'S LITTLE WIENERS — DESIGN SYSTEM
   ============================================ */

:root {
  /* Brand palette — Chinatown red/gold */
  --lu-red: #C8102E;
  --lu-red-deep: #8B0A1F;
  --lu-red-dark: #5A0712;
  --lu-gold: #F5C518;
  --lu-gold-deep: #D4A017;
  --lu-cream: #F8F1E3;
  --lu-paper: #F2E8D5;
  --lu-ink: #1A0F0A;
  --lu-charcoal: #2A1810;
  --lu-orange: #FF7A1A;

  /* Sauce splatter accents */
  --lu-chili: #FF3D00;
  --lu-soy: #3D1F0A;
  --lu-green: #6B8E23;

  /* Type */
  --font-display: 'Bowlby One', 'Bowlby One SC', Impact, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-script: 'Caveat', cursive;
  --font-cn: 'Noto Serif SC', serif;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 15, 10, 0.12);
  --shadow-md: 0 8px 24px rgba(26, 15, 10, 0.18);
  --shadow-lg: 0 24px 60px rgba(26, 15, 10, 0.28);
  --shadow-red: 0 16px 40px rgba(200, 16, 46, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--lu-ink);
  background: var(--lu-cream);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Paper grain texture overlay — adds film/print feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.06 0 0 0 0 0.04 0 0 0 0.14 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lu-red);
  font-weight: 600;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
}

.chinese {
  font-family: var(--font-cn);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lu-gold);
  color: var(--lu-ink);
  box-shadow: 0 6px 0 var(--lu-gold-deep), 0 12px 28px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--lu-gold-deep), 0 18px 36px rgba(0,0,0,0.2);
}
.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--lu-gold-deep), 0 6px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--lu-cream);
  border: 2px solid var(--lu-cream);
}
.btn-secondary:hover {
  background: var(--lu-cream);
  color: var(--lu-red-deep);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--lu-cream);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
}

.btn-red {
  background: var(--lu-red);
  color: var(--lu-cream);
  box-shadow: 0 6px 0 var(--lu-red-deep), 0 12px 28px rgba(200,16,46,0.3);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--lu-red-deep), 0 18px 36px rgba(200,16,46,0.4);
}

.arrow {
  display: inline-block;
  transition: transform 0.25s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* Container */
.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}
.container-wide {
  width: min(1480px, 96vw);
  margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--lu-red-deep);
  border-bottom: 3px solid var(--lu-gold);
  transition: padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(139, 10, 31, 0.96);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  gap: 1.5rem;
  width: min(1480px, 96vw);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lu-cream);
  line-height: 1;
}
.nav-wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--lu-gold);
  font-weight: 700;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--lu-cream);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lu-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover {
  color: var(--lu-gold);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--lu-cream);
  font-size: 1.4rem;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; align-items: center; justify-content: center; }
  .nav-wordmark { font-size: 1.15rem; }
  .nav-wordmark small { font-size: 0.55rem; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80vw;
  max-width: 360px;
  height: 100vh;
  background: var(--lu-red-deep);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  border-left: 3px solid var(--lu-gold);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu a {
  color: var(--lu-cream);
  font-family: var(--font-display);
  font-size: 1.75rem;
}
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--lu-cream);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 150;
}
.mobile-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem 0 3rem;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245, 197, 24, 0.18), transparent 60%),
    linear-gradient(160deg, var(--lu-red-deep) 0%, var(--lu-red-dark) 60%, #3A0410 100%);
  color: var(--lu-cream);
  overflow: hidden;
  isolation: isolate;
}

/* Steam particles */
.hero-steam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* Floating chinese characters in background */
.hero-bg-chars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-chars span {
  position: absolute;
  font-family: var(--font-cn);
  color: rgba(245, 197, 24, 0.07);
  font-weight: 900;
  user-select: none;
  font-size: 18vw;
  line-height: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.hero-text { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid var(--lu-gold);
  color: var(--lu-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--lu-gold);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero h1 .accent {
  color: var(--lu-gold);
  display: block;
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 8px;
  width: 60%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4 Q 50 1 100 4 T 198 4' stroke='%23F5C518' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.hero-sub .pink { color: var(--lu-gold); }
.hero-desc {
  color: rgba(248, 241, 227, 0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 200px;
}
.hero-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lu-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lu-ink);
  font-size: 1.1rem;
}
.hero-feature h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lu-gold);
  font-weight: 800;
  margin-bottom: 2px;
}
.hero-feature p {
  font-size: 0.78rem;
  color: rgba(248,241,227,0.7);
  line-height: 1.4;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-disclaimer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--lu-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  perspective: 1200px;
}

.hero-plate {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.hero-plate img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.hero-stamp {
  position: absolute;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  text-align: center;
  font-size: 1.1rem;
  line-height: 0.95;
  color: var(--lu-cream);
  background: var(--lu-red);
  border: 3px solid var(--lu-cream);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 3;
}
.hero-stamp-1 {
  top: 6%;
  right: -2%;
  transform: rotate(15deg);
  animation: stampSpin 12s linear infinite;
}
.hero-stamp-2 {
  bottom: 8%;
  left: -3%;
  transform: rotate(-10deg);
  background: var(--lu-gold);
  color: var(--lu-red-deep);
  font-size: 0.95rem;
  animation: stampSpin 14s linear infinite reverse;
}
@keyframes stampSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Marquee */
.marquee {
  background: var(--lu-gold);
  color: var(--lu-ink);
  overflow: hidden;
  position: relative;
  z-index: 5;
  border-top: 3px solid var(--lu-red-deep);
  border-bottom: 3px solid var(--lu-red-deep);
  padding: 0.85rem 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  gap: 2rem;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.marquee-track .sep {
  color: var(--lu-red);
  font-size: 1.5rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   PRODUCT GRID — "OUR LITTLE LEGENDS"
   ============================================ */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.section-head h2 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-head .script {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--lu-red);
  font-weight: 500;
}
.section-head .script-line {
  display: inline-block;
  margin-left: 0.5rem;
}
.section-head .underline {
  width: 80px;
  height: 4px;
  background: var(--lu-gold);
  border-radius: 4px;
  margin-top: 0.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--lu-paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.product-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--lu-red-deep);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lu-gold);
  color: var(--lu-ink);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}
.product-badge.red {
  background: var(--lu-red);
  color: var(--lu-cream);
}

.product-content { padding: 1.25rem 1.25rem 1.5rem; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-card .emoji { font-size: 1rem; }
.product-tag {
  font-size: 0.85rem;
  color: rgba(26,15,10,0.7);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  min-height: 2.4em;
}
.product-quote {
  font-family: var(--font-script);
  color: var(--lu-red);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  min-height: 2.5em;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lu-red-deep);
}
.product-order {
  background: var(--lu-ink);
  color: var(--lu-cream);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.product-order:hover { background: var(--lu-red); }

/* ============================================
   FEATURE TRIO — "Thick Shakes / Loaded Fries / Gift Cards"
   ============================================ */
.features-trio {
  background: linear-gradient(180deg, var(--lu-red-deep) 0%, var(--lu-red-dark) 100%);
  color: var(--lu-cream);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.features-trio::before {
  content: '';
  display: none;
}
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .trio-grid { grid-template-columns: 1fr; } }

.trio-card {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0.02));
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.trio-card:hover {
  transform: translateY(-4px);
  border-color: var(--lu-gold);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(245, 197, 24, 0.05));
}
.trio-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.trio-card .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--lu-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.trio-card p {
  font-size: 0.95rem;
  color: rgba(248,241,227,0.78);
  line-height: 1.5;
}
.trio-card .deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 6rem;
  opacity: 0.15;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  background: var(--lu-ink);
  color: var(--lu-cream);
  padding: 5rem 0;
}
.loc-head {
  margin-bottom: 3rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.loc-head h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.loc-head h2 .pin { color: var(--lu-gold); }
.loc-head p {
  color: rgba(248, 241, 227, 0.6);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  gap: 1rem;
}
@media (max-width: 1100px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-map { grid-column: span 2; min-height: 280px; }
}
@media (max-width: 600px) {
  .locations-grid { grid-template-columns: 1fr; }
  .locations-map { grid-column: span 1; }
}

.loc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.loc-card:hover {
  background: rgba(245, 197, 24, 0.08);
  border-color: var(--lu-gold);
  transform: translateY(-4px);
}
.loc-card.coming-soon {
  opacity: 0.7;
}
.loc-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lu-cream);
  margin-bottom: 0.25rem;
}
.loc-card .country {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--lu-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.loc-card .addr {
  font-size: 0.85rem;
  color: rgba(248,241,227,0.7);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.loc-card .hours {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.loc-card .hours .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
}
.loc-card .hours .dot.amber {
  background: var(--lu-gold);
  box-shadow: 0 0 8px var(--lu-gold);
}
.loc-card .soon-badge {
  display: inline-block;
  background: var(--lu-gold);
  color: var(--lu-ink);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.locations-map {
  background: linear-gradient(135deg, #2a1810, #1a0f0a);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255,255,255,0.08);
}
.locations-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   STORY STRIP — "About"
   ============================================ */
.story {
  background: var(--lu-paper);
  padding: 7rem 0;
  position: relative;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.story-text h2 { margin-bottom: 1.5rem; }
.story-text p {
  font-size: 1.05rem;
  color: rgba(26, 15, 10, 0.8);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}
.story-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  float: left;
  line-height: 0.85;
  padding-right: 0.5rem;
  color: var(--lu-red);
  margin-top: 4px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.story-stat {
  border-left: 3px solid var(--lu-red);
  padding-left: 0.75rem;
}
.story-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--lu-red-deep);
  line-height: 1;
}
.story-stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(26,15,10,0.6);
  margin-top: 0.25rem;
}

.story-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.story-visual .frame {
  position: absolute;
  inset: 0;
  background: var(--lu-red);
  border-radius: var(--radius-lg);
  transform: rotate(-3deg);
}
.story-visual .frame-2 {
  position: absolute;
  inset: 0;
  background: var(--lu-gold);
  border-radius: var(--radius-lg);
  transform: rotate(2deg);
}
.story-visual .frame-img {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid var(--lu-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lu-red-deep);
}
.story-visual .frame-img img {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

/* Quote pull */
.pullquote {
  background: var(--lu-ink);
  color: var(--lu-cream);
  padding: 4rem 0;
  text-align: center;
}
.pullquote-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pullquote q {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.25;
  font-style: italic;
  display: block;
  margin-bottom: 1.5rem;
}
.pullquote q::before, .pullquote q::after { content: ''; }
.pullquote .attrib {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lu-gold);
}
.pullquote .stars {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--lu-gold);
  letter-spacing: 0.2em;
}

/* ============================================
   PRESS / AS SEEN IN
   ============================================ */
.press {
  background: var(--lu-cream);
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.press-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(26,15,10,0.5);
  margin-bottom: 1.5rem;
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
  color: rgba(26,15,10,0.45);
  font-weight: 400;
}
.press-logos span {
  font-family: var(--font-display);
  font-style: normal;
  letter-spacing: -0.02em;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--lu-gold);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '🌶️';
  position: absolute;
  font-size: 14rem;
  top: -20px;
  right: -20px;
  opacity: 0.15;
  transform: rotate(20deg);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) { .newsletter-inner { grid-template-columns: 1fr; } }

.newsletter h2 {
  color: var(--lu-ink);
  margin-bottom: 0.5rem;
}
.newsletter p {
  color: rgba(26,15,10,0.7);
  font-size: 1.05rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  background: var(--lu-cream);
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--lu-ink);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(26,15,10,0.4); }
.newsletter-form button {
  background: var(--lu-red);
  color: var(--lu-cream);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--lu-red-deep); }

.newsletter-fine {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(26,15,10,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--lu-ink);
  color: var(--lu-cream);
  padding: 5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img {
  width: 90px;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(248,241,227,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  line-height: 1.5;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: var(--lu-cream);
  transition: background 0.2s;
  font-size: 1rem;
}
.footer-socials a:hover { background: var(--lu-red); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lu-gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(248,241,227,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lu-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(248,241,227,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-bottom a {
  color: rgba(248,241,227,0.6);
  margin-left: 1rem;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ============================================
   ORDER MODAL
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.modal-backdrop.open {
  display: flex;
  opacity: 1;
}
.modal {
  background: var(--lu-cream);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 4px solid var(--lu-red);
}
.modal-backdrop.open .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--lu-red);
  color: var(--lu-cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.modal-stamp {
  display: inline-block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--lu-red);
  border: 2px solid var(--lu-red);
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 700;
  transform: rotate(-3deg);
}
.modal p { color: rgba(26,15,10,0.7); margin-bottom: 1rem; font-size: 0.95rem; }
.modal .zip-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--lu-ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  outline: none;
  margin-bottom: 1rem;
  background: var(--lu-cream);
}
.modal .zip-input:focus { border-color: var(--lu-red); }
.modal .btn { width: 100%; justify-content: center; }
.modal-result {
  background: var(--lu-red);
  color: var(--lu-cream);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
  display: none;
}
.modal-result.show { display: block; }
.modal-result h4 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.modal-result p { color: rgba(248,241,227,0.85); font-size: 0.9rem; margin-bottom: 0; }

/* Cursor follower (decorative for desktop) */
.cursor-dot {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--lu-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: transform 0.1s ease-out;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (hover: hover) { .cursor-dot { opacity: 1; } }
@media (max-width: 900px) { .cursor-dot { display: none; } }
