@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg-deep: #071020;
  --bg-dark: #0a1628;
  --bg-mid: #0d1f38;
  --bg-card: #0f2442;
  --blue-bright: #378ADD;
  --blue-mid: #185FA5;
  --blue-deep: #0C447C;
  --blue-light: #85B7EB;
  --blue-pale: #a8c4d8;
  --text-primary: #e8f2ff;
  --text-secondary: #a8c4d8;
  --text-muted: #4a7aaa;
  --text-faint: #2a5080;
  --border-subtle: #1e3050;
  --border-mid: #185FA5;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border-subtle);
  padding: 0 3rem;
  display: flex; justify-content: space-between; align-items: center;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 12px; color: var(--text-muted);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-light); }
.nav-cta {
  background: var(--blue-mid); color: #fff;
  padding: 9px 22px; font-size: 12px;
  font-family: var(--font-body);
  border: none; cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--blue-deep); }

/* HERO */
.hero {
  padding: 7rem 3rem 5rem;
  border-bottom: 0.5px solid var(--border-subtle);
}
.hero-tag {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--blue-light); margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 400; color: var(--text-primary);
  line-height: 1.15; margin-bottom: 1.5rem;
  max-width: 600px;
}
.hero h1 em { font-style: italic; color: var(--blue-light); }
.hero-sub {
  font-size: 15px; color: var(--text-secondary);
  max-width: 500px; margin-bottom: 2.5rem; line-height: 1.9;
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue-mid); color: #fff;
  padding: 12px 28px; font-size: 13px;
  font-family: var(--font-body);
  border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  letter-spacing: 0.04em; transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-deep); }
.btn-secondary {
  background: transparent; color: var(--blue-light);
  padding: 12px 28px; font-size: 13px;
  font-family: var(--font-body);
  border: 0.5px solid var(--blue-bright); cursor: pointer;
  text-decoration: none; display: inline-block;
  letter-spacing: 0.04em; transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(55,138,221,0.08); }
.stats {
  display: flex; gap: 3rem;
  margin-top: 4rem; padding-top: 3rem;
  border-top: 0.5px solid var(--border-subtle);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400;
  color: var(--text-primary); line-height: 1;
}
.stat-label {
  font-size: 10px; color: var(--text-faint);
  margin-top: 5px; letter-spacing: 0.1em;
}

/* SECTIONS */
.section { padding: 5.5rem 3rem; border-bottom: 0.5px solid var(--border-subtle); }
.section-alt { background: var(--bg-deep); }
.section-tag { font-size: 10px; letter-spacing: 0.2em; color: var(--blue-light); margin-bottom: 1rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400; color: var(--text-primary);
  margin-bottom: 0.5rem; line-height: 1.25;
}
.section-sub { font-size: 13px; color: var(--text-faint); margin-bottom: 3rem; letter-spacing: 0.02em; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 0.5px; background: var(--border-subtle);
  border: 0.5px solid var(--border-subtle);
}
.service-card {
  background: var(--bg-mid); padding: 1.75rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-card); }
.service-num {
  font-size: 10px; color: var(--text-faint);
  letter-spacing: 0.12em; margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 13px; font-weight: 400;
  color: var(--blue-light); margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.service-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* METHOD */
.method-block {
  background: var(--bg-mid);
  border: 0.5px solid var(--blue-mid);
  padding: 2.5rem;
}
.method-block > p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.9; margin-bottom: 2rem;
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px; margin-bottom: 2rem;
}
.training-card {
  background: var(--bg-deep);
  border-left: 2px solid var(--blue-mid);
  padding: 1.1rem 1.25rem;
}
.training-card h4 {
  font-size: 12px; color: var(--blue-light);
  margin-bottom: 4px; letter-spacing: 0.06em;
}
.training-card p { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.method-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.method-tag {
  font-size: 11px; color: var(--blue-light);
  border: 0.5px solid var(--border-subtle);
  padding: 4px 14px;
  background: var(--bg-deep);
  letter-spacing: 0.02em;
}

/* ABOUT */
.about-layout { display: flex; gap: 4rem; flex-wrap: wrap; align-items: flex-start; }
.about-text { flex: 1; min-width: 280px; }
.about-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 1rem; }
.about-card {
  flex: 0 0 260px;
  background: var(--bg-mid);
  border: 0.5px solid var(--border-subtle);
  padding: 2rem;
}
.about-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; color: var(--blue-light);
  margin-bottom: 1.25rem;
}
.about-name { font-size: 14px; color: var(--blue-light); margin-bottom: 2px; }
.about-title { font-size: 11px; color: var(--text-faint); margin-bottom: 1.5rem; letter-spacing: 0.04em; }
.cred-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-mid); flex-shrink: 0; margin-top: 5px; }
.cred-dot-pending { width: 5px; height: 5px; border-radius: 50%; border: 0.5px solid var(--border-subtle); flex-shrink: 0; margin-top: 5px; }
.cred-text { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
.cred-text-pending { font-size: 12px; color: var(--text-faint); font-style: italic; line-height: 1.4; }

/* TESTIMONIAL BLOCK */
.testimonial-block {
  background: var(--bg-mid);
  border-left: 2px solid var(--blue-mid);
  padding: 1.75rem 2rem; margin: 2rem 0;
}
.testimonial-block blockquote {
  font-family: var(--font-display);
  font-size: 15px; font-style: italic;
  color: var(--text-secondary); line-height: 1.9;
  margin-bottom: 1rem;
}
.testimonial-block cite {
  font-size: 10px; color: var(--blue-mid);
  font-style: normal; letter-spacing: 0.1em;
}

/* PATIENT STORIES */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
}
.testi-card {
  background: var(--bg-mid);
  border: 0.5px solid var(--border-subtle);
  padding: 1.5rem;
}
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star { width: 8px; height: 8px; background: var(--blue-mid); }
.testi-text {
  font-family: var(--font-display);
  font-size: 13px; font-style: italic;
  color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 12px;
}
.testi-author { font-size: 11px; color: var(--text-faint); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px; margin-bottom: 2rem;
}
.contact-card {
  background: var(--bg-mid);
  border: 0.5px solid var(--border-subtle);
  padding: 1.25rem;
}
.contact-label { font-size: 10px; color: var(--text-faint); letter-spacing: 0.12em; margin-bottom: 6px; }
.contact-val { font-size: 13px; color: var(--blue-light); line-height: 1.5; }
.book-bar {
  background: var(--bg-mid);
  border: 0.5px solid var(--blue-mid);
  padding: 2rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.book-bar h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--text-primary); margin-bottom: 4px;
}
.book-bar p { font-size: 13px; color: var(--text-faint); }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5px; background: var(--border-subtle);
  border: 0.5px solid var(--border-subtle);
}
.blog-card {
  background: var(--bg-mid); padding: 2rem;
  text-decoration: none; display: block;
  transition: background 0.2s;
}
.blog-card:hover { background: var(--bg-card); }
.blog-tag { font-size: 10px; letter-spacing: 0.14em; color: var(--blue-light); margin-bottom: 0.75rem; }
.blog-card h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  color: var(--text-primary); line-height: 1.3;
  margin-bottom: 0.75rem;
}
.blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-date { font-size: 11px; color: var(--text-faint); }

/* POST */
.post-header { padding: 6rem 3rem 3rem; border-bottom: 0.5px solid var(--border-subtle); max-width: 800px; }
.post-body { padding: 4rem 3rem; max-width: 800px; }
.post-body h2 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  color: var(--text-primary); margin: 2.5rem 0 1rem;
}
.post-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 1.25rem; }
.post-body a { color: var(--blue-light); }
.post-related { padding: 3rem; border-top: 0.5px solid var(--border-subtle); }
.post-related h3 { font-size: 13px; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px; }
.related-card {
  background: var(--bg-mid); border: 0.5px solid var(--border-subtle);
  padding: 1.25rem; text-decoration: none; display: block;
  transition: background 0.2s;
}
.related-card:hover { background: var(--bg-card); }
.related-card p { font-size: 10px; color: var(--blue-light); letter-spacing: 0.1em; margin-bottom: 6px; }
.related-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 400; color: var(--text-primary); line-height: 1.3; }

/* FOOTER */
.footer {
  background: var(--bg-deep); padding: 2rem 3rem;
  border-top: 0.5px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--font-display); font-size: 15px; color: var(--text-faint); text-decoration: none; }
.footer-copy { font-size: 11px; color: var(--text-faint); }
.lang-pills { display: flex; gap: 8px; }
.lang-pill { font-size: 11px; color: var(--blue-bright); border: 0.5px solid var(--border-subtle); padding: 3px 12px; letter-spacing: 0.04em; }
.langs-spoken { font-size: 13px; color: var(--text-faint); margin-top: 1.5rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .section { padding: 4rem 1.5rem; }
  .about-layout { flex-direction: column; }
  .about-card { flex: none; width: 100%; }
  .footer { padding: 1.5rem; flex-direction: column; text-align: center; }
  .book-bar { text-align: center; justify-content: center; }
  .post-header, .post-body, .post-related { padding-left: 1.5rem; padding-right: 1.5rem; }
}
