/* ════════════════════════════════════════
   HOME HERO — 2×2 GRID
   ════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: var(--z-content);
  border-bottom: var(--border-panel);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 320px 200px;
  /* Comic panels: no gap — adjacency is the aesthetic */
}

/* Q1 — Magenta main panel */
.hero-main {
  background: var(--hot);
  border-right: var(--border-panel);
  border-bottom: var(--border-panel);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  overflow: hidden;
}

.hero-issue {
  font-family: "Bangers", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 2px 10px;
  transform: rotate(-1deg);
  align-self: flex-start;
  margin-bottom: 4px;
}

.hero-title {
  font-family: "Luckiest Guy", sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.88;
  color: var(--ink);
  text-shadow: 5px 5px 0 var(--bg);
}

.hero-title em {
  font-style: normal;
  font-family: "Permanent Marker", cursive;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--bg);
  display: block;
  font-size: 0.7em;
}

/* Q2 — Photo panel */
.hero-photo {
  position: relative;
  overflow: hidden;
  border-bottom: var(--border-panel);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 20, 0.7) 0%, transparent 60%);
  /* NOTE: this is a color overlay for image readability, not a design gradient */
}

.hero-address {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: "Bangers", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: rgba(12, 10, 20, 0.6);
  padding: 3px 10px;
}

/* Q3 — Purple stat */
.hero-stat--purple {
  background: var(--purple);
  border-right: var(--border-panel);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-machine-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: end;
  justify-content: start;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
}

.hero-machine-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.hero-stat--purple .stat-num {
  font-family: "Luckiest Guy", sans-serif;
  font-size: clamp(64px, 6.2vw, 88px);
  line-height: 0.95;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--bg);
}

.hero-stat--purple .head {
  font-family: "Bangers", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--ink);
}

/* Q4 — Teal stat */
.hero-stat--teal {
  background: var(--teal);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  position: relative;
}

.hero-stat--teal .stat-num {
  font-family: "Luckiest Guy", sans-serif;
  font-size: 76px;
  line-height: 0.95;
  color: var(--bg);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.hero-stat--teal .head {
  font-family: "Bangers", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--bg);
}

/* ════════════════════════════════════════
   INNER PAGE SLIM HERO BANNER
   ════════════════════════════════════════ */
.hero-page {
  background: var(--bg2);
  border-bottom: 3px solid var(--hot);
  padding: 60px 0;
  position: relative;
  z-index: var(--z-content);
  overflow: hidden;
}

.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 46, 99, 0.1) 1px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.5;
}

.hero-page .container {
  position: relative;
  z-index: 2;
}

.hero-page .s-eyebrow {
  margin-bottom: 8px;
}

.hero-page-title {
  font-family: "Luckiest Guy", sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  text-shadow: 4px 4px 0 var(--bg);
}

/* About photo (rotated) */
.about-photo-wrap {
  position: relative;
  align-self: center;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: var(--border-panel);
  box-shadow: 10px 10px 0 var(--hot);
  transform: rotate(-1.5deg);
  display: block;
}
