/* ============================================================
   COMIC skin — "Pin City" pop-art comic book.
   Styles the canonical section markup. Paper palette: warm cream,
   lane red, strike yellow, pop blue; Bangers display + Archivo body;
   hard offset shadows (no blur), thick ink borders, halftone dots.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;700;800;900&family=Archivo+Black&family=Bangers&family=Bowlby+One+SC&family=JetBrains+Mono:wght@400;700;800&display=swap');

:root {
  --paper: #FBF1D7;
  --paper-2: #F4E4B8;
  --ink: #0A0A0A;
  --lane: #E63027;        /* red — CTAs/accents */
  --lane-deep: #B61C14;
  --strike: #FFC629;      /* yellow — highlights */
  --pop: #2A6DF4;         /* blue — links/tags */
  --body: rgba(10,10,10,.87);
  --muted: rgba(10,10,10,.60);
  --paper-soft: rgba(251,241,215,.85);
  --paper-dim: rgba(251,241,215,.6);
  --maxw: 1280px;
  --gap: 1.5rem;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --shadow-red: 6px 6px 0 var(--lane);
  --shadow-yellow: 6px 6px 0 var(--strike);
  --border: 3px solid var(--ink);
  --font-display: 'Bangers', cursive;            /* display / sound FX */
  --font-sub: 'Bowlby One SC', cursive;          /* sub-display / buttons / labels */
  --font-section: 'Archivo Black', 'Archivo', sans-serif; /* section / emphasis */
  --font-body: 'Archivo', system-ui, sans-serif; /* body copy */
  --font-mono: 'JetBrains Mono', ui-monospace, monospace; /* stats / receipts / scores */
  --anim: .18s cubic-bezier(.2,.8,.3,1.2);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  background-image: radial-gradient(var(--ink) .5px, transparent .5px);
  background-size: 14px 14px;
  color: var(--body);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
}
html { scroll-behavior: smooth; }

a { color: var(--lane); text-decoration: none; }
a:hover { color: var(--lane-deep); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }

/* ---- Sections: alternating cream bands ---- */
.section { padding: 5rem 0; }
.section:where(:nth-of-type(even)) { background: var(--paper-2); }

.section__head { margin-bottom: 2.5rem; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-body); font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em; font-size: .72rem;
  padding: .4rem .8rem; transform: rotate(-1.5deg); margin: 0 0 1rem;
  border-radius: 3px;
}
.section__eyebrow::before { content: "★"; color: var(--strike); font-size: .9em; }
.section__title {
  font-family: var(--font-section); font-weight: 400; color: var(--ink);
  text-transform: uppercase; font-style: italic;
  font-size: clamp(2.1rem, 5.6vw, 3.7rem); line-height: .95; letter-spacing: -.005em;
  margin: 0 0 .9rem; text-shadow: 3px 3px 0 var(--lane);
}
/* Emphasized word (`*word*` → <em>): a color pop in the comic style, not italic. */
.section__title em { font-style: inherit; color: var(--lane); }
.section__intro { color: var(--muted); font-size: 1.1rem; max-width: 60ch; margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em; font-size: .95rem;
  padding: .8rem 1.4rem; border: var(--border); border-radius: 6px; cursor: pointer;
  transition: transform var(--anim), box-shadow var(--anim), background var(--anim);
}
.btn--primary { background: var(--lane); color: var(--paper); box-shadow: var(--shadow-yellow); }
.btn--primary:hover { background: var(--lane-deep); color: var(--paper); transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--strike); }
/* Hero secondary button: solid yellow (matches the proof), not a ghost outline. */
.section--hero .btn--ghost { background: var(--strike); color: var(--ink); box-shadow: var(--shadow); }
.section--hero .btn--ghost:hover { background: #ffd54a; color: var(--ink); transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.btn--phone { background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.btn--phone:hover { background: var(--strike); color: var(--ink); transform: translate(-2px,-2px); }
.btn:active { transform: translate(3px,3px) !important; box-shadow: 0 0 0 var(--ink) !important; }

/* ---- Header (dark) ---- */
.section--header {
  position: sticky; top: 0; z-index: 50; background: var(--ink);
  padding: .85rem 0; border-bottom: 4px solid var(--strike);
}
.section--header:nth-of-type(even) { background: var(--ink); }
.header__inner { display: flex; align-items: center; gap: var(--gap); }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__logo { width: 46px; height: 46px; object-fit: contain; }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--lane); line-height: 1; letter-spacing: .03em; }
.brand__city { font-size: .7rem; color: var(--paper-dim); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; flex-wrap: nowrap; }
.nav__link { color: var(--paper); font-weight: 800; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.nav__link:hover { color: var(--strike); }
/* last nav link ("Visit") becomes the red pill CTA */
.nav__link:last-child { background: var(--lane); color: var(--paper); border: 2px solid var(--strike); border-radius: 6px; padding: .5rem .9rem; }
.nav__link:last-child:hover { background: var(--lane-deep); color: var(--paper); }
.header__phone { font-family: var(--font-sub); color: var(--strike); font-size: 1rem; margin-left: 1rem; }

/* ---- Hero (full-bleed photo + overlay + burst) ---- */
.section--hero { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; min-height: clamp(520px, 80vh, 780px); display: grid; align-items: center; }
.section--hero:nth-of-type(even) { background: var(--ink); }
.section--hero .hero__image { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; margin: 0; border: 0; border-radius: 0; box-shadow: none; z-index: 0; }
.section--hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.82) 55%, rgba(10,10,10,.45) 100%); }
.section--hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 640px; }
.hero__eyebrow { display: inline-block; background: var(--paper); border: var(--border); color: var(--ink); font-family: var(--font-sub); font-size: .8rem; padding: .4rem .9rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 1.1rem; box-shadow: 4px 4px 0 var(--lane); }
.hero__eyebrow::before { content: "★ "; } .hero__eyebrow::after { content: " ★"; }
.hero__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 9vw, 6.5rem); line-height: .85; color: var(--strike); text-shadow: 5px 5px 0 var(--lane); margin: .25rem 0; }
.hero__sub { color: var(--paper); font-size: 1.25rem; max-width: 46ch; }
.hero__rating { color: var(--strike); font-weight: 800; font-family: var(--font-sub); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.75rem 0 0; }
/* The STRIKE! burst itself lives in the .hero-strike block near the end of this file
   (layered star + SVG pins, per the design). Here: only the click-feedback floaty. */
.floaty { position: absolute; z-index: 4; font-family: var(--font-display); font-size: 3.75rem; color: var(--lane); -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 var(--ink); pointer-events: none; animation: comic-float-up 1s ease-out forwards; }
@keyframes comic-float-up { 0% { transform: translateY(0) rotate(-5deg) scale(.5); opacity: 0; } 20% { transform: translateY(-20px) rotate(0) scale(1.1); opacity: 1; } 100% { transform: translateY(-140px) rotate(15deg) scale(1); opacity: 0; } }

/* ---- Stats (dark strip) ---- */
.section--stats { background: var(--ink); padding: 2.25rem 0; }
.section--stats:nth-of-type(even) { background: var(--ink); }
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1rem; }
.stat { text-align: left; border: 0; background: transparent; padding: .25rem 1.25rem; box-shadow: none; border-left: 3px solid var(--lane); }
.stat__value { display: block; font-family: var(--font-mono); font-weight: 800; font-size: 2.3rem; letter-spacing: -.02em; line-height: 1; color: var(--strike); }
.stat__label { font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--paper-dim); }

/* ---- Cards: shared base + colored cycle ---- */
.offering, .party, .league, .review { transition: transform var(--anim), box-shadow var(--anim); }
.offering:hover, .party:hover, .review:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }

.offerings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: var(--gap); }
.offering { background: var(--paper); border: var(--border); border-radius: 8px; padding: 1.5rem; box-shadow: var(--shadow); }
.offering__title { font-family: var(--font-sub); font-size: 1.2rem; color: var(--ink); margin: 0 0 .5rem; }
.offering__desc { color: var(--body); margin: 0 0 1rem; }
.offering__photos { display: grid; gap: .5rem; }
.offering__photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 2px solid var(--ink); border-radius: 6px; }
/* multi-color cycle */
.offering:nth-child(4n+2) { background: var(--strike); }
.offering:nth-child(4n+3) { background: var(--pop); color: var(--paper); }
.offering:nth-child(4n+3) .offering__title { color: var(--paper); }
.offering:nth-child(4n+3) .offering__desc { color: var(--paper-soft); }
.offering:nth-child(4n) { background: var(--lane); color: var(--paper); }
.offering:nth-child(4n) .offering__title { color: var(--paper); }
.offering:nth-child(4n) .offering__desc { color: var(--paper-soft); }

/* ---- Pricing ---- */
.pricing-list, .pricing-rentals { display: grid; gap: .5rem; max-width: 640px; }
.pricing-rentals { margin-top: 1rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border-bottom: 2px dashed var(--ink); padding: .6rem 0; }
.price-row__label { font-weight: 700; }
.price-row__value { font-family: var(--font-mono); font-weight: 800; font-size: 1.25rem; color: var(--lane); }

/* ---- Parties ---- */
.parties__image { width: 100%; max-width: 720px; border: var(--border); border-radius: 8px; box-shadow: var(--shadow-yellow); margin-bottom: 1.5rem; }
.party-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: var(--gap); }
.party { background: var(--paper); border: var(--border); border-radius: 8px; padding: 1.25rem; box-shadow: var(--shadow-red); }
.party:nth-child(3n+2) { background: var(--strike); box-shadow: var(--shadow); }
.party:nth-child(3n) { background: var(--pop); color: var(--paper); box-shadow: var(--shadow); }
.party:nth-child(3n) .party__name, .party:nth-child(3n) .party__detail { color: var(--paper); }
.party__name { display: block; font-family: var(--font-sub); font-size: 1.1rem; color: var(--ink); }
.party__price { display: inline-block; font-family: var(--font-mono); font-weight: 800; font-size: 1.3rem; color: var(--lane); margin: .25rem 0; }
.party:nth-child(3n) .party__price { color: var(--strike); }
.party__detail { display: block; color: var(--body); }
.party__includes { margin: .5rem 0 0; padding-left: 1.1rem; }

/* ---- Leagues ---- */
.leagues__photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: var(--gap); margin-bottom: 1.5rem; }
.leagues__photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: var(--border); border-radius: 8px; box-shadow: var(--shadow); }
.league-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: .75rem; }
.league { border: var(--border); border-radius: 6px; background: var(--paper); padding: .8rem 1rem; box-shadow: 4px 4px 0 var(--ink); }
.league:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }
.league:nth-child(5n+1) { background: var(--strike); }
.league:nth-child(5n+2) { background: var(--lane); color: var(--paper); }
.league:nth-child(5n+3) { background: var(--pop); color: var(--paper); }
.league:nth-child(5n+4) { background: var(--paper); }
.league:nth-child(5n+5) { background: #2BB673; color: var(--paper); }
.league__name { font-weight: 800; display: block; font-family: var(--font-sub); font-size: .95rem; }
.league__day, .league__time { font-size: .8rem; opacity: .8; margin-right: .5rem; }

/* League feature (photo + "why league up" + stats) */
.leagues-layout { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(0,1fr); gap: var(--gap); align-items: start; }
.league-feature { align-self: start; }
.league-feature__photo { margin: 0; }
.league-feature__photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: var(--border); border-radius: 8px; box-shadow: var(--shadow); }
.league-feature__photo figcaption { font-size: .85rem; font-weight: 800; margin-top: .55rem; }
.league-feature__title { font-family: var(--font-display); font-size: 1.5rem; margin: 1.1rem 0 .4rem; }
.league-feature__body { color: var(--ink); opacity: .85; }
.league-feature__stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.1rem 0 1.25rem; }
.league-stat { display: flex; flex-direction: column; }
.league-stat__value { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.league-stat__label { font-size: .8rem; opacity: .7; margin-top: .25rem; }
.league-feature__cta { margin-top: .25rem; }
@media (max-width: 820px) { .leagues-layout { grid-template-columns: 1fr; } }

/* ---- Bar & lounge / Cosmic (dark photo walls) ---- */
.section--barlounge, .section--cosmic { background: var(--ink); color: var(--paper); }
.section--barlounge .section__title, .section--cosmic .section__title { color: var(--paper); }
.section--barlounge .section__title em, .section--cosmic .section__title em,
.section--foodservice .section__title em { color: var(--strike); }
.section--barlounge .section__intro, .section--cosmic .section__intro,
.barlounge__details { color: var(--paper-soft); }
.barlounge__photos, .cosmic__photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--gap); margin-top: 1.5rem; }
.barlounge__photo, .cosmic__photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 3px solid var(--paper); border-radius: 8px; box-shadow: var(--shadow-red); transition: transform var(--anim); }
.barlounge__photo:hover, .cosmic__photo:hover { transform: scale(1.02) rotate(-1deg); }

/* ---- Food service (menu) — dark diner ---- */
.section--foodservice { background: var(--ink); color: var(--paper); }
.section--foodservice .section__title { color: var(--paper); text-shadow: 4px 4px 0 var(--lane); }
.menu-category { margin-bottom: 2.5rem; }
.menu-category__title { font-family: var(--font-sub); color: var(--strike); font-size: 1.4rem; text-transform: uppercase; border-bottom: 3px solid var(--lane); padding-bottom: .4rem; margin: 0 0 1.25rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: var(--gap); }
.menu-item { background: #161616; border: 2px solid var(--paper); border-radius: 8px; overflow: hidden; transition: transform var(--anim), box-shadow var(--anim); }
.menu-item:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--strike); }
.menu-item__photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-bottom: 2px solid var(--paper); }
.menu-item__name { font-family: var(--font-sub); font-size: 1rem; color: var(--paper); margin: .75rem .75rem .25rem; }
.menu-item__desc { color: var(--paper-dim); font-size: .85rem; margin: 0 .75rem .5rem; }
.menu-item__price { display: inline-block; font-family: var(--font-mono); font-weight: 800; color: var(--strike); font-size: 1.1rem; margin: 0 .75rem .75rem; }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list__row { display: flex; align-items: baseline; gap: .75rem; border-bottom: 1px dashed rgba(251,241,215,.3); padding: .55rem 0; }
.menu-list__name { font-weight: 800; color: var(--paper); }
.menu-list__meta { color: var(--paper-dim); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
.menu-list__price { margin-left: auto; font-family: var(--font-mono); font-weight: 800; color: var(--strike); font-size: 1.05rem; }
/* two-column feature-shot layout (reference: big photo left, tabs + cards right) */
.menu-layout--featured { display: grid; grid-template-columns: .8fr 1.3fr; gap: 2rem; align-items: start; }
.menu-feature { margin: 0; }
.menu-feature img { width: 100%; max-width: none; aspect-ratio: 3/4; object-fit: cover; border: 3px solid var(--paper); border-radius: 10px; box-shadow: var(--shadow-yellow); position: sticky; top: 92px; }
@media (max-width: 860px) { .menu-layout--featured { grid-template-columns: 1fr; } .menu-feature img { position: static; aspect-ratio: 16/9; } }

/* ---- This week / deals — ticket cards ---- */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: var(--gap); }
.deal { position: relative; background: var(--strike); color: var(--ink); border: var(--border); border-radius: 8px; padding: 1.5rem 1.5rem 1.5rem 2rem; box-shadow: var(--shadow); transition: transform var(--anim), box-shadow var(--anim); }
.deal:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.deal::before { content: ""; position: absolute; left: .9rem; top: .6rem; bottom: .6rem; border-left: 3px dashed var(--ink); }
/* notches */
.deal::after { content: ""; position: absolute; left: -9px; top: 50%; width: 16px; height: 16px; background: var(--paper-2); border: var(--border); border-radius: 50%; transform: translateY(-50%); }
.section:where(:nth-of-type(even)) .deal::after { background: var(--paper-2); }
.deal:nth-child(3n+2) { background: var(--ink); color: var(--paper); }
.deal:nth-child(3n+2) .deal__title { color: var(--strike); }
.deal:nth-child(3n) { background: var(--lane); color: var(--paper); }
.deal__title { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; line-height: 1; margin: 0 0 .5rem; }
.deal__desc { margin: 0 0 .75rem; }
.deal__value { display: inline-block; font-family: var(--font-mono); font-weight: 800; background: var(--lane); color: var(--paper); font-size: 1.3rem; padding: .15rem .6rem; border: 2px solid var(--ink); transform: rotate(-3deg); }
.deal:nth-child(3n) .deal__value { background: var(--strike); color: var(--ink); }
.deal__valid, .deal__code { display: block; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-top: .5rem; }

/* ---- Reviews ---- */
/* Scoreboard panel — dark halftone, big overall score + per-source cards (THE CROWD SPEAKS) */
.reviews-panel { display: grid; grid-template-columns: 1fr; gap: 1.75rem; background: var(--ink); color: var(--paper); border: var(--border); box-shadow: var(--shadow-lg); border-radius: 10px; padding: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: var(--gap); background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.6px); background-size: 15px 15px; }
@media (min-width: 820px) { .reviews-panel { grid-template-columns: auto 1fr; align-items: center; gap: clamp(2rem, 5vw, 4rem); } }
.reviews-panel__overall { display: flex; flex-direction: column; align-items: flex-start; gap: .3rem; }
.reviews-panel__big { font-family: var(--font-display); font-weight: 400; font-size: clamp(4rem, 12vw, 6.5rem); line-height: .8; color: var(--strike); text-shadow: 5px 5px 0 var(--lane); }
.reviews-panel__stars { color: var(--strike); font-size: 1.4rem; letter-spacing: .1em; -webkit-text-stroke: 1px rgba(10,10,10,.4); }
.reviews-panel__total { font-family: var(--font-mono); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-dim); }
.reviews-panel__sources { display: grid; gap: .75rem; }
.reviews-panel__source { display: flex; align-items: center; gap: .75rem; border: 2px solid rgba(255,255,255,.18); border-radius: 6px; padding: .7rem 1rem; }
.reviews-panel__source-name { font-family: var(--font-sub); text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; }
.reviews-panel__source-count { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .07em; text-transform: uppercase; color: var(--paper-dim); }
.reviews-panel__source-score { margin-left: auto; display: flex; align-items: center; gap: .55rem; }
.reviews-panel__source-stars { color: var(--strike); font-size: .9rem; letter-spacing: .04em; }
.reviews-panel__source-rating { font-family: var(--font-mono); font-weight: 800; font-size: 1.3rem; color: var(--strike); }

/* Masonry quote cards — 4-color cycle: paper, yellow, red, black */
.reviews-grid { column-count: 3; column-gap: var(--gap); display: block; }
@media (max-width: 980px) { .reviews-grid { column-count: 2; } }
@media (max-width: 620px) { .reviews-grid { column-count: 1; } }
.review { break-inside: avoid; display: inline-block; width: 100%; background: var(--paper); color: var(--ink); border: var(--border); border-radius: 8px; padding: 1.5rem; margin: 0 0 var(--gap); box-shadow: var(--shadow); }
.review:nth-child(4n+2) { background: var(--strike); }
.review:nth-child(4n+3) { background: var(--lane); color: var(--paper); }
.review:nth-child(4n) { background: var(--ink); color: var(--paper); }
.review__tag { display: inline-block; font-family: var(--font-mono); font-weight: 700; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; background: var(--ink); color: var(--strike); padding: .25rem .6rem; margin-bottom: .9rem; }
.review:nth-child(4n+2) .review__tag { background: var(--lane); color: var(--paper); }
.review:nth-child(4n+3) .review__tag { background: var(--ink); color: var(--strike); }
.review:nth-child(4n) .review__tag { background: var(--strike); color: var(--ink); }
.review__rating { display: block; color: var(--lane); font-size: 1.05rem; letter-spacing: .08em; margin-bottom: .5rem; }
.review:nth-child(4n+3) .review__rating, .review:nth-child(4n) .review__rating { color: var(--strike); }
.review__quote { font-family: var(--font-sub); font-weight: 400; font-size: 1.02rem; line-height: 1.28; margin: 0 0 1.25rem; }
.review__quote::before { content: '\201C'; font-family: var(--font-display); color: var(--lane); font-size: 2.1rem; line-height: 0; vertical-align: -.35em; margin-right: .12rem; }
.review:nth-child(4n+3) .review__quote::before { color: var(--strike); }
.review:nth-child(4n) .review__quote::before { color: var(--lane); }
.review__foot { display: flex; align-items: center; gap: .7rem; border-top: 2px solid currentColor; padding-top: 1rem; }
.review__avatar { width: 48px; height: 48px; flex: none; border-radius: 50%; border: 3px solid var(--lane); object-fit: cover; margin: 0; }
.review__who { display: flex; flex-direction: column; gap: .1rem; margin: 0; }
.review__author { font-family: var(--font-sub); font-size: .95rem; line-height: 1.1; }
.review__source { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }

/* ---- Photo gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: var(--gap); }
.gallery__photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border: var(--border); border-radius: 8px; box-shadow: var(--shadow); transition: transform var(--anim); }
.gallery__photo:hover { transform: scale(1.03) rotate(-1.5deg); z-index: 2; position: relative; }

/* ---- Gift cards ---- */
.section--giftcards { background: var(--lane); }
.giftcard { text-align: center; display: grid; justify-items: center; gap: .5rem; }
.giftcard__logo { width: 64px; height: 64px; object-fit: contain; background: var(--paper); border: var(--border); border-radius: 8px; padding: .4rem; }
.giftcard__name { font-family: var(--font-sub); color: var(--paper); }
.section--giftcards .section__title { color: var(--paper); text-shadow: 4px 4px 0 var(--ink); }
.section--giftcards .section__title em { color: var(--ink); }
.section--giftcards .section__intro, .section--giftcards .section__eyebrow { color: var(--paper); }

/* Rich gift-cards: copy + denomination pills + CTA on the left, a card visual on the right. */
.giftcard--rich { text-align: left; grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); gap: var(--gap); align-items: center; justify-items: stretch; }
.giftcard__denoms { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.1rem 0; }
.giftcard__denom { font-family: var(--font-sub); font-size: .9rem; color: var(--ink); background: var(--paper); border: var(--border); border-radius: 999px; padding: .35rem 1rem; box-shadow: 3px 3px 0 var(--ink); }
.giftcard__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: .5rem; }
.section--giftcards .giftcard__cta { background: var(--strike); color: var(--ink); }
.giftcard__note { font-family: var(--font-sub); color: var(--paper); font-size: .85rem; text-decoration: underline; }
.giftcard__preview { display: flex; justify-content: center; }
.giftcard__card { width: 100%; max-width: 380px; aspect-ratio: 1.62/1; background: linear-gradient(135deg, var(--strike) 0%, #ff8a00 55%, var(--lane) 100%); border: var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 1.2rem 1.4rem; display: flex; flex-direction: column; color: var(--ink); }
.giftcard__card-head { display: flex; align-items: center; justify-content: space-between; }
.giftcard--rich .giftcard__logo { width: 44px; height: 44px; padding: .25rem; }
.giftcard__card-label { font-family: var(--font-sub); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.giftcard__card-amount { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.8rem, 7vw, 4.4rem); line-height: 1; margin-top: auto; }
.giftcard__card-foot { font-family: var(--font-sub); font-size: .82rem; }
.giftcard--rich .giftcard__name { color: var(--ink); }
@media (max-width: 820px) { .giftcard--rich { grid-template-columns: 1fr; text-align: center; justify-items: center; } .giftcard__preview { order: -1; } }

/* ---- Final CTA ---- */
.section--cta { background: var(--ink); text-align: center; }
.cta__inner { display: grid; justify-items: center; gap: 1rem; }
.cta__title { font-family: var(--font-display); color: var(--strike); font-size: clamp(2.5rem,8vw,5rem); text-shadow: 5px 5px 0 var(--lane); margin: 0; }
.cta__sub { color: var(--paper); font-size: 1.2rem; }
.cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---- Footer ---- */
.section--footer { background: var(--ink); color: var(--paper); border-top: 6px solid var(--strike); }
.section--footer:nth-of-type(even) { background: var(--ink); }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem; }
.footer__logo { width: 64px; height: 64px; object-fit: contain; }
.footer__heading { font-family: var(--font-sub); color: var(--strike); font-size: 1rem; text-transform: uppercase; margin: 0 0 .75rem; }
.footer__map { width: 100%; border: 2px solid var(--paper); border-radius: 6px; margin-bottom: .75rem; }
.footer__tag, .footer__address { color: var(--paper-soft); }
.footer__phone, .footer__directions { color: var(--strike); font-weight: 800; display: inline-block; margin-top: .5rem; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.footer__links a { color: var(--paper); font-weight: 700; }
.footer__links a:hover { color: var(--strike); }
.footer__legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(251,241,215,.2); font-size: .8rem; color: var(--paper-dim); }

/* ---- Menu tabs ---- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.menu-tab { font-family: var(--font-sub); text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; color: var(--paper); background: transparent; border: 2px solid var(--paper); border-radius: 6px; padding: .55rem 1.1rem; cursor: pointer; transition: transform var(--anim), background var(--anim); }
.menu-tab:hover { transform: translate(-2px,-2px); }
.menu-tab.is-active { background: var(--lane); color: var(--paper); border-color: var(--strike); box-shadow: 4px 4px 0 var(--strike); }
html.js .section--foodservice .menu-tabs ~ .menu-category { display: none; }
html.js .section--foodservice .menu-tabs ~ .menu-category.is-active { display: block; }

/* ---- Scroll reveal — animation-based so content is NEVER hidden by default
   (safe for no-JS / slow load / screenshots). JS adds .in-view on enter to play it. ---- */
.section.in-view:not(.section--header):not(.section--hero) { animation: comic-reveal .55s ease both; }
@keyframes comic-reveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ---- Mobile slide-out nav (smooth off-canvas drawer) ---- */
.nav-toggle { flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: transparent; border: 0; width: 46px; height: 46px; padding: 0; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--paper); border-radius: 2px; transition: transform .3s cubic-bezier(.4,.01,.2,1), opacity .2s ease; }
/* overlay fades (opacity/visibility) instead of display-toggling, so it eases; display:block
   overrides the canonical base hide; pointer-events gate clicks while hidden. */
.nav-overlay { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, visibility .3s ease; }
body.nav-locked { overflow: hidden; }
@media (max-width: 1024px) {
  .nav-toggle { display: flex; order: 2; margin-left: 0; flex: none; }
  .header__phone { display: none; }
  /* Compact single-row mobile header (logo + name | status | toggle) */
  .section--header { padding: .4rem 0; }
  .header__inner { flex-wrap: nowrap; align-items: center; gap: .6rem; }
  .brand { order: 0; flex: 1 1 auto; min-width: 0; }
  .brand__logo { width: 34px; height: 34px; }
  .brand__name { font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand__city { display: none; }
  .header__utility { order: 1; flex: 0 0 auto; flex-direction: column; align-items: flex-end; gap: .15rem; margin: 0; }
  .hours-status--badge { font-size: .62rem; padding: .12rem .45rem; }
  .nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 340px); background: var(--ink); border-left: 4px solid var(--strike); box-shadow: -18px 0 50px rgba(0,0,0,.45); flex-direction: column; align-items: stretch; gap: .15rem; padding: 5.5rem 1.5rem 2rem; margin: 0; z-index: 70; transform: translateX(100%); transition: transform .34s cubic-bezier(.22,.61,.36,1); overflow-y: auto; }
  .nav__link { font-size: 1.15rem; padding: .75rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav__link:last-child { margin-top: .75rem; text-align: center; border-bottom: 0; }
  .section--header.nav-open .nav { transform: translateX(0); }
  .section--header.nav-open .nav-overlay { opacity: 1; visibility: visible; pointer-events: auto; }
  .section--header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .section--header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .section--header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
  .menu-layout--featured { grid-template-columns: 1fr; }
  .menu-feature img { position: static; aspect-ratio: 16/9; }
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .section:not(.section--header) { padding: 3rem 0; }
  .section--hero { min-height: 70vh; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html.js .section { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   COMIC ("Pin City") — strike-era section additions. Thick ink borders, hard offset shadows.
   Light paper cards; dark header/cosmic/find-us/footer. (Hero burst + pins kept — on-brand.)
   ============================================================ */

/* Hero script accent (lane-red with the comic offset shadow) */
.hero__title em { font-style: normal; -webkit-text-fill-color: var(--lane); }

/* Hero deals marquee */
.hero-marquee { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; overflow: hidden; background: var(--strike); color: var(--ink); border-top: 3px solid var(--ink); }
.hero-marquee__track { display: inline-flex; gap: 2.5rem; white-space: nowrap; padding: .5rem 0; font-family: var(--font-sub); text-transform: uppercase; font-size: .92rem; letter-spacing: .03em; animation: comic-marquee 26s linear infinite; }
.hero-marquee__track span { display: inline-flex; align-items: center; gap: 2.5rem; }
@keyframes comic-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Live hours status (header / hero / find-us — all dark → light + comic badge) */
.hours-status { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-sub); font-size: .85rem; color: var(--paper); white-space: nowrap; }
.hours-status::before { content: ""; width: .6rem; height: .6rem; border-radius: 50%; background: var(--paper-dim); border: 1.5px solid var(--ink); flex: none; }
.hours-status.is-open::before { background: #34d27b; }
.hours-status.is-closed::before { background: var(--lane); }
.hours-status--badge { padding: .3rem .7rem; border: 2px solid var(--strike); background: var(--ink); color: var(--strike); }
.section--hero .hours-status { margin-top: 1.1rem; }
.findus__card .hours-status { color: var(--ink); margin: 0 0 .85rem; }
.findus__card .hours-status::before { background: var(--muted); }
.findus__card .hours-status.is-open::before { background: #1f9d57; }
.findus__card .hours-status.is-closed::before { background: var(--lane); }
.findus__hours-row.is-today { background: rgba(255,198,41,.22); margin: 0 -.6rem; padding: .15rem .6rem .5rem; }
.findus__hours-row.is-today span { color: var(--lane); }

/* Header utility + nav More dropdown + reserve pill (dark header) — strike's proven
   2-row desktop grid: brand left (spanning), utility (phone) top-right, nav below.
   ONE hours status: it lives ABOVE the center name (brand__status); the top-right
   utility badge is redundant, so it's hidden there. */
.header__utility { display: flex; align-items: center; gap: 1.1rem; }
.nav__head { display: none; }
.brand__text { display: flex; flex-direction: column; gap: .1rem; line-height: 1.05; }
.brand__status { display: inline-flex; margin: 0 0 .1rem; font-size: .78rem; }
.header__utility .hours-status--badge { display: none; }
@media (min-width: 1025px) {
  .header__inner { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "brand utility" "brand nav"; column-gap: 1.5rem; row-gap: .55rem; align-items: center; }
  .brand { grid-area: brand; }
  .header__utility { grid-area: utility; justify-self: end; }
  .nav { grid-area: nav; justify-self: end; margin: 0; }
  .nav-toggle { display: none; }
}
.header__phone { white-space: nowrap; }
.nav__link--cta { background: var(--lane); color: var(--paper); border: 2px solid var(--strike); border-radius: 6px; padding: .5rem .9rem; }
.nav__more { position: relative; display: inline-flex; }
.nav__more-toggle { background: transparent; border: 0; cursor: pointer; font: inherit; color: var(--paper); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; display: inline-flex; align-items: center; gap: .3rem; }
.nav__more-menu { display: none; position: absolute; top: 100%; right: 0; min-width: 13rem; flex-direction: column; gap: .1rem; background: var(--ink); border: 3px solid var(--strike); border-radius: 8px; padding: .85rem .5rem .5rem; box-shadow: 6px 6px 0 var(--lane); z-index: 80; }
.nav__more:hover .nav__more-menu, .nav__more:focus-within .nav__more-menu { display: flex; }
.nav__more-menu .nav__link { padding: .55rem .65rem; border-radius: 6px; white-space: nowrap; }
.nav__more-menu .nav__link:last-child { background: none; color: var(--paper); border: 0; padding: .55rem .65rem; }
.nav__more-menu .nav__link:hover { background: rgba(255,255,255,.08); color: var(--strike); }

/* Offering / deal / amenity card photos (comic frames) */
.offering { overflow: hidden; }
.offering__media { position: relative; margin: -1.5rem -1.5rem 1rem; }
.offering__photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; border: 0; border-bottom: 3px solid var(--ink); border-radius: 0; }
.offering__badge { position: absolute; top: .7rem; left: .7rem; background: var(--strike); color: var(--ink); font-family: var(--font-display); padding: .15rem .7rem; border: 2px solid var(--ink); transform: rotate(-3deg); }
.offering__cta { color: var(--lane); font-family: var(--font-sub); font-size: .82rem; display: inline-block; margin-top: .5rem; }
.offering:nth-child(4n+3) .offering__cta, .offering:nth-child(4n) .offering__cta { color: var(--strike); }
.deal__media { margin: -1.5rem -1.5rem 1.1rem -2rem; overflow: hidden; border-bottom: 3px solid var(--ink); }
.deal__photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: var(--gap); }
.amenity { background: var(--paper); border: var(--border); border-radius: 8px; padding: 1.25rem 1.4rem; overflow: hidden; box-shadow: var(--shadow); }
.amenity:nth-child(3n+2) { background: var(--strike); }
.amenity:nth-child(3n) { background: var(--pop); color: var(--paper); }
.amenity:nth-child(3n) .amenity__name, .amenity:nth-child(3n) .amenity__desc { color: var(--paper); }
.amenity__name { font-family: var(--font-sub); font-size: 1.05rem; color: var(--ink); margin: 0 0 .4rem; }
.amenity__desc { color: var(--body); font-size: .9rem; margin: 0; }
.amenity__media { margin: -1.25rem -1.4rem 1rem; overflow: hidden; border-bottom: 3px solid var(--ink); }
.amenity__photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }

/* Parties — featured-package hero (comic burst price tag) */
.parties-feature { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .parties-feature { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.parties-feature__media { position: relative; border: var(--border); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-yellow); }
.parties-feature__photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.parties-feature__price { position: absolute; top: 1rem; right: 1rem; width: 7rem; height: 7rem; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--strike); color: var(--lane); -webkit-text-stroke: .5px var(--ink); text-align: center; line-height: 1; transform: rotate(-8deg); filter: drop-shadow(5px 5px 0 var(--ink)); clip-path: polygon(50% 0%, 61% 11%, 76% 8%, 78% 24%, 92% 30%, 84% 43%, 95% 55%, 82% 62%, 86% 78%, 70% 78%, 62% 92%, 50% 82%, 38% 92%, 30% 78%, 14% 78%, 18% 62%, 5% 55%, 16% 43%, 8% 30%, 22% 24%, 24% 8%, 39% 11%); }
.parties-feature__price strong { font-family: var(--font-display); font-size: 1.7rem; }
.parties-feature__price small { font-size: .68rem; font-family: var(--font-sub); }
.parties-feature__ribbon { position: absolute; left: 0; bottom: 1.5rem; background: var(--lane); color: var(--paper); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: .95rem; padding: .5rem 1.7rem .5rem 1.1rem; border: 2px solid var(--ink); border-left: 0; clip-path: polygon(0 0, 100% 0, calc(100% - .8rem) 50%, 100% 100%, 0 100%); }
.parties-feature__lead { color: var(--body); font-size: 1.08rem; line-height: 1.6; margin: 1.1rem 0 1.6rem; max-width: 46ch; }
.parties-feature__list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .9rem; }
.parties-feature__list li { position: relative; padding-left: 2rem; color: var(--ink); font-weight: 700; }
.parties-feature__list li::before { content: "\2605"; position: absolute; left: 0; color: var(--lane); font-weight: 800; }
.parties-feature__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.parties-feature__deskcta { cursor: default; }
.party__readmore { margin-top: .5rem; background: none; border: 0; padding: 0; color: var(--lane); font-family: var(--font-sub); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.party-list__more { text-align: center; margin-top: 1.75rem; }
.party__detail { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.party.is-expanded .party__detail { -webkit-line-clamp: unset; }

/* Cosmic — neon banner (dark; overrides the old photo grid) */
.section--cosmic { position: relative; overflow: hidden; padding: 0; background: var(--ink); }
.cosmic__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; z-index: 0; }
.section--cosmic::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.55) 45%, rgba(42,109,244,.3) 100%); z-index: 1; }
.cosmic__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 1.25rem 2rem; padding: 3.5rem 1.5rem; align-items: start; }
.cosmic__lead { grid-column: 1; grid-row: 1; }
.cosmic__action { grid-column: 2; grid-row: 1; text-align: right; justify-self: end; }
.cosmic__facts { grid-column: 1 / -1; grid-row: 2; display: flex; flex-wrap: wrap; gap: 1rem 3rem; margin: 1.5rem 0 0; }
.cosmic__eyebrow { color: var(--strike); font-family: var(--font-sub); text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; margin: 0 0 .6rem; }
.cosmic__mark { margin: 0; line-height: .85; font-family: var(--font-display); }
.cosmic__mark-top { display: block; font-size: clamp(2.8rem, 8.5vw, 6rem); }
.cosmic__letter { text-shadow: 4px 4px 0 var(--ink); -webkit-text-stroke: 1px var(--ink); }
.cosmic__letter:nth-child(1) { color: #ff2d9b; }
.cosmic__letter:nth-child(2) { color: var(--lane); }
.cosmic__letter:nth-child(3) { color: var(--strike); }
.cosmic__letter:nth-child(4) { color: #4ade5b; }
.cosmic__letter:nth-child(5) { color: var(--pop); }
.cosmic__letter:nth-child(6) { color: #a855f7; }
.cosmic__mark-bottom { display: block; color: var(--paper); font-size: clamp(1.9rem, 5.5vw, 3.8rem); letter-spacing: .1em; text-shadow: 3px 3px 0 var(--lane); }
.cosmic__sub { color: var(--paper-soft); font-family: var(--font-sub); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; margin: .8rem 0 0; }
.cosmic__facts dt { color: var(--strike); font-family: var(--font-sub); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; margin: 0 0 .3rem; }
.cosmic__facts dd { color: var(--paper); font-weight: 800; font-size: 1.05rem; margin: 0; }
@media (max-width: 760px) { .cosmic__inner { grid-template-columns: 1fr; } .cosmic__action { grid-column: 1; grid-row: 3; text-align: left; justify-self: start; margin-top: 1rem; } }

/* Bar & lounge masonry (dark section, paper-framed photos) */
.barlounge__photos { display: block; column-count: 3; column-gap: var(--gap); grid-template-columns: none; margin-top: 1.5rem; }
.barlounge__photos[data-count="1"] { column-count: 1; }
.barlounge__photos[data-count="2"] { column-count: 2; }
.barlounge__photo-item { position: relative; break-inside: avoid; margin: 0 0 var(--gap); border: 3px solid var(--paper); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-red); display: block; }
.barlounge__photo-item .barlounge__photo { width: 100%; height: auto; aspect-ratio: auto; border: 0; border-radius: 0; box-shadow: none; display: block; }
.barlounge__cap { position: absolute; inset: auto 0 0 0; margin: 0; padding: .7rem .8rem; color: #fff; font-size: .82rem; font-family: var(--font-sub); background: linear-gradient(transparent, rgba(0,0,0,.82)); opacity: 0; transition: opacity .3s ease; }
.barlounge__photo-item:hover .barlounge__cap { opacity: 1; }
@media (max-width: 600px) { .barlounge__photos { column-count: 2; } .barlounge__photos[data-count="1"] { column-count: 1; } }

/* Gallery lightbox figures + overlay (light section, comic frames) */
.gallery__item { position: relative; margin: 0; border: var(--border); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); cursor: pointer; }
.gallery__cap { position: absolute; inset: auto 0 0 0; margin: 0; padding: .7rem .8rem; color: #fff; font-size: .82rem; font-family: var(--font-sub); background: linear-gradient(transparent, rgba(0,0,0,.82)); opacity: 0; transition: opacity .3s ease; }
.gallery__item:hover .gallery__cap { opacity: 1; }
.gallery__item:hover .gallery__photo { transform: scale(1.04); }
.lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(10,10,10,.95); align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 82vh; border: 4px solid var(--paper); }
.lightbox__btn { position: absolute; background: var(--strike); color: var(--ink); border: 3px solid var(--ink); font-size: 1.6rem; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; }
.lightbox__btn--close { top: 1.25rem; right: 1.25rem; }
.lightbox__btn--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__cap { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: var(--paper); font-family: var(--font-sub); }

/* Find Us (the cta section is dark ink → paper cards with comic shadow) */
.findus { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: left; }
@media (min-width: 920px) { .findus { grid-template-columns: 1.3fr 1fr; align-items: start; } }
.findus__map { border: 3px solid var(--paper); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-red); }
.findus__map img { width: 100%; max-width: none; display: block; aspect-ratio: 4/5; object-fit: cover; }
.findus__cards { display: grid; gap: 1.25rem; }
.findus__card { background: var(--paper); border: var(--border); border-radius: 8px; padding: 1.4rem 1.5rem; color: var(--ink); box-shadow: var(--shadow-yellow); }
.findus__card-title { font-family: var(--font-sub); font-size: 1.1rem; color: var(--lane); margin: 0 0 .7rem; }
.findus__address { color: var(--ink); margin: 0 0 .5rem; line-height: 1.5; }
.findus__note--link { color: var(--lane); font-family: var(--font-sub); font-size: .82rem; }
.findus__hours { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.findus__hours-row { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 2px dashed var(--ink); padding-bottom: .45rem; color: var(--ink); font-size: .92rem; }
.findus__hours-row span:last-child { font-weight: 800; }
.findus__contact { display: flex; justify-content: space-between; gap: 1rem; margin: 0 0 .5rem; color: var(--muted); }
.findus__contact a { color: var(--lane); font-weight: 800; }

/* Footer logo + legal links */
.footer__brand-id { display: flex; align-items: center; gap: .7rem; }
.footer__social { display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; }
.footer__social a { color: var(--paper-dim); }
.footer__social a:hover { color: var(--strike); }
.footer__brand-id .footer__logo { width: 46px; height: 46px; }
.footer__legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__powered { text-align: center; font-size: .72rem; margin: 1.5rem 0 0; opacity: .5; }
.footer__powered a { color: inherit; font-weight: 400; font-style: italic; text-decoration: none; }
.footer__powered a:hover { text-decoration: underline; }

/* ============================================================
   COMIC — hero STRIKE! burst + pins exploding outward (designer signature; comic-only markup).
   theme.js toggles .kapow on .hero-burst (click) → burst shakes + pins fly out + a POW! floaty.
   ============================================================ */
.hero-strike { position: absolute; top: 50%; right: 6%; transform: translateY(-50%); width: min(40vw, 560px); height: min(40vw, 560px); z-index: 3; pointer-events: none; }
@media (max-width: 900px) { .hero-strike { width: min(72vw, 320px); height: min(72vw, 320px); right: -6%; top: 40%; } }

/* Layered star (design: .hero-art) — yellow 32-point star behind, red 24-point star in
   front, "STRIKE!" text on top. Sized/inset exactly per the design source. */
/* display:block re-shows it — the canonical template hides .hero-burst (a JS-only affordance) by default */
.hero-strike .hero-burst { display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 72%; aspect-ratio: 1; border: 0; padding: 0; background: none; cursor: pointer; pointer-events: auto; z-index: 2; }
.hero-strike .burst-bg { position: absolute; inset: 0; background: var(--strike); clip-path: polygon(50% 0%, 58% 12%, 70% 4%, 72% 18%, 86% 14%, 82% 28%, 96% 28%, 88% 40%, 100% 48%, 88% 56%, 96% 70%, 82% 70%, 86% 84%, 72% 80%, 70% 94%, 58% 86%, 50% 100%, 42% 86%, 30% 94%, 28% 80%, 14% 84%, 18% 70%, 4% 70%, 12% 56%, 0% 48%, 12% 40%, 4% 28%, 18% 28%, 14% 14%, 28% 18%, 30% 4%, 42% 12%); filter: drop-shadow(8px 8px 0 var(--ink)); transition: transform .3s cubic-bezier(.5,-.5,.5,1.5); }
.hero-strike .burst-inner { position: absolute; inset: 14%; background: var(--lane); clip-path: polygon(50% 0%, 60% 14%, 75% 8%, 75% 22%, 92% 22%, 86% 36%, 100% 50%, 86% 64%, 92% 78%, 75% 78%, 75% 92%, 60% 86%, 50% 100%, 40% 86%, 25% 92%, 25% 78%, 8% 78%, 14% 64%, 0% 50%, 14% 36%, 8% 22%, 25% 22%, 25% 8%, 40% 14%); }
.hero-strike .burst-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 400; font-size: clamp(3.5rem, 5.5vw, 5.75rem); letter-spacing: .04em; color: var(--strike); -webkit-text-stroke: 3px var(--ink); text-shadow: 6px 6px 0 var(--ink); transform: rotate(-6deg); transition: transform .28s cubic-bezier(.5,-.4,.5,1.6); pointer-events: none; z-index: 3; }
.hero-strike .hero-burst:hover .burst-bg { transform: scale(1.05) rotate(8deg); }
.hero-strike .hero-burst:hover .burst-text { transform: rotate(-3deg) scale(1.18); }
.hero-strike .hero-burst.kapow .burst-bg { animation: comic-strike-kapow .6s ease-out; }
.hero-strike .hero-burst.kapow .burst-text { animation: comic-strike-textpop .5s ease-out; }

/* Six pins radiating outward — per-pin sizes from the design (115–150px on a 560px
   stage → % of stage so they track the responsive burst). */
.hero-strike .h-pin { position: absolute; transform-origin: 50% 80%; transition: transform .55s cubic-bezier(.5,-.4,.5,1.4); filter: drop-shadow(5px 5px 0 var(--ink)); }
.hero-strike .the-pin { height: 100%; width: auto; display: block; overflow: visible; }
.hero-strike .pin-body { fill: #fff; stroke: var(--ink); stroke-width: 9; stroke-linejoin: round; }
.hero-strike .pin-stripe { fill: var(--lane); stroke: var(--ink); stroke-width: 5; stroke-linejoin: round; }
.hero-strike .pin-shine { fill: rgba(10,10,10,.08); }
.hero-strike .h-pin.p1 { top: 2%; left: 8%; height: 20.5%; transform: rotate(-55deg); }
.hero-strike .h-pin.p2 { top: -4%; right: 12%; height: 24%; transform: rotate(38deg); }
.hero-strike .h-pin.p3 { top: 38%; right: -2%; height: 27%; transform: rotate(92deg); }
.hero-strike .h-pin.p4 { bottom: 4%; right: 18%; height: 22.5%; transform: rotate(148deg); }
.hero-strike .h-pin.p5 { bottom: 8%; left: 8%; height: 23%; transform: rotate(-140deg); }
.hero-strike .h-pin.p6 { top: 36%; left: -3%; height: 25%; transform: rotate(-92deg); }
.hero-strike .hero-burst:hover ~ .h-pin.p1 { transform: rotate(-65deg) translate(-22px,-16px); }
.hero-strike .hero-burst:hover ~ .h-pin.p2 { transform: rotate(50deg) translate(22px,-18px); }
.hero-strike .hero-burst:hover ~ .h-pin.p3 { transform: rotate(102deg) translate(20px,0); }
.hero-strike .hero-burst:hover ~ .h-pin.p4 { transform: rotate(160deg) translate(20px,14px); }
.hero-strike .hero-burst:hover ~ .h-pin.p5 { transform: rotate(-152deg) translate(-22px,14px); }
.hero-strike .hero-burst:hover ~ .h-pin.p6 { transform: rotate(-100deg) translate(-22px,0); }
.hero-strike .hero-burst.kapow ~ .h-pin.p1 { animation: fly-tl .7s ease-out; }
.hero-strike .hero-burst.kapow ~ .h-pin.p2 { animation: fly-tr .7s ease-out; }
.hero-strike .hero-burst.kapow ~ .h-pin.p3 { animation: fly-r .7s ease-out; }
.hero-strike .hero-burst.kapow ~ .h-pin.p4 { animation: fly-br .7s ease-out; }
.hero-strike .hero-burst.kapow ~ .h-pin.p5 { animation: fly-bl .7s ease-out; }
.hero-strike .hero-burst.kapow ~ .h-pin.p6 { animation: fly-l .7s ease-out; }
@keyframes fly-tl { 0% { transform: rotate(-55deg); } 45% { transform: rotate(-120deg) translate(-60px,-50px) scale(1.08); } 100% { transform: rotate(-55deg); } }
@keyframes fly-tr { 0% { transform: rotate(38deg); } 45% { transform: rotate(110deg) translate(60px,-50px) scale(1.08); } 100% { transform: rotate(38deg); } }
@keyframes fly-r { 0% { transform: rotate(92deg); } 45% { transform: rotate(150deg) translate(70px,10px) scale(1.08); } 100% { transform: rotate(92deg); } }
@keyframes fly-br { 0% { transform: rotate(148deg); } 45% { transform: rotate(220deg) translate(60px,50px) scale(1.08); } 100% { transform: rotate(148deg); } }
@keyframes fly-bl { 0% { transform: rotate(-140deg); } 45% { transform: rotate(-220deg) translate(-60px,50px) scale(1.08); } 100% { transform: rotate(-140deg); } }
@keyframes fly-l { 0% { transform: rotate(-92deg); } 45% { transform: rotate(-160deg) translate(-70px,10px) scale(1.08); } 100% { transform: rotate(-92deg); } }
@keyframes comic-strike-kapow { 0% { transform: scale(1) rotate(0); } 30% { transform: scale(1.3) rotate(20deg); } 60% { transform: scale(.9) rotate(-10deg); } 100% { transform: scale(1) rotate(0); } }
@keyframes comic-strike-textpop { 0% { transform: rotate(-6deg) scale(1); } 35% { transform: rotate(-2deg) scale(1.35); } 65% { transform: rotate(-8deg) scale(.95); } 100% { transform: rotate(-6deg) scale(1); } }

/* Compact mobile header — final overrides (win over the later-appended base rules) */
@media (max-width: 1024px) {
  .section--header .header__inner { flex-wrap: nowrap; align-items: center; gap: .6rem; }
  .section--header .brand { flex: 1 1 auto; min-width: 0; align-items: center; gap: .6rem; }
  .section--header .brand__logo { width: 48px; height: 48px; }
  .section--header .brand__text { min-width: 0; gap: .05rem; }
  .section--header .brand__status { display: inline-flex; font-size: .64rem; }
  .section--header .brand__name { min-width: 0; font-size: 1.1rem; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .section--header .brand__city { display: block; font-size: .68rem; opacity: .85; }
  .section--header .header__utility { display: none; }
  .section--header .nav-toggle { flex: none; margin-left: 0; }
  /* Flatten the desktop "More" dropdown into the drawer — all items at one level */
  .section--header .nav { padding-top: 10px; }
  .section--header.nav-open .nav-toggle { z-index: 80; }
  .section--header .nav__head { display: flex; align-items: center; gap: .7rem; width: 100%; margin: 10px 0 .6rem; padding: 0 2.75rem .85rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .section--header .nav__head-logo { width: 44px; height: 44px; flex: none; }
  .section--header .nav__head-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
  .section--header .nav__head-name { font-weight: 700; font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .section--header .nav__head-status { font-size: .68rem; }
  .section--header .nav__more { display: block; width: 100%; }
  .section--header .nav__more-toggle { display: none; }
  .section--header .nav__more-menu { display: flex; flex-direction: column; position: static; width: 100%; min-width: 0; padding: 0; margin: 0; border: 0; background: none; box-shadow: none; gap: 0; }
  .section--header .nav__more-menu .nav__link { padding: .75rem 0; font-size: 1.15rem; width: 100%; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section--header .nav__more-menu .nav__link:hover { background: none; }
}
.footer__legal-links a { color: var(--paper-dim); font-weight: 700; }
.footer__legal-links a:hover { color: var(--strike); }

/* Hide the status placeholder until the client fills it */
[data-hours-status]:empty { display: none; }

/* ============================================================
   HERO HEADLINE — match the design (comic.html .hero-title):
   base = CREAM with 3px ink stroke + layered ink/red hard
   shadows, rotated -2deg; the emphasis (em) = RED block line,
   ink stroke + ink shadow, rotated +1deg and nudged right.
   NB: the design's token names invert ours (its --lane is cream,
   its --strike is red) — the original port swapped the colors,
   yielding a red base + yellow em. Foreground fills only.
   ============================================================ */
.hero__title { color: var(--paper); -webkit-text-stroke: 3px var(--ink); paint-order: stroke fill;
  text-shadow: 8px 8px 0 var(--ink), 8px 8px 0 var(--lane), 9px 9px 0 var(--ink);
  font-size: clamp(3.25rem, 10vw, 8rem); line-height: .85; transform: rotate(-2deg); }
.hero__title em { display: block; font-style: normal; color: var(--lane); -webkit-text-fill-color: var(--lane);
  -webkit-text-stroke: 3px var(--ink); text-shadow: 8px 8px 0 var(--ink);
  transform: rotate(1deg) translateX(clamp(12px, 3vw, 40px)); }
@media (max-width: 700px) { .hero__title, .hero__title em { -webkit-text-stroke-width: 2px; text-shadow: 5px 5px 0 var(--ink); } }

/* Left-column pins swing OUT of the stage when rotated (origin 50% 80%) and were landing
   on the headline/sub/CTA copy. Pull them inboard; right-side pins can keep poking out. */
.hero-strike .h-pin.p1 { left: 20%; }
.hero-strike .h-pin.p5 { bottom: 14%; left: 18%; }
.hero-strike .h-pin.p6 { left: 12%; }

/* ============================================================
   Operator fixes (2026-07-02):
   1) Hero copy hugs the LEFT of the full container (the 640px
      cap on .hero__inner made the grid shrinkwrap + center it).
   2) Em treatment per background — an em must never inherit a
      shadow the same color as its own fill (red-on-red mud):
      paper sections → red em + ink shadow; gift-cards (red bg)
      → yellow em + ink shadow; CTA (ink bg) → cream em + red
      shadow beside the yellow base.
   ============================================================ */
.hero__inner { max-width: var(--maxw, 1200px); width: 100%; }
.hero__inner > * { max-width: 640px; }
.section__title em { color: var(--lane); text-shadow: 3px 3px 0 var(--ink); }
.section--giftcards .section__title em { color: var(--strike); text-shadow: 4px 4px 0 var(--ink); }
.section--cta .section__title em, .cta__title em { color: var(--paper); text-shadow: 5px 5px 0 var(--lane); }

/* Bigger brand logo (operator request 2026-07-02) — the 2-row header grid gives
   the brand column status+name+city of height, so the mark can fill it. */
.brand__logo { width: 56px; height: 56px; }
@media (min-width: 1025px) { .section--header .brand__logo { width: 68px; height: 68px; } }
@media (max-width: 700px) { .brand__logo { width: 42px; height: 42px; } }

/* Drawer consistency (operator fix 2026-07-02): the mobile .nav__link:last-child
   center/margin rule leaks onto the "And More" dropdown's last item (GALLERY) —
   keep dropdown items left-aligned like their siblings. */
@media (max-width: 1024px) {
  .section--header .nav__more-menu .nav__link:last-child { margin-top: 0; text-align: left; }
}

/* Powered-by line centers across the WHOLE page (it no longer sits in a .container). */
.footer__powered { width: 100%; padding: 0 1.5rem; }
