/* THE KIND MIND COLLECTIVE */

:root {
  --fg: #2A2926;
  --fg-soft: #4A4740;
  --fg-muted: #7A756B;
  --border: #DDD9D0;
  --surface: #F5F3EE;
  --bg: #FAFAF7;
  --white: #FEFEFE;
  --green: #6E7F62;
  --green-soft: #8A9B7E;
  --green-pale: #E4E9DF;
  --nav-h: 56px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 380; color: var(--fg); background: var(--bg);
  line-height: 1.72; font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.2; color: var(--fg); }
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: rgba(250,250,247,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.05); }
.nav-inner {
  max-width: 980px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem; font-weight: 600; color: var(--fg); text-decoration: none; white-space: nowrap;
}
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--fg-muted); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); text-decoration: none; }
.nav-cta {
  background: var(--green) !important; color: #fff !important;
  padding: 0.45rem 1.1rem; border-radius: 5px;
  font-size: 0.78rem !important; transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-soft) !important; text-decoration: none !important; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; position: relative; z-index: 1001;
}
.hamburger span {
  display: block; position: absolute; left: 3px; width: 22px; height: 2px;
  background: var(--fg); border-radius: 1px;
  transition: transform 0.3s, opacity 0.2s, top 0.3s;
}
.hamburger span:nth-child(1) { top: 6px; }
.hamburger span:nth-child(2) { top: 13px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 13px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 13px; transform: rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-block; background: var(--green); color: #fff;
  padding: 0.75rem 1.7rem; border-radius: 5px; text-decoration: none;
  font-weight: 500; font-size: 0.88rem; text-align: center;
  transition: background 0.2s, transform 0.12s;
}
.btn:hover { background: var(--green-soft); transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-secondary { background: transparent; color: var(--fg-soft); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--surface); border-color: var(--fg-muted); color: var(--fg); }

/* SECTIONS */
section { padding: 3rem 2rem; }
.section-inner { max-width: 700px; margin: 0 auto; }
.section-wide { max-width: 980px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--green); margin-bottom: 0.6rem;
}
section h2 { font-size: clamp(1.7rem, 3.5vw, 2.2rem); margin-bottom: 0.9rem; font-weight: 400; }
section p { margin-bottom: 0.9rem; color: var(--fg-soft); font-size: 0.93rem; }
section p:last-child { margin-bottom: 0; }
.sep { border: none; border-top: 1px solid var(--border); margin: 0; }

/* TRUST BAR */
.trust-bar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem; overflow-x: auto;
}
.trust-bar-inner {
  max-width: 980px; margin: 0 auto; display: flex; justify-content: center;
  gap: 2rem; font-size: 0.76rem; color: var(--fg-muted); font-weight: 500; white-space: nowrap;
}
.trust-bar-inner span { display: flex; align-items: center; gap: 0.35rem; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* HERO */
.hero {
  padding: calc(var(--nav-h) + 2.5rem) 2rem 3rem;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: center;
}
.hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 1rem; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub { font-size: 1rem; color: var(--fg-soft); margin-bottom: 1.2rem; line-height: 1.78; max-width: 500px; }
.hero-creds { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.hero-creds strong { color: var(--fg-soft); font-weight: 500; }
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero-trust {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.6rem; text-align: center;
}
.hero-trust-photo {
  width: 90px; height: 90px; border-radius: 50%; background: var(--green-pale);
  margin: 0 auto 0.8rem; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--fg-muted); overflow: hidden;
}
.hero-trust h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.hero-trust-title { font-size: 0.78rem; color: var(--fg-muted); margin-bottom: 0.9rem; line-height: 1.5; }
.hero-trust-badges {
  display: flex; flex-direction: column; gap: 0.35rem;
  font-size: 0.76rem; color: var(--fg-muted); text-align: left; padding-left: 1rem;
}
.hero-trust-badges span { display: flex; align-items: center; gap: 0.45rem; }
.check { color: var(--green); font-weight: 700; font-size: 0.85rem; }

/* PAGE HERO */
.page-hero {
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.8rem; font-weight: 400; }
.page-hero p { font-size: 1rem; color: var(--fg-soft); line-height: 1.78; }
.breadcrumb { font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--fg-muted); }
.breadcrumb a:hover { color: var(--green); }

/* SERVICES GRID */
.services-grid {
  margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.service-card { background: var(--white); padding: 1.5rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card h3 a { color: var(--fg); text-decoration: none; }
.service-card h3 a:hover { color: var(--green); }
.service-card p { font-size: 0.87rem; color: var(--fg-soft); margin-bottom: 0.4rem; }
.service-detail { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.7; margin-top: 0.4rem; }
.service-link { font-size: 0.82rem; font-weight: 500; margin-top: 0.6rem; display: inline-block; }

/* WHO */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 1rem; }
.who-subhead { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.6rem; }
.who-points { margin: 0; padding: 0; list-style: none; }
.who-points li { position: relative; padding: 0.35rem 0 0.35rem 1.3rem; color: var(--fg-soft); font-size: 0.88rem; }
.who-points li::before { content: ''; position: absolute; left: 0; top: 0.85rem; width: 7px; height: 1.5px; background: var(--green); }

/* FEES */
.fee-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; margin-top: 1.2rem;
}
.fee-item { background: var(--white); padding: 1.3rem; }
.fee-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.fee-item p { color: var(--fg-muted); font-size: 0.84rem; margin: 0; line-height: 1.6; }
.fee-note { margin-top: 1rem; font-size: 0.82rem; color: var(--fg-muted); }

/* FAQ */
.faq-list { margin-top: 1rem; }
.faq-item { padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500;
  color: var(--fg); cursor: pointer; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1rem; user-select: none;
}
.faq-toggle {
  font-family: 'Work Sans', sans-serif; font-weight: 300; font-size: 1.3rem;
  color: var(--fg-muted); flex-shrink: 0; line-height: 1; transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  color: var(--fg-soft); font-size: 0.88rem; line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
  opacity: 0; margin-top: 0;
}
.faq-item.open .faq-a { max-height: 400px; opacity: 1; margin-top: 0.5rem; }

/* CTA BANNER */
.cta-banner { background: var(--fg); padding: 2.5rem 2rem; text-align: center; }
.cta-banner h2 { color: rgba(255,255,255,0.92); font-size: 1.6rem; margin-bottom: 0.4rem; }
.cta-banner p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 1.2rem; }
.cta-banner .btn { padding: 0.8rem 2rem; }
.cta-email-link { display: block; margin-top: 0.6rem; color: rgba(255,255,255,0.4); font-size: 0.8rem; text-decoration: none; }
.cta-email-link:hover { color: rgba(255,255,255,0.65); text-decoration: none; }

/* WHAT TO EXPECT */
.expect-steps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; margin: 1.5rem 0;
}
.expect-step { background: var(--white); padding: 1.3rem; }
.expect-step .step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  color: var(--green-pale); font-weight: 600; line-height: 1; margin-bottom: 0.4rem;
}
.expect-step h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.expect-step p { font-size: 0.84rem; color: var(--fg-muted); margin: 0; line-height: 1.6; }

/* PROSE */
.prose h2 { margin-top: 2rem; margin-bottom: 0.7rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.2rem; }
.prose p { margin-bottom: 0.9rem; color: var(--fg-soft); font-size: 0.93rem; line-height: 1.78; }
.prose ul, .prose ol { margin: 0.8rem 0; padding-left: 0; list-style: none; }
.prose ul li, .prose ol li { position: relative; padding: 0.3rem 0 0.3rem 1.3rem; color: var(--fg-soft); font-size: 0.9rem; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.82rem; width: 7px; height: 1.5px; background: var(--green); }
.prose .inline-cta {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem; margin: 2rem 0; text-align: center;
}
.prose .inline-cta p { margin-bottom: 0.8rem; font-size: 0.9rem; }

/* CONTACT FORM */
.contact-form { margin-top: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--fg-soft); margin-bottom: 0.3rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
  border-radius: 6px; font-family: 'Work Sans', sans-serif; font-size: 0.9rem;
  color: var(--fg); background: var(--white); transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--green);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.8rem; }
.hp-field { position: absolute; left: -9999px; }
.form-success {
  background: var(--green-pale); border: 1px solid var(--green);
  border-radius: 8px; padding: 1.2rem; margin-bottom: 1.5rem;
  font-size: 0.9rem; color: var(--green);
}
.form-error {
  background: #fce8e8; border: 1px solid #e5a0a0;
  border-radius: 8px; padding: 1.2rem; margin-bottom: 1.5rem;
  font-size: 0.9rem; color: #8b3a3a;
}

/* CONTACT GRID */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.2rem; }
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem;
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.86rem; color: var(--fg-muted); margin: 0; }
.contact-card a { color: var(--green); font-weight: 500; }

/* BLOG GRID */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem; transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.blog-card h3 a { color: var(--fg); text-decoration: none; }
.blog-card h3 a:hover { color: var(--green); }
.blog-card p { font-size: 0.84rem; color: var(--fg-muted); margin: 0; line-height: 1.6; }
.blog-card .blog-meta { font-size: 0.72rem; color: var(--fg-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* FOOTER */
footer {
  background: var(--fg); color: rgba(255,255,255,0.4);
  padding: 2.5rem 2rem; font-size: 0.78rem; line-height: 1.8;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-inner p { color: rgba(255,255,255,0.4); margin-bottom: 0.3rem; }
.footer-inner a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-inner a:hover { color: rgba(255,255,255,0.7); }
.footer-name { color: rgba(255,255,255,0.65); font-weight: 500; }
.footer-links { margin-top: 0.8rem; display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.76rem; }
.footer-reg { margin-top: 0.6rem; font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-ack {
  margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem; line-height: 1.7;
}

/* STICKY CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(254,254,254,0.96); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--border);
  padding: 0.55rem 1.2rem; z-index: 999; text-align: center;
}
.sticky-cta .btn { width: 100%; padding: 0.65rem; font-size: 0.82rem; }

/* RESPONSIVE - TABLET */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-trust { max-width: 340px; margin: 0 auto; }
  .services-grid, .who-grid, .contact-grid, .blog-grid { grid-template-columns: 1fr; }
  .expect-steps, .fee-row { grid-template-columns: 1fr; }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 600px) {
  :root { --nav-h: 50px; }
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; right: 0; background: var(--white);
    padding: 1rem 1.5rem 1.2rem; gap: 0.1rem;
    border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.5rem 0; }
  .nav-links a { font-size: 0.88rem; }
  .nav-cta { display: block; text-align: center; margin-top: 0.4rem; padding: 0.6rem 1rem; }
  .nav-inner { padding: 0 1.2rem; }
  .hero { padding: calc(var(--nav-h) + 1.5rem) 1.2rem 2rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { max-width: 100%; padding: 1.3rem; }
  .hero-trust-photo { width: 75px; height: 75px; }
  .hero-trust-badges { padding-left: 0; align-items: center; text-align: center; }
  .page-hero { padding: calc(var(--nav-h) + 1.2rem) 1.2rem 1.5rem; }
  .page-hero h1 { font-size: 1.65rem; }
  .trust-bar { padding: 0.7rem 1.2rem; }
  .trust-bar-inner { gap: 1.2rem; font-size: 0.7rem; justify-content: flex-start; }
  section { padding: 2.2rem 1.2rem; }
  .service-card, .fee-item, .contact-card { padding: 1.2rem; }
  .cta-banner { padding: 2rem 1.2rem; }
  .cta-banner h2 { font-size: 1.35rem; }
  footer { padding: 2rem 1.2rem; }
  .footer-links { flex-direction: column; gap: 0.3rem; }
  .sticky-cta { display: block; }
  body { padding-bottom: 3.5rem; }
  .blog-grid { gap: 1rem; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.55rem; }
  .page-hero h1 { font-size: 1.4rem; }
  .nav-logo { font-size: 1rem; }
  section h2 { font-size: 1.45rem; }
}
