/* Inkwell Readings — Layouts */

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  text-align: center;
  background:
    linear-gradient(var(--parchment), var(--parchment)) bottom / 100% 1px no-repeat,
    var(--paper);
}
/* Restrained paper/ink texture, kept low-opacity so it reads as
   background grain rather than a competing photo — see spec section 7,
   image #2 (2400x1400 hero_background). */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero__title { margin-bottom: 20px; }
.hero__lead { font-size: 1.15rem; color: var(--ink-70); max-width: 620px; margin: 0 auto 32px; }
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* === SECTIONS === */
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--parchment); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { margin-bottom: 8px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid--3,
  .pricing-grid,
  .testimonial-grid,
  .steps,
  .reader-grid,
  .reader-grid--teaser { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-menu-btn { display: flex; }
  .site-header__inner { height: 68px; }
  .hero { padding: 56px 0 44px; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .card-grid--3,
  .pricing-grid,
  .testimonial-grid,
  .steps,
  .reader-grid,
  .reader-grid--teaser { grid-template-columns: 1fr; }
  .structure-list__item { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
