/* ===================================
   ROOT TOKENS — Storybook Map Palette
=================================== */
:root {
  /* Fonts */
  --font-display: 'Shantell Sans', cursive;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Mulish', sans-serif;

  /* Colors — warm nature palette, not "AI purple" */
  --green:        #4CAF7D;
  --green-dark:   #2D7A52;
  --green-light:  #E8F7EF;
  --green-muted:  #B8DFC9;

  --yellow:       #F5C842;
  --yellow-dark:  #C9960A;
  --yellow-light: #FEF8E2;

  --orange:       #F08040;
  --orange-dark:  #C05A1A;
  --orange-light: #FFF0E6;

  --blue-soft:    #6AB0DE;
  --blue-light:   #E5F3FB;
  --blue-dark:    #2A6E9E;

  --red-soft:     #E86060;

  /* Neutrals — warm, not cold */
  --bg:           #FDFAF5;
  --cream:        #F7F1E3;
  --cream-dark:   #EDE3CC;
  --text-dark:    #2C2416;
  --text-mid:     #5A4E38;
  --text-muted:   #8A7A60;
  --border:       #E0D5BF;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Container */
  --container: 1120px;

  /* Radii — organic, varied, not uniform */
  --r-sm:    8px;
  --r-md:    16px;
  --r-lg:    24px;
  --r-xl:    40px;
  --r-pill:  9999px;

  /* Shadows — tinted, warm */
  --shadow-sm:  0 2px 8px rgba(44, 36, 22, 0.08);
  --shadow-md:  0 6px 24px rgba(44, 36, 22, 0.10);
  --shadow-lg:  0 16px 48px rgba(44, 36, 22, 0.12);
  --shadow-pop: 4px 6px 0 rgba(44, 36, 22, 0.14);
}

/* ===================================
   BASE RESET
=================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY SYSTEM
=================================== */
h1, .h1-style {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h2, h3, .h2-style {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

p, li, span {
  font-family: var(--font-body);
  text-wrap: pretty;
}

/* ===================================
   ANIMATIONS
=================================== */
@keyframes float-y {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-y-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(3deg); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.7) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-float        { animation: float-y 4s ease-in-out infinite; }
.animate-float-slow   { animation: float-y-slow 7s ease-in-out infinite; }
.animate-wiggle       { animation: wiggle 2.8s ease-in-out infinite; transform-origin: 50% 90%; }
.animate-pop          { animation: pop-in 0.5s cubic-bezier(.34,1.56,.64,1) both; }

/* ===================================
   LAYOUT HELPERS
=================================== */
.section-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: var(--space-2xl) 0; }
}

/* ===================================
   SHARED COMPONENTS
=================================== */

/* Eyebrow labels */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  border: 1.5px solid var(--green-muted);
  border-radius: var(--r-pill);
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.section-eyebrow.center {
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Section headings */
.section-h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-h2 em {
  font-style: normal;
  color: var(--green-dark);
  font-family: var(--font-display);
}
.section-h2.center { text-align: center; }

/* Section lead paragraph */
.section-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.section-lead.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Highlight text */
.highlight-text {
  color: var(--green-dark);
  font-style: italic;
}

/* ===================================
   HEADER
=================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border);
  transition: background 0.3s;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.logo-emblem {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}
.logo:hover .logo-emblem { transform: rotate(15deg); }

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
@media (min-width: 900px) {
  .nav-menu { display: flex; }
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-md);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--green-dark);
  background: var(--green-light);
}

.btn-register-header {
  display: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--green);
  color: white;
  border-radius: var(--r-pill);
  padding: 0.5rem 1.25rem;
  margin-left: auto;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 0 var(--green-dark);
}
@media (min-width: 900px) {
  .btn-register-header { display: inline-block; margin-left: 0.75rem; }
}
.btn-register-header:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-register-header:active { transform: translateY(1px); box-shadow: none; }

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
@media (min-width: 900px) { .mobile-menu-btn { display: none; } }

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-mid);
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:hover { background: var(--green-light); color: var(--green-dark); }

.mobile-nav-cta {
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  background: var(--green);
  color: white;
  text-align: center;
  padding: 0.875rem;
  border-radius: var(--r-pill);
  box-shadow: 0 3px 0 var(--green-dark);
  transition: background 0.2s;
}
.mobile-nav-cta:hover { background: var(--green-dark); }

/* ===================================
   HERO SECTION
=================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.25rem 0;
  background: linear-gradient(165deg, #FDFAF5 0%, #F0F9F2 45%, #FEF8E2 100%);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* organic blob backgrounds */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(76, 175, 125, 0.15);
  top: -100px; left: -150px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: rgba(245, 200, 66, 0.18);
  top: 60px; right: -100px;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: rgba(240, 128, 64, 0.12);
  bottom: 0; left: 30%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 3rem;
  align-items: center;
  flex: 1;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
}

/* Eyebrow pill for hero */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 2px solid var(--green-muted);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.eyebrow-emoji { font-size: 1rem; }

/* Hero H1 — Shantell Sans, big and playful */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.h1-line1 {
  color: var(--green-dark);
}
.h1-line2 {
  color: var(--orange);
  -webkit-text-stroke: 2px var(--orange-dark);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 44ch;
}
.hero-tagline strong { color: var(--text-dark); font-weight: 700; }

/* Hero badges row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  border: 1.5px solid transparent;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.badge-green  { background: var(--green-light); color: var(--green-dark); border-color: var(--green-muted); }
.badge-orange { background: var(--orange-light); color: var(--orange-dark); border-color: #F8C8A8; }
.badge-blue   { background: var(--blue-light); color: var(--blue-dark); border-color: #B0D8F0; }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.btn-primary-hero {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--green);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 0 var(--green-dark), var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary-hero:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--green-dark), var(--shadow-lg); }
.btn-primary-hero:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--green-dark); }

.btn-ghost-hero {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost-hero:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-light);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  /* Organic border feel */
  clip-path: circle(48% at 50% 50%);
}
.hero-img-squiggle {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  pointer-events: none;
}

/* Floating sticker chips on hero image */
.hero-sticker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-pop);
  white-space: nowrap;
}
.sticker-calendar { bottom: 12%; left: -8%; transform: rotate(-4deg); }
.sticker-star     { top: 10%; right: -10%; transform: rotate(5deg); }

/* Floating decoration images */
.deco {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
}
.deco-compass {
  width: 90px; height: 90px;
  left: -3%;
  top: 10%;
}
.deco-balloon {
  width: 80px; height: 80px;
  right: -2%;
  top: 5%;
}
.deco-sprout {
  width: 70px; height: 70px;
  bottom: 5%;
  left: -2%;
}
@media (max-width: 960px) {
  .deco-compass { width: 60px; height: 60px; left: 2%; }
  .deco-balloon { width: 55px; height: 55px; right: 2%; }
  .deco-sprout  { width: 50px; height: 50px; }
}

/* Hero wavy bottom divider */
.hero-wave {
  width: 100%;
  display: block;
  margin-top: 2rem;
  height: 64px;
}

/* ===================================
   WORRIES SECTION — asymmetric zigzag
=================================== */
.worries-section {
  background: var(--cream);
}

.worries-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .worries-layout { grid-template-columns: 1fr 1.4fr; }
}

.worries-text .section-h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 0.5rem;
}
.worries-text .section-h2 em {
  color: var(--orange-dark);
  font-family: var(--font-display);
}
.worries-intro {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 0.75rem;
}

/* Staggered 3 cards — offset, NOT equal grid */
.worries-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.worry-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.worry-card:hover { transform: translateY(-4px) rotate(-0.5deg); box-shadow: var(--shadow-md); }

/* Stagger them horizontally on desktop */
@media (min-width: 900px) {
  .wc-1 { margin-left: 0; }
  .wc-2 { margin-left: 2.5rem; }
  .wc-3 { margin-left: 1.25rem; }
}

.wc-icon {
  font-size: 2rem;
  line-height: 1;
}

.worry-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
}
.worry-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===================================
   ABOUT SECTION — split panel, not 2-equal-cards
=================================== */
.about-section {
  background: var(--bg);
  overflow: hidden;
}

.about-bg-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,125,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.about-fusion-container {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.fusion-intro {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.fusion-intro strong {
  color: var(--green-dark);
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.fusion-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .fusion-layout {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.fusion-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 2.5rem 1.5rem;
  flex: 1;
  width: 100%;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.fusion-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-west { border-bottom: 5px solid var(--blue-soft); }
.card-east { border-bottom: 5px solid var(--yellow); }

.fc-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.fc-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
}

.fusion-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-plus {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  background: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.fusion-outro {
  background: var(--green-light);
  border: 2px solid var(--green-muted);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.fusion-outro p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===================================
   BENEFITS — map path style
=================================== */
.benefits-section {
  background: var(--cream);
}

.map-path-container {
  position: relative;
  margin-top: var(--space-lg);
}

.map-dashed-path {
  width: 100%;
  height: auto;
  display: none;
  position: absolute;
  top: -40px;
  left: 0;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 900px) { .map-dashed-path { display: block; } }

.benefits-grid-map {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .benefits-grid-map { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .benefits-grid-map { grid-template-columns: repeat(5, 1fr); } }

.benefit-stop {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.benefit-stop:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); }

/* Stagger on desktop to look like map waypoints */
@media (min-width: 900px) {
  .stop-1 { transform: translateY(20px); }
  .stop-2 { transform: translateY(0px); }
  .stop-3 { transform: translateY(28px); }
  .stop-4 { transform: translateY(5px); }
  .stop-5 { transform: translateY(16px); }
  .stop-1:hover { transform: translateY(14px) scale(1.02); }
  .stop-2:hover { transform: translateY(-6px) scale(1.02); }
  .stop-3:hover { transform: translateY(22px) scale(1.02); }
  .stop-4:hover { transform: translateY(-1px) scale(1.02); }
  .stop-5:hover { transform: translateY(10px) scale(1.02); }
}

.stop-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-muted);
  line-height: 1;
}
.stop-icon { font-size: 2rem; line-height: 1; }
.benefit-stop h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}
.benefit-stop p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===================================
   JOURNEY — vertical timeline (not 4-col equal cards)
=================================== */
.journey-section {
  background: var(--bg);
  overflow: hidden;
}

.journey-deco-balloon {
  position: absolute;
  top: -1rem;
  right: 2rem;
  width: 80px; height: 80px;
}

.journey-map-wrapper {
  margin: var(--space-md) 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2.5px solid var(--border);
  box-shadow: var(--shadow-md);
}
.journey-map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Vertical timeline */
.timeline {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-soft), var(--green), var(--orange), var(--yellow));
  border-radius: 2px;
}

@media (min-width: 768px) {
  .timeline { padding-left: 3.5rem; }
  .timeline::before { left: 28px; }
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 2px solid white;
}
@media (min-width: 768px) {
  .timeline-dot { left: -3.5rem; }
}
.dot-blue   { background: var(--blue-soft); }
.dot-green  { background: var(--green); }
.dot-orange { background: var(--orange); }
.dot-yellow { background: var(--yellow); color: var(--text-dark); }

.timeline-content {
  padding-top: 0.25rem;
  padding-left: 0;
}
.tl-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.5rem;
}
.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.journey-meta {
  text-align: center;
  margin-top: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.6rem 1.5rem;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

/* ===================================
   MENTORS — real photos + organic layout
=================================== */
.mentors-section {
  background: var(--cream);
}

.mentors-layout {
  display: grid;
  gap: 2rem;
  margin-top: var(--space-lg);
}
@media (min-width: 768px) {
  .mentors-layout { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

.mentor-card-new {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mentor-card-new:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

@media (min-width: 480px) {
  .mentor-card-new { flex-direction: row; align-items: flex-start; }
}

.mentor-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.mentor-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid white;
  outline: 3px solid var(--green-muted);
  box-shadow: var(--shadow-sm);
}
.mentor-photo-squiggle {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px dashed var(--green-muted);
  pointer-events: none;
}
.squiggle-orange { border-color: #F8C8A8; }

.mentor-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mentor-role-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  border: 1px solid var(--green-muted);
  border-radius: var(--r-pill);
  padding: 0.25rem 0.75rem;
  width: fit-content;
}
.mentor-role-orange { background: var(--orange-light); color: var(--orange-dark); border-color: #F8C8A8; }

.mentor-name-new {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.mentor-bio {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===================================
   PROGRAM INFO TILES — mosaic layout
=================================== */
.info-section {
  background: var(--bg);
}

.info-tiles {
  display: grid;
  gap: 1rem;
  margin-top: var(--space-lg);
}
@media (min-width: 540px) { .info-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .info-tiles { grid-template-columns: repeat(4, 1fr); } }

.info-tile {
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  border: 2px solid transparent;
  box-shadow: var(--shadow-pop);
  transition: transform 0.2s ease;
}
.info-tile:hover { transform: translateY(-4px) rotate(-0.5deg); }

.tile-green  { background: var(--green-light); border-color: var(--green-muted); }
.tile-blue   { background: var(--blue-light); border-color: #B0D8F0; }
.tile-orange { background: var(--orange-light); border-color: #F8C8A8; }
.tile-yellow { background: var(--yellow-light); border-color: #F0D880; }

.tile-icon  { font-size: 2rem; line-height: 1; margin-bottom: 0.25rem; }
.tile-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.tile-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
}
.tile-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===================================
   PRICING SECTION
=================================== */
.pricing-section {
  background: var(--cream);
}

.pricing-tiers {
  display: grid;
  gap: 1.25rem;
  margin-top: var(--space-lg);
}
@media (min-width: 768px) { .pricing-tiers { grid-template-columns: repeat(2, 1fr); } }

.pricing-tier {
  border-radius: var(--r-xl);
  padding: 1.75rem;
  border: 2.5px solid var(--border);
  background: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Highlighted current tier */
.tier-current {
  border-color: var(--green);
  background: var(--green-light);
  box-shadow: 0 0 0 4px rgba(76, 175, 125, 0.15), var(--shadow-md);
  transform: scale(1.02);
}
.tier-current:hover { transform: scale(1.03) translateY(-4px); }

/* Faded past tier */
.tier-diamond { opacity: 0.75; }
.tier-diamond .price-num { text-decoration: line-through; color: var(--text-muted); }

.tier-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--r-pill);
  padding: 0.25rem 0.75rem;
  width: fit-content;
  background: var(--cream);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.tier-badge-active {
  background: var(--green);
  color: white;
  border-color: var(--green-dark);
}
.tier-badge-future {
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-color: #F0D880;
}

.tier-period {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-mid);
}

.tier-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.price-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.price-unit {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-reduced { color: var(--green-dark); }

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-option {
  background: white;
  border: 1.5px solid var(--green-muted);
  border-radius: var(--r-lg);
  padding: 0.875rem 1rem;
}
.price-option-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-divider {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.tier-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--blue-light);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.75rem;
  width: fit-content;
}

.tier-perks {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.tier-perks li {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* Deposit policy block */
.deposit-policy {
  margin-top: var(--space-lg);
  background: white;
  border: 2.5px solid var(--green-muted);
  border-radius: var(--r-xl);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.deposit-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.deposit-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
}
.deposit-details {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.deposit-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
  align-items: flex-start;
}
.deposit-check { flex-shrink: 0; }
.deposit-amount-inline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-left: 0.25rem;
}

/* Register CTA block */
.register-cta-block {
  margin-top: var(--space-lg);
}
.register-cta-inner {
  background: var(--green-dark);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  color: white;
  box-shadow: 0 8px 0 rgba(0,0,0,0.2), var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .register-cta-inner {
    padding: 3.5rem 4rem;
  }
}

.register-cta-text { flex: 1; }
.register-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.625rem;
}
.register-cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.register-cta-text strong { color: var(--yellow); }

.btn-register-main {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--yellow);
  color: var(--text-dark);
  padding: 0.9rem 2rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 0 var(--yellow-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-register-main:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--yellow-dark); }
.btn-register-main:active { transform: translateY(2px); box-shadow: none; }

.register-note {
  margin-top: 0.875rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ===================================
   CLOSING SECTION
=================================== */
.closing-section {
  background: linear-gradient(160deg, var(--green-light) 0%, var(--yellow-light) 50%, var(--orange-light) 100%);
  text-align: center;
  overflow: hidden;
}

.closing-deco-sprout {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 70px; height: 70px;
}
.closing-deco-balloon {
  position: absolute;
  top: 2rem;
  right: 3rem;
  width: 65px; height: 65px;
}

.closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.closing-leaf { font-size: 3rem; line-height: 1; }

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  max-width: 16ch;
  quotes: none;
}
.closing-quote strong { color: var(--green-dark); }

.closing-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 42ch;
  line-height: 1.7;
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: white;
}
.footer-emblem { width: 30px; height: 30px; }

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  max-width: 38ch;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ===================================
   FOCUS RING — accessibility
=================================== */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================================
   SCROLL REVEAL UTILITY
=================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
