/* ============================================================
   Sensitive Strength Parenting · shared stylesheet
   Teal ink, blush paper, one coral accent. Sibling of the
   True Fulfillment editorial system, never a copy.
   ============================================================ */

:root {
  --ink:        #0C4426;
  --ink-soft:   #2F5A47;
  --ink-muted:  #6B7F76;
  --paper:      #FFFFFF;
  --blush:      #FCEBE3;
  --blush-dark: #EAD9CE;
  --page-warm:  #F4EDE6;
  --coral:      #E8705F;
  --coral-deep: #C94F3A;
  --mint:       #E3F4EC;
  --mint-dark:  #C6E6D6;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito Sans', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --sheet: 1140px;
  --wrap:  980px;
  --gutter: 36px;
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page-warm);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--coral); outline-offset: 2px;
}
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 999; }
.skip:focus { left: 8px; }

/* ---------- Sheet and column ---------- */
.sheet { max-width: var(--sheet); margin: 0 auto; background: var(--paper); box-shadow: 0 18px 60px rgba(12, 68, 38, 0.08); }
.wrap  { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Type ---------- */
h1, h2, h3, .display { font-family: var(--font-heading); font-weight: 700; line-height: 1.12; letter-spacing: -0.3px; color: var(--ink); }
h1 { font-size: clamp(38px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.6vw, 40px); }
h3 { font-size: clamp(21px, 2.2vw, 25px); line-height: 1.25; }
p  { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }
.lede { font-size: 19px; color: var(--ink-soft); max-width: 640px; }
.eyebrow { font-weight: 700; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 14px; display: block; }
.muted { color: var(--ink-muted); }
.small { font-size: 14px; }
em { font-style: italic; }
ul.list { padding-left: 22px; }
ul.list li { margin-bottom: 8px; }
ul.checks { list-style: none; padding: 0; }
ul.checks li { position: relative; padding-left: 28px; margin-bottom: 10px; }
ul.checks li::before { content: ''; position: absolute; left: 0; top: 9px; width: 14px; height: 8px; border-left: 2px solid var(--coral-deep); border-bottom: 2px solid var(--coral-deep); transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; font: 600 14px/1 var(--font-body); letter-spacing: 0.3px; border-radius: 6px; text-decoration: none; cursor: pointer; border: 1.5px solid transparent; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-soft); border-color: var(--ink-soft); transform: translateY(-1px); }
.btn-coral { background: var(--coral-deep); color: #fff; border-color: var(--coral-deep); }
.btn-coral:hover { background: #B24331; border-color: #B24331; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--blush); border-color: var(--blush); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.textlink { color: var(--coral-deep); font-weight: 700; text-decoration: none; border-bottom: 1.5px solid var(--coral); padding-bottom: 1px; }
.textlink:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--blush-dark); }
.nav-inner { max-width: var(--sheet); margin: 0 auto; padding: 14px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.wordmark .wm-top { font-family: var(--font-heading); font-weight: 700; font-size: 20px; letter-spacing: -0.2px; color: var(--ink); }
.wordmark .wm-top span { color: var(--coral-deep); }
.wordmark .wm-sub { font-size: 9px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--ink-muted); margin-top: 5px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--coral); }
.nav-links a.nav-cta { background: var(--coral-deep); color: #fff; padding: 10px 14px; border-radius: 6px; border-bottom: 0; margin-left: 4px; }
.nav-links a.nav-cta:hover { background: #B24331; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--ink); border-radius: 6px; padding: 8px 10px; cursor: pointer; color: var(--ink); font: 600 13px var(--font-body); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.band-blush { background: var(--blush); }
.band-mint  { background: var(--mint); }
.band-warm  { background: var(--page-warm); }
.rule { border: 0; border-top: 1px solid var(--blush-dark); margin: 0 var(--gutter); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { margin-bottom: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.photo { border-radius: var(--radius); overflow: hidden; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-tall img { aspect-ratio: 4 / 5; }
.photo-wide img { aspect-ratio: 3 / 2; }
.photo-square img { aspect-ratio: 1 / 1; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 80px; }
.hero .grid-2 { grid-template-columns: 1.15fr 1fr; gap: 48px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--coral-deep); font-style: italic; font-weight: 600; }
.hero .lede { margin-bottom: 30px; }
.proof-line { margin-top: 22px; font-size: 15px; color: var(--ink-muted); }
.proof-line .stars { color: var(--coral); letter-spacing: 2px; margin-right: 8px; }
.proof-line strong { color: var(--ink-soft); font-weight: 600; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--blush-dark); border-radius: var(--radius); padding: 28px; }
.card h3 { margin-bottom: 10px; }
.card .kicker { font-size: 13px; font-weight: 700; color: var(--coral-deep); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.card-num { font-family: var(--font-heading); font-size: 34px; color: var(--coral); line-height: 1; margin-bottom: 14px; }
.card-tint { background: var(--blush); border-color: var(--blush-dark); }
.card-mint { background: var(--mint); border-color: var(--mint-dark); }
.card-service { padding: 36px; display: flex; flex-direction: column; gap: 14px; }
.card-service .btn-row { margin-top: auto; padding-top: 10px; }

/* ---------- Statement / pull ---------- */
.statement { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 34px); line-height: 1.3; color: var(--ink); max-width: 820px; font-weight: 600; }
.statement em { color: var(--coral-deep); font-style: italic; }

/* ---------- Quote ---------- */
.quote { position: relative; background: var(--blush); border-radius: var(--radius); padding: 40px 44px 36px; }
.quote::before { content: '\201C'; position: absolute; top: 6px; left: 22px; font-family: var(--font-heading); font-size: 96px; line-height: 1; color: var(--coral); opacity: .55; }
.quote p { font-family: var(--font-heading); font-style: italic; font-size: 20px; line-height: 1.55; color: var(--ink); }
.quote cite { display: block; margin-top: 16px; font-style: normal; font-size: 14px; color: var(--ink-muted); font-weight: 600; }

/* ---------- Credentials ---------- */
.badges { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin: 22px 0 6px; }
.badges img { width: 88px; height: 88px; border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.cred-list { list-style: none; padding: 0; columns: 1; }
.cred-list li { padding: 9px 0; border-bottom: 1px solid var(--blush-dark); font-size: 15px; }
.cred-list li:last-child { border-bottom: 0; }

/* ---------- Coach block ---------- */
.coach { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.coach .portrait img { border-radius: var(--radius); width: 100%; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lede { margin: 0 auto 28px; }
.cta-band .btn-row { justify-content: center; }
.cta-meta { margin-top: 18px; font-size: 14px; color: var(--ink-muted); }

/* ---------- Forms ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; font: 400 16px var(--font-body); border: 1.5px solid var(--blush-dark); border-radius: 6px; background: #fff; color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--ink); outline: none; }
.form-note { font-size: 13px; color: var(--ink-muted); }
.signup { display: flex; gap: 10px; max-width: 480px; }
.signup input { flex: 1; padding: 12px 14px; font: 400 15px var(--font-body); border: 1.5px solid var(--blush-dark); border-radius: 6px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Article pages ---------- */
.article { max-width: 720px; }
.article h2 { font-size: clamp(24px, 2.8vw, 32px); margin: 44px 0 14px; }
.article h2:first-child { margin-top: 0; }
.article p { margin-bottom: 20px; }
.article .photo { margin: 36px 0; }
.page-head { padding: 64px 0 40px; }
.page-head h1 { margin-bottom: 16px; }
.page-head .lede { max-width: 700px; }
.page-head .breadcrumb { font-size: 13px; color: var(--ink-muted); margin-bottom: 18px; }
.page-head .breadcrumb a { color: var(--ink-muted); text-decoration: none; }

/* ---------- Story page ---------- */
.story-step { display: grid; grid-template-columns: 200px 1fr; gap: 40px; padding: 44px 0; border-top: 1px solid var(--blush-dark); }
.story-step:last-child { border-bottom: 1px solid var(--blush-dark); }
.story-step .label { font-family: var(--font-heading); font-size: 34px; line-height: 1.1; color: var(--ink); }
.story-step .label small { display: block; font-family: var(--font-body); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--coral-deep); margin-top: 8px; }

/* ---------- Lessons ---------- */
.lesson { display: flex; gap: 20px; align-items: flex-start; padding: 22px 24px; background: #fff; border: 1px solid var(--blush-dark); border-radius: var(--radius); }
.lesson .num { flex: 0 0 48px; height: 48px; border-radius: 50%; background: var(--blush); color: var(--coral-deep); font-family: var(--font-heading); font-weight: 700; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.lesson h3 { font-size: 19px; margin-bottom: 4px; }
a.lesson:hover { border-color: var(--coral); }
a.lesson:hover h3 { color: var(--coral-deep); }
.lesson p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Books ---------- */
.book-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.book-list ul { list-style: none; padding: 0; }
.book-list li { padding: 10px 0; border-bottom: 1px solid var(--blush-dark); }
.book-list li:last-child { border-bottom: 0; }
.book-list li span { display: block; font-size: 14px; color: var(--ink-muted); }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,0.82); padding: 64px 0 36px; }
footer .wrap { max-width: var(--sheet); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
footer h4 { font-family: var(--font-heading); color: #fff; font-size: 20px; margin-bottom: 12px; }
footer .foot-tag { font-size: 15px; max-width: 360px; }
footer ul { list-style: none; padding: 0; }
footer li { margin-bottom: 10px; font-size: 15px; }
footer a { color: rgba(255,255,255,0.86); text-decoration: none; }
footer a:hover { color: #fff; text-decoration: underline; }
footer .signup input { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; }
footer .signup input::placeholder { color: rgba(255,255,255,0.5); }
footer .signup .btn { padding: 12px 18px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; font-size: 13px; color: rgba(255,255,255,0.6); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.disclaimer { font-size: 13px; color: rgba(255,255,255,0.62); max-width: 720px; margin-top: 10px; }

/* ---------- Reveal (with no-JS fallback) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; animation: revealFallback 0s .9s forwards; }
.reveal.in { opacity: 1; transform: none; animation: none; }
@keyframes revealFallback { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .wordmark .wm-sub { display: none; }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .coach { grid-template-columns: 240px 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 12px; border-bottom: 1px solid var(--blush-dark); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0 var(--gutter); }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--blush-dark); }
  .nav-links a.active { border-bottom-color: var(--coral); }
  .nav-links li:last-child { padding-top: 12px; }
  .nav-links a.nav-cta { text-align: center; }
}
@media (max-width: 760px) {
  :root { --gutter: 20px; }
  section { padding: 64px 0; }
  .hero { padding: 44px 0 56px; }
  .hero .grid-2, .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .hero .photo { order: -1; }
  .hero .photo img { aspect-ratio: 16 / 10; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .coach { grid-template-columns: 1fr; }
  .coach .portrait { max-width: 260px; }
  .story-step { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .book-list { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote { padding: 34px 24px 28px; }
  .quote::before { left: 12px; font-size: 72px; }
  .signup { flex-direction: column; }
}
@media (max-width: 640px) {
  :root { --gutter: 16px; }
  body { font-size: 16px; }
  .lede { font-size: 17px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .cta-band .btn-row { align-items: stretch; }
}
@media print {
  .nav, footer .signup, .btn { display: none !important; }
  body { background: #fff; }
  .sheet { box-shadow: none; }
}
