/* ═══════════════════════════════════════════════
   LIFTED MINDS — Counselling with Nisha
   Brand palette: fresh greens with hues of blue
   ═══════════════════════════════════════════════ */

:root {
  /* Brand colours */
  --ink:        #16382b;   /* deep forest green — headings, text */
  --forest:     #1f4d3a;   /* primary green */
  --emerald:    #2e8f6e;   /* action green */
  --teal:       #2e8f86;   /* green-blue bridge */
  --sky:        #4fa3c7;   /* soft blue hue */
  --sage:       #a8c5b4;   /* muted green */
  --mist:       #eef6f2;   /* pale green-white background */
  --mist-blue:  #e9f2f6;   /* pale blue-white */
  --white:      #ffffff;
  --gold:       #d9a441;   /* tiny warm accent (butterfly dust) */
  --cerise:     #de3163;   /* hint of cerise pink — wing accents, bullets */

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  --radius: 18px;
  --shadow: 0 10px 40px rgba(22, 56, 43, 0.10);
  --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h1 em, h2 em { font-style: italic; color: var(--teal); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cerise);
  margin-right: 8px;
  vertical-align: middle;
}

.section { padding: 96px 0; }
.section-tinted { background: linear-gradient(180deg, var(--mist) 0%, var(--mist-blue) 100%); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-lede { margin-top: 14px; color: #43604f; font-size: 1.06rem; }

/* ══════════ Buttons ══════════ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: linear-gradient(120deg, var(--emerald), var(--teal) 60%, var(--sky));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(46, 143, 134, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(46, 143, 134, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--sage);
}
.btn-ghost:hover { border-color: var(--emerald); background: rgba(46, 143, 110, 0.06); }
.btn-full { width: 100%; }

/* ══════════ Header / Nav ══════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 197, 180, 0.35);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--forest);
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--sky));
  transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.btn-nav { padding: 10px 22px; background: linear-gradient(120deg, var(--emerald), var(--teal)); color: var(--white); }
.btn-nav:hover { transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--forest); margin: 5px 0; border-radius: 2px;
  transition: 0.25s;
}

/* ══════════ Hero ══════════ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(79, 163, 199, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(63, 157, 120, 0.16), transparent 60%),
    linear-gradient(160deg, #f4faf7 0%, var(--mist) 45%, var(--mist-blue) 100%);
  padding: 110px 0 140px;
  text-align: center;
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-lede {
  margin: 26px auto 0;
  max-width: 640px;
  font-size: 1.13rem;
  color: #3c5a4b;
}
.hero-actions { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 46px;
  display: flex;
  gap: 12px 40px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  color: #43604f;
  font-size: 0.95rem;
}
.hero-trust strong { color: var(--forest); }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; }

/* floating butterflies */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.flutter { position: absolute; opacity: 0.5; animation: flutter 9s ease-in-out infinite; }
.f1 { width: 54px; top: 18%; left: 8%; animation-delay: 0s; }
.f2 { width: 38px; top: 30%; right: 10%; animation-delay: 2.5s; }
.f3 { width: 28px; bottom: 24%; left: 18%; animation-delay: 5s; opacity: 0.35; }
@keyframes flutter {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-22px) rotate(6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .flutter { animation: none; }
}

/* ══════════ Quote strip ══════════ */
.quote-strip {
  background: var(--mist);
  padding: 40px 0 64px;
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: var(--teal);
}

/* ══════════ About ══════════ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.about-portrait { position: relative; }
.portrait-frame {
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--sage), var(--sky) 130%);
  box-shadow: var(--shadow);
  display: flex;
}
.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-flutter {
  position: absolute;
  width: 46px;
  top: -18px; right: -6px;
  animation: flutter 8s ease-in-out infinite;
}
.about-copy p { margin-top: 18px; color: #3c5a4b; }
.credential-line {
  margin-top: 8px !important;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.about-points { margin-top: 26px; list-style: none; }
.about-points li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--forest);
}
.about-points li::before {
  content: "🦋";
  position: absolute;
  left: 0;
  font-size: 0.95rem;
}
.accred-badge {
  margin-top: 22px;
  background: rgba(46, 143, 110, 0.08);
  border: 1px solid rgba(46, 143, 110, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.accred-text { font-weight: 700; color: var(--forest); font-size: 0.88rem; line-height: 1.5; }
.accred-text small { font-weight: 500; color: #5f7d6d; }
.accred-verify { font-size: 0.82rem; font-weight: 700; color: var(--teal); }

/* ══════════ Services ══════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: 0 4px 20px rgba(22, 56, 43, 0.06);
  border: 1px solid rgba(168, 197, 180, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; }
.card p { color: #4a6a58; font-size: 0.97rem; }

/* ══════════ Approach ══════════ */
.approach-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}
.approach-copy > p { margin-top: 18px; color: #3c5a4b; max-width: 560px; }
.approach-steps { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}
.step h4 { font-size: 1.12rem; margin-bottom: 2px; }
.step p { color: #4a6a58; font-size: 0.96rem; }

.approach-visual { display: flex; justify-content: center; }
.glass-card {
  background: linear-gradient(155deg, rgba(46,143,110,0.10), rgba(79,163,199,0.14));
  border: 1px solid rgba(79, 163, 199, 0.25);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  max-width: 340px;
  box-shadow: var(--shadow);
}
.big-butterfly { width: 110px; animation: flutter 7s ease-in-out infinite; }
.glass-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--forest);
  margin-top: 20px;
}
.glass-sig { margin-top: 12px; color: var(--teal); font-weight: 700; letter-spacing: 0.08em; }

/* ══════════ FAQ ══════════ */
.faq-inner { max-width: 760px; }
.faq details {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(168, 197, 180, 0.35);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--forest);
  list-style: none;
  position: relative;
  padding-right: 52px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--sky);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 24px 20px; color: #4a6a58; }

/* ══════════ Contact ══════════ */
.contact {
  background:
    radial-gradient(ellipse 70% 60% at 90% 90%, rgba(79, 163, 199, 0.14), transparent 60%),
    var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: start;
}
.contact-copy > p { margin-top: 18px; color: #3c5a4b; }
.contact-details { margin-top: 30px; list-style: none; }
.contact-details li { margin-bottom: 14px; font-weight: 600; padding-left: 18px; position: relative; }
.contact-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cerise);
}
.contact-details a { color: var(--teal); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.detail-icon { margin-right: 10px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(168, 197, 180, 0.4);
  box-shadow: var(--shadow);
  padding: 40px 36px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--forest);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(168, 197, 180, 0.6);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fbfdfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(79, 163, 199, 0.15);
}
.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  text-align: center;
  color: #6a8577;
}

/* ══════════ Footer ══════════ */
.site-footer {
  background: linear-gradient(160deg, var(--ink), #143c4a 130%);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand .brand-name { color: var(--white); font-size: 1.25rem; }
.footer-tag { font-size: 0.92rem; color: var(--sage); margin-top: 4px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.footer-links a:hover { color: var(--sky); }
.footer-note { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ══════════ Responsive ══════════ */
.desktop-only { display: inline; }

@media (max-width: 900px) {
  .about-grid, .approach-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .about-portrait { max-width: 340px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .desktop-only { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero { padding: 80px 0 120px; }
  .card-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(168, 197, 180, 0.4);
    box-shadow: 0 20px 30px rgba(22, 56, 43, 0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ══════════ Story of the name ══════════ */
.story {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(79, 163, 199, 0.10), transparent 70%),
    var(--white);
}
.story-stages {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.stage {
  background: var(--white);
  border: 1px solid rgba(168, 197, 180, 0.4);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(22, 56, 43, 0.05);
}
.stage-mid {
  background: linear-gradient(160deg, rgba(46,143,110,0.08), rgba(79,163,199,0.10));
  border-color: rgba(79, 163, 199, 0.35);
}
.stage-glyph { font-size: 2.2rem; margin-bottom: 12px; }
.stage h3 { margin-bottom: 2px; }
.stage-sub {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.stage p:last-child { color: #4a6a58; font-size: 0.95rem; }
.stage-arrow {
  align-self: center;
  color: var(--sage);
  font-size: 1.6rem;
  font-weight: 300;
}
.story-close {
  text-align: center;
  margin-top: 52px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--forest);
  line-height: 1.5;
}
.story-close em { color: var(--teal); }
.step-stage {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════ Mind & Medicine niche ══════════ */
.niche {
  background:
    radial-gradient(120% 80% at 85% 12%, rgba(222, 49, 99, 0.16), transparent 60%),
    linear-gradient(165deg, var(--ink) 0%, #17435a 58%, #123347 100%);
}
.niche .eyebrow { color: #7fd4b5; }
.niche h2, .niche h3 { color: var(--white); }
.niche h2 em { color: #8fd0e8; }
.niche .section-lede { color: rgba(255, 255, 255, 0.78); }
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.niche-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background 0.22s ease, transform 0.22s ease;
}
.niche-card:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-4px); }
.niche-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.niche-card p { color: rgba(255, 255, 255, 0.75); font-size: 0.94rem; }
.niche-card em { color: #8fd0e8; font-style: normal; font-weight: 700; }
.niche-cta { text-align: center; margin-top: 48px; }
.niche-cta p { color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; font-size: 1.05rem; }
.niche-cta strong { color: #7fd4b5; }

/* ══════════ Booking page ══════════ */
.booking-hero {
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(79, 163, 199, 0.16), transparent 60%),
    linear-gradient(160deg, #f4faf7 0%, var(--mist) 60%, var(--mist-blue) 100%);
  padding: 80px 0 56px;
  text-align: center;
}
.booking-hero .hero-lede { margin: 20px auto 0; max-width: 560px; }
.booking-section { padding-top: 64px; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}
.booking-panel {
  background: var(--white);
  border: 1px solid rgba(168, 197, 180, 0.4);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 4px 20px rgba(22, 56, 43, 0.06);
}
.panel-title {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.step-badge {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}

/* session options */
.session-options { display: flex; flex-direction: column; gap: 12px; }
.session-option { display: block; cursor: pointer; }
.session-option input { position: absolute; opacity: 0; }
.session-body {
  border: 1.5px solid rgba(168, 197, 180, 0.5);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.session-option input:checked + .session-body {
  border-color: var(--teal);
  background: rgba(46, 143, 134, 0.06);
  box-shadow: 0 0 0 3px rgba(79, 163, 199, 0.15);
}
.session-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.session-row strong { font-size: 1.02rem; color: var(--forest); }
.session-price { font-weight: 800; color: var(--teal); white-space: nowrap; }
.session-price.free { color: var(--emerald); }
.session-price .was {
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  color: #9ab3a6;
  text-decoration: line-through;
  margin-left: 6px;
}
.session-body p { font-size: 0.88rem; color: #4a6a58; line-height: 1.55; }
.launching-soon-note {
  background: rgba(217, 164, 65, 0.12);
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #6b5a2e;
  line-height: 1.6;
  margin-bottom: 16px;
}
.session-option.is-soon .session-body { opacity: 0.6; cursor: not-allowed; }
.session-option.is-soon input { cursor: not-allowed; }
.soon-badge {
  font-style: normal;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-left: 8px;
  white-space: normal;
}
.field-hint { font-size: 0.78rem; color: #6a8577; margin-top: 6px; }

/* Honeypot — hidden from people, visible to simple bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ══════════ POPIA consent panel + signature ══════════ */
.consent-panel {
  background: linear-gradient(160deg, rgba(79,163,199,0.07), rgba(46,143,110,0.06));
  border: 1.5px solid rgba(79, 163, 199, 0.3);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 18px;
}
.consent-panel h4 { font-size: 1rem; color: var(--forest); margin-bottom: 10px; }
.consent-scroll {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(168, 197, 180, 0.4);
  padding-bottom: 14px;
}
.consent-scroll p { font-size: 0.85rem; color: #3c5a4b; line-height: 1.65; margin-bottom: 10px; }
.consent-scroll p:last-child { margin-bottom: 0; }
.consent-scroll a { color: var(--teal); font-weight: 700; }
.sig-block { margin-top: 16px; }
.sig-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--forest);
  margin: 12px 0 6px;
}
.sig-name-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(168, 197, 180, 0.6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  background: #fbfdfc;
}
.sig-pad-wrap {
  position: relative;
  border: 1.5px dashed rgba(46, 143, 134, 0.5);
  border-radius: 12px;
  background: #ffffff;
  touch-action: none;
}
#sig-pad { display: block; width: 100%; height: 160px; cursor: crosshair; border-radius: 12px; }
.sig-placeholder {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #b3c7bb;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  pointer-events: none;
}
.sig-actions { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.sig-status { font-size: 0.82rem; color: #6a8577; font-weight: 700; }
.sig-status.signed { color: var(--emerald); }

/* calendar */
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cal-month { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--forest); }
.cal-nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 197, 180, 0.6);
  background: var(--white);
  color: var(--forest);
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.18s;
}
.cal-nav:hover { border-color: var(--teal); color: var(--teal); }
.cal-days, .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}
.cal-days span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7d9b8b;
  padding: 6px 0;
}
.cal-cell {
  aspect-ratio: 1;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.15s;
}
.cal-cell.open { background: rgba(46, 143, 110, 0.12); color: var(--forest); }
.cal-cell.open:hover { background: rgba(46, 143, 134, 0.25); }
.cal-cell.blocked { background: #f2f4f3; color: #b9c8c0; cursor: not-allowed; }
.cal-cell.open.partial { box-shadow: 0 0 0 2px var(--gold) inset; }
.cal-cell.selected {
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  color: var(--white);
}
.cal-legend {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: #6a8577;
}
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 5px; }
.dot-open { background: rgba(46, 143, 110, 0.35); }
.dot-blocked { background: #dfe6e2; }
.dot-selected { background: linear-gradient(135deg, var(--emerald), var(--sky)); }

/* timeslots */
.timeslots { margin-top: 20px; }
.timeslot-hint { font-size: 0.88rem; color: #6a8577; margin-bottom: 10px; }
.slot-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.slot {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(168, 197, 180, 0.6);
  background: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--forest);
  cursor: pointer;
  transition: 0.15s;
}
.slot:hover { border-color: var(--teal); }
.slot.selected {
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  border-color: transparent;
  color: var(--white);
}
.slot-toggle-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.slot.blocked-slot { background: #f2f4f3; color: #b9c8c0; border-color: transparent; cursor: not-allowed; }
.slot:disabled { opacity: 0.55; cursor: not-allowed; }

/* booking summary */
.booking-summary {
  background: var(--mist);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 4px 0 18px;
}
.summary-empty { font-size: 0.9rem; color: #6a8577; text-align: center; }
.summary-warn { color: #b0563a; font-weight: 700; }
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.92rem;
  padding: 5px 0;
}
.summary-line span { color: #6a8577; }
.summary-line strong { color: var(--forest); text-align: right; }
.summary-total {
  border-top: 1px dashed rgba(168, 197, 180, 0.8);
  margin-top: 8px;
  padding-top: 10px;
}
.summary-total strong { color: var(--teal); font-size: 1.05rem; }
.demo-note { margin-top: 10px; font-size: 0.78rem; color: #8aa596; text-align: center; }
.payfast-logo { height: 16px; vertical-align: middle; margin-right: 6px; }
.footer-inline-link { color: var(--sage); text-decoration: none; }

@media (max-width: 1020px) {
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid .booking-panel:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .story-stages { grid-template-columns: 1fr; max-width: 420px; }
  .stage-arrow { transform: rotate(90deg); justify-self: center; }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .booking-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
}

/* ══════════ Mission & Vision (mist · flowers · flow) ══════════ */
.mission {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, var(--mist-blue) 0%, var(--mist) 55%, #f4faf7 100%);
}
.mission-inner { position: relative; z-index: 2; }
.mission-mist { position: absolute; inset: 0; pointer-events: none; }
.mist-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  will-change: transform;
  opacity: 0.55;
}
.mb1 { width: 420px; height: 260px; top: -60px; left: -80px; background: rgba(79, 163, 199, 0.25); }
.mb2 { width: 380px; height: 240px; bottom: -40px; right: -60px; background: rgba(63, 157, 120, 0.22); animation-delay: 4s; }
.mb3 { width: 300px; height: 200px; top: 40%; left: 55%; background: rgba(168, 197, 180, 0.30); animation-delay: 8s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}
.petal {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.5;
  animation: petalfall 12s linear infinite;
}
.p1 { left: 12%; animation-delay: 0s; }
.p2 { left: 38%; animation-delay: 3s; font-size: 0.95rem; }
.p3 { left: 68%; animation-delay: 6s; }
.p4 { left: 86%; animation-delay: 9s; font-size: 1rem; }
@keyframes petalfall {
  0%   { top: -6%; transform: rotate(0deg) translateX(0); opacity: 0; }
  10%  { opacity: 0.55; }
  50%  { transform: rotate(160deg) translateX(24px); }
  90%  { opacity: 0.45; }
  100% { top: 104%; transform: rotate(320deg) translateX(-16px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .mist-blob, .petal { animation: none; }
  .petal { display: none; }
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}
.pillar {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(168, 197, 180, 0.45);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(22, 56, 43, 0.06);
}
.pillar-flow {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(233, 242, 246, 0.9) 100%);
  border-color: rgba(79, 163, 199, 0.4);
  position: relative;
}
.pillar-flow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 3px;
  height: 22px;
  background: linear-gradient(180deg, var(--sky), transparent);
  border-radius: 2px;
}
.pillar-glyph { font-size: 2rem; margin-bottom: 12px; }
.pillar h3 { margin-bottom: 10px; color: var(--forest); }
.pillar p { font-size: 0.95rem; color: #4a6a58; }

.mission-statements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 48px auto 0;
}
.statement {
  border-left: 4px solid;
  border-image: linear-gradient(180deg, var(--emerald), var(--sky)) 1;
  background: rgba(255, 255, 255, 0.7);
  padding: 26px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.statement h4 {
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.statement p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--forest);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .mission-pillars { grid-template-columns: 1fr; max-width: 440px; }
  .mission-statements { grid-template-columns: 1fr; max-width: 440px; }
  .pillar-flow::after { display: none; }
}

/* ══════════ Commitment agreement ══════════ */
.commitment-note {
  background: linear-gradient(160deg, rgba(46,143,110,0.07), rgba(79,163,199,0.09));
  border: 1.5px solid rgba(46, 143, 134, 0.3);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 18px;
}
.commitment-note h4 {
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.commitment-note p {
  font-size: 0.88rem;
  color: #3c5a4b;
  line-height: 1.6;
  margin-bottom: 8px;
}
.commitment-small { font-size: 0.8rem !important; color: #6a8577 !important; }
.commitment-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
}
.commitment-check input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
  flex: 0 0 auto;
}

/* ══════════ Meeting preference pills ══════════ */
.pref-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pref-pill { cursor: pointer; }
.pref-pill input { position: absolute; opacity: 0; }
.pref-pill span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(168, 197, 180, 0.6);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
  transition: 0.15s;
}
.pref-pill input:checked + span {
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  border-color: transparent;
  color: var(--white);
}
.pref-note { font-size: 0.8rem; color: #6a8577; margin-top: 8px; }
