/* ===== Home — Issue No. 01 ===== */

/* ── Desktop ── */
.page-home {
  padding: 40px 48px 56px;
}

.home-hero {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 32px;
}

.hero-kicker {
  grid-column: 1 / span 12;
  margin-bottom: 20px;
}

.hero-headline {
  grid-column: 1 / span 7;
  font-family: var(--serif);
  font-size: 112px;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: var(--ink);
}

.hero-photo {
  grid-column: 8 / span 5;
  grid-row: 2 / span 4;
  margin: 0;
  align-self: start;
}

.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}

.hero-photo figcaption {
  border-top: 1px solid var(--ink);
  padding-top: 10px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-dek {
  grid-column: 1 / span 7;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin: 32px 0 0;
  max-width: 58ch;
}

.hero-body {
  grid-column: 1 / span 7;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin: 32px 0 0;
  max-width: 62ch;
}

.hero-ctas {
  grid-column: 1 / span 7;
  margin-top: 36px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.home-pullquote {
  margin-top: 88px;
  padding: 56px 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  text-align: center;
}

.home-pullquote p {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  max-width: 1000px;
  margin: 0 auto;
}

.home-pullquote cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
  display: block;
  font-style: normal;
}

.home-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}

.stat-big {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}


/* ── Mobile ── */
@media (max-width: 767px) {

  .page-home { padding: 0 16px 8px; }

  .home-hero {
    margin-top: 18px;
    display: block;
  }

  .hero-kicker { margin-bottom: 14px; }

  .hero-headline {
    font-size: 44px;
    line-height: 0.92;
    letter-spacing: -0.035em;
    text-wrap: pretty;
  }

  .hero-photo { margin: 18px 0 0; }

  .hero-photo img {
    height: 240px;
  }

  .hero-photo figcaption {
    padding-top: 8px;
    margin-top: 8px;
    font-size: 8.5px;
    letter-spacing: 0.16em;
  }

  .hero-dek {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -0.005em;
    margin: 22px 0 0;
    max-width: none;
  }

  .hero-body {
    font-size: 13.5px;
    line-height: 1.7;
    margin: 18px 0 0;
    max-width: none;
  }

  .hero-ctas {
    margin-top: 22px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .hero-ctas .stats-meta {
    margin-top: 6px;
    text-align: center;
  }

  .home-pullquote {
    margin: 36px -16px;
    padding: 30px 24px;
  }

  .home-pullquote p {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-style: normal;
  }

  .home-pullquote cite {
    font-size: 9px;
    margin-top: 14px;
  }

  .home-stats {
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
  }

  .stat-item { padding-top: 10px; }

  .stat-big {
    font-size: 22px;
  }

  .stat-label {
    font-size: 8.5px;
    letter-spacing: 0.18em;
    margin-top: 8px;
  }

}
