@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --red:    #FF6B6B;
  --orange: #FF922B;
  --yellow: #FFD43B;
  --green:  #69DB7C;
  --blue:   #4DABF7;
  --purple: #CC5DE8;
  --teal:   #1a9c8a;
  --dark:   #222;
  --OBDO-BBLS: #FFF230;
  --OBDO-BSLB: #FF751F;
  --OSSH-BBB: #FFFCAA;
  --OSSH-BSB: #FFCBA4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: #333; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 10px 40px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-logo { height: 52px; width: auto; }
.nav-links { display: flex; gap: 12px; align-items: center; }
.nav-links a {
  text-decoration: none; font-weight: 800; font-size: 0.9rem;
  padding: 9px 22px; border-radius: 50px; transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a.link {
  color: var(--orange);
}
.nav-links a.link:hover { color: #e8811a; }
.nav-links a.outline {
  color: var(--teal); border: 2px solid var(--teal);
}
.nav-links a.outline:hover { background: var(--teal); color: #fff; }
.nav-links a.filled {
  background: var(--yellow); color: var(--dark);
}
.nav-links a.filled:hover { background: #ffc107; }

/* ── HAMBURGER (hidden above 860px) ── */
.nav-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-fallback {
  display: none;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.2rem;
  color: var(--red);
}
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
}
.nav-toggle:hover { background: rgba(0,0,0,0.05); }
.nav-toggle-icon {
  display: block; position: relative;
  width: 22px; height: 2px; background: var(--dark);
  transition: background 0.2s;
}
.nav-toggle-icon::before, .nav-toggle-icon::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--dark);
  transition: transform 0.2s;
}
.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after { top: 7px; }
nav.nav-open .nav-toggle-icon { background: transparent; }
nav.nav-open .nav-toggle-icon::before { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle-icon::after { transform: translateY(-7px) rotate(-45deg); }

/* ── RAINBOW STRIPE ── */
.stripe {
  height: 8px;
  background: linear-gradient(to right, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #1a1a2e;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../lifestyle2.jpg');
  background-size: cover; background-position: center;
  opacity: 0.4;
}
/* Gradient overlay so text pops on left */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,20,40,0.85) 0%, rgba(20,20,40,0.5) 55%, rgba(20,20,40,0.05) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 60px 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--dark);
  font-weight: 900; font-size: 0.78rem;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  line-height: 1.75; margin-bottom: 40px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); color: #fff;
  font-weight: 900; font-size: 1rem; line-height: 1;
  padding: 15px 34px; border-radius: 50px;
  border: 2px solid transparent;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(255,107,107,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,107,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #fff;
  font-weight: 800; font-size: 1rem; line-height: 1;
  padding: 15px 34px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ── SECTION SHARED ── */
section {
  padding: 88px 40px;
  scroll-margin-top: 62px;
}
.section-label {
  display: inline-block;
  font-size: 0.76rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red); margin-bottom: 10px;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900; color: var(--dark);
  margin-bottom: 14px; line-height: 1.2;
}
.lead {
  font-size: 1.05rem; color: #666;
  max-width: 580px; line-height: 1.75;
  margin-bottom: 52px;
}

/* ── BOOKS ── */
.books-section { background: #fffdf5; }
.books-inner { max-width: 1100px; margin: 0 auto; }
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}
.book-card {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
  position: relative;
}
.book-card:hover { transform: translateY(-7px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }
.book-cover {
  width: 100%; aspect-ratio: 8.5/11;
  object-fit: cover; display: block;
  background: #f5f5f5;
}
.book-cover-placeholder {
  aspect-ratio: 8.5/11;
  background: linear-gradient(135deg, #e8f4ff, #d0e8ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.book-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.book-tag {
  display: inline-block;
  font-size: 0.74rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.tag-live { background: #f0fff4; color: #2d9e5f; }
.tag-soon { background: #fff0f0; color: var(--red); }
.book-body h3 { font-size: 1.3rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.book-body h4 { font-size: 1rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.book-body p { font-size: 0.93rem; color: #777; line-height: 1.65; flex: 1; margin-bottom: 24px; }
.btn-amazon {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  font-weight: 900; font-size: 0.9rem;
  padding: 13px 26px; border-radius: 50px;
  text-decoration: none; width: fit-content;
  transition: background 0.2s, transform 0.2s;
}
.btn-amazon:hover { background: #e8811a; transform: translateY(-2px); }
.btn-soon {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f0f0f0; color: #aaa;
  font-weight: 900; font-size: 0.9rem;
  padding: 13px 26px; border-radius: 50px; width: fit-content;
}

/* ── PREVIEW ── */
.preview-section { background: #f0f8ff; }
.preview-inner { max-width: 1100px; margin: 0 auto; }

/* Book tabs */
.preview-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.preview-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 50px;
  border: 2px solid #d0e8ff;
  background: #fff; color: #555;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.88rem;
  cursor: pointer; transition: all 0.2s;
}
.preview-tab:hover { border-color: var(--blue); color: var(--dark); }
.preview-tab.active {
  background: var(--blue); color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(77,171,247,0.35);
}
.preview-tab-soon {
  border-style: dashed; color: #aaa; cursor: default;
}
.preview-tab-soon:hover { border-color: #d0e8ff; color: #aaa; }
.preview-tab-soon .tab-badge {
  font-size: 0.72rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #e8f4ff; color: var(--blue);
  padding: 2px 9px; border-radius: 50px;
}

/* Page grids */
.preview-book { display: none; }
.preview-book.active { display: block; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 18px;
}
.preview-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  transition: transform 0.22s, box-shadow 0.22s;
  background: #fff;
}
.preview-card img { width: 100%; display: block; }
.preview-label {
  padding: 10px 14px;
  font-size: 0.8rem; font-weight: 800; color: #888;
  text-align: center;
}
.preview-coming-soon {
  min-height: 280px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: #fff; border-radius: 20px;
  border: 2px dashed #c8e6ff;
  color: #aaa; font-weight: 800;
}
.preview-coming-soon span { font-size: 3rem; }
.preview-coming-soon p { font-size: 0.9rem; }

/* ── ABOUT ── */
.about-section { background: #fff; }
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-text a { color: var(--red); font-weight: 800; text-decoration: none; }
.about-text a:hover { text-decoration: underline; }
.about-text p {
  font-size: 1.05rem; color: #666; line-height: 1.8; margin-bottom: 16px;
}
.about-image {
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 10px 48px rgba(0,0,0,0.13);
  position: relative;
}
.about-image img { width: 100%; display: block; }
.about-image-placeholder {
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
  min-height: 420px; display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
}
.crayon-strip { display: flex; gap: 8px; margin-top: 36px; }
.crayon { flex: 1; height: 10px; border-radius: 5px; }

/* ── GIFT CALLOUT ── */
.gift-section {
  background: linear-gradient(135deg, #fff9e6 0%, #fff0f8 100%);
  text-align: center;
}
.gift-inner { max-width: 720px; margin: 0 auto; }
.gift-emoji { font-size: 3.5rem; margin-bottom: 20px; display: block; }
.gift-section h2 { margin-bottom: 16px; }
.gift-section p { font-size: 1.05rem; color: #666; line-height: 1.75; margin-bottom: 36px; }
.gift-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.gift-tag {
  background: #fff; border: 2px solid #eee;
  font-weight: 800; font-size: 0.88rem; color: #555;
  padding: 8px 20px; border-radius: 50px;
}

/* ── EMAIL SIGNUP ── */
.signup-section {
  background: linear-gradient(135deg, #e8fff8 0%, #fff9e6 100%);
  text-align: center;
}
.signup-inner { max-width: 560px; margin: 0 auto; }
.signup-columns {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
  max-width: 980px; margin: 0 auto; text-align: left;
}
.signup-columns .signup-inner { max-width: none; margin: 0; }
.signup-columns .signup-form form { justify-content: flex-start; }
.signup-thumb {
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 10px 48px rgba(0,0,0,0.13);
  position: relative;
}
.signup-thumb img { width: 100%; display: block; }
.signup-thumb-placeholder {
  background: linear-gradient(135deg, #e8fff8, #fff9e6);
  min-height: 320px; display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
}
.signup-emoji { font-size: 3.5rem; margin-bottom: 20px; display: block; }
.signup-section h2 { margin-bottom: 16px; }
.signup-section p { font-size: 1.05rem; color: #666; line-height: 1.75; margin-bottom: 0px; }
.signup-form form {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.signup-form input[type="email"] {
  flex: 1 1 260px; max-width: 320px;
  padding: 14px 22px; border-radius: 50px;
  margin-bottom: 16px;
  border: 2px solid #ddd; font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; outline: none; transition: border-color 0.2s;
}
.signup-form input[type="email"]:focus { border-color: var(--teal); }
.signup-form button {
  background: var(--teal); color: #fff; border: none;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 50px; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.signup-form button:hover { background: #157e70; transform: translateY(-2px); }
.signup-microcopy {
  font-size: 0.82rem; color: #999; margin-top: 14px; margin-bottom: 0 !important;
}

.signup-form .formkit-alert-success {
background: #fff;
border: 2px solid var(--teal);
color: var(--teal);
font-weight: 800;
font-size: 1rem;
padding: 16px 28px;
border-radius: 50px;
margin-top: 8px;
text-align: center;
display: inline-block;
}

.signup-form .formkit-alert-success:empty {
display: none;
}

.hcs-kit-fields {
margin-top: 18px;
}

@media (max-width: 480px) {
  .signup-form form { flex-direction: column; align-items: stretch; }
  .signup-form input[type="email"] { max-width: none; }
}

/* ── SOCIAL ── */
.social-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--yellow) 100%);
  text-align: center;
}
.social-section h2 { color: #fff; }
.social-lead { font-size: 1.05rem; color: rgba(255,255,255,0.9); max-width: 480px; margin: 0 auto 44px; line-height: 1.7; }
.social-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.2); color: #fff;
  font-weight: 800; font-size: 0.93rem;
  padding: 13px 26px; border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: #888;
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.87rem;
}
footer img { height: 36px; opacity: 0.7; }
footer p { text-align: center; }
footer a { color: var(--yellow); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── RIBBON ── */
.ribbon {
  position: absolute; top: 37px; left: -43px;
  background: var(--green); color: var(--dark);
  font-size: 0.72rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 40px;
  transform: rotate(-45deg);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ── CIRCLES ── */
.circle {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  &.OBDO-BBLS {
    background-color: var(--OBDO-BBLS);
  }
  &.OBDO-BSLB {
    background-color: var(--OBDO-BSLB);
  }
  &.OSSH-BBB {
    background-color: var(--OSSH-BBB);
  }
  &.OSSH-BSB {
    background-color: var(--OSSH-BSB);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  nav { padding: 10px 20px; gap: 12px; }
  .nav-logo { height: 42px; }
  .hero-content { padding: 40px 24px; }
  section, .article { padding: 64px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .signup-columns { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .signup-thumb { order: -1; }
  .signup-columns .signup-form form { justify-content: center; }
  footer { flex-direction: column; text-align: center; align-items: center; }
}

/* ── NAV: collapse to hamburger below 860px (five items need more room) ── */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 16px 20px 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
  .nav-links a { text-align: center; }
  nav.nav-open .nav-links { display: flex; }
  nav { position: fixed; }
}

/* ── FOR FAMILIES HUB ── */
.hub-section { background: #fffdf5; padding-top: 120px; }
.hub-inner { max-width: 1100px; margin: 0 auto; }
.hub-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--dark);
  margin-bottom: 14px; line-height: 1.15;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.article-card {
  display: block; text-decoration: none;
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  transition: transform 0.25s, box-shadow 0.25s;
}
.article-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }
.article-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 40 / 21;
  background: #fdf6e3;
  overflow: hidden;
}
.article-card-image::before {
  content: "🖍️";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.3;
  animation: crayon-pulse 1.6s ease-in-out infinite;
}
.article-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.article-card-image img.is-loaded { opacity: 1; }
@keyframes crayon-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.08); }
}
.article-card-body { padding: 30px; }
.article-card-body h2 { font-size: 1.35rem; line-height: 1.25; margin-bottom: 10px; }
.article-card-body p { font-size: 0.95rem; color: #777; line-height: 1.65; margin-bottom: 16px; }
.article-card-more { font-weight: 900; color: var(--red); font-size: 0.9rem; }

/* ── FOR FAMILIES ARTICLE ── */
.article { background: #fff; padding-top: 120px; }
.article-inner { max-width: 720px; margin: 0 auto; }
.article-back {
  display: inline-block; margin-bottom: 20px;
  font-weight: 800; font-size: 0.9rem; color: var(--red); text-decoration: none;
}
.article-back:hover { text-decoration: underline; }
.article h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 12px;
}
.article-meta { color: #999; font-size: 0.9rem; font-weight: 700; }
.article-top-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.article-share-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.article-share-label { color: #999; font-size: 0.85rem; font-weight: 700; }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f7f7f7; border: 2px solid #eee;
  font-size: 1rem; line-height: 1; text-decoration: none; cursor: pointer;
  transition: all 0.2s;
}
.share-btn:hover { border-color: var(--red); transform: translateY(-2px); }
.share-btn[hidden] { display: none; }
.article-share-bottom { margin-top: 28px; }
.article-hero {
  width: 100%; border-radius: 20px; margin-bottom: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.article-body { color: #444; font-size: 1.08rem; line-height: 1.85; }
.article-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin-top: 44px; margin-bottom: 14px;
}
.article-body h3 { font-size: 1.25rem; font-weight: 900; color: var(--dark); margin-top: 30px; margin-bottom: 10px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 22px 1.3em; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--red); font-weight: 800; }
.article-body strong { color: var(--dark); }

.article-faq { margin-top: 52px; padding-top: 36px; border-top: 2px solid #f0f0f0; }
.article-faq h2 { font-size: 1.7rem; margin-bottom: 24px; }
.faq-item { margin-bottom: 24px; }
.faq-item h3 { font-size: 1.15rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.faq-item p { color: #555; line-height: 1.75; }

.article-cta {
  margin-top: 52px; padding: 32px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff0f8 100%);
  border-radius: 24px; text-align: center;
}
.article-cta p { font-size: 1.05rem; color: #555; margin-bottom: 20px; }
.article-cta-btns { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }
.article-cta-link { font-weight: 900; color: var(--teal); text-decoration: none; }
.article-cta-link:hover { text-decoration: underline; }

/* ── OUR STORY ── */
.story-section { background: #fffdf5; padding-top: 120px; }
.story-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.story-section h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 18px;
}
.story-lead {
  font-size: 1.2rem; color: #666; line-height: 1.7;
  max-width: 620px; margin: 0 auto 44px;
}
.story-photo { margin: 0 0 44px; }
.story-photo img {
  width: 100%; border-radius: 28px; display: block;
  box-shadow: 0 16px 60px rgba(0,0,0,0.16);
}
.story-photo-placeholder {
  aspect-ratio: 4/3; border-radius: 28px;
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.story-photo figcaption { margin-top: 14px; font-size: 0.92rem; color: #999; font-style: italic; }
.story-body { text-align: left; }
.story-body p { font-size: 1.1rem; color: #444; line-height: 1.85; margin-bottom: 22px; }
.story-body strong { color: var(--dark); }
.story-cta { margin-top: 44px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* dark-on-light variant of the ghost button for use off the hero */
.btn-ghost-dark { color: var(--dark); border-color: rgba(0,0,0,0.25); padding: 15px 0;}
.btn-ghost-dark:hover { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.45); }

/* small link under the homepage signup copy, pointing to the standalone page */
.signup-learn-more { font-weight: 800; font-size: 0.92rem; color: var(--teal); text-decoration: none; }
.signup-learn-more:hover { text-decoration: underline; }

/* ── FREE COLOURING PAGES (standalone lead-magnet page) ── */
.leadpage-hero {
  background: linear-gradient(135deg, #e8fff8 0%, #fff9e6 100%);
  padding-top: 150px; text-align: center;
}
.leadpage-hero-inner { max-width: 700px; margin: 0 auto; }
.leadpage-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 18px;
}
.leadpage-hero-lead {
  font-size: 1.15rem; color: #555; line-height: 1.75;
  max-width: 560px; margin: 0 auto 32px;
}
.leadpage-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.leadpage-section { background: #fff; }
.leadpage-narrow { max-width: 700px; margin: 0 auto; }
.leadpage-wide { max-width: 1100px; margin: 0 auto; }
.leadpage-story { background: #fffdf5; }
.leadpage-story .leadpage-narrow p { font-size: 1.08rem; color: #444; line-height: 1.85; margin-bottom: 20px; }

.leadpage-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.leadpage-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1.05rem; color: #444; line-height: 1.65;
}
.leadpage-checklist .check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: #e8fff8; color: var(--teal); font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px;
}
.testimonial-card {
  background: #fffdf5; border-radius: 20px; padding: 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.testimonial-stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-quote { font-size: 0.96rem; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testimonial-attribution { font-size: 0.82rem; font-weight: 800; color: #888; }

.leadpage-final-cta { margin-top: 48px; text-align: center; }
