@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --cream: #F8F4ED; --warm-cream: #F2EDE4; --gold: #C4A44A; --teal: #2A7F97;
  --terracotta: #B05A3A; --navy: #293F6B; --sage: #9cc5b5; --mint: #c8ddd4;
  --text: #2C2C2C; --text-light: #5E5E5E; --text-muted: #9A9A9A;
  --border: #E5DFD5; --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input { font-family: var(--sans); }
button { font-family: var(--sans); cursor: pointer; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.rule { width: 48px; height: 2px; background: var(--teal); }
.rule-gold { background: var(--gold); }
.rule-center { margin-left: auto; margin-right: auto; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(248,244,237,0.95); backdrop-filter: blur(8px); border-bottom-color: var(--border); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 60px; }
.nav-logo { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--navy); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 12.5px; color: var(--text-light); letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; color: var(--navy); font-size: 20px; }

/* MOBILE NAV */
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: 16px 24px; z-index: 99; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* SECTIONS */
.section { padding: 68px 0; }
.section-white { background: var(--white); }
.section-warm { background: var(--warm-cream); }

/* HERO */
.hero { padding-top: 130px; padding-bottom: 60px; text-align: center; }
.hero h1 { font-family: var(--serif); font-size: 40px; font-weight: 400; line-height: 1.3; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.5px; }
.hero p { font-size: 14px; line-height: 1.85; color: var(--text-light); max-width: 520px; margin: 0 auto 16px; }
.hero .tagline { font-size: 12.5px; color: var(--text-muted); font-style: italic; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-buttons a { font-size: 12.5px; padding: 10px 22px; border: 1px solid var(--border); border-radius: 8px; background: var(--white); color: var(--text); transition: all 0.25s; }
.hero-buttons a:hover { border-color: var(--teal); color: var(--teal); }

/* HEADINGS */
.section-label { font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--navy); margin-bottom: 14px; }
.section-title-lg { font-size: 28px; }

/* PATHWAY CHOOSER */
.pathway-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 700px; margin: 0 auto; }
.pathway-card { display: block; background: var(--white); border-radius: 10px; padding: 18px 20px; border: 1px solid var(--border); transition: all 0.25s; }
.pathway-card:hover { transform: translateY(-2px); }
.pathway-card .need-label { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.pathway-card .need { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.pathway-card .start { font-size: 12px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.pathway-card .dot { width: 6px; height: 6px; border-radius: 50%; }

/* STORY LANES */
.lanes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lane-card { background: var(--white); border-radius: 14px; padding: 30px; border: 1px solid var(--border); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.lane-card .accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.lane-card .territory { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.lane-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.lane-card .desc { font-size: 13px; line-height: 1.75; color: var(--text-light); margin-bottom: 14px; flex: 1; }
.lane-card .companions { border-top: 1px solid var(--border); padding-top: 12px; margin-bottom: 14px; }
.lane-card .companions .label { font-size: 10.5px; color: var(--text-muted); margin-bottom: 3px; }
.lane-card .companions p { font-size: 12px; color: var(--text-light); }
.lane-card .meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.lane-card .age { font-size: 11px; color: var(--text-muted); }
.lane-card .status { font-size: 10px; color: var(--text-muted); background: var(--warm-cream); padding: 2px 8px; border-radius: 4px; }
.lane-card .cta { font-size: 12px; color: var(--teal); font-weight: 500; }
.lane-card .cta:hover { color: var(--navy); }

/* JOURNAL CHOOSER */
.journal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.journal-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; cursor: pointer; transition: all 0.3s; outline: none; }
.journal-card:hover, .journal-card.active { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.journal-card.active { background: var(--cream); }
.journal-card .jdot { width: 8px; height: 8px; border-radius: 50%; margin-bottom: 12px; }
.journal-card h4 { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.journal-card .jdesc { font-size: 11px; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.journal-card .expand { max-height: 0; overflow: hidden; transition: max-height 0.4s; }
.journal-card.active .expand { max-height: 180px; }
.journal-card .expand-inner { border-top: 1px solid var(--border); padding-top: 10px; margin-top: 2px; font-size: 10.5px; font-style: italic; color: var(--text-light); line-height: 1.6; }
.journal-card .toggle { font-size: 10px; font-weight: 500; margin-top: 8px; }

/* PARENT SECTION */
.parent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.parent-card { background: var(--white); border-radius: 10px; padding: 16px 18px; border: 1px solid var(--border); }
.parent-card .q { font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.parent-card .a { font-size: 11.5px; color: var(--text-light); line-height: 1.6; }

/* LEAD CAPTURE */
.lead-box { background: var(--warm-cream); border-radius: 8px; padding: 16px 20px; margin-top: 20px; }
.lead-box h4 { font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.lead-box p { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.lead-box .form-row { display: flex; gap: 8px; }
.lead-box input { flex: 1; padding: 9px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 12px; background: var(--white); outline: none; color: var(--text); }
.lead-box button { padding: 9px 16px; border: none; border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--white); transition: background 0.2s; }
.btn-teal { background: var(--teal); }
.btn-teal:hover { background: var(--navy); }
.btn-gold { background: var(--gold); }
.btn-gold:hover { background: var(--navy); }
.btn-navy { background: var(--navy); }
.btn-navy:hover { background: var(--teal); }

/* EDUCATOR */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.edu-item { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.edu-item:last-child { border-bottom: none; }
.edu-item .bar { width: 4px; height: 30px; border-radius: 2px; flex-shrink: 0; margin-top: 2px; }
.edu-item .title { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.edu-item .use { font-size: 11.5px; color: var(--text-light); }

/* PROVERB */
.proverb { font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.5; color: var(--navy); font-style: italic; text-align: center; }
.proverb-source { font-family: var(--sans); font-size: 11px; color: var(--text-light); text-align: center; margin-top: 8px; }

/* ABOUT */
.about-heart { font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--navy); font-style: italic; margin-top: 8px; text-align: center; }
.author-note { font-size: 13px; line-height: 1.75; color: var(--text-light); text-align: center; margin-top: 36px; }
.author-note strong { font-weight: 600; color: var(--text); }

/* NEWSLETTER */
.newsletter { text-align: center; max-width: 420px; margin: 0 auto; }
.newsletter h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.newsletter p { font-size: 12px; color: var(--text-light); margin-bottom: 18px; }
.newsletter .form-row { display: flex; gap: 8px; }
.newsletter input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 12px; background: var(--warm-cream); outline: none; color: var(--text); }
.newsletter button { padding: 10px 18px; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 20px; }
.footer-brand { font-family: var(--serif); font-size: 16px; font-weight: 500; color: var(--navy); }
.footer-sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.footer-cols { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-col h5 { font-size: 10px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col a { display: block; font-size: 11px; color: var(--text-light); padding: 2px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 24px; padding-top: 14px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 10px; color: var(--text-muted); }

/* PRODUCT PAGE */
.product-hero { padding-top: 100px; padding-bottom: 48px; }
.product-hero .back { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; display: inline-block; }
.product-hero .back:hover { color: var(--teal); }
.product-hero h1 { font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
.product-hero .subtitle { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.product-content { font-size: 14px; line-height: 1.85; color: var(--text-light); max-width: 640px; }
.product-content p { margin-bottom: 16px; }
.product-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.product-sidebar h4 { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.product-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .pathway-grid, .lanes-grid, .parent-grid, .edu-grid, .product-layout { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
}
