/* ── Hero — calibrated to show nav + hero + full testimonial band on load ──
   MacBook 16:10 at 1440×900: nav=64px, hero needs ~580px, testimonial=~160px → total ~804px ✓ */
.hero {
  padding-top: 88px;   /* nav height + small gap */
  padding-bottom: 0;
  min-height: calc(100vh - 160px); /* fills but leaves room for testimonial */
  display: flex;
  align-items: center;
}
/* Widen the hero container beyond the global 1080px cap */
.hero > .wrap {
  max-width: 1380px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
}
.hero__h1 { margin-bottom: 1.1rem; }
.hero__lede {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--soft);
  margin-bottom: 0.6rem;
}
.hero__lede--two { margin-bottom: 1.8rem; }
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Testimonial — navy band, tall enough to be fully visible on load ── */
.testimonial-band {
  background: var(--navy);
  padding: 3rem 0;
}
.testimonial {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.testimonial__bar {
  width: 4px;
  min-height: 56px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
}
.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.7rem;
}
.testimonial__cite {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
}

/* ── Section header ── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.section-sub {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--soft);
}

/* ── Features grid ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-bottom: 4rem;
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
}
.feature p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--soft);
}

/* ── Availability ── */
.availability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--paper-mid);
  border-radius: 4px;
  border: 1px solid var(--rule);
}
.avail-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.avail-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--soft);
  align-items: flex-start;
}
.avail-tick { color: #1a6b3a; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.avail-cross { color: #8b1a1a; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

/* ── Walkthrough gate ── */
.gate-form-wrap {
  background: var(--paper-mid);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  max-width: 520px;
  margin: 0 auto;
}
.gate-prompt {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.gate-form { display: flex; flex-direction: column; gap: 0.75rem; }
.gate-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.gate-input {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.2s;
  outline: none;
}
.gate-input:focus { border-color: var(--blue); }
.gate-input::placeholder { color: var(--mute); }
.gate-submit { margin-top: 0.5rem; align-self: center; }

/* ── Loom placeholder ── */
.loom-wrap { width: 100%; }
.loom-placeholder {
  background: var(--paper-mid);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Pricing ── */
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.price-display__amount {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.price-display__label {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-detail {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--soft);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { order: -1; }
  .features { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .availability { grid-template-columns: 1fr; }
  .gate-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
  .testimonial__quote { font-size: 1.05rem; }
}
