/* ===================================================
   HOME PAGE — page-specific styles
   =================================================== */

/* Hero layout */
.hero-inner { max-width: 680px; }
.hero-lead { max-width: 580px; margin-top: 1.5rem; }
.hero-scroll-hint {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-scroll-hint span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-left: 1px;
}

/* Hero CTA row */
.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Myth stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.stat-cell {
  background: var(--surface-2);
  padding: 1.75rem 1rem;
  text-align: center;
}

/* Guide section: portrait full height */
.guide-portrait img {
  height: 100%;
  min-height: 500px;
  object-position: top;
}

/* Portrait wrap (home-specific overrides) */
.home-portrait-wrap {
  max-width: 460px;
}

@media (max-width: 860px) {
  .home-portrait-wrap {
    max-width: 100%;
    margin: 0 auto 2.5rem;
  }
  .clinton-portrait {
    min-height: 300px;
    max-height: 500px;
  }
}

/* Guide link */
.guide-link { margin-top: 1.5rem; display: block; }

/* Quote attribution */
.quote-attribution {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Discovery CTA section */
.discovery-cta {
  text-align: center;
  margin-top: 3rem;
}
.discovery-cta .btn {
  font-size: 0.85rem;
  padding: 1.2rem 3.5rem;
}
.discovery-subtext {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Gold band overrides */
.gold-band .quote-attribution {
  color: rgba(0, 0, 0, 0.5);
}
