/* Homepage-specific sections: geo-canvas, hero, deals, deli, drinks, story, visit, gallery */

/* ─── GEOMETRIC BACKGROUND ─── */
.geo-canvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.geo { position: absolute; pointer-events: none; }
.geo-hex { width: 80px; height: 46px; opacity: 0.03; }
.geo-hex svg { width: 100%; height: 100%; fill: none; stroke: var(--yellow); stroke-width: 1.5; }
.geo-circle { border: 1.5px solid var(--yellow); border-radius: 50%; opacity: 0.06; }
.geo-ring { border: 1px solid var(--yellow); border-radius: 50%; opacity: 0.04; }
.geo-diamond { border: 1.5px solid var(--yellow); opacity: 0.05; transform: rotate(45deg); }
.geo-dot { background: var(--yellow); border-radius: 50%; opacity: 0.08; }
.geo-line { height: 1px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); opacity: 0.04; }
.geo-cross { width: 20px; height: 20px; position: relative; opacity: 0.06; }
.geo-cross::before, .geo-cross::after { content: ''; position: absolute; background: var(--yellow); }
.geo-cross::before { width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.geo-cross::after { width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(3deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(-2deg); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(10px, -12px); } 66% { transform: translate(-8px, -6px); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-glow { 0%, 100% { opacity: 0.03; transform: scale(1); } 50% { opacity: 0.07; transform: scale(1.08); } }
@keyframes drift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(30px); } }

.anim-float1 { animation: float1 8s ease-in-out infinite; }
.anim-float2 { animation: float2 6s ease-in-out infinite; }
.anim-float3 { animation: float3 10s ease-in-out infinite; }
.anim-spin { animation: spin-slow 40s linear infinite; }
.anim-pulse { animation: pulse-glow 5s ease-in-out infinite; }
.anim-drift { animation: drift 12s ease-in-out infinite; }

@keyframes heroSlideRight { from { opacity: 0; transform: translateX(60px) scale(0.95); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes floatBounce { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes strikeAnim { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.3; } }

/* ─── HERO — simple / calm / confident ─── */
.hero {
  min-height: 100vh; padding: 140px 0 6rem;
  display: flex; align-items: center;
  position: relative; overflow: hidden; isolation: isolate;
}
/* Atmospheric storefront photo */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('/photos/backgrounds/Rectangle 116.webp') center/cover no-repeat;
  filter: saturate(0.85) contrast(1.05);
}
/* Soft dark tint + yellow wash where product sits */
.hero-bg-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(46,45,50,0.9) 0%, rgba(46,45,50,0.72) 40%, rgba(46,45,50,0.88) 100%),
    radial-gradient(ellipse 55% 45% at 78% 55%, rgba(253,196,4,0.18) 0%, transparent 60%);
}

/* Architectural corner brackets — one-liner frame marks */
.hero-bracket {
  position: absolute; z-index: 3; pointer-events: none;
  width: 36px; height: 36px;
  border: 1.25px solid rgba(253,196,4,0.55);
}
.hero-bracket-tl { top: 130px; left: 1.5rem; border-right: 0; border-bottom: 0; }
.hero-bracket-tr { top: 130px; right: 1.5rem; border-left: 0; border-bottom: 0; }
.hero-bracket-bl { bottom: 3rem; left: 1.5rem; border-right: 0; border-top: 0; }
.hero-bracket-br { bottom: 3rem; right: 1.5rem; border-left: 0; border-top: 0; }

/* Corner coords (quiet spec mark) */
.hero-coord {
  position: absolute; z-index: 3; pointer-events: none;
  font-family: var(--mono); font-size: 0.64rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(253,196,4,0.7);
}
.hero-coord-tr { top: 147px; right: 3.75rem; }


.hero-geo { position: absolute; pointer-events: none; z-index: 3; }
.hero-geo-hex svg { width: 100%; height: 100%; fill: none; stroke: var(--yellow); stroke-width: 1.5; }
.hero-geo-ring { border: 2px solid var(--yellow); border-radius: 50%; }
.hero-geo-diamond { border: 2px solid var(--yellow); transform: rotate(45deg); }
.hero-geo-dot { background: var(--yellow); border-radius: 50%; }
.hero-geo-tri { width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; border-bottom: 35px solid var(--yellow); }

.hero-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 var(--edge); width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
  position: relative; z-index: 5;
}

.hero-content { animation: heroFadeIn 1s var(--ease-out) both; }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(253,196,4,0.08);
  border: 1px solid rgba(253,196,4,0.3);
  color: var(--yellow); font-family: var(--mono); font-weight: 500;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.5rem 0.9rem 0.5rem 0.7rem; margin-bottom: 2.5rem; border-radius: 0;
  backdrop-filter: blur(8px);
  animation: heroFadeUp 0.8s var(--ease-out) 0.1s both;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: var(--yellow); border-radius: 50%;
  animation: livePulse 2s ease-out infinite;
}

/* Headline — block reveal animation (mask-based) */
.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3.75rem, 10vw, 9rem); line-height: 0.88;
  color: var(--white); margin-bottom: 2rem;
  letter-spacing: -0.005em; text-transform: uppercase;
}
.hero-eyebrow {
  display: block; font-family: var(--heading); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 1.1rem;
  opacity: 0; animation: heroFadeUp 0.6s var(--ease-out) 0.2s both;
}
.hero-title .line {
  display: block; overflow: hidden;
}
.hero-title .line .fill {
  display: inline-block;
  transform: translateY(100%);
  animation: heroLineUp 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.hero-title .line:nth-of-type(1) .fill { animation-delay: 0.45s; }
.hero-title .line:nth-of-type(2) .fill { animation-delay: 0.6s; color: var(--yellow); }
.hero-title em {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
}
@keyframes heroLineUp { to { transform: translateY(0); } }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
  font-family: var(--heading); font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,0.72); line-height: 1.5;
  max-width: 32ch; margin-bottom: 2.5rem;
  padding-left: 1rem; border-left: 2px solid var(--yellow);
  opacity: 0; animation: heroFadeUp 0.8s var(--ease-out) 0.9s both;
}
.hero-ctas {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  opacity: 0; animation: heroFadeUp 0.8s var(--ease-out) 1.05s both;
}

/* ─── Hero featured deal ─── */
.hero-deal {
  display: flex; align-items: stretch;
  margin-top: 2rem; max-width: 480px;
  background: rgba(46,45,50,0.72); backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(253,196,4,0.35);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0; transform: translateY(18px);
  animation: heroFadeUp 0.8s var(--ease-out) 1.25s forwards;
}
.hero-deal-ribbon {
  background: var(--yellow); color: var(--dark);
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--mono); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 0.45rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-deal-body {
  flex: 1; padding: 0.9rem 1.1rem 1rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.hero-deal-title {
  font-family: var(--display); font-size: 1.5rem; font-weight: 400;
  color: var(--white); letter-spacing: 0; text-transform: uppercase;
  line-height: 1;
}
.hero-deal-copy {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.4;
  max-width: 42ch;
}
.hero-deal-price {
  display: flex; align-items: baseline; gap: 0.7rem; margin-top: 0.25rem;
}
.hero-deal-price .now {
  font-family: var(--display); font-size: 2.1rem; font-weight: 400;
  color: var(--yellow); line-height: 1; letter-spacing: -0.01em;
}
.hero-deal-price .was {
  font-family: var(--heading); font-size: 0.95rem;
  color: var(--text-dim); text-decoration: line-through;
}
.hero-deal-price .save {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark); background: var(--yellow);
  padding: 0.3rem 0.55rem; border-radius: 3px; margin-left: auto;
}
.hero-visual {
  position: relative; display: flex; justify-content: flex-start; align-items: center;
  opacity: 0; transform: translateY(24px) scale(0.98);
  animation: heroVisualIn 1.2s var(--ease-out) 0.7s forwards;
}
@keyframes heroVisualIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-img-wrap { width: 100%; max-width: 460px; position: relative; }
.hero-img-wrap img {
  width: 100%; height: auto; position: relative; z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: floatBounce 5s ease-in-out infinite;
}
.hero-img-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90%; height: 90%;
  background:
    radial-gradient(circle, rgba(253,196,4,0.38) 0%, rgba(253,196,4,0.15) 35%, rgba(253,196,4,0.04) 60%, transparent 75%);
  pointer-events: none; z-index: 1; animation: glowPulse 4s ease-in-out infinite;
  filter: blur(10px);
}
/* ─── Hero deal highlight (bold white type, right of the image) ─── */
.hero-deal-stamp {
  position: absolute; top: 50%; left: 100%;
  margin-left: -3rem;
  transform: translateY(-50%);
  z-index: 4; opacity: 0; text-align: left;
  animation: stampInRight 0.6s var(--ease-out) 1.1s forwards;
  white-space: nowrap;
}
@keyframes stampInRight {
  from { opacity: 0; transform: translate(-14px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}
.hero-deal-stamp .tag {
  display: inline-block;
  color: var(--white);
  font-family: var(--mono); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.hero-deal-stamp .now {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3rem, 4.5vw, 4.2rem); line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.hero-deal-stamp .label {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white);
}

@keyframes stampIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-deal { display: none; }

/* ─── Scroll arrow (minimal) ─── */
.hero-arrow {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); border: 1px solid rgba(253,196,4,0.35); border-radius: 50%;
  opacity: 0; animation: heroArrowIn 0.6s var(--ease-out) 1.6s forwards, heroArrowBob 2.2s ease-in-out 2s infinite;
  backdrop-filter: blur(6px);
  background: rgba(46,45,50,0.35);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hero-arrow:hover {
  background: var(--yellow); color: var(--dark); border-color: var(--yellow);
  transform: translateX(-50%) translateY(-2px);
}
@keyframes heroArrowIn { to { opacity: 1; } }
@keyframes heroArrowBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── DAILY SPECIALS — editorial card grid ─── */
.specials {
  background: var(--paper); color: var(--text-dark); padding: 6rem 0 5rem;
  position: relative; overflow: hidden;
}
.specials::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(46,45,50,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,45,50,0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
}
.specials::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--yellow);
}
.specials-mega-bg {
  position: absolute; top: 3rem; right: -2%; z-index: 0;
  font-family: var(--display); font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 400; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(46,45,50,0.08);
  pointer-events: none; line-height: 0.85; text-transform: uppercase;
  user-select: none;
}
.specials-header {
  margin-bottom: 2.75rem;
  position: relative; z-index: 2;
  max-width: 60%;
}
.specials-header .sec-mark { color: var(--yellow-deep); margin-bottom: 0.9rem; }
.specials-header .sec-mark::before { background: var(--yellow-deep); }
.specials h2 {
  font-family: var(--display); font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9; color: var(--text-dark); letter-spacing: -0.01em;
  text-transform: uppercase;
}
.specials-header-meta {
  margin-top: 1rem;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  color: var(--text-dark-muted); letter-spacing: 0.12em; text-transform: uppercase;
}

.specials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  position: relative; z-index: 2;
}

/* ─── CARD ─── */
.special-card {
  background: var(--white); border: 1px solid var(--light-border);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.special-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 4px 12px rgba(238,178,5,0.08);
  border-color: rgba(238,178,5,0.28);
}

/* Image + overlay badges */
.special-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--warm-bg);
}
.special-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease-out);
}
/* Per-card override: shrink Grocery Boba Bonus photo so the milk tea
   doesn't fill the whole frame like the other (food) photos do. */
.special-card[data-slug="grocery-boba-bonus"] .special-img img {
  object-fit: contain;
  padding: 1.5rem;
}
.special-card[data-slug="grocery-boba-bonus"]:hover .special-img img {
  transform: scale(1.03);
}
/* Per-card override: Break Your Fast Combo photo has a tall coffee cup
   that gets clipped by the time/save badges at the top. Shrink slightly
   and push down so it clears the badges. */
.special-card[data-slug="break-your-fast-combo"] .special-img img {
  object-fit: contain;
  transform: scale(1.6) translateY(5%);
  transform-origin: center center;
}
.special-card[data-slug="break-your-fast-combo"]:hover .special-img img {
  /* Keep the image steady on hover -- the card itself still lifts via the
     generic .special-card:hover rule, but the photo shouldn't grow/shrink
     since starting scale is already 1.6. */
  transform: scale(1.6) translateY(5%);
}
.special-card:hover .special-img img { transform: scale(1.05); }

.special-img-badges {
  position: absolute; inset: 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.75rem;
  pointer-events: none;
  gap: 0.5rem;
}
.special-time {
  background: rgba(46,45,50,0.88);
  color: var(--white);
  font-family: var(--mono); font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.3;
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  border-left: 2px solid var(--yellow);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  max-width: 62%;
}
.special-save {
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--mono); font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  white-space: nowrap;
}

/* Body */
.special-body {
  padding: 1.25rem 1.1rem 1.1rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  flex: 1;
}
.special-name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem); line-height: 1;
  letter-spacing: -0.005em; text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
}
.special-tagline {
  font-size: 0.8rem; line-height: 1.5;
  color: var(--text-dark-secondary);
  margin: 0;
}
.special-includes {
  list-style: none; padding: 0;
  margin: 0.2rem 0 0;
  display: flex; flex-direction: column; gap: 0.3rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--light-border);
}
.special-includes li {
  position: relative; padding-left: 0.9rem;
  font-size: 0.76rem; line-height: 1.4;
  color: var(--text-dark-secondary);
}
.special-includes li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 1px; background: var(--yellow-deep);
}
.special-price {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--light-border);
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.55rem, 2vw, 1.9rem); line-height: 1;
  color: var(--yellow-deep);
  letter-spacing: -0.01em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .specials-header { max-width: 100%; }
  .specials-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 560px) {
  .specials-grid { grid-template-columns: 1fr; }
  .specials-header { margin-bottom: 2rem; }
}

/* ─── DELI — brand concrete backdrop ─── */
.deli {
  padding: 7rem 0 6rem; position: relative; overflow: hidden; isolation: isolate;
  background:
    linear-gradient(rgba(46,45,50,0.2), rgba(46,45,50,0.2)),
    url('/photos/backgrounds/brand-concrete.jpg') center/cover no-repeat;
  background-color: var(--dark);
  border-top: 1px solid rgba(253,196,4,0.22);
  border-bottom: 1px solid rgba(253,196,4,0.22);
}
.deli::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 78% 28%, rgba(253,196,4,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(0,0,0,0.35) 0%, transparent 65%);
}
.deli > * { position: relative; z-index: 2; }
.deli-mega-bg {
  position: absolute; bottom: -2rem; left: -2%; z-index: 1;
  font-family: var(--display); font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 400; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  pointer-events: none; line-height: 0.85; text-transform: uppercase;
  user-select: none;
}
/* Section header — chapter on top, one-line headline, meta below */
.deli-header {
  margin-bottom: 3rem;
  position: relative; z-index: 2;
  max-width: 55%;
}
.deli-header .sec-mark { margin-bottom: 0.9rem; }
.deli-main-h {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.92;
  letter-spacing: -0.005em; text-transform: uppercase;
  color: var(--white);
}
.deli-header-meta {
  margin-top: 1rem;
  display: inline-flex; gap: 0.6rem; align-items: baseline; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase;
}
.deli-header-meta strong { color: var(--yellow); font-weight: 500; }

@media (max-width: 768px) {
  .deli-header { max-width: 100%; }
}

.deli-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  margin-bottom: 4rem; position: relative; z-index: 2;
}
.deli-lede {
  font-family: var(--heading); font-size: 1.4rem; font-weight: 500;
  line-height: 1.35; color: var(--white);
  max-width: 460px; margin-bottom: 1.75rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Editorial lineup divider */
.deli-lineup-divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 0 0 2.5rem; position: relative; z-index: 2;
}
.deli-lineup-divider .line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(253,196,4,0.5) 50%, transparent 100%);
}
.deli-lineup-divider .label {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow); white-space: nowrap;
}
.deli-img-wrap { position: relative; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.deli-img-wrap > img { width: 100%; border-radius: 12px; }
.deli-float-badge {
  position: absolute; top: -1rem; right: -1rem; z-index: 3;
  background: var(--yellow); color: var(--dark);
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(238,178,5,0.3); animation: float1 4s ease-in-out infinite;
}
.deli-float-badge .f { font-family: var(--body); font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.deli-float-badge .v { font-family: var(--heading); font-size: 1.7rem; font-weight: 700; line-height: 1; }
.deli-content h2 {
  font-family: var(--display); font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9; text-transform: uppercase; letter-spacing: -0.005em;
  color: var(--white); margin-bottom: 1rem;
}
.deli-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; max-width: 420px; margin-bottom: 1rem; }
.price-anim { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 0.4rem; }
.price-anim .now { font-family: var(--heading); font-size: 3.4rem; font-weight: 700; color: var(--yellow); line-height: 1; text-shadow: 0 0 30px rgba(238,178,5,0.2); }
.price-anim .was { font-size: 1.4rem; color: var(--text-dim); position: relative; display: inline-block; }
.price-anim .was::after {
  content: ''; position: absolute; top: 52%; left: -4px; right: -4px; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  animation: strikeAnim 1.2s 0.6s ease-out forwards;
}
.price-save-label { font-family: var(--heading); font-size: 0.75rem; font-weight: 600; color: var(--yellow); letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.deli-options { display: flex; gap: 0.6rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.opt-chip {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); padding: 0.55rem 1.1rem;
  font-family: var(--heading); font-size: 0.78rem; font-weight: 500;
  transition: all 0.3s; border-radius: 6px;
  min-height: 44px; display: flex; align-items: center;
}
.opt-chip:hover, .opt-chip.on { border-color: var(--yellow); color: var(--yellow); background: rgba(238,178,5,0.06); }
.deli-ctas { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.deli-menu-label {
  display: grid; grid-template-columns: 1fr auto; align-items: end;
  margin-bottom: 3rem; position: relative; z-index: 2;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.deli-menu-label h3 {
  font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95; letter-spacing: -0.005em; text-transform: uppercase;
  font-weight: 400; color: var(--white);
}
.deli-menu-label .menu-meta {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); text-align: right;
  line-height: 1.8;
}
.deli-menu-label .menu-meta strong { color: var(--yellow); font-weight: 500; }

.deli-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 2; margin-bottom: 3rem; }
.deli-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  overflow: hidden; transition: all 0.4s var(--ease-out); border-radius: 14px;
  position: relative;
}
.deli-card::before {
  content: attr(data-num); position: absolute; top: 1rem; left: 1rem; z-index: 3;
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.16em;
  color: var(--yellow); padding: 0.35rem 0.6rem;
  background: rgba(46,45,50,0.85); backdrop-filter: blur(6px);
  border: 1px solid rgba(253,196,4,0.3); border-radius: 3px;
  text-transform: uppercase; font-weight: 500;
}
.deli-card:hover { transform: translateY(-8px); border-color: rgba(253,196,4,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.deli-card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.deli-card-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(46,45,50,0.5) 0%, transparent 40%);
}
.deli-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.deli-card:hover .deli-card-img img { transform: scale(1.08); }
.deli-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.deli-card h4 {
  font-family: var(--display); font-size: 1.9rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.4rem;
  letter-spacing: 0; text-transform: uppercase; line-height: 1;
}
.deli-card .card-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; margin-bottom: 1rem; }
.deli-card .card-price {
  font-family: var(--display); font-size: 1.85rem; font-weight: 400;
  color: var(--yellow); line-height: 1;
  padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.deli-full-menu-cta { text-align: center; position: relative; z-index: 2; }

/* ─── DRINKS — editorial ─── */
.drinks { background: var(--paper); color: var(--text-dark); padding: 7rem 0 6rem; position: relative; overflow: hidden; }
.drinks::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(253,196,4,0.08) 0%, transparent 70%);
}
.drinks-mega-bg {
  position: absolute; top: 3rem; right: -2%; z-index: 0;
  font-family: var(--display); font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 400; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(46,45,50,0.08);
  pointer-events: none; line-height: 0.85; text-transform: uppercase;
  user-select: none;
}
.drinks-header {
  margin: 0 auto 3rem; max-width: 880px; padding: 0 var(--edge);
  position: relative; z-index: 2;
  text-align: center;
}
.drinks-header > * { max-width: 100%; }
.drinks-header .sec-mark { color: var(--yellow-deep); margin-bottom: 0.9rem; justify-content: center; display: inline-flex; }
.drinks-header .sec-mark::before { background: var(--yellow-deep); }
.drinks-header-meta {
  margin-top: 1rem;
  display: inline-flex; gap: 0.6rem; align-items: baseline; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dark-muted);
  justify-content: center;
}
.drinks-header-meta strong { color: var(--text-dark); font-weight: 500; }

.drinks h2 {
  font-family: var(--display); font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--text-dark);
}
.drinks-sub { color: var(--text-dark-muted); font-size: 0.95rem; margin-top: 0.4rem; }
.drinks-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 980px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2;
}
.drink-card {
  text-align: center; transition: all 0.4s var(--ease-out);
  background: var(--white); border-radius: 16px; padding: 2rem 1.25rem 1.5rem;
  border: 1px solid var(--light-border); box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative; overflow: hidden;
}
.drink-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  opacity: 0.35; pointer-events: none;
  transition: opacity 0.4s;
}
.drink-card:hover::before { opacity: 0.6; }
/* flavor tints */
.drink-card:nth-child(1)::before { background: radial-gradient(ellipse at 50% 100%, rgba(255,107,129,0.22) 0%, transparent 70%); }
.drink-card:nth-child(2)::before { background: radial-gradient(ellipse at 50% 100%, rgba(139,195,74,0.22) 0%, transparent 70%); }
.drink-card:nth-child(3)::before { background: radial-gradient(ellipse at 50% 100%, rgba(255,165,0,0.22) 0%, transparent 70%); }
.drink-card:nth-child(4)::before { background: radial-gradient(ellipse at 50% 100%, rgba(186,104,200,0.22) 0%, transparent 70%); }
.drink-card:nth-child(5)::before { background: radial-gradient(ellipse at 50% 100%, rgba(238,178,5,0.22) 0%, transparent 70%); }
.drink-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  border-color: rgba(238,178,5,0.2);
}
.drink-card > * { position: relative; z-index: 1; }
.drink-card-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.drink-card-img img {
  max-height: 280px; width: auto; object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.18));
  transition: transform 0.5s var(--ease-out);
}
.drink-card:hover .drink-card-img img { transform: rotate(-3deg) translateY(-4px) scale(1.04); }
.drink-card h4 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.4rem; line-height: 1.05; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.drink-card .dp {
  font-family: var(--mono); font-weight: 700;
  color: var(--yellow-deep); font-size: 1rem; letter-spacing: 0.04em;
}
.toppings {
  max-width: 720px; margin: 3.5rem auto 0; padding: 2rem 2rem 0;
  text-align: center; position: relative; z-index: 2;
  border-top: 1px solid rgba(46,45,50,0.1);
}
.toppings-label { font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--yellow-deep); margin-bottom: 0.25rem; font-weight: 700; }
.toppings-price { font-size: 0.78rem; color: var(--text-dark-secondary); margin-bottom: 1rem; font-weight: 500; font-family: var(--mono); letter-spacing: 0.04em; }
.toppings-list { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.top-tag {
  background: var(--white); border: 1px solid var(--light-border);
  color: var(--text-dark-secondary); padding: 0.5rem 1rem; font-size: 0.78rem;
  font-weight: 500; border-radius: 50px; transition: all 0.3s;
  min-height: 36px; display: flex; align-items: center;
}
.top-tag em { font-style: normal; }
.top-tag:hover { border-color: var(--yellow); color: var(--text-dark); background: rgba(238,178,5,0.06); }
.drinks-cta {
  text-align: center; margin-top: 2.5rem; position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.drinks-cta-meta {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dark-muted);
}
@media (max-width: 720px) {
  .drinks-showcase { grid-template-columns: 1fr; max-width: 360px; gap: 1rem; }
}

/* ─── STORY — brand concrete backdrop ─── */
.story {
  color: var(--text-light); padding: 7rem 0; position: relative; overflow: hidden; isolation: isolate;
  background:
    linear-gradient(rgba(46,45,50,0.35), rgba(46,45,50,0.35)),
    url('/photos/backgrounds/brand-concrete.jpg') left center/cover no-repeat;
  background-color: var(--dark-deep);
  border-top: 1px solid rgba(253,196,4,0.22);
}
.story::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(253,196,4,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 10% 90%, rgba(0,0,0,0.35) 0%, transparent 65%);
}
.story > * { position: relative; z-index: 2; }
.story-mega-bg {
  position: absolute; top: 10%; right: -3%; z-index: 1;
  font-family: var(--display); font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 400; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(253,196,4,0.06);
  pointer-events: none; line-height: 0.9; text-transform: uppercase;
  user-select: none;
}
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; position: relative; z-index: 2; }
.story-img-wrap > img { width: 100%; height: auto; }
.story-quote {
  position: relative;
  padding: 1.25rem 0 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 2px solid var(--yellow);
  font-family: var(--heading); font-size: 1.15rem; line-height: 1.45;
  font-style: italic; color: var(--text-light); font-weight: 500;
}
.story-quote::before {
  content: '"'; position: absolute; top: -0.5rem; left: 0.5rem;
  font-family: var(--display); font-size: 3rem; color: var(--yellow);
  line-height: 1;
}
.story h2 {
  font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95; letter-spacing: -0.005em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.story p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.story-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin: 2rem 0 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.story-stats > div { position: relative; padding-top: 0.25rem; }
.stat-n {
  font-family: var(--display); font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400; color: var(--yellow); line-height: 0.95;
  letter-spacing: -0.01em;
}
.stat-l {
  font-family: var(--mono); font-size: 0.68rem;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.14em; margin-top: 0.4rem; line-height: 1.5;
}
.story-ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1rem; }

/* ─── VISIT — aisle photo backdrop with full dark tint ─── */
.visit {
  color: var(--white);
  padding: 6rem 0 5.5rem; text-align: center;
  position: relative; overflow: hidden; isolation: isolate;
  background:
    linear-gradient(rgba(46,45,50,0.78), rgba(46,45,50,0.78)),
    url('/photos/backgrounds/visit-aisle.jpg') center/cover no-repeat;
  background-color: var(--dark);
  border-top: 1px solid rgba(253,196,4,0.22);
  border-bottom: 1px solid rgba(253,196,4,0.22);
}
.visit-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(253,196,4,0.12); color: var(--yellow);
  border: 1px solid rgba(253,196,4,0.3);
  font-family: var(--mono); font-weight: 500; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 3px; margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.visit-eyebrow .live-dot { background: var(--green); }
.visit h2 {
  font-family: var(--display); font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.9; letter-spacing: -0.01em; text-transform: uppercase;
  margin-bottom: 0.9rem; color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.visit-sub {
  font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem;
  color: rgba(255,255,255,0.78); line-height: 1.7;
}
.visit-btns { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 2rem; }
.visit .btn-dark {
  background: var(--yellow); color: var(--dark); border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.visit .btn-dark:hover { background: var(--yellow-hover); }
.visit .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.3); }
.visit .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(253,196,4,0.06); }
.visit-meta {
  display: inline-flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  justify-content: center;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.7); letter-spacing: 0.14em; text-transform: uppercase;
}
.visit-meta-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }
.visit-meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.visit-meta-item svg { flex-shrink: 0; stroke: var(--yellow); }

/* ─── GALLERY — brand concrete backdrop ─── */
.gallery {
  padding: 5.5rem 0; position: relative; overflow: hidden; isolation: isolate;
  background:
    linear-gradient(rgba(46,45,50,0.3), rgba(46,45,50,0.3)),
    url('/photos/backgrounds/brand-concrete.jpg') right center/cover no-repeat;
  background-color: var(--charcoal);
  border-top: 1px solid rgba(253,196,4,0.22);
}
.gallery::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 25% 15%, rgba(253,196,4,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 85%, rgba(0,0,0,0.3) 0%, transparent 65%);
}
.gallery > * { position: relative; z-index: 2; }
.gallery-header {
  max-width: 1280px; margin: 0 auto 3rem; padding: 0 var(--edge);
}
.gallery-header > * { max-width: 55%; }
.gallery-header .sec-mark { color: var(--yellow); margin-bottom: 0.9rem; }
.gallery-header .sec-mark::before { background: var(--yellow); }

@media (max-width: 768px) {
  .gallery-header > * { max-width: 100%; }
}
.gallery h2 {
  font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95; letter-spacing: -0.005em; text-transform: uppercase;
}
.gallery-tag {
  margin-top: 1rem;
  display: inline-flex; gap: 0.6rem; align-items: baseline; flex-wrap: wrap;
  color: var(--text-muted); font-family: var(--mono); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
}
.gallery-tag strong { color: var(--yellow); font-weight: 500; }
.carousel-wrap { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 3.5rem; overflow: hidden; }
.carousel-track { display: flex; gap: 1rem; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.carousel-slide {
  flex: 0 0 calc(25% - 0.75rem); aspect-ratio: 3/4;
  overflow: hidden; position: relative; border-radius: 10px;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.carousel-slide:hover img { transform: scale(1.06); }
.carousel-slide::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.carousel-slide:hover::after { opacity: 1; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--yellow); color: var(--dark);
  border: none; cursor: pointer; font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.carousel-btn:hover { background: var(--yellow-hover); transform: translateY(-50%) scale(1.08); }
.carousel-btn.prev { left: 0.3rem; }
.carousel-btn.next { right: 0.3rem; }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  transition: all 0.3s; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.carousel-dot::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: all 0.3s; }
.carousel-dot.active::after { background: var(--yellow); transform: scale(1.3); }

.social-bar { text-align: center; padding: 2.5rem 1.5rem; margin-top: 2.5rem; border-top: 1px solid rgba(238,178,5,0.06); }
.social-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 0.8rem; }
.social-link {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.social-link:hover { border-color: var(--yellow); background: rgba(238,178,5,0.06); }
.social-link svg { width: 18px; height: 18px; fill: var(--text-muted); transition: fill 0.3s; }
.social-link:hover svg { fill: var(--yellow); }
.social-handle { font-size: 0.82rem; color: var(--text-dim); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .drinks-showcase { grid-template-columns: repeat(3, 1fr); }
  .deli-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { flex: 0 0 calc(33.333% - 0.67rem); }
}
@media (max-width: 768px) {
  .hero { padding-top: 110px; min-height: auto; padding-bottom: 3rem; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 0 1.5rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; gap: 0.8rem; flex-wrap: nowrap; }
  .hero-ctas .btn { padding: 0.8rem 1.5rem; font-size: 0.82rem; }
  /* Mobile hero: bagel image hidden entirely — the big bold
     "MODERN ASIAN MARKET." headline carries the section on its own. */
  .hero { padding: 130px 0 3rem; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0.75rem;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }

  /* Hide the bagel + everything in the visual column on mobile. */
  .hero-visual { display: none; }

  /* Massive poster headline — three lines on mobile (MODERN / ASIAN /
     MARKET.) so each word fills the screen at full poster scale. */
  .hero-title {
    font-size: clamp(5.5rem, 28vw, 8rem);
    line-height: 0.85;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
  }
  /* Drop "MARKET." to its own line. Solid yellow fill on mobile
     instead of the desktop's thin outlined treatment — outlines
     read as small/wiry at scale; filled letterforms feel solid
     and bold across all three words. */
  .hero-title em {
    display: block;
    color: var(--yellow);
    -webkit-text-stroke: 0;
    letter-spacing: -0.025em;
  }
  .hero-title .line { overflow: visible; }
  .hero-title .line .fill { display: block; }

  /* Eyebrow: presence without competing with the headline. */
  .hero-eyebrow {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    margin-bottom: 1.4rem;
  }

  /* Lede stays centered with its yellow left rule. */
  .hero-lede {
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 36ch;
    margin: 0 auto 1.75rem;
  }

  .hero-ctas { gap: 0.65rem; justify-content: center; flex-wrap: wrap; }
  .hero-ctas .btn {
    padding: 0.95rem 1.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    font-weight: 700;
  }

  /* Decorations + accents hidden on mobile. */
  .hero-deal-stamp { display: none; }
  .hero-bracket, .hero-coord { display: none; }
  .hero-price-tag { display: none; }
  .deli-hero { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .deli-content p { margin-left: auto; margin-right: auto; }
  .price-anim { justify-content: center; }
  .deli-options { justify-content: center; }
  .deli-ctas { justify-content: center; }
  .deli-img-wrap { max-width: 400px; margin: 0 auto; }
  .deli-float-badge { right: 0; }
  .deli-menu-grid { grid-template-columns: 1fr; }
  .drinks-showcase { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .story-stats { justify-content: center; }
  .story-ctas { justify-content: center; }
  .visit-btns { flex-direction: column; align-items: center; }
  .carousel-slide { flex: 0 0 calc(50% - 0.5rem); }
  .carousel-wrap { padding: 0 2.5rem; }
  .geo-canvas { display: none; }
}
@media (max-width: 480px) {
  .drinks-showcase { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .carousel-slide { flex: 0 0 100%; }
}

/* ─── SEASONAL DROP POPUP ─── */
body.popup-open { overflow: hidden; }

.seasonal-popup {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 1.25rem;
}
.seasonal-popup.is-open { display: flex; }
.seasonal-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,19,22,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: popupFade 0.35s var(--ease-out, ease-out);
}
.seasonal-popup-card {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 880px; width: 100%;
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.55);
  border: 1px solid rgba(253,196,4,0.3);
  animation: popupRise 0.5s var(--ease-out, cubic-bezier(0.2, 0.8, 0.2, 1));
}

.seasonal-popup-poster {
  display: block; position: relative;
  background: var(--dark);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.seasonal-popup-poster img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out, ease-out);
}
.seasonal-popup-poster:hover img { transform: scale(1.03); }

.seasonal-popup-body {
  padding: 2.25rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  justify-content: center;
}
.seasonal-popup-eyebrow {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow-deep);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.seasonal-popup-eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--yellow-deep);
}
.seasonal-popup-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem); line-height: 0.95;
  letter-spacing: -0.005em; text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
}
.seasonal-popup-desc {
  font-family: var(--heading); font-size: 1rem; line-height: 1.45;
  font-style: italic; color: var(--text-dark); font-weight: 500;
  margin: 0; padding-left: 0.85rem; border-left: 2px solid var(--yellow);
}
.seasonal-popup-meta {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.65rem 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  margin-top: 0.35rem;
}
.seasonal-popup-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--yellow-deep);
  display: inline-block;
}
.seasonal-popup-ctas {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 0.6rem;
}
.seasonal-popup-dismiss {
  background: transparent; border: none; padding: 0.4rem 0;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dark-muted);
  cursor: pointer; transition: color 0.2s;
}
.seasonal-popup-dismiss:hover { color: var(--text-dark); }

.seasonal-popup-close {
  position: absolute; top: 0.75rem; right: 0.85rem; z-index: 3;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92); color: var(--text-dark);
  border: 1px solid var(--light-border); border-radius: 50%;
  font-size: 1.35rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.seasonal-popup-close:hover {
  background: var(--yellow); transform: rotate(90deg);
}

@keyframes popupFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popupRise {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 720px) {
  .seasonal-popup { padding: 0.75rem; }
  .seasonal-popup-card { grid-template-columns: 1fr; max-width: 420px; }
  .seasonal-popup-poster { aspect-ratio: 4/3; }
  .seasonal-popup-body { padding: 1.5rem 1.5rem 1.75rem; }
}

