:root {
  --navy: #062e73;
  --navy-dark: #041d4d;
  --teal: #10aeb7;
  --teal-dark: #0c8890;
  --teal-light: #5cd1d8;
  --teal-50: #e3f6f7;
  --teal-100: #d4f3f4;
  --ink: #1c2733;
  --ink-soft: #51606f;
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

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

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

.wrap {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.site-header .logo img { height: 80px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.nav-links a:hover { color: var(--teal-dark); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 1px 2px rgba(6,46,115,0.15);
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(6,46,115,0.2);
  color: var(--navy);
}
.btn-outline:hover { background: rgba(6,46,115,0.05); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

@media (max-width: 640px) {
  .nav-links, .header-cta { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--teal-50) 0%, #ffffff 55%, #ffffff 100%);
  padding: 80px 0 56px;
}
.hero-inner { max-width: 640px; }
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 0 0 20px;
}
h1.hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 24px;
}
h1.hero-title em { font-style: italic; }
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Section rhythm */
.section { padding: 64px 0; }
.section-alt { background: var(--teal-50); }
.section-head { max-width: 560px; margin: 0 0 48px; }
.rule {
  width: 64px;
  height: 1px;
  background: var(--teal);
  margin: 0 0 20px;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin: 0;
}
.section-body p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

/* About two-column */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 2px rgba(6,46,115,0.04);
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  margin-bottom: 24px;
}
.icon-circle.navy {
  background: rgba(6,46,115,0.06);
  color: var(--navy);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 12px;
}
.card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

/* Why choose us */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature {
  display: flex;
  gap: 20px;
}
.feature .icon-circle { flex-shrink: 0; margin-bottom: 0; width: 44px; height: 44px; }
.feature h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
}
.feature p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

/* Therapist card */
.therapist-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 2px rgba(6,46,115,0.04);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .therapist-card { flex-direction: column; align-items: center; text-align: center; }
}
.therapist-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--teal-50);
}
.therapist-photo img { width: 100%; height: 100%; object-fit: cover; }
.therapist-name-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 640px) { .therapist-name-row { justify-content: center; } }
.therapist-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
}
.therapist-creds {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-dark);
}
.therapist-title {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 8px 0 24px;
}
.therapist-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) { .therapist-actions { justify-content: center; } }

/* Testimonials */
.testimonial {
  background: var(--teal-50);
  border-radius: 20px;
  padding: 28px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 20px;
}
.testimonial cite {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-rows { display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; gap: 16px; }
.contact-row .icon-circle {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  color: var(--teal-dark);
  margin-bottom: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.contact-row .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(81,96,111,0.7);
  margin: 0 0 2px;
}
.contact-row .value {
  font-size: 15px;
  color: var(--navy);
  margin: 0;
}
.map-embed {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px;
  min-height: 280px;
  overflow: hidden;
}
.map-embed iframe {
  display: block;
  min-height: 280px;
}

/* Footer */
.site-footer { background: var(--navy); color: #fff; padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr 2fr;
  gap: 32px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
}
.footer-logo img { height: 44px; width: auto; }
.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
  margin: 20px 0 0;
}
.footer-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 0 0 16px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-list a, .footer-list span {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.footer-list a:hover { color: #fff; }
address { font-style: normal; font-size: 15px; color: rgba(255,255,255,0.8); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }

/* Profile page specific */
.profile-hero {
  background: linear-gradient(160deg, var(--teal-50) 0%, #ffffff 60%, #ffffff 100%);
  padding: 64px 0;
}
.profile-hero-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 640px) {
  .profile-hero-inner { flex-direction: column; text-align: center; }
}
.profile-photo {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px #fff, 0 8px 24px rgba(6,46,115,0.1);
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-name-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) { .profile-name-row { justify-content: center; } }
.profile-name {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--navy);
  margin: 0;
}
.profile-creds { font-size: 16px; font-weight: 500; color: var(--teal-dark); }
.profile-title { font-size: 18px; color: var(--ink-soft); margin: 12px 0 0; }

.focus-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.focus-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.check-circle {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-100); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cred-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 16px;
}
.cred-card .code { font-size: 14px; font-weight: 600; color: var(--teal-dark); margin: 0 0 2px; }
.cred-card .label { font-size: 15px; color: var(--ink-soft); margin: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.two-col h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 8px;
}

.cta-center { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-center h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin: 0 0 16px;
}
.cta-center p { font-size: 18px; color: var(--ink-soft); margin: 0 0 32px; }
.cta-center .btn { padding: 16px 36px; font-size: 16px; }

@media (max-width: 640px) {
  h1.hero-title { font-size: 34px; }
  .profile-name { font-size: 32px; }
}
