:root {
  --ink: #27323a;
  --muted: #64716f;
  --paper: #fffaf1;
  --cream: #f7efe0;
  --sage: #dfe8dd;
  --sage-dark: #526c5a;
  --blue: #314a63;
  --blue-soft: #d8e3ec;
  --gold: #d6a84f;
  --clay: #a96f54;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(39, 50, 58, 0.14);
  --radius: 8px;
  --anchor-offset: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  font-size: 16px;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(214, 168, 79, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 112px;
  padding: 8px 18px;
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid rgba(39, 50, 58, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(92px, 22vw, 108px);
  max-width: min(84vw, 620px);
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 6px;
}

.site-nav {
  display: none;
  gap: 20px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.homepage-nav {
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 86px 20px 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(32, 47, 61, 0.82), rgba(32, 47, 61, 0.38) 58%, rgba(32, 47, 61, 0.2)),
    url("/assets/bedtime-letter-hero.webp") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(247, 239, 224, 0), var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.35rem, 12vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 7vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 560px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #1f2c34;
  background: #f3c766;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button-primary:hover {
  background: #eebd4f;
}

.section {
  padding: 60px 20px;
}

#top,
section[id] {
  scroll-margin-top: var(--anchor-offset);
}

.section-inner {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.intro-band {
  padding-top: 58px;
  background:
    radial-gradient(circle at 22% 44%, rgba(255, 255, 255, 0.9), rgba(255, 250, 241, 0) 34%),
    linear-gradient(180deg, var(--paper), #fbf4e7);
}

.form-grid,
.letter-grid {
  display: grid;
  gap: 26px;
}

.form-grid {
  gap: 48px;
  align-items: center;
}

.form-grid > div > p,
.letter-grid > div > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.letter-includes,
.parent-love-card {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(82, 108, 90, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 12px 30px rgba(39, 50, 58, 0.06);
}

.letter-includes h3,
.parent-love-card h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 1.18rem;
}

.letter-includes ul,
.parent-love-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.parent-love-card {
  background: rgba(223, 232, 221, 0.42);
}

.parent-love-card li {
  position: relative;
  padding-left: 25px;
}

.parent-love-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

.letter-includes li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.letter-includes span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(223, 232, 221, 0.58);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", Georgia, serif;
  font-size: 17px;
  line-height: 1;
}

.parent-love-card {
  margin-top: 24px;
  padding: 2px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.parent-love-card li {
  color: var(--ink);
  font-weight: 600;
}

.parent-story {
  display: grid;
  gap: 34px;
}

.parent-copy {
  text-align: center;
}

.leafy::before,
.leafy::after {
  content: "•";
  display: inline-block;
  margin: 0 10px;
  color: var(--sage-dark);
  font-size: 18px;
  transform: translateY(1px);
}

.parent-copy h2 {
  max-width: 620px;
  margin: 0 auto;
  color: #1e2c35;
}

.story-promise {
  position: relative;
  display: grid;
  min-height: clamp(190px, 24vw, 250px);
  max-width: 520px;
  place-items: center;
  margin: 40px auto 16px;
  padding: clamp(30px, 4vw, 44px) clamp(24px, 4.5vw, 46px);
  border: 1px solid rgba(214, 168, 79, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 168, 79, 0.11), transparent 48%),
    rgba(255, 253, 248, 0.9);
  box-shadow: 0 22px 48px rgba(39, 50, 58, 0.09), 0 0 54px rgba(214, 168, 79, 0.08);
}

.story-promise::before,
.story-promise::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.story-promise::before {
  content: "\2661";
  top: -18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold);
  background: var(--paper);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.story-promise::after {
  content: "";
  top: -1px;
  width: 128px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 168, 79, 0), rgba(214, 168, 79, 0.48), rgba(214, 168, 79, 0));
}

.story-promise p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.18rem, 3.2vw, 1.68rem);
  line-height: 1.42;
}

.support-copy {
  max-width: 620px;
  margin: 0 auto;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
}

.support-copy strong {
  color: var(--sage-dark);
}

.parent-visual {
  display: grid;
  width: 100%;
  max-width: 640px;
  gap: 28px;
  justify-self: center;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.mini-feature {
  position: relative;
  display: flex;
  min-height: 148px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(214, 168, 79, 0.24);
  box-shadow: none;
  text-align: left;
}

.mini-feature:nth-child(odd) {
  border-right: 1px solid rgba(214, 168, 79, 0.3);
}

.mini-feature:nth-child(n + 3) {
  border-bottom: 0;
}

.mini-feature::before {
  content: none;
}

.feature-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.feature-copy strong {
  color: var(--blue);
  font-size: clamp(1.22rem, 2.4vw, 1.62rem);
  line-height: 0.98;
}

.feature-copy small {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.92rem, 1.55vw, 1.05rem);
  line-height: 1.32;
}

.feature-icon {
  display: grid;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  place-items: center;
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.78), transparent 58%),
    linear-gradient(180deg, #fff8ea, #f7ead0);
  border: 2px solid rgba(214, 168, 79, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 12px 28px rgba(39, 50, 58, 0.08);
}

.feature-icon img {
  display: block;
  width: 72px;
  height: 72px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mini-feature:nth-child(1) .feature-icon {
  color: var(--blue);
}

.mini-feature:nth-child(2) .feature-icon,
.mini-feature:nth-child(3) .feature-icon,
.mini-feature:nth-child(4) .feature-icon {
  color: #c58f2f;
}

.story-art-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.story-art-grid img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(39, 50, 58, 0.16);
}

.quiet-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin: 0;
  padding: 16px 20px;
  color: var(--blue);
  background: rgba(223, 232, 221, 0.54);
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
}

.quiet-banner span:first-child {
  color: var(--sage-dark);
  font-size: 26px;
  line-height: 1;
}

.quiet-banner em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.steps,
.benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step,
.benefit,
.waitlist-form,
.price-card {
  border: 1px solid rgba(39, 50, 58, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(39, 50, 58, 0.07);
}

.step,
.benefit {
  padding: 22px;
}

.step p,
.benefit p,
.price-card p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.step-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.letter-section {
  background: linear-gradient(180deg, var(--sage), #f6f0e4);
}

.email-preview-stack {
  display: grid;
  gap: 10px;
  align-self: start;
}

.email-preview {
  position: relative;
  max-height: 840px;
  overflow: hidden;
  border: 1px solid rgba(39, 50, 58, 0.11);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.email-preview::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), #fffaf1 78%, #fffaf1);
}

.email-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(39, 50, 58, 0.08);
  font-family: Arial, Helvetica, sans-serif;
}

.email-chrome p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.email-chrome p span {
  color: var(--gold);
}

.email-actions {
  display: flex;
  gap: 7px;
}

.email-actions span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(39, 50, 58, 0.32);
}

.email-meta {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  color: var(--muted);
  border-bottom: 1px solid rgba(39, 50, 58, 0.06);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.email-meta strong,
.email-meta span,
.email-meta small {
  display: block;
  overflow-wrap: anywhere;
}

.email-meta strong {
  color: var(--ink);
}

.email-meta time {
  color: var(--ink);
  white-space: nowrap;
}

.sender-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #8b9498 0 18%, transparent 19%),
    radial-gradient(circle at 50% 88%, #8b9498 0 33%, transparent 34%),
    #d9dde0;
}

.letter-email {
  margin: 0 auto;
  padding: 22px clamp(16px, 4vw, 42px) 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(243, 199, 102, 0.2), transparent 32%),
    linear-gradient(180deg, #fffaf1, #fffdf8 60%, #f7eddb);
}

.letter-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.letter-brand img {
  width: min(100%, 430px);
  max-height: 128px;
  object-fit: contain;
  border-radius: 6px;
}

.letter-art {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(39, 50, 58, 0.16);
}

.letter-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 22px 0 54px;
  color: #101b24;
  font-family: Arial, Helvetica, sans-serif;
}

.letter-body h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 6vw, 2.7rem);
}

.letter-body h3 span,
.letter-signoff span,
.letter-footer span span {
  color: #d86d6f;
}

.letter-body p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.58;
}

.letter-body blockquote {
  margin: 8px 0 18px;
  padding: 14px 18px;
  border-left: 5px solid #e6ad43;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(243, 199, 102, 0.18);
}

.letter-body blockquote p {
  margin: 0 0 4px;
  color: #172435;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.letter-body cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
}

.letter-signoff {
  color: #d86d6f;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.45rem !important;
  font-weight: 700;
}

.prayer-card {
  margin: 8px 0 16px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 168, 79, 0.34);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 247, 223, 0.74);
}

.prayer-card h4 {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.prayer-card h4::before {
  content: "🙏 ";
}

.prayer-card p {
  margin: 0;
  color: var(--blue);
}

.prayer-card h4::before {
  content: none;
}

.letter-footer {
  display: grid;
  gap: 10px;
  margin: 0 calc(clamp(16px, 4vw, 42px) * -1);
  padding: 18px clamp(16px, 4vw, 42px);
  color: var(--blue);
  background: rgba(247, 239, 224, 0.82);
  border-top: 1px solid rgba(39, 50, 58, 0.08);
  font-family: Arial, Helvetica, sans-serif;
}

.letter-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.sample-letter-action {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.sample-letter-button {
  gap: 10px;
  min-height: 52px;
  padding-inline: 32px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffe6a6, var(--gold));
  border: 1px solid rgba(157, 108, 29, 0.24);
  box-shadow: 0 14px 34px rgba(39, 50, 58, 0.13);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.sample-letter-button:hover {
  background: linear-gradient(180deg, #ffedbf, #f2bf56);
  transform: translateY(-2px);
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(24, 38, 48, 0.68);
}

.modal-overlay[hidden] {
  display: none;
}

.sample-modal {
  position: relative;
  width: min(100%, 860px);
  max-height: min(92vh, 980px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(39, 50, 58, 0.12);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 253, 248, 0.94);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: #fff3d4;
}

.sample-modal-scroll {
  max-height: min(92vh, 980px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.full-sample-letter {
  background:
    radial-gradient(circle at 50% 12%, rgba(243, 199, 102, 0.18), transparent 34%),
    linear-gradient(180deg, #fffaf1, #fffdf8 58%, #f7eddb);
}

.sample-letter-header {
  padding: 34px clamp(18px, 5vw, 54px) 18px;
  text-align: center;
}

.sample-letter-header img {
  width: min(100%, 360px);
  max-height: 118px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 6px;
}

.sample-letter-header h2 {
  max-width: 620px;
  margin: 0 auto;
  color: var(--blue);
  font-size: clamp(2rem, 7vw, 3.3rem);
}

.sample-story-art {
  display: block;
  width: calc(100% - 36px);
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(39, 50, 58, 0.15);
}

.sample-letter-content {
  width: min(100% - 36px, 680px);
  margin: 0 auto;
  padding: 28px 0 18px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.sample-letter-content h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3rem);
}

.sample-letter-content p {
  margin: 0 0 16px;
  font-size: 1.04rem;
  line-height: 1.72;
}

.sample-verse-card,
.sample-prayer-card {
  margin: 20px 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 247, 223, 0.78);
}

.sample-verse-card {
  border-left: 5px solid var(--gold);
}

.sample-verse-card p {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.35;
}

.sample-verse-card cite {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 700;
}

.sample-prayer-card {
  border: 1px solid rgba(214, 168, 79, 0.38);
  border-left: 5px solid var(--gold);
}

.sample-prayer-card h4 {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.sample-prayer-card h4::before {
  content: "🙏 ";
}

.sample-prayer-card p {
  margin: 0 0 12px;
  color: var(--blue);
}

.sample-prayer-card p:last-child {
  margin-bottom: 0;
}

.sample-prayer-card h4::before {
  content: none;
}

.sample-signoff {
  color: #d86d6f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem !important;
  font-weight: 700;
}

.sample-modal-footer {
  display: grid;
  gap: 16px;
  align-items: center;
  justify-items: center;
  padding: 22px clamp(18px, 5vw, 54px);
  color: var(--blue);
  background: rgba(247, 239, 224, 0.88);
  border-top: 1px solid rgba(39, 50, 58, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  text-align: center;
}

.policy-card {
  max-width: 880px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(39, 50, 58, 0.09);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 12px 34px rgba(39, 50, 58, 0.07);
}

.legal-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(243, 199, 102, 0.16), transparent 34%),
    linear-gradient(180deg, var(--paper), #f7efe0);
}

.policy-card h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.3rem, 8vw, 4rem);
  line-height: 1;
}

.policy-card h2 {
  margin: 34px 0 12px;
  color: var(--blue);
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.policy-card p {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.72;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.legal-updated {
  margin: 14px 0 28px !important;
  color: var(--sage-dark) !important;
}

.policy-card ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 22px;
  padding-left: 24px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.policy-card li::marker {
  color: var(--gold);
}

.policy-card a {
  color: var(--blue);
  font-weight: 700;
}

.contact-email-image img {
  display: block;
  width: min(100%, 275px);
  height: auto;
}

.legal-closing {
  margin-top: 34px !important;
  padding: 18px 20px;
  color: var(--blue) !important;
  background: rgba(223, 232, 221, 0.5);
  border-radius: var(--radius);
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.1rem;
  text-align: center;
}

.about-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 168, 79, 0.14), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(223, 232, 221, 0.56), transparent 30%),
    linear-gradient(180deg, var(--paper), #f6efdf);
}

.section.about-page,
.section.legal-page {
  padding-top: 30px;
}

.about-story {
  display: grid;
  gap: 24px;
}

.about-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.about-heading .section-kicker {
  margin-bottom: 8px;
}

.about-heading h1 {
  max-width: none;
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.7rem, 10vw, 5rem);
}

.about-body {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 48px);
  color: var(--blue);
  border: 1px solid rgba(214, 168, 79, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 168, 79, 0.1), transparent 42%),
    rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 42px rgba(39, 50, 58, 0.08);
  text-align: left;
}

.about-story p {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.75;
}

.about-body a:not(.button) {
  color: var(--sage-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.about-section + .about-section {
  margin-top: clamp(30px, 6vw, 48px);
  padding-top: clamp(28px, 5vw, 42px);
  border-top: 1px solid rgba(214, 168, 79, 0.22);
}

.about-section h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: clamp(1.7rem, 5vw, 2.35rem);
}

.about-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 24px;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 26px;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  line-height: 1.6;
}

.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.about-emphasis {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.2rem, 3vw, 1.45rem) !important;
  font-weight: 700;
  line-height: 1.45 !important;
}

.about-closing-thought {
  margin: 26px 0 0 !important;
  text-align: center;
}

.about-gentle-lines {
  margin: 4px 0 24px;
  padding-left: clamp(18px, 4vw, 30px);
  border-left: 2px solid rgba(214, 168, 79, 0.46);
}

.about-gentle-lines p {
  margin-bottom: 5px;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 3vw, 1.28rem);
}

.about-signoff {
  margin: 30px 0 24px !important;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.3rem, 4vw, 1.65rem) !important;
  font-weight: 700;
  text-align: center;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.about-guides-link {
  color: var(--blue) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-underline-offset: 4px !important;
}

.about-scripture {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 42px);
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 199, 102, 0.15), transparent 48%),
    rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(214, 168, 79, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(39, 50, 58, 0.08);
  text-align: center;
}

.about-scripture::before {
  content: "✦";
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1rem;
}

.about-scripture p {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  font-style: italic;
  line-height: 1.55;
}

.about-scripture cite {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, #f6f0e4, var(--paper));
}

.faq-inner {
  max-width: 920px;
}

.faq-header {
  text-align: center;
}

.faq-header h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--blue);
}

.faq-header p:last-child {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(39, 50, 58, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 32px rgba(39, 50, 58, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item:hover {
  border-color: rgba(214, 168, 79, 0.34);
  box-shadow: 0 18px 42px rgba(39, 50, 58, 0.09);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: rgba(82, 108, 90, 0.28);
  background: #fffdf8;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 18px 56px 18px 22px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue);
  background: rgba(243, 199, 102, 0.26);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(82, 108, 90, 0.16);
}

.faq-item p,
.faq-item ul {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.faq-item ul {
  display: grid;
  gap: 8px;
  padding-left: 44px;
}

.faq-item li::marker {
  color: var(--gold);
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(243, 199, 102, 0.18), transparent 36%),
    linear-gradient(180deg, var(--paper), #f3ead9);
}

.pricing-header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.pricing-header h2 {
  margin: 0 auto;
  color: var(--blue);
}

.pricing-header > p:last-child {
  margin: 18px 0 0;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.pricing-cards,
.single-pricing-card {
  display: grid;
  margin-top: 34px;
}

.single-pricing-card {
  justify-items: center;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px 24px;
  background: rgba(255, 253, 248, 0.9);
}

.featured-price-card {
  width: min(100%, 680px);
  padding: clamp(30px, 5vw, 46px);
  border: 1px solid rgba(214, 168, 79, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 168, 79, 0.16), transparent 50%),
    rgba(255, 253, 248, 0.94);
  box-shadow: 0 24px 60px rgba(39, 50, 58, 0.13);
  text-align: center;
}

.price-card h3 {
  margin: 0;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.plan-chooser-title {
  margin: 22px 0 16px !important;
  color: var(--blue) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-plan-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: left;
}

.pricing-plan-selector legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-plan-option {
  position: relative;
  display: grid;
  min-height: 184px;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 22px 18px;
  color: var(--blue);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(39, 50, 58, 0.16);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(39, 50, 58, 0.05);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.pricing-plan-option:hover {
  border-color: rgba(214, 168, 79, 0.62);
  transform: translateY(-2px);
}

.pricing-plan-option.is-selected {
  background: rgba(255, 249, 235, 0.94);
  border-color: var(--gold);
  box-shadow:
    0 10px 28px rgba(39, 50, 58, 0.07),
    0 0 0 1px rgba(214, 168, 79, 0.18);
}

.pricing-plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-plan-option:focus-within {
  outline: 3px solid rgba(214, 168, 79, 0.3);
  outline-offset: 3px;
}

.plan-radio {
  position: relative;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  border: 2px solid rgba(39, 50, 58, 0.24);
  border-radius: 50%;
  background: #fffdf8;
}

.pricing-plan-option.is-selected .plan-radio {
  border-color: var(--gold);
}

.pricing-plan-option.is-selected .plan-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.plan-option-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.plan-option-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.plan-option-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.best-value-badge {
  padding: 5px 8px;
  color: var(--blue);
  background: rgba(243, 199, 102, 0.72);
  border-radius: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-option-price {
  display: block;
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.plan-option-price small {
  margin-left: 3px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.annual-value {
  margin-top: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.annual-savings {
  margin-top: 5px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.plan-description {
  margin-top: 24px !important;
  color: var(--blue) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.15rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  text-align: left;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  font-weight: 700;
}

.pricing-cta {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 26px auto 0;
  text-align: center;
}

.pricing-note {
  margin: 18px 0 0;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  text-align: center;
}

.form-section {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.signup-plan-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
}

.signup-plan-selector legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 2px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.signup-plan-option {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 16px 14px;
  color: var(--blue);
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(39, 50, 58, 0.15);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(39, 50, 58, 0.05);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.signup-plan-option:hover {
  border-color: rgba(214, 168, 79, 0.62);
  transform: translateY(-1px);
}

.signup-plan-option.is-selected {
  background: rgba(255, 249, 235, 0.95);
  border-color: var(--gold);
  box-shadow:
    0 9px 24px rgba(39, 50, 58, 0.07),
    0 0 0 1px rgba(214, 168, 79, 0.14);
}

.signup-plan-option input,
.pricing-plan-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.signup-plan-option input:focus,
.pricing-plan-option input:focus {
  outline: 0;
}

.signup-plan-option:focus-within {
  outline: 3px solid rgba(214, 168, 79, 0.3);
  outline-offset: 3px;
}

.signup-plan-option.is-selected .plan-radio {
  border-color: var(--gold);
}

.signup-plan-option.is-selected .plan-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.signup-plan-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.signup-plan-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.signup-plan-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.signup-plan-price {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
}

.signup-plan-value {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.signup-plan-savings {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.signup-plan-helper {
  margin-top: 4px;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  line-height: 1.35;
}

.signup-supporting-copy {
  margin-top: 12px !important;
  color: var(--sage-dark) !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.signup-submit {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.honeypot-field input {
  width: 1px;
  height: 1px;
  padding: 0;
}

.turnstile-wrap {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.turnstile-wrap.is-active {
  display: flex;
  margin-top: 4px;
}

#turnstileWidget {
  width: 100%;
  max-width: 320px;
}

.turnstile-message {
  min-height: 0;
  margin: -4px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.turnstile-message:empty {
  display: none;
}

.trial-reassurance {
  margin: -4px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.92rem;
  text-align: center;
}

.stripe-reassurance {
  max-width: 700px;
  margin: -2px auto 2px !important;
  color: var(--muted) !important;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.privacy-note {
  margin-top: 22px !important;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.7);
}

.trial-callout {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(82, 108, 90, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 12px 34px rgba(39, 50, 58, 0.06);
}

.trial-callout p {
  position: relative;
  margin: 0 !important;
  padding-left: 28px;
  color: var(--blue) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.trial-callout p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

.waitlist-form {
  display: grid;
  gap: 10px;
  padding: 22px;
}

label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(39, 50, 58, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

select {
  min-height: 48px;
  padding-right: 44px;
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--white);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(214, 168, 79, 0.32);
  border-color: var(--gold);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 20px;
  color: var(--muted);
  background: #f3ead9;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-contact {
  max-width: 460px;
  line-height: 1.5;
}

.footer-contact strong {
  color: var(--blue);
}

.footer-contact a {
  color: var(--blue);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.parent-guides-page,
.parent-guide-page {
  background:
    radial-gradient(circle at 18% 4%, rgba(243, 199, 102, 0.15), transparent 28%),
    linear-gradient(180deg, var(--paper), #f7efe0);
}

.parent-guides-page .guide-hero,
.parent-guide-page .guide-article-hero {
  padding: 56px 20px 36px;
  text-align: center;
}

.parent-guides-page .guide-hero-inner,
.parent-guide-page .guide-article-hero-inner {
  max-width: 900px;
}

.parent-guides-page .breadcrumbs,
.parent-guide-page .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
}

.parent-guides-page .breadcrumbs a,
.parent-guide-page .breadcrumbs a {
  color: var(--sage-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.parent-guides-page .guide-hero h1,
.parent-guide-page .guide-article-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--blue);
  font-size: clamp(2.45rem, 8vw, 4.6rem);
  line-height: 1.03;
}

.parent-guide-page .guide-story-image {
  display: block;
  width: 100%;
  max-width: 701px;
  min-width: 0;
  margin: 34px auto 0;
  padding: 9px;
  border: 1px solid rgba(214, 168, 79, 0.18);
  border-radius: 11px;
  background: #fffdf7;
  box-shadow: 0 18px 42px rgba(39, 50, 58, 0.11);
}

.parent-guide-page .guide-story-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(39, 50, 58, 0.1);
}

.parent-guides-page .guide-hero-inner > p:last-child,
.parent-guide-page .guide-subtitle {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.72;
}

.parent-guide-page .guide-audience {
  max-width: 760px;
  margin: 8px auto 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

.parent-guide-page .guide-audience strong {
  color: var(--sage-dark);
}

.parent-guides-page .guide-library {
  padding-top: 0;
}

.parent-guides-page .guide-callout {
  display: grid;
  gap: 18px;
  align-items: center;
  margin: 0 auto 64px;
  padding: clamp(22px, 4vw, 32px);
  color: var(--blue);
  background: rgba(223, 232, 221, 0.58);
  border: 1px solid rgba(82, 108, 90, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(39, 50, 58, 0.07);
}

.parent-guides-page .guide-callout p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.parent-guides-page .guide-text-link,
.parent-guide-page .guide-back-link {
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-underline-offset: 4px;
}

.parent-guides-page .guide-library-heading {
  text-align: center;
}

.parent-guides-page .guide-library-heading h2 {
  color: var(--blue);
}

.parent-guides-page .guide-card-grid {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.parent-guides-page .guide-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 20px 48px rgba(39, 50, 58, 0.09);
}

.parent-guides-page .guide-card-mark {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 24px;
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.8), transparent 52%),
    linear-gradient(145deg, rgba(243, 199, 102, 0.32), rgba(223, 232, 221, 0.68));
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
}

.parent-guides-page .guide-card-body {
  padding: clamp(24px, 5vw, 36px);
}

.parent-guides-page .guide-card-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parent-guides-page .guide-card h3 {
  color: var(--blue);
  font-size: clamp(1.7rem, 5vw, 2.25rem);
}

.parent-guides-page .guide-card-body > p:not(.guide-card-label) {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.parent-guides-page .guide-card-button {
  margin-top: 24px;
  color: #1f2c34;
  background: #f3c766;
  box-shadow: 0 12px 28px rgba(39, 50, 58, 0.12);
}

.parent-guides-page .guide-card-button:hover {
  background: #eebd4f;
}

.parent-guides-page .guide-library-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.parent-guide-page .guide-article-body {
  width: min(calc(100% - 40px), 780px);
  margin: 0 auto;
  padding: 10px 0 72px;
}

.parent-guide-page .guide-article-body section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(214, 168, 79, 0.22);
}

.parent-guide-page .guide-article-body section:last-child {
  border-bottom: 0;
}

.parent-guide-page .guide-article-body h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(1.75rem, 5vw, 2.45rem);
}

.parent-guide-page .guide-article-body p,
.parent-guide-page .guide-question-list {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  line-height: 1.78;
}

.parent-guide-page .guide-article-body p {
  margin: 0 0 18px;
}

.parent-guide-page .guide-article-body p:last-child {
  margin-bottom: 0;
}

.parent-guide-page .guide-highlight-card,
.parent-guide-page .guide-prayer-card,
.parent-guide-page .guide-verse-card {
  margin: 0;
  padding: clamp(24px, 5vw, 36px);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(39, 50, 58, 0.08);
}

.parent-guide-page .guide-card-followup > .guide-highlight-card,
.parent-guide-page .guide-card-followup > .guide-verse-card {
  margin-bottom: 24px;
}

.parent-guide-page .guide-highlight-card {
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 199, 102, 0.2), transparent 58%),
    rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(214, 168, 79, 0.34);
  text-align: center;
}

.parent-guide-page .guide-highlight-card p {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.5;
}

.parent-guide-page .guide-verse-card {
  color: var(--blue);
  background: rgba(223, 232, 221, 0.58);
  border-left: 5px solid var(--gold);
  text-align: center;
}

.parent-guide-page .guide-verse-card p {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-style: italic;
}

.parent-guide-page .guide-verse-card cite {
  display: block;
  margin-top: 10px;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 800;
}

.parent-guide-page .guide-question-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 28px;
}

.parent-guide-page .guide-question-list li {
  padding-left: 7px;
}

.parent-guide-page .guide-question-list li::marker {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.parent-guide-page .guide-prayer-card {
  background: rgba(255, 247, 223, 0.78);
  border: 1px solid rgba(214, 168, 79, 0.36);
  border-left: 5px solid var(--gold);
}

.parent-guide-page .guide-prayer-card p {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-style: italic;
}

.parent-guide-page .guide-article-body .guide-perfect-for {
  margin-top: 18px;
  padding: clamp(24px, 5vw, 34px);
  border: 1px solid rgba(82, 108, 90, 0.2);
  border-radius: var(--radius);
  background: rgba(223, 232, 221, 0.42);
}

.parent-guide-page .guide-article-body .guide-perfect-for h2 {
  font-size: clamp(1.65rem, 4vw, 2.2rem);
}

.parent-guide-page .guide-article-body .guide-perfect-for ul {
  display: grid;
  gap: 12px 24px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.parent-guide-page .guide-article-body .guide-perfect-for li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.parent-guide-page .guide-article-body .guide-perfect-for li span {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.parent-guide-page .guide-final-cta {
  padding: 70px 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 199, 102, 0.2), transparent 42%),
    rgba(223, 232, 221, 0.62);
  text-align: center;
}

.parent-guide-page .guide-final-cta-inner {
  max-width: 760px;
}

.parent-guide-page .guide-final-cta h2 {
  color: var(--blue);
}

.parent-guide-page .guide-final-cta p {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
}

.parent-guide-page .guide-final-cta .button {
  margin-top: 28px;
}

.parent-guide-page .guide-back-link {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 0.92rem;
}

@media (min-width: 700px) {
  :root {
    --anchor-offset: 100px;
  }

  .site-header {
    min-height: 130px;
    padding: 10px 32px;
  }

  .brand-logo {
    height: clamp(108px, 9vw, 124px);
    max-width: 760px;
  }

  .site-nav {
    display: flex;
  }

  .hero {
    min-height: 82svh;
    padding: 110px 48px 96px;
    background-position: center right;
  }

  .section {
    padding: 84px 32px;
  }

  .section.about-page,
  .section.legal-page {
    padding-top: 54px;
  }

  .form-grid,
  .letter-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .email-preview-stack {
    margin-top: 42px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(66px, 7vw, 104px);
  }

  .parent-story {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 42px;
  }

  .parent-copy {
    text-align: center;
    transform: translateY(-18px);
  }

  .parent-copy h2 {
    font-size: clamp(2.4rem, 4.4vw, 4rem);
  }

  .quiet-banner {
    grid-column: 1 / -1;
    width: min(100%, 860px);
    margin: 0 auto;
  }

  .letter-footer {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .letter-footer span {
    padding-left: 26px;
    border-left: 1px solid rgba(39, 50, 58, 0.18);
  }

  .sample-modal-footer {
    grid-template-columns: 1fr auto;
    justify-items: start;
    text-align: left;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px 32px;
  }

  .parent-guides-page .guide-hero,
  .parent-guide-page .guide-article-hero {
    padding: 72px 32px 46px;
  }

  .parent-guides-page .guide-callout {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .parent-guides-page .guide-card {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  }

  .parent-guides-page .guide-card-mark {
    min-height: 100%;
  }

  .parent-guide-page .guide-article-body {
    padding-bottom: 96px;
  }
}

@media (max-width: 699px) {
  :root {
    --anchor-offset: 100px;
  }

  .site-header {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 148px;
    padding: 8px 12px 10px;
  }

  .brand-logo {
    height: clamp(82px, 20vw, 96px);
    max-width: min(92vw, 440px);
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 13px;
  }

  .homepage-nav {
    gap: 8px 14px;
    font-size: 14px;
  }

  .site-nav a {
    padding: 6px 10px;
    border: 1px solid rgba(214, 168, 79, 0.24);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.68);
  }

  .parent-guide-page .guide-article-hero {
    padding: 34px 16px 24px;
  }

  .parent-guide-page .breadcrumbs {
    gap: 5px;
    margin-bottom: 20px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .parent-guide-page .guide-article-hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.8rem);
    overflow-wrap: normal;
  }

  .parent-guide-page .guide-story-image {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-width: 0;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
  }

  .parent-guide-page .guide-story-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .parent-guide-page .guide-subtitle {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .parent-guide-page .guide-article-body {
    width: min(calc(100% - 32px), 780px);
    padding-top: 0;
  }

  .parent-guide-page .guide-article-body section {
    padding: 28px 0;
  }

  .parent-guide-page .guide-article-body .guide-perfect-for {
    padding: 22px 18px;
  }

  .parent-guide-page .guide-final-cta {
    padding: 54px 20px;
  }

  .story-promise {
    min-height: 0;
    border-radius: 26px;
  }

  .parent-visual {
    gap: 22px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
  }

  .mini-feature,
  .mini-feature:nth-child(odd),
  .mini-feature:nth-child(n + 3) {
    min-height: auto;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(214, 168, 79, 0.24);
  }

  .mini-feature:last-child {
    border-bottom: 0;
  }

  .feature-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
  }

  .feature-icon img {
    width: 54px;
    height: 54px;
  }

  .feature-copy {
    gap: 4px;
  }

  .feature-copy strong {
    font-size: 1.22rem;
    line-height: 1.05;
  }

  .feature-copy small {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .email-preview {
    max-height: 760px;
  }

  .sample-letter-button {
    width: 100%;
    padding-inline: 18px;
  }

  .pricing-plan-selector {
    grid-template-columns: 1fr;
  }

  .signup-plan-selector {
    grid-template-columns: 1fr;
  }

  .pricing-plan-option {
    min-height: auto;
  }

  .plan-option-price {
    margin-top: 14px;
  }

  .pricing-cta {
    width: 100%;
    justify-content: center;
  }

  .modal-overlay {
    padding: 0;
  }

  .sample-modal {
    width: 100%;
    height: 100svh;
    max-height: none;
    border-radius: 0;
  }

  .sample-modal-scroll {
    height: 100%;
    max-height: none;
  }

  .sample-letter-header {
    padding-top: 58px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .footer-meta {
    display: contents;
  }

  .footer-meta > p:first-child {
    order: 1;
  }

  .footer-links {
    order: 2;
  }

  .footer-contact {
    order: 3;
  }
}

@media (max-width: 460px) {
  .mini-feature {
    gap: 12px;
    padding: 16px 0;
  }

  .feature-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .feature-icon img {
    width: 50px;
    height: 50px;
  }

  .feature-copy strong {
    font-size: 1.14rem;
  }

  .feature-copy small {
    font-size: 0.92rem;
  }
}

@media (min-width: 1040px) {
  .hero {
    padding-left: max(56px, calc((100vw - 1080px) / 2));
  }

  .benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}
