:root {
  --teal: #006b68;
  --teal-2: #00857f;
  --sage: #dfeee7;
  --sage-2: #f3faf6;
  --cream: #fffaf2;
  --peach: #f8c7a6;
  --gold: #f59e0b;
  --ink: #13213a;
  --muted: #667085;
  --line: #dfe9e5;
  --purple: #7c3aed;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fdfcf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.container-page {
  width: min(1220px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}
.logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50% 50% 50% 12px;
  color: var(--teal);
  background: #f5fffb;
  font-size: 14px;
}
.logo strong { display: block; font-size: 21px; line-height: 1; }
.logo small { display: block; color: var(--muted); font-size: 9px; font-weight: 800; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  position: relative;
  font-size: 12px;
  font-weight: 850;
}
.nav-link.active:after, .nav-link:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font-weight: 800;
}

.btn-primary, .btn-outline, .btn-soft {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 9px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary { color: white; background: linear-gradient(135deg, var(--teal), var(--teal-2)); box-shadow: 0 14px 28px rgba(0,107,104,.18); }
.btn-outline { color: var(--teal); border: 1px solid #b9d9d2; background: white; }
.btn-soft { color: var(--teal); background: #e8f8f2; }
.btn-primary:hover, .btn-outline:hover, .btn-soft:hover { transform: translateY(-2px); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.1vw, 72px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
h1 span, .teal { color: var(--teal); }
h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.035em;
}
h3 { margin-bottom: 8px; font-size: 18px; }
.lead { max-width: 600px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; line-height: 1.65; }
.link-accent { color: var(--teal); font-size: 12px; font-weight: 900; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 40%, rgba(0,107,104,.13), transparent 25%),
    linear-gradient(120deg, #fffdf8 0 58%, #f2f8f4 58% 100%);
}
.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: .85fr .95fr;
  align-items: center;
  gap: 40px;
  padding: 58px 0;
}
.safety-pill {
  display: inline-flex;
  border-radius: 999px;
  background: var(--sage-2);
  color: var(--teal);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-art {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}
.room-shape {
  position: absolute;
  inset: 30px 48px 25px 95px;
  border-radius: 48% 52% 46% 54%;
  background: linear-gradient(135deg, #d7e7e1, #fbefe4);
}
.hero-art img {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  height: 390px;
  object-fit: cover;
  border-radius: 190px 190px 24px 24px;
  box-shadow: 0 28px 60px rgba(0,107,104,.14);
}
.support-card {
  position: absolute;
  z-index: 2;
  right: 8px;
  top: 92px;
  width: 285px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  padding: 18px;
  box-shadow: 0 20px 45px rgba(19,33,58,.12);
  backdrop-filter: blur(12px);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 16px 0; }
.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: white;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.tag.active { border-color: var(--teal); background: var(--teal); color: white; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 0;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}
.icon-disc {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: var(--sage-2);
  color: var(--teal);
  font-weight: 900;
}
.dark-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  border-radius: 16px;
  color: white;
  background:
    radial-gradient(circle at 80% 55%, rgba(223,238,231,.18), transparent 20%),
    linear-gradient(135deg, #00615e, #004d4a);
  padding: 28px;
  box-shadow: 0 18px 42px rgba(0,107,104,.16);
}

.page-hero {
  background: radial-gradient(circle at 90% 20%, rgba(0,107,104,.12), transparent 24%), linear-gradient(135deg, #fff, #f7fbf8);
  padding: 42px 0 50px;
}
.crumbs { margin-bottom: 25px; color: var(--muted); font-size: 11px; font-weight: 750; }
.section { padding: 50px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 38px rgba(19,33,58,.055);
}
.panel-pad { padding: 24px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card, .therapist-card, .article-card, .specialty-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 34px rgba(19,33,58,.05);
}
.service-card { min-height: 210px; padding: 24px; }
.service-card .icon-disc { margin-bottom: 18px; }
.specialty-card { padding: 20px; text-align: center; }
.specialty-card .icon-disc { margin: 0 auto 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.soft-card {
  background: linear-gradient(135deg, #eef7f2, #fff8f0);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.soft-card img { width: 100%; height: 260px; object-fit: cover; }
.check-list { display: grid; gap: 12px; }
.check-list span:before { content: "OK "; color: var(--teal); font-weight: 900; }
.testimonial-grid { display: grid; grid-template-columns: 1fr .55fr; gap: 18px; }
.stars { color: var(--gold); letter-spacing: 1px; }
.insurance-strip {
  display: grid;
  grid-template-columns: .8fr repeat(5, 1fr) .4fr;
  gap: 18px;
  align-items: center;
  border-radius: 16px;
  background: #fff8ec;
  padding: 24px;
}
.insurance-logo { color: var(--teal); font-size: 20px; font-weight: 900; }

.therapist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.therapist-card img { width: 100%; height: 230px; object-fit: cover; object-position: top; background: #eef4f1; }
.profile-layout { display: grid; grid-template-columns: .55fr 1fr; gap: 28px; align-items: start; }
.profile-photo { width: 100%; height: 420px; object-fit: cover; border-radius: 18px; }
.tabs { display: flex; flex-wrap: wrap; gap: 24px; border-bottom: 1px solid var(--line); margin: 22px 0; }
.tabs span { padding-bottom: 12px; font-size: 12px; font-weight: 900; }
.tabs span.active { color: var(--teal); border-bottom: 2px solid var(--teal); }

.booking-layout { display: grid; grid-template-columns: .55fr .45fr; gap: 24px; }
.booking-grid { display: grid; grid-template-columns: .9fr .9fr 1fr; gap: 18px; }
.field {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 13px;
}
.field:focus { outline: 3px solid rgba(0,107,104,.12); border-color: var(--teal); }
.form-stack { display: grid; gap: 12px; }
.step-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 22px 0; }
.step-line span { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 850; }
.step-line b { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: var(--sage-2); color: var(--teal); }
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.topic { border: 1px solid var(--line); border-radius: 10px; padding: 10px; font-size: 12px; }
.topic.active { border-color: var(--teal); background: var(--sage-2); }
.video-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 14px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card img { width: 100%; height: 170px; object-fit: cover; }
.resource-tag { display: inline-flex; border-radius: 999px; background: var(--sage-2); color: var(--teal); padding: 6px 10px; font-size: 10px; font-weight: 900; }
.about-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 26px; align-items: center; }
.about-grid img { width: 100%; max-height: 390px; object-fit: cover; border-radius: 170px 170px 20px 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr .45fr; gap: 24px; }

.site-footer {
  color: #dcfff5;
  background:
    radial-gradient(circle at 92% 72%, rgba(248,199,166,.18), transparent 18%),
    linear-gradient(135deg, #00615e, #004744);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 34px; padding: 42px 0; }
.site-footer .logo, .site-footer b { color: white; }
.site-footer a, .site-footer p { color: #c5e5de; }
.footer-links { display: grid; gap: 10px; margin-top: 14px; font-size: 13px; }
.newsletter { display: flex; gap: 0; margin-top: 14px; }
.newsletter .field { border-radius: 8px 0 0 8px; }
.newsletter .btn-primary { border-radius: 0 8px 8px 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; color: #abd4cb; font-size: 12px; }
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  transform: translateY(18px);
  opacity: 0;
  border-radius: 12px;
  background: var(--teal);
  color: white;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 850;
  transition: .2s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1060px) {
  .hero-grid, .dark-strip, .two-col, .profile-layout, .booking-layout, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid, .therapist-grid, .article-grid, .feature-row, .booking-grid, .insurance-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .menu-button { display: grid; place-items: center; }
  .nav {
    position: absolute;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    padding: 14px;
    box-shadow: 0 24px 50px rgba(19,33,58,.14);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 10px; }
  .nav-link.active:after, .nav-link:hover:after { display: none; }
  .header-inner > .btn-primary { display: none; }
  .hero-grid { min-height: auto; padding: 40px 0; }
  .hero-art { min-height: 360px; }
  .support-card { position: relative; inset: auto; width: auto; margin-top: -40px; }
  .card-grid, .therapist-grid, .article-grid, .feature-row, .booking-grid, .insurance-strip, .footer-grid, .step-line, .topic-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .section-head { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 42px; }
}
