/* ============================================================
   THE USUAL SUSPECTS — RARITAN, NJ
   style.css — production stylesheet
   ============================================================ */

:root {
  --pink: #E91E8C;
  --pink-glow: rgba(233,30,140,0.5);
  --wine: #8B0E2F;
  --wine-deep: #52071B;
  --gold: #C9A24B;
  --cream: #F5E9D5;
  --cream-78: rgba(245,233,213,0.78);
  --cream-60: rgba(245,233,213,0.6);
  --cream-50: rgba(245,233,213,0.5);
  --ink: #0A0508;
  --ink-2: #1B0810;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--pink); color: #fff; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--pink); color: #fff;
  padding: 10px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* ── MARQUEE TAPE ── */
.tape {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--pink); color: #000; padding: 8px 0;
  font-family: 'Archivo Black', sans-serif; font-size: 11px;
  letter-spacing: .3em; text-transform: uppercase; overflow: hidden;
}
.tape-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: scroll 25s linear infinite;
}
.tape-track span { display: inline-block; }
.tape:hover .tape-track { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── NAV ── */
nav {
  position: fixed; top: 48px; left: 24px; right: 24px; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
}
.logo-mark {
  width: 60px; height: 60px; border-radius: 50%; background: #000;
  border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 22px var(--pink-glow);
  overflow: hidden;
}
.logo-mark img {
  width: 88%; height: 88%; object-fit: contain;
  filter: drop-shadow(0 0 4px var(--pink));
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--cream-78);
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  padding: 11px 22px; background: var(--wine); color: var(--cream);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 700; border: 1px solid var(--cream);
  transition: .2s; border-radius: 0;
}
.nav-cta:hover { background: var(--cream); color: var(--wine); border-color: var(--wine); }

.hamburger {
  display: none; width: 40px; height: 40px; flex-direction: column;
  justify-content: center; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--cream); border-radius: 1px; transition: .3s;
}

@media (max-width: 768px) {
  nav { top: 40px; left: 16px; right: 16px; }
  .logo-mark { width: 50px; height: 50px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(10,5,8,0.97); z-index: 90;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Archivo Black', sans-serif; font-size: 28px;
  text-transform: uppercase; color: var(--cream);
  letter-spacing: .05em; transition: color .2s;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; color: var(--cream);
  font-size: 32px; cursor: pointer; line-height: 1;
}

/* ── CONTAINER ── */
.container { max-width: 1500px; margin: 0 auto; padding: 0 32px; position: relative; }
@media (max-width: 640px) { .container { padding: 0 18px; } }

/* ── HERO ── */
.hero { position: relative; min-height: 85vh; padding: 130px 0 60px; overflow: hidden; }
.hero-bg {
  position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(139,14,47,0.4), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(233,30,140,0.3), transparent 50%);
  filter: blur(40px); z-index: 0;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 0; align-items: start;
}
.hero-headline {
  grid-column: 1 / 8; grid-row: 1;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 13vw, 200px);
  line-height: .78; letter-spacing: -.04em;
  text-transform: uppercase; color: var(--cream);
  position: relative; z-index: 3;
}
.hero-headline .row1 { display: block; color: var(--pink); text-shadow: 0 0 30px var(--pink-glow); }
.hero-headline .row2 { display: block; color: transparent; -webkit-text-stroke: 2px var(--cream); }
.hero-headline .row3 {
  display: block; font-family: 'Dancing Script', cursive;
  font-size: .45em; color: var(--cream);
  text-transform: none; letter-spacing: 0; font-weight: 700;
  line-height: 1; margin-top: 8px; transform: rotate(-3deg); margin-left: -8px;
}
.hero-photo {
  grid-column: 9 / 13; grid-row: 1; margin-top: 60px;
  position: relative; z-index: 1; transform: rotate(2deg);
  max-width: 340px;
}
.hero-photo img {
  width: 100%; height: 340px; object-fit: cover; display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 8px var(--cream);
}
.hero-photo-label {
  position: absolute; bottom: -32px; right: 0;
  font-family: 'Caveat', cursive; font-weight: 600; color: var(--cream);
  font-size: 22px; transform: rotate(-3deg);
}
.hero-tag {
  grid-column: 1 / 7; grid-row: 2; margin-top: 48px;
  font-size: 18px; line-height: 1.6; color: var(--cream-78); max-width: 480px;
}
.hero-tag b { color: var(--pink); font-weight: 600; }
.hero-cta-row {
  grid-column: 1 / 8; grid-row: 3; margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.hero-cta-scribble {
  font-family: 'Caveat', cursive; color: var(--gold);
  font-size: 22px; transform: rotate(-3deg);
  display: inline-block; margin-left: 8px;
}

@media (max-width: 900px) {
  .hero { padding: 110px 0 40px; min-height: auto; }
  .hero-headline { grid-column: 1 / 13; }
  .hero-photo { grid-column: 1 / 13; margin-top: 40px; transform: rotate(-1.5deg); max-width: 340px; }
  .hero-tag { grid-column: 1 / 13; margin-top: 60px; }
  .hero-cta-row { grid-column: 1 / 13; }
}

/* ── BUTTONS ── */
.btn {
  padding: 16px 30px; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
  border: none; font-family: 'Archivo Black', sans-serif;
  display: inline-block; text-align: center; transition: .25s;
}
.btn-pink { background: var(--pink); color: #fff; box-shadow: 0 0 30px var(--pink-glow); }
.btn-pink:hover { background: #fff; color: var(--pink); }
.btn-wine { background: var(--wine); color: var(--cream); border: 1px solid var(--wine); }
.btn-wine:hover { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--cream-50); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,233,213,0.06); }

.hero-arrow {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-family: 'Caveat', cursive; font-weight: 600; color: var(--pink);
  font-size: 22px; opacity: .8; animation: bob 2.4s ease-in-out infinite;
  text-align: center;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--wine); color: var(--cream); padding: 80px 0;
  position: relative; overflow: hidden;
}
.manifesto::before {
  content: "USUAL · SUSPECTS · USUAL · SUSPECTS · USUAL · SUSPECTS";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-4deg);
  font-family: 'Archivo Black', sans-serif; font-size: 14vw;
  color: rgba(245,233,213,0.05); white-space: nowrap;
  pointer-events: none; width: 140%; text-align: center;
}
.manifesto-inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 980px; margin: 0 auto; padding: 0 32px;
}
.manifesto-inner h2 {
  font-family: 'Dancing Script', cursive; font-weight: 700;
  font-size: clamp(48px, 8vw, 120px); line-height: .95;
  color: var(--cream); text-shadow: 0 0 30px rgba(255,255,255,0.15);
  margin-bottom: 36px;
}
.manifesto-inner p {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.4vw, 30px); line-height: 1.4;
  text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 16px;
}
.manifesto-inner p.dot::after { content: " ·"; color: var(--pink); }

/* ── PHOTO WALL ── */
.wall { padding: 90px 0; position: relative; background: var(--ink); }
.wall-head {
  padding: 0 32px 60px;
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 20px;
}
.wall-head h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 80px); line-height: .95;
  text-transform: uppercase; letter-spacing: -.02em; color: var(--cream);
}
.wall-head h3 .pink { color: var(--pink); }
.wall-head .scrawl {
  font-family: 'Caveat', cursive; font-weight: 600; color: var(--pink);
  font-size: 24px; transform: rotate(-2deg); display: inline-block;
}
.wall-track {
  display: flex; gap: 48px; padding: 48px 32px 64px;
  overflow-x: auto; scroll-snap-type: x mandatory; cursor: grab;
  scrollbar-width: none;
  align-items: flex-start;
}
.wall-track::-webkit-scrollbar { display: none; }
.polaroid {
  flex: 0 0 260px;
  background: var(--cream); padding: 14px 14px 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  scroll-snap-align: center; position: relative; transition: .3s;
}
.polaroid:hover { transform: translateY(-6px) rotate(0deg) !important; }
.polaroid:nth-child(odd) { transform: rotate(-2deg); }
.polaroid:nth-child(even) { transform: rotate(2.5deg); }
.polaroid:nth-child(3n) { transform: rotate(-1deg); }
.polaroid img { width: 100%; height: 180px; object-fit: cover; display: block; }
.polaroid .cap {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  font-family: 'Caveat', cursive; font-weight: 600; color: var(--ink);
  font-size: 20px; text-align: center;
}
.polaroid .cap em { color: var(--wine); font-style: normal; }
.polaroid::before {
  content: ""; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px; height: 24px;
  background: rgba(245,233,213,0.6);
  border: 1px dashed rgba(0,0,0,0.2);
}
.wall-foot {
  padding: 0 32px; text-align: center; color: var(--cream-50);
  font-family: 'Caveat', cursive; font-size: 20px;
}

/* ── MENU ── */
.menu { padding: 100px 0; background: var(--ink); position: relative; }
.menu-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 80px;
}
@media (max-width: 800px) { .menu-head { grid-template-columns: 1fr; } }
.menu-head h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(50px, 9vw, 130px); line-height: .85;
  letter-spacing: -.04em; text-transform: uppercase; color: var(--cream);
}
.menu-head h3 .stroke { color: transparent; -webkit-text-stroke: 2px var(--pink); display: block; }
.menu-head h3 .pink { color: var(--pink); text-shadow: 0 0 28px var(--pink-glow); }
.menu-head .intro { font-size: 16px; line-height: 1.7; color: var(--cream-78); max-width: 380px; }
.menu-head .intro b { color: var(--gold); }

.menu-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; }
.dish-card { position: relative; }
.dish-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.dish-card .price {
  position: absolute; top: 18px; right: 18px;
  background: var(--pink); color: #000; padding: 10px 16px;
  font-family: 'Archivo Black', sans-serif; font-size: 18px;
  transform: rotate(6deg); box-shadow: 0 6px 24px var(--pink-glow); z-index: 2;
}
.dish-card .info { padding: 22px 4px 0; }
.dish-card .info .n {
  font-family: 'Archivo Black', sans-serif; font-size: 20px;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 4px; color: var(--cream);
}
.dish-card .info .d {
  font-family: 'Caveat', cursive; font-size: 20px; color: var(--pink);
  transform: rotate(-1deg); display: inline-block;
}
.dish-card.s1 { grid-column: span 4; }
.dish-card.s2 { grid-column: span 4; }
.dish-card.s3 { grid-column: span 4; }
.dish-card.s4 { grid-column: span 4; }
.dish-card.s5 { grid-column: span 4; }
.dish-card.s6 { grid-column: span 4; }

@media (max-width: 900px) {
  .dish-card.s1, .dish-card.s2, .dish-card.s3,
  .dish-card.s4, .dish-card.s5, .dish-card.s6 {
    grid-column: span 6; margin-top: 0;
  }
}
@media (max-width: 560px) {
  .dish-card.s1, .dish-card.s2, .dish-card.s3,
  .dish-card.s4, .dish-card.s5, .dish-card.s6 {
    grid-column: span 12;
  }
}
.menu-cta {
  margin-top: 80px; text-align: center;
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ── DOOR / LOCATION ── */
.door { padding: 0; position: relative; overflow: hidden; }
.door-grid { display: grid; grid-template-columns: 7fr 5fr; min-height: 420px; }
@media (max-width: 900px) { .door-grid { grid-template-columns: 1fr; min-height: 0; } }
.door-img { position: relative; overflow: hidden; }
.door-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.door-body {
  background: var(--ink); padding: 80px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
@media (max-width: 900px) { .door-body { padding: 60px 24px; } }
.door-body::before {
  content: "04"; position: absolute; top: 24px; right: 32px;
  font-family: 'Archivo Black', sans-serif; color: var(--wine);
  font-size: 100px; line-height: 1; opacity: .4;
}
.door-body .scrawl {
  font-family: 'Caveat', cursive; font-weight: 600; color: var(--pink);
  font-size: 26px; margin-bottom: 18px;
  transform: rotate(-2deg); display: inline-block;
}
.door-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px); line-height: .92;
  text-transform: uppercase; margin-bottom: 24px; color: var(--cream);
}
.door-body h3 em {
  font-family: 'Dancing Script', cursive; font-weight: 700;
  color: var(--pink); font-style: normal;
  text-transform: none; font-size: 1em;
}
.door-body p {
  font-size: 17px; line-height: 1.7; color: var(--cream-78);
  margin-bottom: 14px; max-width: 420px;
}
.door-body .addr {
  margin-top: 24px; font-family: 'Archivo Black', sans-serif;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: .05em; font-size: 14px;
}
.door-body .btn { margin-top: 28px; align-self: flex-start; }

/* ── LIVE EVENTS ── */
.live { padding: 90px 0; background: var(--ink-2); position: relative; }
.live::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.live-head { text-align: center; margin-bottom: 60px; }
.live-head h3 {
  font-family: 'Dancing Script', cursive; font-weight: 700;
  font-size: clamp(48px, 8vw, 110px); color: var(--pink);
  text-shadow: 0 0 24px rgba(233,30,140,0.6), 0 0 50px rgba(233,30,140,0.3);
  line-height: 1;
}
.live-head p {
  margin-top: 14px; font-family: 'Archivo Black', sans-serif;
  font-size: 14px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream);
}
.live-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0 32px; }
@media (max-width: 900px) { .live-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .live-grid { grid-template-columns: 1fr; } }
.promo {
  aspect-ratio: 4/5; padding: 28px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(233,30,140,0.4);
  position: relative; overflow: hidden; cursor: pointer; transition: .3s;
}
.promo:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: 0 20px 50px rgba(233,30,140,0.3); }
.promo.k { background: linear-gradient(135deg, #0d0620, #3a0f5a, #1a0830); }
.promo.l { background: linear-gradient(135deg, var(--wine-deep), #7a0a2a, var(--wine-deep)); }
.promo.e { background: linear-gradient(135deg, #1a0520, #52071B, #0a0210); }
.promo.g { background: linear-gradient(135deg, #0f0818, #3a0f40, #14081a); }
.promo .top {
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--pink); font-weight: 700; font-family: 'Archivo Black', sans-serif;
}
.promo .title {
  font-family: 'Dancing Script', cursive; font-weight: 700;
  color: #fff; font-size: 38px; line-height: .95;
  text-shadow: 0 0 14px var(--pink), 0 0 30px rgba(233,30,140,0.6);
}
.promo .sub {
  font-family: 'Archivo Black', sans-serif; font-size: 12px;
  color: var(--gold); text-transform: uppercase;
}
.promo .foot {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); padding-top: 12px;
  border-top: 1px solid rgba(233,30,140,0.35);
}

/* ── PRIVATE ROOM ── */
.private { padding: 100px 0; background: var(--ink); position: relative; overflow: hidden; }
.private-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .private-grid { grid-template-columns: 1fr; gap: 48px; } }
.private-img { position: relative; }
.private-img img {
  width: 100%; height: 380px; object-fit: cover; display: block;
  border: 8px solid var(--cream);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7); transform: rotate(-1.5deg);
}
.private-img::before {
  content: "the door is unmarked"; position: absolute;
  top: -20px; left: -20px;
  font-family: 'Caveat', cursive; font-weight: 600; color: var(--pink);
  font-size: 22px; transform: rotate(-6deg);
  background: var(--ink); padding: 6px 14px; z-index: 2;
}
.private-img::after {
  content: "ask for it"; position: absolute;
  bottom: -20px; right: -10px;
  font-family: 'Caveat', cursive; font-weight: 600; color: var(--gold);
  font-size: 20px; transform: rotate(4deg);
  background: var(--wine); padding: 6px 14px; z-index: 2;
}
.private-body .scrawl {
  font-family: 'Caveat', cursive; font-weight: 600; color: var(--gold);
  font-size: 24px; margin-bottom: 14px;
  display: inline-block; transform: rotate(-2deg);
}
.private-body h3 {
  font-family: 'Dancing Script', cursive; font-weight: 700;
  color: var(--pink); font-size: clamp(48px, 7vw, 100px);
  line-height: .95; margin-bottom: 24px;
  text-shadow: 0 0 28px var(--pink-glow);
}
.private-body h3 small {
  display: block; font-family: 'Archivo Black', sans-serif;
  font-size: .22em; letter-spacing: .3em;
  color: var(--cream); text-transform: uppercase;
  margin-top: 14px; text-shadow: none; font-weight: 400;
}
.private-body p {
  font-size: 17px; line-height: 1.75; color: var(--cream-78);
  margin-bottom: 16px; max-width: 440px;
}
.private-body p b { color: var(--pink); }
.private-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin: 36px 0 28px; max-width: 380px;
}
.stat {
  padding: 16px 20px; border: 1px solid rgba(233,30,140,0.35);
  background: rgba(139,14,47,0.1);
}
.stat b {
  display: block; font-family: 'Archivo Black', sans-serif;
  color: var(--pink); font-size: 24px; line-height: 1; margin-bottom: 4px;
}
.stat span {
  font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--cream-60);
}

/* ── FOOTER ── */
footer {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  border-top: 1px solid var(--wine);
  text-align: center; position: relative; overflow: hidden;
}
.foot-mark {
  font-family: 'Dancing Script', cursive; font-weight: 700;
  color: var(--pink); font-size: clamp(72px, 16vw, 220px);
  line-height: .85;
  text-shadow: 0 0 30px var(--pink), 0 0 80px rgba(233,30,140,0.5);
  margin-bottom: 20px;
}
.foot-tag {
  font-family: 'Archivo Black', sans-serif; font-size: 14px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.foot-addr {
  font-size: 14px; letter-spacing: .05em;
  color: var(--cream); margin-bottom: 8px;
}
.foot-addr a { transition: color .2s; }
.foot-addr a:hover { color: var(--pink); }
.foot-hours {
  font-size: 12px; color: var(--cream-60);
  letter-spacing: .05em; margin-bottom: 32px;
}
.foot-links {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--cream-50); font-family: 'Archivo Black', sans-serif;
}
.foot-links a { transition: color .2s; }
.foot-links a:hover { color: var(--pink); }
.foot-meta {
  margin-top: 36px; font-size: 10px;
  color: rgba(245,233,213,0.3);
  letter-spacing: .2em; text-transform: uppercase;
}

/* ── MONTHLY POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 5, 8, 0.88);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup-overlay.disabled { display: none !important; }

.popup-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(233,30,140,0.4);
  max-width: 460px; width: 100%;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7),
              0 0 60px rgba(233,30,140,0.35);
  transform: scale(0.92); transition: transform .4s cubic-bezier(.2,.9,.3,1.2);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}
.popup-overlay.open .popup-card { transform: scale(1); }

.popup-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  background: rgba(0,0,0,0.55); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  color: var(--cream); font-size: 22px; line-height: 1;
  cursor: pointer; transition: .2s;
  display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { background: var(--pink); color: #fff; }

.popup-image {
  width: 100%; height: 200px; object-fit: cover;
  display: block;
}
.popup-body { padding: 28px 28px 32px; text-align: center; }
.popup-eyebrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 12px;
}
.popup-title {
  font-family: 'Dancing Script', cursive; font-weight: 700;
  font-size: clamp(40px, 7vw, 60px); line-height: .95;
  color: var(--pink);
  text-shadow: 0 0 20px var(--pink-glow);
  margin-bottom: 16px;
}
.popup-desc {
  font-size: 15px; line-height: 1.6;
  color: var(--cream-78); margin-bottom: 24px;
}
.popup-cta { display: inline-block; margin-bottom: 18px; }
.popup-meta {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--cream-50);
}

@media (max-width: 520px) {
  .popup-card { max-width: 100%; }
  .popup-body { padding: 22px 20px 26px; }
}


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

/* ── MOBILE IMAGE HEIGHT CAPS (explicit px heights = works on every browser) ── */
@media (max-width: 768px) {
  .hero-photo img { height: 280px; }
  .polaroid { flex: 0 0 220px; }
  .polaroid img { height: 160px; }
  .dish-card img { height: 220px; }
  .private-img img { height: 260px; }
  .door-img img { height: 300px; }
  .popup-image { height: 160px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .tape-track { animation: none; }
  .hero-arrow { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── FULL MENU PANEL ── */
.full-menu { margin-top: 60px; padding-top: 60px; border-top: 1px solid rgba(233,30,140,0.2); animation: menuFadeIn 0.4s ease; }
.full-menu[hidden] { display: none; }
@keyframes menuFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ── TYPEWRITER CURSOR ── */
.tw-cursor {
  display: inline;
  color: var(--pink);
  animation: tw-blink .65s step-end infinite;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── DISH CARD HOVER ZOOM ── */
.dish-card { overflow: hidden; }
.dish-card img { transition: transform .55s ease; }
.dish-card:hover img { transform: scale(1.08); }
.dish-card .info { transition: transform .4s ease; }
.dish-card:hover .info { transform: translateY(-5px); }

/* ── MAGNETIC BUTTONS — spring-back transition ── */
.btn {
  position: relative; overflow: hidden;
  transition: background-color .25s, color .25s, border-color .25s,
              box-shadow .25s, transform .4s cubic-bezier(.25,.46,.45,.94);
}

