/* ==========================================================================
   Interior pages (Rates & FAQ, and anything else that is prose rather than
   landing-page sections). Loads after styles.css and reuses its tokens.
   ========================================================================== */

.page {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 24px 40px;
}

.page-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.page-lede {
  font-family: var(--font-text);
  font-size: 20px;
  line-height: 1.5;
  color: var(--body);
  margin: 0;
  max-width: 46ch;
}

.page-section {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.page-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-body p {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}

.page-body strong {
  color: var(--ink);
}

/* Underline prose links only. The contact pills are buttons in everything but
   name and carry their own border, so an underline just makes them look broken. */
.page-body a:not(.contact-pill) {
  color: var(--maroon);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* The lead sentence of a section carries the emphasis, rather than a price. */
.page-lead-line {
  font-size: 22px !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
}

.page-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-steps li {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
}

.page-note {
  background: var(--field-bg);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 17px !important;
}

/* A throwaway aside, not a callout: a boxed background made it look like it
   carried more weight than it does. */
.page-aside {
  font-size: 16px !important;
  color: var(--body);
  opacity: 0.8;
}

.page-cta {
  display: flex;
  justify-content: center;
  padding: 56px 0 20px;
}

@media (max-width: 768px) {
  .page {
    padding: 110px 20px 24px;
  }

  .page-title {
    font-size: 40px;
  }

  .page-lede {
    font-size: 18px;
  }

  /* Stack the label above its prose rather than squeezing two columns. */
  .page-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
  }

  .page-lead-line {
    font-size: 20px !important;
  }
}
