/* ============================================
   GetPractitioner — shared stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #142420;
  --ink-soft: #3c4a45;
  --paper: #eff2ef;
  --paper-raised: #ffffff;
  --line: #cdd6d0;
  --moss: #3f6659;
  --moss-deep: #274740;
  --amber: #b9832c;
  --amber-soft: #f4e6cd;
  --radius: 3px;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo span { color: var(--moss); }

.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  text-decoration: none;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 18px;
  border-radius: var(--radius);
  color: var(--ink) !important;
  font-weight: 500;
}
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line);
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: end; }
.hero-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--moss-deep);
  margin: 0 0 18px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 15ch;
}
.hero p.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-optical-sizing: auto;
  font-size: 36px;
  font-weight: 500;
  color: var(--moss-deep);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Search bar ---------- */
.search-panel {
  margin-top: 44px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 10px;
}
.search-panel input {
  border: none;
  background: transparent;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  border-right: 1px solid var(--line);
}
.search-panel input:last-of-type { border-right: none; }
.search-panel input:focus { outline: none; }
.search-panel button {
  background: var(--moss-deep);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 0 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s ease;
}
.search-panel button:hover { background: var(--ink); }

.popular-line {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.popular-line a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  margin-right: 4px;
}
.popular-line a:hover { border-color: var(--ink); }

/* ---------- Section shell ---------- */
section.block { padding: 72px 0; border-bottom: 1px solid var(--line); }
section.block:last-of-type { border-bottom: none; }
.block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  gap: 24px;
}
.block-head h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}
.block-head .see-all {
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
}

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat-card {
  background: var(--paper-raised);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--ink);
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .15s ease;
}
.cat-card:hover { background: var(--amber-soft); }
.cat-card .name { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.cat-card .count { font-size: 13px; color: var(--ink-soft); }

/* ---------- Featured practitioner ---------- */
.feature-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  padding: 32px;
}
.feature-card img.avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--line);
}
.feature-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.feature-card h3 { font-family: var(--serif); font-size: 26px; margin: 0 0 6px; }
.feature-role { color: var(--ink-soft); font-size: 15px; margin: 0 0 10px; }
.feature-meta { font-size: 13.5px; color: var(--ink-soft); }
.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 14.5px;
  white-space: nowrap;
  transition: all .15s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-primary { background: var(--moss-deep); color: #fff; border-color: var(--moss-deep); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }

/* ---------- Location list ---------- */
.city-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 32px; }
.city-list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 15px;
}
.city-list a:hover { color: var(--moss-deep); }

/* ---------- Trust / why section ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item .num { font-family: var(--serif); font-size: 22px; color: var(--moss-deep); margin-bottom: 10px; }
.trust-item h4 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
.trust-item p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ---------- Articles ---------- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.article-card { text-decoration: none; color: var(--ink); }
.article-card .art-cat { font-size: 12.5px; color: var(--moss-deep); margin-bottom: 8px; display: block; }
.article-card h3 { font-family: var(--serif); font-size: 19px; margin: 0 0 8px; font-weight: 500; line-height: 1.3; }
.article-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- Practitioner CTA band ---------- */
.cta-band {
  background: var(--moss-deep);
  color: #fff;
}
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; padding: 56px 32px; }
.cta-band h2 { font-family: var(--serif); font-size: 28px; margin: 0 0 8px; font-weight: 600; }
.cta-band p { margin: 0; color: #cfe0d8; font-size: 15px; }
.cta-band .btn { border-color: #fff; color: #fff; }
.cta-band .btn:hover { background: #fff; color: var(--moss-deep); }

/* ---------- Footer ---------- */
footer.site-footer { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-grid h5 { font-size: 13px; margin: 0 0 14px; color: var(--ink-soft); font-weight: 600; }
.footer-grid a { display: block; text-decoration: none; font-size: 14px; margin-bottom: 9px; color: var(--ink); }
.footer-grid a:hover { color: var(--moss-deep); }
.footer-logo { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 13px; color: var(--ink-soft); padding: 22px 0 0; }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--ink); }

/* ---------- Profile page ---------- */
.profile-hero { padding: 40px 0 56px; border-bottom: 1px solid var(--line); }
.profile-hero .wrap { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.profile-hero img.avatar-lg { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 1; background: var(--line); }
.badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 20px; }
.badge {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 20px;
  color: var(--ink-soft);
}
.badge.verified { border-color: var(--moss-deep); color: var(--moss-deep); }
.profile-hero h1 { font-family: var(--serif); font-size: 38px; margin: 0 0 6px; }
.profile-role { font-size: 17px; color: var(--ink-soft); margin: 0 0 18px; }
.profile-loc { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }
.profile-actions { display: flex; gap: 12px; }

.profile-body { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding: 56px 0; }
.profile-body h2 { font-family: var(--serif); font-size: 24px; margin: 40px 0 16px; }
.profile-body h2:first-child { margin-top: 0; }
.profile-body p { color: var(--ink-soft); margin: 0 0 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag-row span {
  font-size: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
}
.sidebar-card {
  border: 1px solid var(--line);
  background: var(--paper-raised);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 { margin: 0 0 14px; font-size: 14px; text-transform: none; }
.sidebar-card dl { margin: 0; }
.sidebar-card dt { font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; }
.sidebar-card dt:first-child { margin-top: 0; }
.sidebar-card dd { margin: 2px 0 0; font-size: 14.5px; }

/* ---------- CTA group (enquiry + whatsapp) ---------- */
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.btn-whatsapp:hover { background: #1ea952; border-color: #1ea952; color: #fff; }
.cta-band .btn-whatsapp { border-color: #25D366; }

/* ---------- Practitioner grid (equal-treatment cards) ---------- */
.practitioner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.practitioner-card {
  background: var(--paper-raised);
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
}
.practitioner-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  background: var(--line);
}
.practitioner-card h3 { font-family: var(--serif); font-size: 19px; margin: 0 0 4px; font-weight: 500; }
.practitioner-card .p-role { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 6px; }
.practitioner-card .p-meta { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Enquiry form ---------- */
.enquiry-panel {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  padding: 40px;
  max-width: 560px;
}
.enquiry-panel label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.enquiry-panel .field { margin-bottom: 20px; }
.enquiry-panel input,
.enquiry-panel textarea,
.enquiry-panel select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--paper);
}
.enquiry-panel textarea { min-height: 120px; resize: vertical; }
.enquiry-panel button[type="submit"] {
  background: var(--moss-deep);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 3px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}
.enquiry-panel button[type="submit"]:hover { background: var(--ink); }
.enquiry-success { display: none; color: var(--moss-deep); font-size: 14.5px; margin-top: 14px; }
.enquiry-or { text-align: center; margin: 28px 0; color: var(--ink-soft); font-size: 13.5px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { font-family: var(--serif); font-size: 17px; font-weight: 500; margin: 0 0 8px; }
.faq-item p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .main-nav { display: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-stats { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; flex-direction: row; flex-wrap: wrap; }
  .search-panel { grid-template-columns: 1fr; }
  .search-panel input { border-right: none; border-bottom: 1px solid var(--line); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .city-list { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .article-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; text-align: left; }
  .feature-card img.avatar { width: 120px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .practitioner-grid { grid-template-columns: 1fr; }
  .cta-group { width: 100%; }
  .enquiry-panel { padding: 24px; }
  .profile-hero .wrap { grid-template-columns: 1fr; }
  .profile-hero img.avatar-lg { width: 140px; }
  .profile-body { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
