/* Maximus Comicshop v2 — modern app-like panels (ref. Nuvance) + nerd details */
:root {
  --page: #030407;
  --card: #0b0d14;
  --card-soft: #121520;
  --ink: #0d0e12;
  --text: #f2f2ee;
  --text-2: #aeb2be;
  --gray: #80848f;
  --line: rgba(255, 255, 255, .09);
  --blue-soft: #7f97ff;

  --night-0: #04050a;
  --night-1: #0a1036;
  --electric: #2a4cf0;
  --gold: #e2b23c;
  --gold-hi: #f5cf5a;
  --red: #d1293d;

  --f: "Inter Tight", "Segoe UI", system-ui, sans-serif;
  --f-comic: "Big Shoulders Display", Impact, sans-serif;

  --maxw: 1320px;
  --edge: clamp(10px, 1.4vw, 20px);
  --pad: clamp(1.25rem, .6rem + 3vw, 4.5rem);
  --r-panel: clamp(22px, 1rem + 1.2vw, 36px);
  --r-card: 24px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --grad-night:
    radial-gradient(120% 90% at 85% 110%, rgba(42, 76, 240, .75) 0%, rgba(42, 76, 240, 0) 55%),
    radial-gradient(60% 50% at 70% 20%, rgba(226, 178, 60, .16) 0%, rgba(226, 178, 60, 0) 60%),
    linear-gradient(165deg, var(--night-0) 0%, #060a22 45%, var(--night-1) 100%);
}

:root { color-scheme: dark only; }
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--f);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-weight: 500; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
section[id], footer { scroll-margin-top: 16px; }

.skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--gold); color: var(--ink); padding: .6rem 1rem; font-weight: 600; border-radius: 999px; }
.skip:focus { top: 1rem; }

.page {
  width: min(var(--maxw), 100% - var(--edge) * 2);
  margin-inline: auto;
  padding-block: var(--edge) 0;
  display: grid;
  gap: var(--edge);
}
.page > * { min-width: 0; }

/* ---------- Type ---------- */
.display {
  font-size: clamp(2.7rem, 1.2rem + 5vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(2rem, 1.1rem + 2.8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(226, 178, 60, .18); flex: none; }
.eyebrow-dark { color: rgba(255, 255, 255, .72); }
.eyebrow-dark::before { background: var(--gold); box-shadow: 0 0 0 4px rgba(226, 178, 60, .18); }

.stars { color: var(--gold); letter-spacing: .08em; }
.chev { display: inline-block; margin-left: .35rem; transition: transform .2s var(--ease); font-weight: 400; }

.text-link { font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: .25em; text-decoration-color: rgba(226, 178, 60, .55); }
.text-link:hover { text-decoration-color: var(--gold-hi); }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: .7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.pill:hover { transform: translateY(-2px); }
.pill:hover .chev { transform: translateX(3px); }
.pill-sm { min-height: 42px; padding: .5rem 1.1rem; font-size: .95rem; }
.pill-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(226, 178, 60, .7); }
.pill-gold:hover { background: var(--gold-hi); box-shadow: 0 14px 36px -10px rgba(245, 207, 90, .85); }
.pill-glass { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .22); backdrop-filter: blur(10px); }
.pill-glass:hover { background: rgba(255, 255, 255, .16); }
.pill-outline { color: #fff; border-color: rgba(255, 255, 255, .35); }
.pill-outline:hover { background: #fff; color: var(--ink); }
.pill-dark { background: #fff; color: var(--ink); }
.pill-dark:hover { background: #e9e9e4; box-shadow: 0 12px 30px -12px rgba(255, 255, 255, .35); }
.pill-ink { background: var(--electric); color: #fff; box-shadow: 0 10px 30px -10px rgba(42, 76, 240, .8); }
.pill-ink:hover { background: #3a5bff; }
.pill-block { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; }

/* ---------- Panels ---------- */
.panel-dark {
  position: relative; overflow: hidden;
  border-radius: var(--r-panel);
  background: var(--grad-night);
  color: #fff;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.panel-dark::before {
  /* halftone dots, fading out toward the top-left */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, .16) 1px, transparent 1.6px) 0 0 / 14px 14px;
  -webkit-mask-image: radial-gradient(90% 80% at 85% 90%, #000 0%, transparent 70%);
          mask-image: radial-gradient(90% 80% at 85% 90%, #000 0%, transparent 70%);
}
.block {
  border-radius: var(--r-panel);
  background: var(--card);
  border: 1px solid var(--line);
  padding: var(--pad);
}

/* ---------- Glass ---------- */
.glass {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .55);
}

/* ---------- HERO ---------- */
.hero { padding: clamp(1rem, .6rem + 1.4vw, 1.75rem) var(--pad) var(--pad); }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; font-weight: 500; font-size: 1.1rem; letter-spacing: -.02em; }
.brand-hero { gap: 1rem; font-size: clamp(1.35rem, 1rem + 1.1vw, 2rem); letter-spacing: -.035em; }
.brand.brand-hero img { width: clamp(56px, 3rem + 2.6vw, 84px); height: auto; aspect-ratio: 1; box-shadow: 0 0 0 2px rgba(226, 178, 60, .45), 0 0 34px rgba(226, 178, 60, .35); }
.brand-hero b { color: var(--gold-hi); }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand b { font-weight: 700; }
.brand span { white-space: nowrap; }
.eyebrow { align-items: flex-start; }
.eyebrow::before { margin-top: .5em; }
.nav-links { display: flex; gap: 1.75rem; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: .95rem; color: rgba(255, 255, 255, .72); transition: color .15s; }
.nav-links a:hover { color: #fff; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: center;
  padding-top: clamp(2.5rem, 1rem + 5vw, 5.5rem);
}
.hero-copy .display { margin-bottom: 1.4rem; }
.hero-lede { font-size: clamp(1.05rem, .95rem + .4vw, 1.25rem); color: rgba(255, 255, 255, .72); max-width: 32rem; margin-bottom: 2rem; }
.hero-rating { display: inline-flex; align-items: center; gap: .7rem; margin-top: 2.2rem; text-decoration: none; font-size: .95rem; color: rgba(255, 255, 255, .75); }
.hero-rating b { color: #fff; }

.hero-visual { position: relative; padding: 2rem 1.5rem 3rem 0; }
.hero-photo {
  margin: 0 0 0 auto; width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .12);
  transform: rotate(2deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Hours card shaped like the bat symbol: cowl ears on top, scalloped wings below (path drawn in main.js) */
.glass-hours {
  --ears: 22px;
  --wings: 30px;
  position: absolute; left: 0; bottom: 4.5rem; isolation: isolate;
  display: grid; gap: .15rem; min-width: 230px;
  padding: calc(1rem + var(--ears)) 1.3rem calc(.9rem + var(--wings));
  color: #fff;
}
.bat-shape {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; overflow: visible;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .6)) drop-shadow(0 0 18px rgba(226, 178, 60, .12));
}
.bat-shape path { fill: url(#batFill); stroke: rgba(255, 255, 255, .3); stroke-width: 1.2; stroke-linejoin: round; }
.glass-k { font-size: .8rem; color: rgba(255, 255, 255, .7); }
.glass-v { font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em; }
.sr-defs { position: absolute; }
.nowrap { white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
/* A week of bat-signals: lit for open days, dark for Sunday, glowing on today */
.bat-week { list-style: none; margin: .7rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bat-week li { display: grid; justify-items: center; gap: .3rem; }
.bat-week svg { width: 100%; max-width: 30px; transform-origin: center; aspect-ratio: 84 / 48; fill: var(--gold-hi); filter: drop-shadow(0 0 5px rgba(245, 207, 90, .45)); }
.bat-week span { font-size: .68rem; font-weight: 600; line-height: 1; color: rgba(255, 255, 255, .75); }
.bat-week li.off svg { fill: transparent; stroke: rgba(255, 255, 255, .35); stroke-width: 2.5; filter: none; }
.bat-week li.off span { color: rgba(255, 255, 255, .35); }
.bat-week li.is-today span { color: var(--gold-hi); }
.bat-week li.is-today:not(.off) svg { filter: drop-shadow(0 0 8px rgba(245, 207, 90, .95)); }
@media (prefers-reduced-motion: no-preference) {
  .bat-week li.is-today:not(.off) svg { animation: bat-signal 2.4s ease-in-out infinite; }
}
@keyframes bat-signal { 50% { transform: scale(1.14); filter: drop-shadow(0 0 12px rgba(245, 207, 90, 1)); } }
.glass-brand { position: absolute; right: -.25rem; top: 0; padding: .8rem 1rem; width: 210px; }
.glass-brand img { width: 100%; height: auto; }

.burst { position: absolute; pointer-events: none; overflow: visible; }
.burst polygon { fill: var(--red); stroke: var(--ink); stroke-width: 5; stroke-linejoin: round; }
.burst text { font-family: var(--f-comic); font-weight: 900; font-size: 50px; fill: var(--gold-hi); stroke: var(--ink); stroke-width: 3px; paint-order: stroke; }
.burst-hero { width: 118px; right: 1.5rem; bottom: .5rem; transform: rotate(-10deg); }

@media (prefers-reduced-motion: no-preference) {
  .float-a { animation: float 7s ease-in-out infinite; }
  .float-b { animation: float 8s ease-in-out -3s infinite; }
  .burst-hero { animation: wobble 5s ease-in-out infinite; }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes wobble { 0%, 100% { transform: rotate(-10deg) scale(1); } 50% { transform: rotate(-4deg) scale(1.06); } }

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden; border-radius: 999px; background: var(--card); border: 1px solid var(--line); color: #fff;
  padding-block: .8rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-item { display: inline-flex; align-items: center; gap: .7rem; padding-inline: 1.4rem; font-weight: 500; font-size: 1.05rem; letter-spacing: -.01em; white-space: nowrap; }
.mq-item svg { width: 40px; height: 40px; flex: none; }
.mq-sep { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .7fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: end; }
.statement {
  font-size: clamp(1.7rem, 1rem + 2.3vw, 3.1rem);
  line-height: 1.12; letter-spacing: -.035em; font-weight: 500;
}
.statement span { color: var(--gray); }
.person { margin: 0; }
.person-photo { border-radius: 22px; overflow: hidden; aspect-ratio: 1; background: var(--card-soft); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person figcaption { display: grid; margin-top: .9rem; }
.person b { font-weight: 600; font-size: 1.2rem; letter-spacing: -.02em; }
.person span { color: var(--gray); font-size: .95rem; }

/* Stats as a comic strip: ink-bordered panels, caption boxes, one comic device per panel */
.stats { list-style: none; margin: clamp(3rem, 2rem + 3vw, 5rem) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  --accent: var(--gold);
  --tilt: -1deg;
  position: relative;
  min-height: 250px;
  padding: 2rem 1.1rem 1.1rem;
  display: grid; grid-template-rows: 1fr auto; justify-items: center; align-items: center; text-align: center;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 38%, transparent) 1.2px, transparent 1.8px) 0 0 / 9px 9px,
    radial-gradient(120% 90% at 50% 45%, color-mix(in srgb, var(--accent) 22%, #10131d) 0%, #0d1019 70%);
  border: 3px solid #f2f2ee;
  border-radius: 6px;
  box-shadow: 6px 6px 0 var(--accent);
  rotate: var(--tilt);
  transition: rotate .35s var(--ease), box-shadow .35s var(--ease), translate .35s var(--ease);
}
.stat:hover { rotate: 0deg; translate: -3px -3px; box-shadow: 9px 9px 0 var(--accent); }
.stat-stars { --accent: #3a5bff; --tilt: -1.4deg; }
.stat-balloon { --accent: var(--gold); --tilt: .9deg; }
.stat-pow { --accent: var(--red); --tilt: -.8deg; }
.stat-issue { --accent: #f2f2ee; --tilt: 1.2deg; }

.cap {
  position: absolute; top: -14px; left: 12px; right: auto; max-width: calc(100% - 24px);
  padding: .3rem .6rem .25rem;
  background: var(--gold-hi); color: var(--ink);
  border: 2px solid var(--ink);
  font-size: .8rem; font-weight: 700; line-height: 1.2; text-align: left;
  rotate: -2deg;
  box-shadow: 2px 2px 0 var(--ink);
}
.stat-art { position: relative; display: grid; place-items: center; min-height: 130px; width: 100%; }
.stat b {
  position: relative;
  font-family: var(--f-comic); font-weight: 900; line-height: .9; letter-spacing: 0;
  font-size: clamp(3.4rem, 2.2rem + 2.8vw, 5.4rem);
  color: #fff;
  text-shadow: 3px 3px 0 #000, 5px 5px 0 var(--accent);
}
.stat-sub { position: relative; font-size: .85rem; color: #dfe1e8; line-height: 1.3; padding: .2rem .55rem; background: rgba(5, 6, 10, .78); border-radius: 4px; }

/* 5,0: stars under the number */
.stat-rating { display: block; margin-top: .5rem; color: var(--gold-hi); font-size: 1.15rem; letter-spacing: .15em; text-shadow: 2px 2px 0 #000; }
.stat-stars .stat-art { align-content: center; }

/* 33: speech balloon */
.num-balloon {
  position: relative; display: grid; place-items: center;
  min-width: 128px; padding: .7rem 1.6rem .55rem;
  background: #f2f2ee; border: 3px solid #000; border-radius: 50%;
}
.num-balloon::after {
  content: ""; position: absolute; left: 24%; bottom: -20px; width: 30px; height: 24px;
  background: #f2f2ee; clip-path: polygon(0 0, 100% 0, 8% 100%);
  filter: drop-shadow(-3px 0 0 #000) drop-shadow(0 3px 0 #000);
}
.stat-balloon b { color: var(--ink); text-shadow: 3px 3px 0 var(--gold); }

/* 5.800+: POW burst */
.num-burst { position: absolute; inset: 50% auto auto 50%; width: min(100%, 250px); height: 120%; translate: -50% -50%; overflow: visible; }
.num-burst polygon { fill: var(--red); stroke: #000; stroke-width: 6; stroke-linejoin: round; }
.stat-pow b { color: var(--gold-hi); text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000; font-size: clamp(2.8rem, 1.9rem + 2.2vw, 4.4rem); }

/* 6: comic-cover issue box */
.issue-box {
  display: grid; justify-items: center; gap: .1rem;
  padding: .55rem 1.3rem .75rem;
  background: #f2f2ee; color: var(--ink);
  border: 3px solid #000; box-shadow: 5px 5px 0 var(--gold);
}
.issue-box small { font-family: var(--f-comic); font-weight: 900; font-size: 1.2rem; line-height: 1; }
.stat-issue b { color: var(--ink); text-shadow: 3px 3px 0 var(--gold); }

@media (prefers-reduced-motion: no-preference) {
  .js .stat.reveal { transition: opacity .8s var(--ease) var(--d, 0ms), transform .8s var(--ease) var(--d, 0ms), rotate .35s var(--ease), translate .35s var(--ease), box-shadow .35s var(--ease); }
  .js .stat.reveal.is-in .num-burst { animation: burst-pop .6s cubic-bezier(.3, 1.7, .5, 1) .25s both; }
}
@keyframes burst-pop { from { scale: .3; rotate: -25deg; } to { scale: 1; rotate: 0deg; } }

/* ---------- SECTION HEAD ---------- */
.head-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 1.5rem 4rem; align-items: end; margin-bottom: clamp(2rem, 1.2rem + 2.5vw, 3.5rem); }
.head-split .h2 { max-width: 16ch; }
.head-note { color: var(--text-2); max-width: 30rem; margin: 0; justify-self: end; }
.head-split > .pill { justify-self: end; }

/* ---------- BENTO ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: 14px; }
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card-soft); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 10px; text-decoration: none; color: var(--text);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(226, 178, 60, .25); border-color: rgba(226, 178, 60, .35); }
.card:hover .chev { transform: translateX(3px); }
.card-img { margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; background: #1a1d28; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.img-top img { object-position: center 10%; }
.card-body { padding: 1rem .6rem .6rem; display: grid; gap: .35rem; }
.card-body h3 { font-size: 1.3rem; letter-spacing: -.03em; line-height: 1.15; }
.card-body p { color: var(--text-2); font-size: .95rem; line-height: 1.5; margin: 0; }
.link { font-weight: 600; font-size: .95rem; margin-top: .4rem; color: var(--gold-hi); }

.tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .8rem .35rem .4rem; border-radius: 999px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px);
  font-size: .85rem; font-weight: 600; color: var(--ink); border: 1px solid rgba(13, 14, 18, .08);
}
.tag svg { width: 24px; height: 24px; }
.tag:not(:has(svg)) { padding-left: .8rem; }
.tag-dark { background: rgba(5, 6, 10, .75); color: var(--gold-hi); border-color: rgba(255, 255, 255, .15); padding-left: .8rem; }

.card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: center; }
.card-wide .card-img { aspect-ratio: 16 / 7; }
.card-wide .card-body { padding: 1.5rem clamp(1rem, .5rem + 2vw, 2.5rem); }
.card-wide .card-body h3 { font-size: clamp(1.4rem, 1rem + 1vw, 2rem); }
/* Saga covers fanned out like comics spread on a table; they line up on hover */
.saga-shelf {
  margin: 0; border-radius: 16px; overflow: hidden;
  background:
    radial-gradient(circle, rgba(226, 178, 60, .16) 1.1px, transparent 1.7px) 0 0 / 10px 10px,
    radial-gradient(90% 90% at 50% 100%, rgba(42, 76, 240, .45), transparent 70%),
    #080a14;
  padding: 3.6rem 1.2rem 1.6rem;
}
.saga-covers {
  --w: clamp(92px, 7.5vw, 124px);
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; align-items: flex-end;
}
.saga-covers li {
  flex: none; width: var(--w);
  margin-inline: calc(var(--w) * -.16);
  rotate: calc((var(--n) - 2.5) * 5deg);
  translate: 0 calc(abs(var(--n) - 2.5) * 6px);
  transition: rotate .45s var(--ease), translate .45s var(--ease), margin .45s var(--ease);
  transition-delay: calc(var(--n) * 25ms);
}
.saga-covers img {
  width: 100%; height: auto; aspect-ratio: 400 / 572; object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .15), -8px 14px 22px rgba(0, 0, 0, .55);
}
.card-wide:hover .saga-covers li { rotate: 0deg; translate: 0 -6px; margin-inline: calc(var(--w) * -.06); }
.card-wide:hover .saga-covers li:nth-child(even) { translate: 0 4px; }
.card-feature { grid-row: span 2; background: var(--grad-night); border-color: rgba(255, 255, 255, .08); color: #fff; }
.card-feature .card-img { aspect-ratio: auto; flex: 1; min-height: 360px; background: #0b0d18; }
.card-feature .card-body h3 { font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem); }
.card-feature .card-body p { color: rgba(255, 255, 255, .72); }
.card-feature .link { color: var(--gold-hi); }
.card-feature:hover { box-shadow: 0 30px 70px -25px rgba(42, 76, 240, .55); }

/* ---------- BUY (plans) ---------- */
.buy { padding: var(--pad) var(--pad) calc(var(--pad) + clamp(230px, 20vw, 300px)); }
.buy > :not(.gotham) { position: relative; z-index: 1; }
.buy-head { text-align: center; display: grid; justify-items: center; margin-bottom: clamp(2rem, 1.2rem + 3vw, 3.75rem); }
.buy-head .h2 { max-width: 20ch; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: center; }
.plan {
  position: relative;
  border-radius: 26px; padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(20, 24, 44, .72), rgba(8, 10, 22, .78));
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
}
.plan-k { font-weight: 500; color: rgba(255, 255, 255, .75); margin-bottom: 1.2rem; }
.plan-v { font-size: clamp(1.9rem, 1.4rem + 1.2vw, 2.5rem); font-weight: 600; letter-spacing: -.04em; line-height: 1; margin-bottom: .35rem; }
.plan-sub { color: rgba(255, 255, 255, .6); font-size: .95rem; margin-bottom: 1.5rem; }
.checks { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .8rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; line-height: 1.4; }
/* bullets are tiny bats */
.checks li::before {
  content: ""; flex: none; width: 24px; height: 14px; margin-top: .3em;
  background: var(--gold-hi);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='8 26 84 48'%3E%3Cpath d='M50 36 L54 29 L57 38 C66 36 76 34 90 44 C84 46 82 52 84 58 C78 56 72 58 70 64 C66 58 60 58 57 62 C54 64 52 68 50 72 C48 68 46 64 43 62 C40 58 34 58 30 64 C28 58 22 56 16 58 C18 52 16 46 10 44 C24 34 34 36 43 38 L46 29 Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='8 26 84 48'%3E%3Cpath d='M50 36 L54 29 L57 38 C66 36 76 34 90 44 C84 46 82 52 84 58 C78 56 72 58 70 64 C66 58 60 58 57 62 C54 64 52 68 50 72 C48 68 46 64 43 62 C40 58 34 58 30 64 C28 58 22 56 16 58 C18 52 16 46 10 44 C24 34 34 36 43 38 L46 29 Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.plan-hl { background: #fff; color: var(--ink); border-color: #fff; padding-block: 2.25rem 1.9rem; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); }
.plan-hl .plan-k { color: var(--electric); }
.plan-hl .plan-sub { color: var(--gray); }
.plan-hl .checks li::before { background: var(--ink); }

/* card emblems */
.plan-emblem { position: absolute; top: 1.35rem; right: 1.35rem; }
.emblem-logo { width: 46px; height: 46px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(226, 178, 60, .4), 0 0 22px rgba(226, 178, 60, .3); }
.emblem-signal {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: radial-gradient(circle, #fff6c8 0%, var(--gold-hi) 55%, var(--gold) 100%);
  box-shadow: 0 0 0 3px var(--ink), 0 0 28px rgba(245, 207, 90, .75);
}
.emblem-signal svg { width: 40px; height: 23px; fill: var(--ink); }
.emblem-pow { width: 70px; top: .9rem; right: .9rem; rotate: 10deg; overflow: visible; }
.emblem-pow polygon { fill: var(--red); stroke: #000; stroke-width: 6; stroke-linejoin: round; }
.emblem-pow text { font-family: var(--f-comic); font-weight: 900; font-size: 54px; fill: var(--gold-hi); stroke: #000; stroke-width: 3px; paint-order: stroke; }

/* ---------- Gotham night: rain, skyline and a lightning strike that reveals Batman ---------- */
.gotham { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.sky-flash {
  position: absolute; inset: 0; opacity: 0;
  background:
    radial-gradient(55% 60% at 82% 88%, rgba(214, 226, 255, .9) 0%, rgba(140, 165, 255, .45) 35%, transparent 70%),
    linear-gradient(to top, rgba(160, 180, 255, .35), rgba(160, 180, 255, .08));
}
.rain {
  position: absolute; left: -10%; right: -10%; top: -160px; bottom: 0; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='160'%3E%3Cg stroke='%23a9bcff' stroke-opacity='.35' stroke-width='1'%3E%3Cpath d='M12 8l-5 26'/%3E%3Cpath d='M52 60l-5 26'/%3E%3Cpath d='M78 18l-4 20'/%3E%3Cpath d='M30 104l-5 26'/%3E%3Cpath d='M68 124l-4 20'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 90px 160px;
}
.bolt { position: absolute; right: 22%; bottom: clamp(90px, 8vw, 130px); width: clamp(60px, 6vw, 100px); height: clamp(200px, 19vw, 290px); overflow: visible; opacity: 0; }
.bolt path { fill: none; stroke: #f4f7ff; stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 6px #b9c8ff) drop-shadow(0 0 18px #6f8cff); stroke-dasharray: 700; stroke-dashoffset: 700; }
.bolt .bolt-branch { stroke-width: 2; }
.city { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: clamp(120px, 11vw, 170px); }
.city-b { fill: #03050d; }
.city-w { fill: var(--gold-hi); opacity: .45; }
.batman { position: absolute; right: 7%; bottom: 0; height: clamp(250px, 21vw, 320px); width: auto; aspect-ratio: 200 / 420; overflow: visible; }
.tower { fill: #02030a; }
.bat-fig { fill: #010208; stroke: rgba(200, 214, 255, .9); stroke-width: 1.4; stroke-linejoin: round; opacity: 0; }
.bat-eyes { fill: #fff; opacity: 0; filter: drop-shadow(0 0 3px #fff); }

@media (prefers-reduced-motion: no-preference) {
  .rain { animation: rain-fall .7s linear infinite; }
  .buy.strike .sky-flash { animation: sky-flash 2.6s ease-out both; }
  .buy.strike .bolt { animation: bolt-flicker 2.6s ease-out both; }
  .buy.strike .bolt path { animation: bolt-draw 2.6s ease-out both; }
  .buy.strike .bat-fig { animation: bat-reveal 2.6s ease-out both; }
  .buy.strike .bat-eyes { animation: bat-eyes 2.6s ease-out both; }
}
@media (prefers-reduced-motion: reduce) {
  .bat-fig { opacity: .85; stroke-opacity: .35; }
}
@keyframes rain-fall { to { transform: translate(-28px, 160px); } }
@keyframes sky-flash {
  0% { opacity: 0; } 3% { opacity: .95; } 7% { opacity: .12; } 11% { opacity: 1; }
  22% { opacity: .5; } 40% { opacity: .18; } 100% { opacity: 0; }
}
@keyframes bolt-flicker {
  0% { opacity: 1; } 6% { opacity: 1; } 8% { opacity: .15; } 11% { opacity: 1; }
  24% { opacity: .8; } 34% { opacity: 0; } 100% { opacity: 0; }
}
@keyframes bolt-draw { 0% { stroke-dashoffset: 700; } 5% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } }
@keyframes bat-reveal {
  0% { opacity: 0; } 3% { opacity: 1; } 7% { opacity: .25; } 11% { opacity: 1; }
  55% { opacity: 1; stroke-opacity: .55; } 100% { opacity: 0; stroke-opacity: 0; }
}
@keyframes bat-eyes {
  0%, 10% { opacity: 0; } 14% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; }
}

/* ---------- ART ---------- */
.art { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.art-img { position: relative; margin: 0; border-radius: 26px; overflow: visible; }
.art-img img { border-radius: 26px; width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; object-position: center 20%; background: #fff; box-shadow: 0 30px 70px -30px rgba(226, 178, 60, .35); }
.burst-art { width: 120px; right: -26px; top: -30px; transform: rotate(12deg); }
.art-copy .h2 { margin-bottom: 1.2rem; }
.art-copy > p { color: var(--text-2); max-width: 32rem; margin-bottom: 2rem; font-size: 1.1rem; }
.art-copy b { color: var(--text); font-weight: 600; }

/* ---------- EVENTS ---------- */
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.event { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 4.6; margin: 0; }
.event img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.event:hover img { transform: scale(1.05); }
.event::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 5, 10, .65), transparent 55%); pointer-events: none; }
.event-cap { position: absolute; z-index: 1; left: 12px; right: 12px; bottom: 12px; padding: 1rem 1.1rem; display: grid; gap: .25rem; border-radius: 18px; }
.event-cap b { font-weight: 600; font-size: 1.1rem; letter-spacing: -.02em; }
.event-cap span { font-size: .9rem; line-height: 1.45; color: rgba(255, 255, 255, .85); }

.timeline { margin-top: clamp(3rem, 2rem + 3vw, 5rem); }
.tl-scroll { overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
.tl-scroll::-webkit-scrollbar { display: none; }
.tl {
  --fill: 0%;
  list-style: none; margin: 0; padding: 0 0 .5rem;
  display: grid; grid-template-columns: repeat(8, minmax(150px, 1fr)); gap: 0;
  position: relative; min-width: 1100px;
}
.tl::before, .tl::after { content: ""; position: absolute; left: 0; top: 51px; height: 2px; border-radius: 2px; }
.tl::before { right: 0; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .22) 0 2px, transparent 2px 6px); }
.tl::after { width: var(--fill); background: var(--gold); transition: width .2s linear; }
.tl li { position: relative; display: grid; align-content: start; gap: .6rem; padding-right: 1rem; }
.tl-date { height: 32px; display: inline-flex; align-items: center; font-size: .85rem; font-weight: 600; color: var(--text-2); padding: .25rem .65rem; border: 1px solid var(--line); border-radius: 8px; justify-self: start; background: var(--card-soft); }
.tl-dot {
  margin-top: 0; width: 22px; height: 22px; border-radius: 50%; z-index: 1;
  background: var(--card); border: 2px solid rgba(255, 255, 255, .25);
  transition: background-color .3s, border-color .3s, transform .3s var(--ease);
}
.tl li.is-on .tl-dot {
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-6.5' fill='none' stroke='%230d0e12' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat;
  border-color: var(--gold); transform: scale(1.1);
}
.tl b { font-weight: 500; font-size: 1rem; line-height: 1.3; letter-spacing: -.01em; max-width: 13ch; }

/* ---------- REVIEWS ---------- */
.reviews-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.reviews-copy .h2 { margin-bottom: 1.2rem; max-width: 12ch; }
.reviews-score { font-size: 1.05rem; color: var(--text-2); }
.reviews-score b { color: var(--text); }
.carousel { position: relative; }
.quotes { display: grid; }
.quote {
  grid-area: 1 / 1;
  margin: 0; padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: var(--card-soft); border: 1px solid var(--line); border-radius: 28px;
  position: relative;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility .6s;
}
.quote::after {
  /* speech-balloon tail */
  content: ""; position: absolute; left: 48px; bottom: -14px; width: 28px; height: 16px;
  background: var(--card-soft); clip-path: polygon(0 0, 100% 0, 15% 100%);
}
.quote::before {
  content: ""; position: absolute; left: 47px; bottom: -16px; width: 30px; height: 17px;
  background: var(--line); clip-path: polygon(0 0, 100% 0, 15% 100%); z-index: -1;
}
.quote.is-active { opacity: 1; visibility: visible; transform: none; }
.quote .stars { font-size: 1.1rem; }
.quote p { font-size: clamp(1.15rem, .95rem + .8vw, 1.55rem); line-height: 1.4; letter-spacing: -.02em; margin: .9rem 0 1.5rem; }
.quote footer { display: grid; grid-template-columns: auto 1fr; column-gap: .8rem; align-items: center; }
.avatar { grid-row: span 2; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: var(--ink); background: linear-gradient(135deg, var(--gold-hi), var(--gold)); }
.quote cite { font-style: normal; font-weight: 600; }
.quote footer span:last-child { font-size: .85rem; color: var(--gray); }
.dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.dots button { width: 10px; height: 10px; padding: 0; border-radius: 50%; border: 1.5px solid var(--gold); background: transparent; cursor: pointer; transition: width .3s var(--ease), background-color .3s; }
.dots button[aria-selected="true"] { width: 28px; border-radius: 6px; background: var(--gold); }
.dots button::after { content: ""; position: absolute; inset: -12px; }
.dots button { position: relative; }

/* ---------- VISIT ---------- */
.visit { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); }
.visit-info .h2 { margin-bottom: 2rem; max-width: 14ch; }
.info { margin: 0; display: grid; gap: 1.6rem; }
.info > div { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.info dt { color: var(--gray); font-size: .95rem; }
.info dd { margin: 0; }
.info dd .text-link { display: inline-block; margin-top: .5rem; }
.hours { border-collapse: collapse; width: 100%; max-width: 22rem; font-size: .98rem; }
.hours th, .hours td { padding: .2rem 0; text-align: left; font-weight: 400; }
.hours td { text-align: right; color: var(--text-2); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold-hi); font-weight: 600; }
.socials { display: grid; gap: .3rem; }
.socials a { text-decoration: none; font-weight: 500; }
.socials a:hover { color: var(--gold-hi); }

.visit-side { display: grid; gap: 14px; grid-template-rows: auto 1fr; }
.call {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: 28px; padding: 2rem; min-height: 280px;
  background: var(--grad-night); color: #fff;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
}
.call-title { font-size: clamp(2.2rem, 1.4rem + 2.4vw, 3.4rem); line-height: 1; letter-spacing: -.045em; font-weight: 500; margin: .2rem 0 1.5rem; max-width: 10ch; }
.call-logo { position: absolute; right: -40px; top: -40px; width: 220px; opacity: .22; z-index: -1; transform: rotate(-12deg); }
.map { border-radius: 28px; overflow: hidden; min-height: 280px; background: var(--card-soft); }
.map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; filter: grayscale(.35) contrast(1.05) brightness(.9); }

/* ---------- FOOTER ---------- */
.footer { padding: var(--pad) var(--pad) 0; border-radius: var(--r-panel) var(--r-panel) 0 0; }
.footer-top { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 2.5rem; }
.footer-brand p { color: rgba(255, 255, 255, .65); max-width: 26rem; margin-top: 1rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-cols > div { display: grid; gap: .55rem; align-content: start; font-size: .95rem; }
.footer-cols a, .footer-cols span { color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer-cols a:hover { color: #fff; }
.fc-t { color: #fff; font-weight: 600; margin-bottom: .4rem; }
.footer-giant { position: relative; margin-top: clamp(2.5rem, 1rem + 5vw, 5rem); line-height: .78; overflow: hidden; }
.footer-giant > span {
  display: block; text-align: center;
  font-size: clamp(4.5rem, 1rem + 17.5vw, 17rem); font-weight: 700; letter-spacing: -.06em;
  background: linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(42, 76, 240, .55));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transform: translateY(12%);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--ink);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, .55);
  transition: transform .25s var(--ease), opacity .3s, visibility .3s;
}
.wa-float svg { width: 27px; height: 27px; fill: currentColor; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.js .wa-float:not(.is-on) { opacity: 0; visibility: hidden; transform: translateY(12px); }

/* ---------- Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .js .card.reveal.is-in:hover { transform: translateY(-6px); transition-delay: 0ms; }
}

/* ---------- Side rails (wide desktop only) ---------- */
.rail { display: none; }
@media (min-width: 1480px) and (prefers-reduced-motion: no-preference) {
  .rail { display: block; position: fixed; top: 0; bottom: 0; z-index: 0; width: calc((100vw - var(--maxw)) / 2 - 22px); overflow: hidden; pointer-events: none; }
  .rail-l { left: 0; }
  .rail-r { right: 0; }
  .page { position: relative; z-index: 1; }
}
.rail-item { position: absolute; opacity: 0; animation: rail-icon var(--life, 6s) ease-in-out forwards; }
.rail-icon { width: clamp(56px, 3.8vw, 80px); aspect-ratio: 1; }
.rail-icon svg { display: block; width: 100%; height: 100%; overflow: visible; filter: saturate(.9) drop-shadow(0 0 16px rgba(226, 178, 60, .15)); }
.rail-logo { width: 52px; height: 52px; border-radius: 50%; }
.rail-pow {
  --life: 3.2s;
  font-family: var(--f-comic); font-weight: 900; font-size: 24px; line-height: 1;
  width: 80px; height: 80px; display: grid; place-items: center;
  color: var(--gold-hi); background: var(--red);
  clip-path: polygon(50% 0, 62% 22%, 90% 8%, 80% 36%, 100% 50%, 80% 64%, 92% 92%, 62% 78%, 50% 100%, 38% 78%, 8% 92%, 20% 64%, 0 50%, 20% 36%, 10% 8%, 38% 22%);
  animation-name: rail-pop;
}
@keyframes rail-icon {
  0% { opacity: 0; transform: translateY(12px) scale(.86) rotate(var(--tilt, 0deg)); filter: blur(5px); }
  20% { opacity: .7; transform: translateY(0) scale(1) rotate(var(--tilt, 0deg)); filter: blur(0); }
  75% { opacity: .7; transform: translateY(-6px) scale(1) rotate(var(--tilt, 0deg)); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-14px) scale(.94) rotate(var(--tilt, 0deg)); filter: blur(5px); }
}
@keyframes rail-pop {
  0% { opacity: 0; transform: scale(.4) rotate(var(--rot, -8deg)); }
  18% { opacity: .8; transform: scale(1.06) rotate(var(--rot, -8deg)); }
  28% { transform: scale(1) rotate(var(--rot, -8deg)); }
  78% { opacity: .8; }
  100% { opacity: 0; transform: scale(.9) rotate(var(--rot, -8deg)); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { gap: 1.1rem; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card-feature { grid-column: 1 / -1; grid-row: auto; }
  .card-wide { grid-column: 1 / -1; display: flex; }
  .saga-covers { --w: clamp(62px, 14vw, 110px); }
  .card-wide:hover .saga-covers li { margin-inline: calc(var(--w) * -.1); }
  .card-wide .card-body { padding: 1rem .6rem .6rem; }
  .card-feature .card-img { min-height: 0; aspect-ratio: 16 / 10; flex: none; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { justify-content: space-between; }
  .hero-grid, .about-grid, .art, .reviews-grid, .visit, .footer-top { grid-template-columns: 1fr; }
  .hero-visual { padding: 1.5rem 0 3rem; max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-photo { margin-inline: auto; width: 82%; }
  .glass-brand { right: 0; }
  .person { max-width: 360px; }
  .head-split { grid-template-columns: 1fr; }
  .head-note, .head-split > .pill { justify-self: start; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .bolt { right: 30%; }
  .batman { right: 4%; }
}
@media (max-width: 600px) {
  .batman { right: auto; left: 10%; }
  .bolt { right: 22%; }
  .events { grid-template-columns: 1fr 1fr; }
  .events .event:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .burst-art { right: -6px; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .brand span { font-size: 1rem; }
  .brand.brand-hero span { font-size: 1.45rem; }
  .brand.brand-hero img { width: 60px; }
  .nav .pill-sm { display: none; }
  .nav .pill-sm { padding-inline: .9rem; }
  .hero-grid { padding-top: 2.25rem; }
  .cta-row .pill { flex: 1 1 100%; }
  .hero-rating { margin-top: 1.5rem; }
  .hero-photo { width: 88%; transform: rotate(1.5deg); }
  .glass-hours { --ears: 17px; --wings: 23px; min-width: 0; width: 64%; bottom: 2.75rem; padding: calc(.8rem + var(--ears)) .95rem calc(.7rem + var(--wings)); }
  .glass-v { font-size: 1rem; }
  .glass-brand { width: 150px; padding: .6rem .7rem; top: .25rem; }
  .burst-hero { width: 90px; right: 0; bottom: 0; }
  .stats { gap: 26px 14px; }
  .stat { min-height: 205px; padding: 2.2rem .6rem .8rem; }
  .stat-art { min-height: 105px; }
  .stat b { font-size: 3rem; }
  .stat-pow b { font-size: 2.2rem; }
  .num-balloon { min-width: 96px; padding: .5rem 1.1rem .4rem; }
  .issue-box { padding: .45rem 1rem .6rem; }
  .cap { font-size: .72rem; left: 8px; max-width: calc(100% - 16px); }
  .stat-sub { font-size: .75rem; }
  .stat-rating { font-size: .95rem; }
  .bento { grid-template-columns: 1fr; }
  .events { grid-template-columns: 1fr; }
  .events .event, .events .event:last-child { aspect-ratio: 4 / 4.4; grid-column: auto; }
  .info > div { grid-template-columns: 1fr; gap: .4rem; }
  .call { padding: 1.5rem; min-height: 240px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .quote::before, .quote::after { left: 32px; }
}
