/* ==========================================================================
   EMBASSY DINER — 4280 Hempstead Turnpike, Bethpage NY
   Built by axismecca. Palette sampled from the diner's own sign.
   ========================================================================== */

/* --- 1. TOKENS ----------------------------------------------------------- */
:root {
  /* Sampled straight out of their logo file */
  /* --red is the logo red, used for display type and graphics. White on it is
     only 4.27:1, and it is 3.9:1 on cream, so small text and solid fills that
     carry white text use the two deeper variants below (5.5:1 and 5.7:1). */
  --red:        #F60000;
  --red-ui:     #D40E00;   /* solid fills behind white text */
  --red-ink:    #C40D00;   /* red text on cream */
  --red-lo:     #7A0800;
  --blue:       #003CA2;
  --blue-el:    #1B5FDD;
  --blue-dp:    #002468;

  /* The night world */
  --navy:       #050C1E;
  --navy-2:     #0A1732;

  /* The paper world */
  --cream:      #FCF4E2;
  --cream-2:    #F5E9CC;
  --cream-3:    #EBDCB8;
  --ink:        #101A33;
  --ink-2:      #3D4A66;

  /* Neon. Pink is lifted from the coving in their dining room. */
  --neon-red:   #FF2419;
  --neon-pink:  #FF3D9E;
  --neon-cyan:  #4FE9FF;

  /* Stainless */
  --chr-3:      #93A0B3;

  --f-display:  'Ultra', Georgia, serif;
  --f-sign:     'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-body:     'Libre Franklin', system-ui, sans-serif;
  --f-check:    'Courier Prime', 'Courier New', monospace;

  --edge:       clamp(1.1rem, 4.5vw, 4.5rem);
  --maxw:       78rem;
  --nav-h:      64px;
}

@media (min-width: 900px) { :root { --nav-h: 76px; } }

/* --- 2. RESET ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--f-body);
  background: var(--navy);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--neon-cyan); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--neon-cyan); color: var(--ink); padding: .8rem 1.2rem;
  font-family: var(--f-sign); font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.skip:focus { left: .5rem; top: .5rem; }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --- 3. SHARED TYPE ------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); }

h1, h2, h3 { line-height: .96; text-wrap: balance; }

.display {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: .9;
}

/* Fat display type gets a hard offset shadow, the way a painted sign does. */
.display--punch {
  color: var(--cream);
  text-shadow:
     3px 3px 0 var(--red),
     6px 6px 0 var(--blue-dp);
}
@media (min-width: 800px) {
  .display--punch { text-shadow: 5px 5px 0 var(--red), 10px 10px 0 var(--blue-dp); }
}

.lede { font-size: clamp(1.02rem, 2.1vw, 1.28rem); line-height: 1.55; max-width: 46ch; }

/* --- 4. ENAMEL SIGN PLATE ------------------------------------------------
   A porcelain enamel sign: flat saturated field, white keyline set in from
   the edge, hard shadow. Used instead of minimal letterspaced eyebrow labels.
   ------------------------------------------------------------------------ */
.plate {
  display: inline-flex; align-items: center; gap: .5em;
  /* Grid items blockify inline-flex, which stretches the plate edge to edge.
     Pin it to its own content width wherever it lands. */
  justify-self: start; width: fit-content;
  font-family: var(--f-sign);
  font-weight: 700;
  font-size: clamp(.78rem, 1.6vw, .95rem);
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .5em 1em .42em;
  border-radius: 3px;
  background: var(--red-ui);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), inset 0 0 0 4px var(--red-ui), 0 2px 0 rgba(0,0,0,.35);
  white-space: nowrap;
}
.plate--blue  { background: var(--blue);  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), inset 0 0 0 4px var(--blue), 0 2px 0 rgba(0,0,0,.35); }
.plate--cream { background: var(--cream); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(0,0,0,.2), inset 0 0 0 4px var(--cream), 0 2px 0 rgba(0,0,0,.25); }

/* --- 5. NEON -------------------------------------------------------------
   Layered glow. The core stays near-white; the halo carries the colour.
   ------------------------------------------------------------------------ */
.neon {
  --glow: var(--neon-red);
  color: #FFF6F2;
  text-shadow:
    0 0 2px #fff,
    0 0 8px rgba(255,255,255,.85),
    0 0 18px var(--glow),
    0 0 38px var(--glow),
    0 0 72px var(--glow);
}
.neon--pink { --glow: var(--neon-pink); }
.neon--cyan { --glow: var(--neon-cyan); color: #F2FEFF; }
.neon--off  {
  color: #4B5468;
  text-shadow: 0 1px 0 rgba(0,0,0,.6);
}

/* One tube is going, the way one tube always is. Irregular, not a loop. */
@keyframes tube-fault {
  0%, 41.6%, 43.1%, 44.0%, 45.6%, 78%, 78.7%, 100% { opacity: 1; }
  42.2%, 43.6%, 44.6%, 78.3% { opacity: .28; }
}
.neon--fault { animation: tube-fault 11s infinite steps(1, end); }

/* --- 6. STAINLESS BANDING ------------------------------------------------ */
.chrome {
  height: 14px;
  background:
    linear-gradient(180deg,
      #6C7A8D 0%, #C9D3DE 14%, #FFFFFF 26%, #A7B3C2 40%,
      #6A7688 52%, #93A0B3 64%, #E4EAF1 80%, #8D99AA 92%, #4E5867 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,.5), 0 -1px 0 rgba(0,0,0,.4);
}
.chrome--tall { height: 22px; }

/* --- 7. SCREEN-PRINT TEXTURE --------------------------------------------
   Offset-printing dot grain. Cheap, period-correct, and it kills the
   "rendered in a browser five minutes ago" flatness.
   ------------------------------------------------------------------------ */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,.55) .6px, transparent .7px);
  background-size: 3px 3px;
  opacity: .16;
  mix-blend-mode: multiply;
}
.grain--light::after { background-image: radial-gradient(rgba(255,255,255,.5) .6px, transparent .7px); mix-blend-mode: screen; opacity: .09; }

/* --- 8. STARBURST -------------------------------------------------------- */
.burst { position: absolute; pointer-events: none; z-index: 1; opacity: .9; }
@keyframes burst-spin { to { transform: rotate(360deg); } }
.burst svg { animation: burst-spin 44s linear infinite; }

/* --- 9. BUTTONS ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--f-sign); font-weight: 700;
  font-size: clamp(.95rem, 2vw, 1.06rem);
  text-transform: uppercase; letter-spacing: .1em;
  padding: .82em 1.5em .72em;
  border-radius: 4px;
  text-decoration: none;
  background: var(--red-ui); color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), inset 0 0 0 4px var(--red-ui), 0 4px 0 var(--red-lo);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.4), inset 0 0 0 4px var(--red-ui), 0 6px 0 var(--red-lo), 0 0 26px rgba(246,0,0,.5); }
.btn:active { transform: translateY(2px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), inset 0 0 0 4px var(--red-ui), 0 1px 0 var(--red-lo); }

.btn--blue  { background: var(--blue); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), inset 0 0 0 4px var(--blue), 0 4px 0 var(--blue-dp); }
.btn--blue:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.4), inset 0 0 0 4px var(--blue), 0 6px 0 var(--blue-dp), 0 0 26px rgba(27,95,221,.55); }
.btn--blue:active { box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), inset 0 0 0 4px var(--blue), 0 1px 0 var(--blue-dp); }

.btn--ghost {
  background: transparent; color: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(252,244,226,.42);
}
.btn--ghost:hover { background: rgba(252,244,226,.08); box-shadow: inset 0 0 0 2px var(--cream); }
.btn--ghost:active { transform: translateY(1px); }

/* --- 10. NAV ------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(5,12,30,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(147,160,179,.24);
  transition: background .3s ease;
}
.nav--solid { background: rgba(5,12,30,.97); }
.nav__in { height: 100%; display: flex; align-items: center; gap: 1rem; }
.nav__logo { flex: 0 0 auto; margin-right: auto; }
.nav__logo img { height: clamp(30px, 5.6vw, 40px); width: auto; filter: drop-shadow(0 0 14px rgba(246,0,0,.42)); }
.nav__links { display: none; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
@media (min-width: 860px) { .nav__links { display: flex; } }
.nav__links a {
  font-family: var(--f-sign); font-weight: 600; font-size: 1.02rem;
  text-transform: uppercase; letter-spacing: .1em; text-decoration: none;
  color: var(--cream); padding: .3rem 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 3px;
  background: var(--red); transition: right .22s ease;
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }

.nav__phone { display: none; }
@media (min-width: 1080px) {
  .nav__phone {
    display: inline-flex; font-family: var(--f-sign); font-weight: 700; letter-spacing: .06em;
    font-size: 1.06rem; text-decoration: none; color: var(--cream); align-items: center; gap: .4rem;
  }
  .nav__phone:hover { color: var(--neon-cyan); }
}
.nav .btn { padding: .62em 1.05em .54em; font-size: .88rem; }

/* Live status pill, driven by hours.js */
.status {
  display: inline-flex; align-items: center; gap: .48em;
  font-family: var(--f-sign); font-weight: 700; font-size: .84rem;
  text-transform: uppercase; letter-spacing: .12em;
  padding: .34em .7em .28em; border-radius: 999px;
  background: rgba(79,233,255,.1);
  box-shadow: inset 0 0 0 1px rgba(79,233,255,.45);
  color: var(--neon-cyan);
  white-space: nowrap;
}
.status[data-open="false"] { background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px rgba(147,160,179,.4); color: var(--chr-3); }
.status__dot { width: .5em; height: .5em; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.status[data-open="true"] .status__dot { animation: blip 2.4s ease-in-out infinite; }
@keyframes blip { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
/* The pill also lands on the cream Visit block, where cyan on paper is 1.3:1.
   Give it the dark chip it needs to stay legible there. */
.sec--paper .status {
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(79,233,255,.5);
  color: var(--neon-cyan);
}
.sec--paper .status[data-open="false"] {
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(147,160,179,.5);
  color: #C3CCDA;
}

.nav .status { display: none; }
@media (min-width: 620px) { .nav .status { display: inline-flex; } }

/* Mobile menu */
.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; align-items: center; }
@media (min-width: 860px) { .burger { display: none; } }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--cream); transition: transform .25s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: var(--navy-2);
  border-bottom: 3px solid var(--red);
  display: grid; gap: .2rem;
  padding: 1rem var(--edge) 1.6rem;
  transform: translateY(-115%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 22px 60px rgba(0,0,0,.6);
}
.drawer[data-open="true"] { transform: translateY(0); }
@media (min-width: 860px) { .drawer { display: none; } }
.drawer a {
  font-family: var(--f-sign); font-weight: 700; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  padding: .62rem 0; border-bottom: 1px solid rgba(147,160,179,.2);
}
.drawer a:last-of-type { border-bottom: 0; }
.drawer .btn { margin-top: .8rem; }

/* --- 11. HERO ------------------------------------------------------------ */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: grid; place-items: center;
  padding: calc(var(--nav-h) + clamp(1.2rem,4vh,2.4rem)) 0 clamp(1.8rem,5vh,3rem);
  overflow: hidden;
  background: var(--navy);
}
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; filter: saturate(1.15) contrast(1.05); }
/* Push the room back so the sign reads. Blue night grade plus a pink coving bloom. */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 78% at 50% 8%, rgba(255,61,158,.30), transparent 58%),
    radial-gradient(100% 70% at 50% 100%, rgba(0,60,162,.55), transparent 62%),
    linear-gradient(180deg, rgba(5,12,30,.80) 0%, rgba(5,12,30,.72) 42%, rgba(5,12,30,.94) 100%);
}
.hero__in { position: relative; z-index: 2; text-align: center; display: grid; justify-items: center; gap: clamp(.85rem, 2.2vh, 1.35rem); }

/* The sign object: chrome case, enamel face, neon tube beneath. */
.sign {
  position: relative;
  padding: clamp(.5rem,1.4vw,.72rem);
  border-radius: 10px;
  background: linear-gradient(160deg, #E9EFF6 0%, #A9B6C6 22%, #6E7B8D 48%, #C3CEDA 74%, #7F8C9E 100%);
  box-shadow:
    0 2px 0 rgba(255,255,255,.5) inset,
    0 26px 60px rgba(0,0,0,.65),
    0 0 90px rgba(255,61,158,.22);
  animation: sign-in .9s cubic-bezier(.2,.8,.25,1) both;
}
@keyframes sign-in { from { opacity: 0; transform: translateY(-22px) scale(.96); } to { opacity: 1; transform: none; } }
.sign__face {
  border-radius: 5px;
  background:
    radial-gradient(120% 130% at 50% 0%, #123166 0%, #06132E 62%, #04091A 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), inset 0 8px 30px rgba(0,0,0,.7);
  padding: clamp(1.2rem,3.6vw,1.9rem) clamp(1.4rem,5vw,3rem) clamp(.9rem,2.6vw,1.4rem);
  display: grid; justify-items: center; gap: clamp(.7rem,1.8vw,1rem);
}
.sign__logo { width: clamp(200px, 40vw, 350px); filter: drop-shadow(0 0 28px rgba(246,0,0,.55)) drop-shadow(0 0 60px rgba(27,95,221,.35)); }
.sign__tube {
  font-family: var(--f-sign); font-weight: 700;
  font-size: clamp(1.05rem, 3.4vw, 1.7rem);
  text-transform: uppercase; letter-spacing: .2em;
  padding-top: clamp(.6rem,1.8vw,.9rem);
  border-top: 2px solid rgba(147,160,179,.3);
  width: 100%; text-align: center;
}
.sign__rivets { position: absolute; inset: 0; pointer-events: none; }
.sign__rivets i {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff, #8A96A8 55%, #47515F 100%);
  box-shadow: 0 1px 1px rgba(0,0,0,.55);
}
.sign__rivets i:nth-child(1) { top: 6px; left: 6px; }
.sign__rivets i:nth-child(2) { top: 6px; right: 6px; }
.sign__rivets i:nth-child(3) { bottom: 6px; left: 6px; }
.sign__rivets i:nth-child(4) { bottom: 6px; right: 6px; }

.hero h1 { font-family: var(--f-display); font-size: clamp(1.95rem, 6.2vw, 4.1rem); text-transform: uppercase; }
.hero__sub { font-size: clamp(1rem, 2.4vw, 1.22rem); max-width: 44ch; color: rgba(252,244,226,.9); }
.hero__sub b { color: #fff; font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }

.hero__clock {
  font-family: var(--f-check); font-size: clamp(.78rem,1.9vw,.9rem);
  letter-spacing: .1em; text-transform: uppercase; color: rgba(252,244,226,.62);
}

/* Reveal on load */
.rise { animation: rise .8s cubic-bezier(.2,.8,.25,1) both; }
.rise-1 { animation-delay: .18s; } .rise-2 { animation-delay: .30s; }
.rise-3 { animation-delay: .42s; } .rise-4 { animation-delay: .54s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* --- 12. FACT BAND ------------------------------------------------------- */
.facts { background: var(--blue); position: relative; }
.facts__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
}
@media (min-width: 860px) { .facts__grid { grid-template-columns: repeat(4, 1fr); } }
.fact {
  padding: clamp(1.2rem,3.2vw,1.9rem) clamp(.8rem,2vw,1.4rem);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
@media (min-width: 860px) { .fact { border-bottom: 0; } .fact:last-child { border-right: 0; } }
@media (max-width: 859px) { .fact:nth-child(2n) { border-right: 0; } }
.fact__n { font-family: var(--f-display); font-size: clamp(1.75rem, 5.4vw, 2.9rem); line-height: .9; color: #fff; text-shadow: 2px 2px 0 var(--blue-dp); }
.fact__l { font-family: var(--f-sign); font-weight: 600; font-size: clamp(.72rem,1.6vw,.85rem); text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.78); margin-top: .45rem; }

/* --- 13. SECTIONS -------------------------------------------------------- */
.sec { padding: clamp(3.4rem, 9vw, 7rem) 0; position: relative; }
.sec--paper { background: var(--cream); color: var(--ink); }
.sec--paper h2, .sec--paper h3 { color: var(--ink); }
.sec--night { background: var(--navy-2); }

.sec__head { display: grid; gap: clamp(.8rem,2vw,1.1rem); margin-bottom: clamp(2rem,5vw,3.2rem); max-width: 54rem; }
.sec__head h2 { font-family: var(--f-display); font-size: clamp(1.95rem, 6.4vw, 3.7rem); text-transform: uppercase; }
.sec__head p { font-size: clamp(1rem, 2.1vw, 1.14rem); max-width: 52ch; }
.sec--paper .sec__head p { color: var(--ink-2); }
.sec--night .sec__head p { color: rgba(252,244,226,.76); }

/* --- 14. SIGNATURE DISHES ------------------------------------------------ */
.dishes { display: grid; gap: clamp(1.4rem, 3vw, 2rem); }
@media (min-width: 760px) { .dishes { grid-template-columns: repeat(3, 1fr); } }

.dish {
  position: relative; isolation: isolate;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 0 var(--cream-3), 0 16px 34px rgba(16,26,51,.16);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.dish:hover { transform: translateY(-5px); box-shadow: 0 3px 0 var(--cream-3), 0 24px 48px rgba(16,26,51,.24); }
.dish__img { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--ink); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.25,1); }
.dish:hover .dish__img img { transform: scale(1.05); }
.dish__tag { position: absolute; top: .8rem; left: .8rem; z-index: 2; }
.dish__body { padding: clamp(1.1rem,2.6vw,1.5rem); display: grid; gap: .55rem; align-content: start; flex: 1; }
.dish__name {
  font-family: var(--f-sign); font-weight: 800;
  font-size: clamp(1.25rem, 3.1vw, 1.55rem);
  text-transform: uppercase; letter-spacing: .01em; line-height: 1.02; color: var(--ink);
}
.dish__desc { font-size: .95rem; color: var(--ink-2); line-height: 1.5; }
.dish__price {
  font-family: var(--f-display); font-size: 1.45rem; color: var(--red-ink);
  margin-top: auto; padding-top: .5rem;
}

/* --- 15. THE TOME (menu scale) ------------------------------------------- */
.tome { position: relative; overflow: hidden; background: var(--navy); }
.tome__in { position: relative; z-index: 2; display: grid; gap: clamp(1.8rem,4vw,3rem); align-items: center; }
@media (min-width: 900px) { .tome__in { grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: clamp(2.5rem,5vw,4.5rem); } }
.tome__num {
  font-family: var(--f-display);
  font-size: clamp(6.5rem, 26vw, 17rem);
  line-height: .74;
  color: transparent;
  -webkit-text-stroke: 2px rgba(252,244,226,.34);
  position: relative;
}
@media (min-width: 900px) { .tome__num { -webkit-text-stroke-width: 3px; } }
.tome__num span {
  position: absolute; inset: 0; color: var(--cream);
  -webkit-text-stroke: 0;
  clip-path: inset(0 0 0 0);
  background: linear-gradient(175deg, var(--red) 0%, var(--red) 46%, var(--blue-el) 46%, var(--blue-el) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(246,0,0,.4));
}
.tome__cats { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.tome__cats a {
  font-family: var(--f-sign); font-weight: 600; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .1em; text-decoration: none;
  padding: .42em .85em .34em; border-radius: 3px;
  background: rgba(252,244,226,.06);
  box-shadow: inset 0 0 0 1px rgba(252,244,226,.24);
  transition: background .16s ease, box-shadow .16s ease, color .16s ease;
}
.tome__cats a:hover { background: var(--red); box-shadow: inset 0 0 0 1px var(--red), 0 0 20px rgba(246,0,0,.45); color: #fff; }

/* --- 16. STORY ----------------------------------------------------------- */
.story { display: grid; gap: clamp(1.8rem,4vw,3rem); align-items: center; }
@media (min-width: 900px) { .story { grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem,5vw,4.5rem); } }
/* isolate, or the z-index:-1 frame drops behind the section background */
.story__img { position: relative; isolation: isolate; }
.story__img img {
  width: 100%; border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.story__img::before {
  content: ""; position: absolute; inset: -10px -10px 14px 14px; border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  z-index: -1; opacity: .85;
}
.quote {
  font-family: var(--f-display); font-size: clamp(1.3rem, 3.5vw, 2.05rem);
  line-height: 1.16; text-transform: none; letter-spacing: -.01em;
}
.quote__by { font-family: var(--f-sign); font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .16em; margin-top: 1.1rem; color: rgba(252,244,226,.62); }
.sec--paper .quote__by { color: var(--ink-2); }

/* --- 17. GUEST CHECK ----------------------------------------------------- */
.check {
  background: #FFFDF6;
  color: var(--ink);
  font-family: var(--f-check);
  max-width: 30rem;
  padding: clamp(1.5rem,4vw,2.2rem) clamp(1.3rem,3.4vw,2rem) clamp(2rem,5vw,2.8rem);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  position: relative;
  /* torn bottom edge */
  -webkit-mask-image: radial-gradient(circle at 6px 100%, transparent 0 5px, #000 5.5px);
  mask-image: radial-gradient(circle at 6px 100%, transparent 0 5px, #000 5.5px);
  -webkit-mask-size: 12px 100%; mask-size: 12px 100%;
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
}
.check__hd { text-align: center; border-bottom: 2px dashed rgba(16,26,51,.3); padding-bottom: .9rem; margin-bottom: 1rem; }
.check__hd strong { display: block; font-size: 1.15rem; letter-spacing: .18em; text-transform: uppercase; }
.check__hd span { font-size: .8rem; letter-spacing: .1em; color: var(--ink-2); }
.check__row { display: flex; align-items: baseline; gap: .5rem; padding: .3rem 0; font-size: .92rem; }
.check__row dt { white-space: nowrap; text-transform: uppercase; letter-spacing: .06em; }
.check__row .dots { flex: 1; border-bottom: 1px dotted rgba(16,26,51,.42); transform: translateY(-3px); }
.check__row dd { margin: 0; white-space: nowrap; font-weight: 700; }
.check__row--now dd { color: var(--red-ink); }
.check__ft { margin-top: 1.3rem; padding-top: .9rem; border-top: 2px dashed rgba(16,26,51,.3); text-align: center; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }

.visit { display: grid; gap: clamp(1.8rem,4vw,3rem); align-items: start; }
@media (min-width: 900px) { .visit { grid-template-columns: 1fr auto; gap: clamp(2.5rem,5vw,4rem); } }
.visit__lines { display: grid; gap: 1.5rem; }
.visit__line h3 { font-family: var(--f-sign); font-weight: 800; font-size: clamp(1.15rem,2.6vw,1.4rem); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .35rem; }
.visit__line p, .visit__line a { font-size: 1.05rem; text-decoration: none; }
.visit__line a:hover { color: var(--red-ink); }
.sec--night .visit__line p { color: rgba(252,244,226,.8); }

/* --- 18. ORDER STRIP ----------------------------------------------------- */
.order { background: var(--red-ui); position: relative; overflow: hidden; }
.order__in { display: grid; gap: 1.4rem; align-items: center; text-align: center; justify-items: center; padding-block: clamp(2.4rem,6vw,3.6rem); position: relative; z-index: 2; }
@media (min-width: 880px) { .order__in { grid-template-columns: 1fr auto; text-align: left; justify-items: start; } }
.order h2 { font-family: var(--f-display); font-size: clamp(1.6rem,4.6vw,2.7rem); text-transform: uppercase; color: #fff; text-shadow: 3px 3px 0 var(--red-lo); }
.order p { color: #fff; margin-top: .5rem; }
.order__btns { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.order .btn--white { background: var(--cream); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(0,0,0,.16), inset 0 0 0 4px var(--cream), 0 4px 0 rgba(0,0,0,.32); }
.order .btn--white:hover { box-shadow: inset 0 0 0 1px rgba(0,0,0,.2), inset 0 0 0 4px var(--cream), 0 6px 0 rgba(0,0,0,.32), 0 0 26px rgba(255,255,255,.4); }

/* --- 19. SPONSORS -------------------------------------------------------- */
/* Real agency badges, shown in their own colours on a light chip. Silhouetting
   them turned five distinct seals into five identical grey blobs. */
.sponsors { display: flex; flex-wrap: wrap; gap: clamp(.9rem,2.4vw,1.6rem); align-items: center; justify-content: center; }
.sponsors img {
  height: clamp(58px,8vw,72px); width: auto;
  background: var(--cream);
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 0 0 1px rgba(252,244,226,.3), 0 6px 16px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sponsors img:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--cream), 0 10px 22px rgba(0,0,0,.5); }
.sec--paper .sponsors img { background: #fff; box-shadow: 0 0 0 1px rgba(16,26,51,.14), 0 6px 16px rgba(16,26,51,.14); }

/* --- 20. FOOTER ---------------------------------------------------------- */
.ft { background: var(--navy); padding: clamp(2.8rem,6vw,4.5rem) 0 clamp(1.6rem,3vw,2.4rem); }
.ft__grid { display: grid; gap: clamp(1.8rem,4vw,2.6rem); }
@media (min-width: 800px) { .ft__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.ft__logo img { width: clamp(150px,26vw,200px); margin-bottom: 1rem; }
.ft h3 { font-family: var(--f-sign); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .18em; color: var(--neon-cyan); margin-bottom: .9rem; }
.ft ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.ft a { text-decoration: none; color: rgba(252,244,226,.78); font-size: .98rem; }
.ft a:hover { color: var(--cream); }
.ft p { color: rgba(252,244,226,.62); font-size: .95rem; }
.ft__social { display: flex; gap: .7rem; margin-top: 1rem; }
.ft__social a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(252,244,226,.07); box-shadow: inset 0 0 0 1px rgba(252,244,226,.22);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.ft__social a:hover { background: var(--red); box-shadow: inset 0 0 0 1px var(--red), 0 0 20px rgba(246,0,0,.5); transform: translateY(-2px); }
.ft__social svg { width: 19px; height: 19px; fill: var(--cream); }
.ft__base {
  margin-top: clamp(2rem,4vw,3rem); padding-top: 1.3rem;
  border-top: 1px solid rgba(147,160,179,.22);
  display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(252,244,226,.5);
}
.ft__base a { font-size: .85rem; color: rgba(252,244,226,.5); }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.mhead { background: var(--navy); padding: calc(var(--nav-h) + clamp(2.5rem,7vw,4.5rem)) 0 clamp(2rem,5vw,3.2rem); position: relative; overflow: hidden; }
.mhead__in { position: relative; z-index: 2; display: grid; gap: 1.1rem; justify-items: start; }
.mhead h1 { font-family: var(--f-display); font-size: clamp(2.4rem,9vw,5.4rem); text-transform: uppercase; }
.mhead p { max-width: 48ch; color: rgba(252,244,226,.8); }
.mhead__acts { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .4rem; }

/* sticky category rail */
.rail {
  position: sticky; top: var(--nav-h); z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid rgba(252,244,226,.16);
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.rail__in { display: flex; gap: .3rem; overflow-x: auto; scrollbar-width: none; padding: .55rem var(--edge); }
.rail__in::-webkit-scrollbar { display: none; }
.rail button {
  flex: 0 0 auto;
  font-family: var(--f-sign); font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .45em .9em .38em; border-radius: 3px; white-space: nowrap;
  color: rgba(252,244,226,.72);
  transition: background .16s ease, color .16s ease;
}
.rail button:hover { color: var(--cream); background: rgba(252,244,226,.09); }
.rail button[aria-current="true"] { background: var(--red-ui); color: #fff; }

/* the placemat */
.mat { background: var(--cream); color: var(--ink); padding: clamp(2rem,5vw,3.4rem) 0 clamp(3rem,7vw,5rem); }
.msec { padding-top: clamp(2rem,5vw,3.2rem); }
.msec:first-child { padding-top: 0; }
.msec__hd { border-bottom: 4px solid var(--ink); padding-bottom: .7rem; margin-bottom: clamp(1.2rem,3vw,1.8rem); display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1rem; }
.msec__hd h2 { font-family: var(--f-display); font-size: clamp(1.7rem,5.4vw,2.9rem); text-transform: uppercase; color: var(--ink); }
.msec__hd .kick { font-family: var(--f-sign); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .85rem; color: var(--red-ink); margin-left: auto; }
.msec__blurb { color: var(--ink-2); margin-bottom: clamp(1.2rem,3vw,1.8rem); max-width: 60ch; font-size: 1.02rem; }

/* Newspaper columns, not a grid. A real menu packs; it does not leave
   polite gaps where one column ran short. */
.mgroups > * { margin-bottom: clamp(1.6rem,3.6vw,2.3rem); break-inside: avoid; -webkit-column-break-inside: avoid; }
.mgroups > *:last-child { margin-bottom: 0; }
@media (min-width: 780px) {
  .mgroups { column-count: 2; column-gap: clamp(2.2rem,5vw,4rem); }
}
@media (min-width: 1180px) {
  .mgroups--wide { column-count: 3; }
}

.mgroup__hd { font-family: var(--f-sign); font-weight: 800; font-size: clamp(1.1rem,2.6vw,1.3rem); text-transform: uppercase; letter-spacing: .04em; color: var(--ink); padding-bottom: .35rem; margin-bottom: .55rem; border-bottom: 2px solid var(--red); }
.mgroup__note { font-size: .84rem; color: var(--ink-2); font-style: italic; margin-bottom: .7rem; line-height: 1.45; }

.mitem { display: flex; align-items: baseline; gap: .45rem; padding: .34rem 0; }
.mitem + .mitem { border-top: 1px solid rgba(16,26,51,.09); }
/* The name must be allowed to wrap inside its own box. Without min-width:0 a
   long name shoves the price onto the next line, where it lands left-aligned. */
/* Cap the name so flex line-breaking never sees a hypothetical width big
   enough to bump the price to its own line; it wraps internally instead. */
.mitem__n { flex: 0 1 auto; min-width: 0; max-width: calc(100% - 5.5rem); font-family: var(--f-sign); font-weight: 600; font-size: 1.04rem; letter-spacing: .01em; line-height: 1.24; }
.mitem__dots { flex: 1 1 1rem; min-width: 1rem; border-bottom: 1px dotted rgba(16,26,51,.34); transform: translateY(-4px); }
.mitem__p { flex: 0 0 auto; font-family: var(--f-sign); font-weight: 700; font-size: 1.04rem; white-space: nowrap; color: var(--red-ink); }
.mitem__d { flex-basis: 100%; font-size: .86rem; color: var(--ink-2); line-height: 1.4; margin-top: .1rem; }
.mitem { flex-wrap: wrap; }
.mitem--star .mitem__n::after {
  content: "★"; color: var(--red-ink); font-size: .72em; margin-left: .4em; vertical-align: .12em;
}

.mrules { margin-top: clamp(2.5rem,6vw,4rem); padding: clamp(1.4rem,3.4vw,2rem); background: var(--cream-2); border: 2px solid rgba(16,26,51,.18); }
.mrules h3 { font-family: var(--f-sign); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 1rem; margin-bottom: .8rem; }
.mrules ul { margin: 0; padding-left: 1.1rem; display: grid; gap: .4rem; }
.mrules li { font-size: .88rem; color: var(--ink-2); line-height: 1.45; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero { position: relative; isolation: isolate; padding: calc(var(--nav-h) + clamp(3rem,9vw,6rem)) 0 clamp(3rem,8vw,5rem); overflow: hidden; }
.about-hero__bg { position: absolute; inset: 0; z-index: -2; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,12,30,.9), rgba(5,12,30,.78) 50%, rgba(5,12,30,.96)); }
.about-hero h1 { font-family: var(--f-display); font-size: clamp(2.3rem,8.4vw,5rem); text-transform: uppercase; }

.prose { max-width: 40rem; display: grid; gap: 1.15rem; }
.prose p { font-size: clamp(1.02rem,2.1vw,1.14rem); line-height: 1.68; }
.sec--night .prose p { color: rgba(252,244,226,.84); }
.sec--paper .prose p { color: var(--ink-2); }
.prose p.big { font-family: var(--f-display); font-size: clamp(1.3rem,3.4vw,1.9rem); line-height: 1.2; color: var(--cream); text-transform: none; }
.sec--paper .prose p.big { color: var(--ink); }

.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3,1fr); } }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 5px; box-shadow: 0 14px 34px rgba(0,0,0,.34); }
.gallery img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.25,1); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem;
  font-family: var(--f-sign); font-weight: 700; font-size: .92rem; text-transform: uppercase; letter-spacing: .1em;
  background: linear-gradient(transparent, rgba(5,12,30,.9)); color: var(--cream);
}
