/* ---------- THEME ---------- */
:root {
  --sage: #8DAA91;
  --sage-deep: #6f8d74;
  --cream: #F9F7F2;
  --cream-deep: #ece6d7;
  --ink: #1f2420;
  --ink-soft: #3b4138;
  --muted: #7a8273;
  --soft-gold: #C2A46D;
  --border-soft: rgba(31, 36, 32, 0.07);
  --shadow-soft: 0 18px 45px rgba(15, 21, 16, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f5f7f3 0, #f1f4ef 35%, #ece9df 70%, #e7e2d5 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

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

/* ---------- LAYOUT ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(249, 247, 242, 0.92), rgba(249, 247, 242, 0.78));
  border-bottom: 1px solid rgba(139, 153, 137, 0.16);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--ink);
}

.logo span {
  color: var(--sage-deep);
}

.nav-cta {
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.75rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(141, 170, 145, 0.45);
  background: linear-gradient(120deg, rgba(141, 170, 145, 0.14), rgba(255, 255, 255, 0.9));
  color: var(--ink-soft);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta:hover {
  border-color: var(--sage-deep);
}

.hero {
  padding: 60px 20px 32px;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

#hero-headline {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 1.3rem;
}

.hero-pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.5rem;
}

.hero-pillars li {
  font-size: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 170, 145, 0.2);
  background: rgba(249, 247, 242, 0.7);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.btn {
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.9rem 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(125deg, var(--sage-deep), var(--sage));
  color: #fff;
  box-shadow: 0 14px 38px rgba(63, 94, 68, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.02);
}

.btn-ghost {
  background: rgba(249, 247, 242, 0.7);
  color: var(--ink-soft);
  border: 1px solid rgba(141, 170, 145, 0.4);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-notes {
  font-size: 0.85rem;
  color: var(--muted);
  display: grid;
  gap: 0.2rem;
}

.hero-micro {
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  background-color: #e5ebe1;
}

.hero-image-default {
  background-image: linear-gradient(135deg, #e5efe1, #e3ded1);
}

.hero-image-sonal {
  background-image: url("images/sonal-mother-baby.jpg");
}

.hero-image-hannah {
  background-image: url("images/hannah-meditation-sage.jpg");
}

.hero-image-caption {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin: 0 0 0.9rem;
  color: var(--ink);
}

.section-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.section-grid .cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  background: rgba(252, 250, 245, 0.96);
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(19, 26, 18, 0.06);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.section-outcomes {
  padding-top: 10px;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px dashed rgba(141, 170, 145, 0.6);
  background: rgba(249, 247, 242, 0.9);
}

.section-steps {
  padding-top: 16px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(141, 170, 145, 0.3);
  background: rgba(249, 247, 242, 0.9);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--soft-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--soft-gold);
}

.step-body h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.step-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.section-form {
  padding-top: 24px;
  padding-bottom: 56px;
}

.form {
  margin-top: 18px;
  padding: 1.6rem 1.4rem 1.4rem;
  border-radius: 24px;
  background: rgba(252, 250, 245, 0.98);
  border: 1px solid rgba(141, 170, 145, 0.3);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 16px;
  border: 1px solid rgba(139, 153, 137, 0.3);
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  background: #fbfaf5;
  outline: none;
}

.form-field textarea {
  border-radius: 18px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 1px rgba(141, 170, 145, 0.5);
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid rgba(139, 153, 137, 0.2);
  background: rgba(245, 242, 235, 0.96);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 20rem;
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 22rem;
}

/* ---------- CHATBOT ---------- */
#chat-bubble {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(141, 170, 145, 0.55);
  background: radial-gradient(circle at top left, #f9f7f2, #e2e9df);
  box-shadow: 0 18px 40px rgba(19, 26, 18, 0.25);
  cursor: pointer;
  font-size: 0.78rem;
}

.chat-bubble-icon {
  font-size: 1.1rem;
}

.chat-bubble-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

#ai-chat-window {
  position: fixed;
  right: 18px;
  bottom: 82px;
  width: 320px;
  max-height: 430px;
  border-radius: 22px;
  background: #fbfaf6;
  border: 1px solid rgba(141, 170, 145, 0.4);
  box-shadow: 0 24px 60px rgba(19, 26, 18, 0.4);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 45;
}

.chat-header {
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(141, 170, 145, 0.25);
  background: linear-gradient(120deg, rgba(141, 170, 145, 0.18), rgba(249, 247, 242, 0.95));
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #e2ebe0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chat-header-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.chat-header-status {
  font-size: 0.7rem;
  color: var(--muted);
}

.chat-close {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
}

.chat-messages {
  padding: 0.7rem 0.85rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.chat-row {
  display: flex;
}

.chat-row.assistant {
  justify-content: flex-start;
}

.chat-row.user {
  justify-content: flex-end;
}

.chat-bubble-msg {
  max-width: 85%;
  padding: 0.5rem 0.75rem;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.assistant .chat-bubble-msg {
  background: #e8efe6;
  color: var(--ink-soft);
  border-bottom-left-radius: 4px;
}

.user .chat-bubble-msg {
  background: #d9e4d5;
  color: var(--ink);
  border-bottom-right-radius: 4px;
}

.chat-quick-btns {
  padding: 0 0.85rem 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chat-quick-btn {
  font-size: 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 170, 145, 0.7);
  padding: 0.35rem 0.75rem;
  background: #f6f5ef;
  cursor: pointer;
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem 0.65rem;
  border-top: 1px solid rgba(141, 170, 145, 0.25);
  background: rgba(249, 247, 242, 0.96);
}

#chat-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(139, 153, 137, 0.4);
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  background: #fbfaf6;
}

#chat-send {
  border-radius: 999px;
  border: none;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  cursor: pointer;
  background: var(--sage-deep);
  color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 40px;
  }

  .section-grid .cards-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #ai-chat-window {
    right: 10px;
    width: calc(100% - 20px);
    max-width: 360px;
  }
}

