* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.65;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid #0f766e;
  outline-offset: 2px;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e5e5;
}
.site-nav .nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img { height: 38px; width: auto; display: block; }
.nav-brand span {
  font-weight: 700;
  font-size: 18px;
  color: #134e4a;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: #40514c;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: #f0f5f4; color: #0f766e; }
.nav-links a.active { color: #0f766e; background: #e6f2f0; }
.nav-cta {
  display: none;
}
@media (min-width: 700px) {
  .nav-cta {
    display: inline-flex;
    background: #0f766e;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-cta:hover { background: #0c5a53; }
}

/* ---------- Hero (home) ---------- */
.hero {
  text-align: center;
  padding: 56px 24px 48px;
  background: linear-gradient(180deg, #f4f9f8 0%, #ffffff 100%);
}
.hero img.logo { display: block; height: 192px; width: auto; margin: 0 auto 24px; }
.hero h1 { font-size: 40px; font-weight: 800; margin: 0 0 16px; color: #134e4a; letter-spacing: -0.01em; }
.hero p { font-size: 19px; color: #445; max-width: 580px; margin: 0 auto 28px; }

.btn {
  display: inline-block;
  background: #0f766e;
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.18);
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: #0c5a53; transform: translateY(-1px); }
.price-note { font-size: 15px; color: #777; margin-top: 14px; }

/* ---------- Sections ---------- */
section {
  padding: 40px 24px;
  border-top: 1px solid #e5e5e5;
}
section > .inner { max-width: 860px; margin: 0 auto; }
section h2 { font-size: 26px; font-weight: 700; margin: 0 0 20px; color: #1a1a1a; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
  margin: 0 0 8px;
}

/* ---------- Interior page hero ---------- */
.page-hero { padding-top: 40px; padding-bottom: 8px; }
.page-hero h1 { font-size: 33px; font-weight: 800; color: #134e4a; margin: 0 0 14px; letter-spacing: -0.01em; }
.page-hero .lede { color: #4a4a4a; font-size: 18px; max-width: 620px; margin: 0 0 4px; }

.page-header-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 36px;
}
.page-header-row .text { flex: 1 1 320px; }
.page-header-row .photo { flex: 1 1 260px; max-width: 320px; }
.page-header-row .photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 24px rgba(20, 40, 38, 0.12);
}
.page-header-row h1 { font-size: 33px; font-weight: 800; color: #134e4a; margin: 0 0 14px; letter-spacing: -0.01em; }
.page-header-row .lede { color: #4a4a4a; font-size: 18px; max-width: 520px; margin: 0; }

h2.section-title { font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 18px; color: #1a1a1a; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.card {
  background: #f7f7f5;
  border: 1px solid #ececea;
  border-radius: 12px;
  padding: 18px 18px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.card:hover { border-color: #cfe6e3; background: #f2f8f7; }
.card .title { font-weight: 700; margin-top: 6px; font-size: 17px; }
.card .desc { font-size: 15.5px; color: #666; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.faq-item:last-of-type { border-bottom: none; }
.faq-item .q { font-weight: 700; font-size: 17.5px; margin-bottom: 6px; color: #134e4a; }
.faq-item .a { font-size: 16.5px; color: #555; }

/* ---------- About / bio ---------- */
.about-bio { display: flex; gap: 22px; align-items: flex-start; }
.about-bio img { width: 110px; height: auto; border-radius: 12px; flex-shrink: 0; box-shadow: 0 6px 18px rgba(20,40,38,0.12); }
.about-bio .name { font-weight: 700; font-size: 19px; margin: 0 0 4px; color: #134e4a; }
.about-bio .cred { font-size: 16px; color: #666; margin: 0 0 10px; }

/* ---------- Feature photo blocks (mid-page) ---------- */
.feature-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-row .photo { flex: 1 1 260px; max-width: 340px; }
.feature-row .photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 24px rgba(20, 40, 38, 0.12);
}
.feature-row .text { flex: 1 1 300px; }
.feature-row .text p { color: #555; font-size: 17px; }

/* ---------- Fee schedule ---------- */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.fee-card {
  background: #f7f7f5;
  border: 1px solid #ececea;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
}
.fee-card-highlight {
  background: #e6f2f0;
  border-color: #bfe0da;
}
.fee-price { font-size: 30px; font-weight: 800; color: #0f766e; letter-spacing: -0.01em; }
.fee-period { font-size: 16px; font-weight: 600; color: #4a8b85; }
.fee-label { font-size: 15px; color: #555; margin-top: 8px; }

/* ---------- CTA box ---------- */
.cta-box {
  text-align: center;
  padding: 40px 24px;
  background: #f7f7f5;
  border-radius: 14px;
  margin: 28px 0;
}
.cta-box .headline { font-size: 21px; font-weight: 700; margin-bottom: 8px; color: #134e4a; }
.cta-box .sub { font-size: 16px; color: #666; margin-bottom: 22px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid #e5e5e5;
  padding: 28px 24px 32px;
}
footer .foot-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer .foot-links { display: flex; gap: 16px; flex-wrap: wrap; }
footer .foot-links a { font-size: 14px; color: #666; text-decoration: none; }
footer .foot-links a:hover { color: #0f766e; text-decoration: underline; }
footer .copyright { font-size: 13px; color: #999; }

/* ---------- SimplePractice widget button overrides ----------
   Compound selectors (element + two classes) intentionally used so these
   rules beat the widget's own single-class .spwidget-button styles
   regardless of where its <style> tag falls in the document. */
a.spwidget-button.btn {
  display: inline-block;
  padding: 16px 36px;
  color: #fff;
  background: #0f766e;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.18);
  transition: background 0.15s ease, transform 0.1s ease;
}
a.spwidget-button.btn:hover { background: #0c5a53; color: #fff; transform: translateY(-1px); }
a.spwidget-button.btn:active { color: rgba(255, 255, 255, 0.85) !important; box-shadow: none; transform: translateY(0); }

a.spwidget-button.nav-cta {
  display: inline-flex;
  background: #0f766e;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
a.spwidget-button.nav-cta:hover { background: #0c5a53; color: #fff; }
a.spwidget-button.nav-cta:active { color: rgba(255, 255, 255, 0.85) !important; box-shadow: none; }

a.spwidget-button.footer-link {
  display: inline;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-decoration: none;
}
a.spwidget-button.footer-link:hover { color: #0f766e; text-decoration: underline; background: none; }
a.spwidget-button.footer-link:active { color: #0f766e !important; box-shadow: none; }

@media (min-width: 700px) {
  a.spwidget-button.nav-cta { display: inline-flex; }
}
@media (max-width: 699px) {
  a.spwidget-button.nav-cta { display: none; }
}

@media (max-width: 640px) {
  .hero img.logo { height: 92px; }
  .hero h1 { font-size: 30px; }
  .page-hero h1, .page-header-row h1 { font-size: 26px; }
  section h2 { font-size: 22px; }
  .about-bio { flex-direction: column; }
  footer .foot-inner { flex-direction: column; text-align: center; }
}
