:root {
  --cream: #faf3e8;
  --cream-2: #f1e4cb;
  --sand: #ecdfc6;
  --line: #c8bda4;
  --ink: #15243d;            /* darker dusk blue for primary text */
  --ink-soft: #2c4060;       /* deeper body copy */
  --ink-mute: #5a708e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;           /* bumped from 16 for readability */
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.6; }

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ============ NAV ============ */
.nav {
  padding: 22px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.nav-brand .star {
  width: 9px; height: 9px;
  display: block;
}
.nav-brand .word {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  letter-spacing: 7px;
  font-weight: 500;
  color: var(--ink);
  padding-left: 7px;
}
.nav-list {
  display: flex;
  gap: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: auto;
}
.nav-list a {
  color: var(--ink-soft);
}
.nav-list a.active {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 32px 40px;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.footer .star {
  width: 9px; height: 9px;
  margin: 0 auto 16px;
  display: block;
}
.footer .footer-word {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  letter-spacing: 7px;
  font-weight: 500;
  margin-bottom: 12px;
  padding-left: 7px;
  color: var(--ink);
}
.footer .footer-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 500;
  opacity: 0.7;
}
.footer .footer-meta {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  font-weight: 400;
  opacity: 0.7;
}
.footer .footer-meta a { margin: 0 12px; }

/* ============ TYPE ============ */
.eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* ============ HOME HERO ============ */
.home-hero {
  padding: 80px 32px 50px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.home-hero .big-star {
  width: 14px; height: 14px;
  margin: 0 auto 22px;
  display: block;
}
.home-hero .brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: clamp(7px, 1.2vw, 12px);
  line-height: 1;
  margin: 0 0 18px;
  padding-left: clamp(7px, 1.2vw, 12px);
  color: var(--ink);
}
.home-hero .tagline {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ============ POSITIONING LINE under hero ============ */
.positioning {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 80px;
  text-align: center;
}
.positioning p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}

/* ============ COMING SOON ============ */
.coming-soon {
  padding: 80px 24px 100px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.coming-soon h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.95;
  color: var(--ink);
}
.coming-soon .date {
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.coming-soon .divider {
  width: 50px; height: 1px;
  background: var(--ink-soft);
  margin: 30px auto 0;
  opacity: 0.4;
}

/* ============ HOME TILES ============ */
.page-links {
  padding: 80px 32px 100px;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-link-card {
  padding: 40px 24px;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  display: block;
}
.page-link-card:hover {
  background: var(--cream-2);
  border-color: var(--ink-soft);
  opacity: 1;
}
.page-link-card .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1;
}
.page-link-card .title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-link-card .arrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ============ INNER PAGES ============ */
.page-title {
  padding: 90px 32px 24px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.page-title h1 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
}
.page-intro {
  padding: 0 32px 30px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.page-intro p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.prose-section {
  padding: 50px 32px 80px;
  max-width: 680px;
  margin: 0 auto;
}
.prose-section h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 26px;
  text-align: center;
  line-height: 1.3;
}
.prose-section h2.left {
  text-align: left;
}
.prose-section p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 22px;
  text-align: left;
}
.prose-section p.lead {
  font-size: 21px;
  line-height: 1.7;
  color: var(--ink);
  text-align: center;
  margin-bottom: 36px;
}
.prose-section .pullquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  margin: 50px 0;
  padding: 0 20px;
}
.prose-section .divider {
  width: 50px; height: 1px;
  background: var(--ink-soft);
  margin: 60px auto;
  opacity: 0.3;
}

/* ============ IMAGE BLOCKS (placeholders) ============ */
.image-block {
  background: linear-gradient(135deg, var(--cream-2), var(--sand));
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.image-block::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(31,54,88,0.06), transparent 55%);
}
.image-block .img-cap {
  position: relative;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--ink-soft);
  opacity: 0.85;
}
.image-block.tall { aspect-ratio: 4/5; }
.image-block.square { aspect-ratio: 1/1; }
.image-block.wide { aspect-ratio: 16/10; }
.image-block.dusk { background: linear-gradient(135deg, #2c4060, #15243d); }
.image-block.dusk .img-cap { color: var(--cream-2); opacity: 0.7; }

/* ============ SPLIT LAYOUT ============ */
.split {
  padding: 90px 32px;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse {
  direction: rtl;
}
.split.reverse > * {
  direction: ltr;
}
.split-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.25;
}
.split-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.split-text .small-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 18px;
  opacity: 0.85;
}

/* ============ CENTERED PROSE BLOCK ============ */
.center-block {
  padding: 100px 32px;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.center-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.25;
}
.center-block p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.center-block .small-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

/* ============ FULL WIDTH IMAGE BAND ============ */
.full-image {
  padding: 0;
  width: 100%;
}
.full-image .image-block {
  aspect-ratio: 21/9;
  max-height: 480px;
}

/* ============ IMPACT STATS ============ */
.impact-band {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 32px;
  text-align: center;
}
.impact-band .eyebrow { color: var(--cream-2); opacity: 0.85; margin-bottom: 16px; }
.impact-band h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.25;
}
.impact-band .lede {
  color: var(--cream-2);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 60px;
  opacity: 0.85;
}
.impact-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.impact-grid .stat {
  text-align: center;
  padding: 20px 8px;
}
.impact-grid .stat .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--cream);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.impact-grid .stat .label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-2);
  opacity: 0.85;
}
.impact-band .footnote {
  margin-top: 50px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-2);
  opacity: 0.55;
}

/* ============ STEPS ============ */
.steps {
  padding: 50px 32px 100px;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.step .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1;
}
.step h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============ CONSTELLATION ============ */
.constellation {
  padding: 100px 24px 120px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.constellation .eyebrow {
  color: var(--cream-2);
  opacity: 0.85;
  margin-bottom: 18px;
}
.constellation h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}
.constellation p.lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-2);
  max-width: 520px;
  margin: 0 auto 60px;
  opacity: 0.85;
}
.constellation-canvas {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 11;
}
.constellation-canvas svg {
  width: 100%; height: 100%;
  display: block;
}
.constellation-line { stroke: var(--cream-2); stroke-width: 0.4; opacity: 0.55; }
.constellation-star { fill: var(--cream); }
.constellation-glow { fill: var(--cream); opacity: 0.15; }
.child-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  fill: var(--cream-2);
  font-size: 16px;
}
.child-label.bright {
  fill: var(--cream); font-weight: 500; font-size: 18px;
}
.child-meta {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  fill: var(--cream-2);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.7;
}
.constellation-footnote {
  margin-top: 60px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-2);
  opacity: 0.6;
}

/* ============ JOURNAL STUB ============ */
.journal-stub {
  padding: 100px 32px 130px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.journal-stub .star-large {
  width: 14px; height: 14px;
  margin: 0 auto 30px;
  display: block;
  opacity: 0.6;
}
.journal-stub h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.25;
}
.journal-stub p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.journal-stub .small {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.6;
  margin-top: 40px;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 24px;
}
.btn:hover {
  background: var(--ink); color: var(--cream); opacity: 1;
}
.btn.solid {
  background: var(--ink); color: var(--cream);
}
.btn.solid:hover { background: transparent; color: var(--ink); opacity: 1; }

/* ============ SIGNUP ============ */
.signup {
  padding: 110px 32px;
  background: var(--cream-2);
  text-align: center;
}
.signup h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
}
.signup p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 44px;
}
.signup-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  border: 1px solid var(--ink);
  background: var(--cream);
}
.signup-form input {
  flex: 1;
  padding: 18px 22px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.signup-form input::placeholder {
  color: var(--ink-mute);
}
.signup-form button {
  padding: 18px 28px;
  border: none;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.signup-form button:hover { opacity: 0.85; }
.signup-note {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ink-soft);
  font-weight: 400;
  opacity: 0.7;
}
.signup-thanks {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}
.signup-thanks.show { display: block; }

/* ============ MOBILE ============ */
@media (max-width: 760px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 24px;
    text-align: center;
  }
  .nav-left, .nav-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .home-hero { padding: 60px 24px 40px; }
  .coming-soon { padding: 60px 16px 70px; }
  .page-links { grid-template-columns: 1fr; gap: 14px; padding: 50px 24px 70px; }
  .steps { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 70px; }
  .constellation { padding: 60px 16px 80px; }
  .signup { padding: 70px 24px; }
  .split { grid-template-columns: 1fr; gap: 30px; padding: 60px 24px; }
  .split.reverse { direction: ltr; }
  .center-block { padding: 70px 24px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .full-image .image-block { aspect-ratio: 4/3; }
  .signup-form { flex-direction: column; border: none; background: transparent; }
  .signup-form input { border: 1px solid var(--ink); background: var(--cream); margin-bottom: 8px; text-align: center; }
  .signup-form button { border: 1px solid var(--ink); }
  .child-label { font-size: 12px; }
  .child-label.bright { font-size: 14px; }
  .child-meta { font-size: 9px; }
}
