/* V6 — Comic book / graphic novel */

:root {
  --ink: #0d0d0d;
  --paper: #fff8e7;
  --red: #e63946;
  --blue: #1d3557;
  --yellow: #ffd60a;
  --cyan: #48cae4;
  --font-title: 'Bangers', Impact, sans-serif;
  --font-body: 'Comic Neue', 'Comic Sans MS', cursive;
  --border: 4px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.halftone {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.35;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1px);
  background-size: 8px 8px;
}

.masthead {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--yellow);
  border-bottom: var(--border);
  box-shadow: 0 4px 0 var(--ink);
}
.logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--red);
  text-shadow: 2px 2px 0 var(--ink);
}
.logo__brand--comic { height: 48px; width: auto; filter: drop-shadow(3px 3px 0 var(--ink)); }
.logo span { color: var(--blue); }
.nav { display: flex; gap: 1rem; margin-left: auto; font-weight: 700; font-size: 0.95rem; }
.nav a:hover { color: var(--red); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.5rem 1rem; font-family: var(--font-title);
  font-size: 1.1rem; letter-spacing: 0.06em;
  border: var(--border); box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn:active { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--ink); }
.btn--call { background: var(--red); color: #fff; margin-left: 0.5rem; }
.btn--mega { background: var(--red); color: #fff; font-size: 1.4rem; padding: 0.65rem 1.5rem; }
.btn--outline { background: #fff; }
.btn--block { width: 100%; }

main { position: relative; z-index: 1; }

.splash {
  padding: 3rem 1.25rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--paper) 70%);
  border-bottom: var(--border);
}
.issue { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
.splash__title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  line-height: 1.05;
  color: var(--blue);
  text-shadow: 3px 3px 0 #fff, 5px 5px 0 var(--ink);
  max-width: 14ch;
  margin: 0 auto 1rem;
}
.splash__tag { max-width: 42ch; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.splash__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.stat-row { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.stat {
  background: #fff; border: 3px solid var(--ink); padding: 0.35rem 0.75rem;
  font-weight: 700; font-size: 0.85rem; box-shadow: 3px 3px 0 var(--ink);
}

.sfx {
  display: inline-block; font-family: var(--font-title);
  color: var(--red); text-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-4deg);
}
.sfx--drip { font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 0.25rem; }
.sfx--sm { font-size: 1.2rem; margin-bottom: 0.35rem; }

.panel-row { padding: 2.5rem 1.25rem; max-width: 1100px; margin: 0 auto; }
.panel-row--dark { background: var(--blue); color: #fff; max-width: none; }
.panel-row--dark .panel { background: #fff; color: var(--ink); }
.section-sfx {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--red);
  text-shadow: 2px 2px 0 var(--ink);
}
.section-sfx--light { color: var(--yellow); }

.panel {
  background: #fff;
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  position: relative;
}
.panel--wide { padding: 1.5rem; }
.panel h3 { font-family: var(--font-title); font-size: 1.35rem; color: var(--blue); margin-bottom: 0.35rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.bubble {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 1.5rem;
  padding: 1rem 1.25rem;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.bubble::after {
  content: '';
  position: absolute; bottom: -14px; left: 2rem;
  border: 12px solid transparent; border-top-color: var(--ink);
}
.bubble::before {
  content: '';
  position: absolute; bottom: -8px; left: calc(2rem + 3px);
  border: 9px solid transparent; border-top-color: #fff;
  z-index: 1;
}
.caption { font-style: italic; font-size: 0.95rem; color: var(--blue); }

.bubble-panel footer { margin-top: 0.75rem; font-weight: 700; color: var(--red); font-size: 0.9rem; }
.reviews-note { text-align: center; margin-top: 1.25rem; font-size: 0.85rem; opacity: 0.85; max-width: 50ch; margin-inline: auto; }
.reviews-note code { background: rgba(0,0,0,0.15); padding: 0.1rem 0.35rem; border-radius: 3px; }

.book-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.lede { margin: 0.75rem 0 1rem; }
.phone-big {
  display: inline-block; margin-top: 0.5rem;
  font-family: var(--font-title); font-size: 1.8rem; color: var(--red);
  text-shadow: 1px 1px 0 var(--ink);
}
.book-form .field { margin-bottom: 0.75rem; }
.book-form label { display: block; font-weight: 700; margin-bottom: 0.25rem; font-size: 0.9rem; }
.book-form input, .book-form select, .book-form textarea {
  width: 100%; padding: 0.5rem; border: 3px solid var(--ink);
  font-family: var(--font-body); font-size: 1rem; background: #fff;
}
.book__success { margin-top: 0.75rem; padding: 0.75rem; border: 3px solid var(--ink); background: var(--yellow); font-size: 0.95rem; }
.book__success a { font-weight: 700; color: var(--red); }

.footer {
  position: relative; z-index: 1;
  padding: 1.5rem; text-align: center;
  border-top: var(--border); background: var(--yellow);
  font-weight: 700;
}
.footer a { display: inline-block; margin-top: 0.5rem; font-family: var(--font-title); font-size: 1.2rem; color: var(--red); }

.callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  text-align: center; padding: 0.85rem;
  background: var(--red); color: #fff;
  font-family: var(--font-title); font-size: 1.2rem;
  border-top: var(--border); box-shadow: 0 -4px 0 var(--ink);
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .callbar { display: block; }
  body { padding-bottom: 3.5rem; }
}
