/* "I'm good" essay: a minimal, warm reading page. All styling is scoped to
   body.im-good-page / .ig-* so nothing here touches other pages. Body font
   (Hanken Grotesk), a narrow column, and generous whitespace let the piece
   breathe; the FAQ is a quiet appendix after a clear divider. */

body.im-good-page {
  background: var(--cream);
}

.ig-wrap {
  max-width: 34rem;                 /* comfortable measure for a reflective read */
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(4rem, 10vw, 7rem);
  font-family: var(--font-body);
  color: var(--ink-2);
}

/* The opening line is the (single, understated) H1: quiet, body-family, only a
   touch larger than the prose, with room to breathe before the piece begins. */
.ig-open {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 2.4rem;
}

/* Body: each source line is its own short paragraph; generous spacing preserves
   the piece's line-by-line cadence. */
.ig-body {
  font-size: 1.15rem;
  line-height: 1.75;
}
.ig-body p {
  margin: 0 0 1.45rem;
}
.ig-body p:last-child {
  margin-bottom: 0;
}
/* The dialogue lines ("I'm good", "Daddy!", ...) read as their own quiet beats. */
.ig-body a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Clear separation before the appendix: lots of air, then a faint rule. */
.ig-divider {
  border: 0;
  height: 1px;
  background: var(--hairline);
  width: 4rem;
  margin: clamp(4rem, 9vw, 6.5rem) auto clamp(2.5rem, 6vw, 4rem);
}

/* FAQ: a quiet "Common questions" appendix, never competing with the essay. */
.ig-faq-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  text-align: center;
  margin: 0 0 2.5rem;
}
.ig-qa {
  margin: 0 0 2rem;
}
.ig-q {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.ig-a {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.ig-a p {
  margin: 0;
}
.ig-a a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
