/* HabitSprouts — site styles. Palette + type pulled from the app. */
:root {
  --sky-top: #EAF6FF;
  --sky-bot: #A9DDF5;
  --cream:   #FFF6E0;
  --coral:   #FF7A8A;
  --coral-d: #E85370;
  --amber:   #FF8C42;
  --leaf:    #4CAF50;
  --leaf-d:  #388E3C;
  --pot:     #E07A5F;
  --pot-d:   #C16049;
  --ink:     #3A3327;
  --ink-soft:#6B6250;
  --white:   #ffffff;
  --shadow:  0 14px 34px rgba(58, 51, 39, .12);
  --shadow-sm: 0 6px 18px rgba(58, 51, 39, .10);
  --r-lg: 26px;
  --r-md: 18px;
  --r-pill: 999px;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bot) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: 'Baloo 2', 'Nunito', sans-serif; font-weight: 700; letter-spacing: -.01em; line-height: 1.1; }
a { color: var(--leaf-d); text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(234, 246, 255, .72);
  border-bottom: 1px solid rgba(58,51,39,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); font-weight: 700; font-size: .98rem; }
.nav-links a:hover { color: var(--leaf-d); }
.nav-cta {
  background: var(--leaf); color: #fff !important; padding: 9px 18px;
  border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--leaf-d); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--coral-d); font-weight: 800; font-size: .82rem;
  padding: 7px 14px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  text-transform: uppercase; letter-spacing: .04em;
}
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); margin: 18px 0 14px; }
.hero h1 .accent { color: var(--coral-d); }
.hero p.lede { font-size: 1.18rem; color: var(--ink-soft); font-weight: 600; max-width: 30ch; }
.badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 15px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease;
}
.badge:hover { transform: translateY(-2px); }
.badge svg { width: 26px; height: 26px; flex: none; }
.badge .b-small { font-size: .66rem; line-height: 1; opacity: .85; display: block; text-transform: uppercase; letter-spacing: .06em; }
.badge .b-big { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.06rem; line-height: 1.15; color:#fff; }

/* hero garden scene */
.scene { position: relative; aspect-ratio: 1 / 1; }
.scene .cloud { position: absolute; background: #fff; border-radius: 999px; opacity: .9; filter: blur(.3px); }
.scene .cloud::before, .scene .cloud::after { content: ""; position: absolute; background: #fff; border-radius: 999px; }
.c1 { width: 92px; height: 30px; top: 12%; left: 8%; }
.c1::before { width: 46px; height: 46px; top: -22px; left: 14px; }
.c1::after  { width: 34px; height: 34px; top: -14px; left: 46px; }
.c2 { width: 74px; height: 24px; top: 26%; right: 6%; opacity: .8; }
.c2::before { width: 38px; height: 38px; top: -18px; left: 10px; }
.c2::after  { width: 28px; height: 28px; top: -10px; left: 36px; }
.sun { position: absolute; top: 6%; right: 14%; width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle, #FFD23F 0%, #FFB02E 70%); box-shadow: 0 0 50px rgba(255, 178, 46, .55); }
.hill { position: absolute; left: -10%; right: -10%; bottom: 0; height: 46%;
  background: linear-gradient(180deg, #9BE08A 0%, #7FCF73 100%); border-radius: 50% 50% 0 0 / 70% 70% 0 0; }
.hill.back { bottom: 8%; height: 40%; background: linear-gradient(180deg, #BDEEAE, #A6E59A); opacity: .8; left: -20%; right: -5%; }
.flower-img { position: absolute; left: 50%; bottom: 4%; width: 64%; transform: translateX(-50%); transform-origin: bottom center; filter: drop-shadow(0 16px 18px rgba(58,51,39,.18)); }

/* ---------- sections ---------- */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 56ch; margin: 0 auto 44px; }
.section-head .kicker { color: var(--coral-d); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 10px 0 12px; }
.section-head p { color: var(--ink-soft); font-weight: 600; font-size: 1.08rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border-radius: var(--r-lg); padding: 30px 26px;
  box-shadow: var(--shadow); border: 1px solid rgba(58,51,39,.04);
}
.card .emoji { font-size: 2.4rem; line-height: 1; }
.card h3 { font-size: 1.3rem; margin: 14px 0 8px; }
.card p { color: var(--ink-soft); font-weight: 600; }

/* steps (growth) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--white); border-radius: var(--r-md); padding: 24px 18px; text-align: center; box-shadow: var(--shadow-sm); position: relative; }
.step .dot { font-family: 'Baloo 2', sans-serif; font-weight: 700; color: var(--coral); font-size: .9rem; }
.step .big { font-size: 2.6rem; line-height: 1; margin: 6px 0 10px; }
.step h4 { font-size: 1.08rem; margin-bottom: 4px; }
.step p { font-size: .92rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- about ---------- */
.about { }
.about-card {
  background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow);
  display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden;
}
.about-art { background: linear-gradient(160deg, #BDE7F7, #8FD3E8); display: flex; align-items: center; justify-content: center; padding: 40px; }
.about-art img { width: 78%; filter: drop-shadow(0 14px 16px rgba(58,51,39,.18)); }
.about-body { padding: 44px 46px; }
.about-body h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.about-body p { color: var(--ink-soft); font-weight: 600; margin-bottom: 14px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill { background: var(--cream); color: var(--ink); font-weight: 700; font-size: .9rem; padding: 7px 14px; border-radius: var(--r-pill); }

/* ---------- booking ---------- */
.book { text-align: center; }
.book-card {
  background: linear-gradient(160deg, #FFFDF6, #FFF1DC);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 56px 32px; max-width: 720px; margin: 0 auto; border: 1px solid rgba(255,140,66,.18);
}
.book-card .emoji { font-size: 3rem; }
.book-card h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: 12px 0 10px; }
.book-card p { color: var(--ink-soft); font-weight: 600; max-width: 46ch; margin: 0 auto 28px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral); color: #fff; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.12rem;
  padding: 15px 32px; border-radius: var(--r-pill); box-shadow: 0 10px 24px rgba(255, 122, 138, .4);
  transition: transform .15s ease, background .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--coral-d); color:#fff; }

/* ---------- footer ---------- */
footer { background: rgba(255,255,255,.55); border-top: 1px solid rgba(58,51,39,.06); padding: 48px 0 30px; margin-top: 24px; }
.foot-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 12px; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.2rem; }
.foot-brand img { width: 44px; height: 44px; border-radius: 12px; }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { color: var(--ink-soft); font-weight: 700; }
.foot-links a:hover { color: var(--leaf-d); }
.foot-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(58,51,39,.08); color: var(--ink-soft); font-size: .88rem; font-weight: 600; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .flower-img { animation: sway 5s ease-in-out infinite; }
  .c1 { animation: drift 26s linear infinite; }
  .c2 { animation: drift 34s linear infinite; }
}
@keyframes sway { 0%,100% { transform: translateX(-50%) rotate(-2.5deg); } 50% { transform: translateX(-50%) rotate(2.5deg); } }
@keyframes drift { from { transform: translateX(-30px); } to { transform: translateX(30px); } }

/* ---------- privacy page ---------- */
.doc { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 48px 50px; margin: 48px auto; max-width: 800px; }
.doc h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 6px; }
.doc .updated { color: var(--ink-soft); font-weight: 700; margin-bottom: 26px; }
.doc h2 { font-size: 1.35rem; margin: 28px 0 8px; color: var(--ink); }
.doc p, .doc li { color: var(--ink-soft); font-weight: 600; margin-bottom: 10px; }
.doc ul { margin-left: 1.2rem; }
.doc .tldr { background: #EAF7EA; border: 2px solid var(--leaf); border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 22px; }
.doc .tldr p { color: var(--ink); margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lede { margin: 0 auto; }
  .badges { justify-content: center; }
  .scene { max-width: 420px; margin: 10px auto 0; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-card { grid-template-columns: 1fr; }
  .about-art { padding: 32px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: rgba(234,246,255,.97); padding: 18px 24px; gap: 18px; box-shadow: var(--shadow); }
  .nav-toggle { display: block; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }
}

/* ---------- coming soon (pre-launch hero) ---------- */
.soon-tag {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  background: var(--amber); color: #fff; font-weight: 800; font-size: .82rem;
  padding: 7px 15px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  text-transform: uppercase; letter-spacing: .05em;
}
.badge.soon { opacity: .62; cursor: default; }
.badge.soon:hover { transform: none; }
.soon-note { margin-top: 16px; color: var(--ink-soft); font-weight: 700; font-size: .96rem; }
.soon-note a { text-decoration: underline; }

/* ---------- about: intro + focus areas ---------- */
.about-intro { max-width: 70ch; margin: 0 auto 38px; text-align: center; }
.about-intro p { color: var(--ink-soft); font-weight: 600; font-size: 1.1rem; }
.about-intro h3 { font-size: 1.5rem; margin-bottom: 10px; }
.focus { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 44px; }
.fcard { background: var(--white); border-radius: var(--r-md); padding: 24px 16px; text-align: center; box-shadow: var(--shadow-sm); font-family: 'Baloo 2', sans-serif; font-weight: 700; color: var(--ink); }
.fcard .fe { font-size: 2.1rem; display: block; margin-bottom: 8px; }
.fcard small { display: block; color: var(--ink-soft); font-family: 'Nunito', sans-serif; font-weight: 600; font-size: .82rem; margin-top: 4px; }
.btn-ghost { display: inline-block; margin-top: 16px; color: var(--coral-d); font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.02rem; }
.btn-ghost:hover { color: var(--coral); }

/* ---------- calendly embed ---------- */
.calendly-inline-widget { border-radius: var(--r-md); overflow: hidden; min-width: 320px; }
.book-card.embed { max-width: 960px; padding: 40px 28px; }

@media (max-width: 860px) {
  .focus { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- hero CTAs ---------- */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink); font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.06rem;
  padding: 14px 26px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { color: var(--leaf-d); }
.btn-primary.lg { font-size: 1.18rem; padding: 16px 34px; }

/* ---------- sticky book button ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--coral); color: #fff; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.02rem;
  padding: 14px 22px; border-radius: var(--r-pill); box-shadow: 0 12px 28px rgba(255, 122, 138, .5);
  transition: transform .15s ease, background .15s ease;
}
.fab:hover { transform: translateY(-2px); background: var(--coral-d); color: #fff; }

/* ---------- booking band (made prominent) ---------- */
.book-band { background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55)); }
.book-card.embed { max-width: 980px; }
.book .kicker { color: var(--coral-d); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; display:block; margin-bottom: 8px; }

/* ---------- app section wrapper ---------- */
.app-section { border-top: 1px solid rgba(58,51,39,.07); }
.app-tag { display:inline-flex; align-items:center; gap:8px; background: var(--cream); color: var(--ink); font-weight:800; font-size:.8rem; padding:6px 14px; border-radius: var(--r-pill); text-transform: uppercase; letter-spacing:.05em; }

@media (max-width: 560px) {
  .fab { right: 14px; bottom: 14px; padding: 12px 18px; font-size: .96rem; }
}
