/* ════════════════════════════════════════════════════════════
   Dr André Wiid Inc — Shared Stylesheet (inner pages)
   Mirrors the Home Page (index.html) design system exactly.
   ════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Colour palette ── */
  --blue:         #0087d9;
  --blue-dark:    #005fa3;
  --blue-darker:  #003d73;
  --blue-light:   #e3f3fc;
  --white:        #ffffff;
  --grey-light:   #f4f6f8;
  --grey-mid:     #8e96aa;
  --grey-dark:    #3a3e4c;
  --text:         #1c202e;
  --border:       #dde3ec;

  /* ── Typography ── */
  --font-heading: 'futura-pt', sans-serif;
  --font-body:    'avenir-lt-pro', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: clip; }

/* ─────────────────────────────── TOP BAR ─── */
.top-bar {
  position: sticky; top: 0; z-index: 101;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-family: var(--font-body);
}
.top-bar .inner {
  margin: 0; max-width: none;
  padding: 7px 24px 7px calc(15% + 28px);
  background: var(--blue-darker);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
  transition: margin-left 0.25s ease, padding-left 0.25s ease;
}
.top-bar.is-stuck .inner { margin-left: 15%; padding-left: 28px; }
.top-bar a { color: #a8d8f5; text-decoration: none; transition: color 0.2s; }
.top-bar a:hover { color: var(--white); }
.top-bar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }

/* ─────────────────────────────── HEADER ─── */
header {
  position: sticky; top: 34px; z-index: 100;
  background: transparent;
}
.header-inner {
  margin-left: 15%;
  display: flex; align-items: center; height: 96px;
  background: var(--white); border-radius: 0 0 0 75px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 0 0 0 28px;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-img { height: 54px; width: auto; display: flex; align-items: center; justify-content: center; }
.logo-img img { height: 54px; width: auto; display: block; border-radius: 10px; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.logo-wordmark .name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--blue-darker); letter-spacing: 0.02em; }
.logo-wordmark .sub { font-size: 0.68rem; color: var(--grey-mid); letter-spacing: 0.06em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 2px; flex: 1; margin-left: 32px; }
nav a {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--grey-dark); padding: 10px 14px; text-decoration: none;
  border-radius: 5px; transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--blue); background: var(--blue-light); }
nav a.active { color: var(--blue); }
.btn-book {
  margin: -2px -2px -2px auto; align-self: stretch;
  display: flex !important; align-items: center;
  border-radius: 0 !important;
  border-top-left-radius: 80px !important;
  border-bottom-left-radius: 80px !important;
  padding: 0 32px !important;
  background: var(--blue) !important; color: var(--white) !important;
  font-weight: 700 !important; font-size: 0.86rem !important;
  transition: background 0.2s !important;
}
.btn-book:hover { background: var(--blue-dark) !important; }

.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 10px 32px rgba(0,135,217,0.12); border-radius: 8px;
  min-width: 270px; padding: 8px 0; z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 20px; font-size: 0.84rem;
  color: var(--grey-dark); border-radius: 0; font-weight: 400;
}
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue-dark); }

/* ─────────────────────────────── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  background: var(--blue);
  padding: 0;
}
.page-hero-wrap {
  min-height: 360px;
  display: flex; align-items: center;
  background:
    linear-gradient(to bottom, rgba(0,40,80,0.55) 0%, rgba(0,40,80,0.75) 100%),
    url('images/dr-wiid-hero-extended.jpg') center center / cover no-repeat;
  border-radius: 0 0 0 150px;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px 70px;
  width: 100%; position: relative; z-index: 1;
  text-align: center;
}
.page-hero .breadcrumb {
  display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
  margin-bottom: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.page-hero .breadcrumb a { color: #a8d8f5; text-decoration: none; transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.5); }
.page-hero h1 {
  font-family: var(--font-heading); font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700; line-height: 1.15; color: var(--white);
  letter-spacing: -0.01em; max-width: 820px; margin: 0 auto;
}
.page-hero p {
  font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.85);
  margin: 18px auto 0; max-width: 720px;
}

/* ─────────────────────────────── CTA BANNER ─── */
.cta-banner { background: var(--blue); padding: 52px 0; }
.cta-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 6px;
}
.cta-text p { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.btn-cta {
  display: inline-block; background: var(--white); color: var(--blue-dark);
  padding: 14px 32px; border-radius: 6px; font-family: var(--font-body);
  font-weight: 700; font-size: 0.95rem; text-decoration: none; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-cta:hover { background: var(--blue-light); color: var(--blue-darker); }

/* ─────────────────────────────── SECTION COMMONS ─── */
section { padding: 60px 60px; }
.inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--blue-darker); line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.divider { width: 48px; height: 3px; background: var(--blue); border-radius: 2px; margin: 16px 0 26px; }
.section-sub { font-size: 1rem; color: var(--grey-mid); line-height: 1.8; max-width: 640px; }

/* ─────────────────────────────── PAGE INTRO (compact header) ─── */
.page-intro {
  background: #0086d9;
  padding: 90px 0;
  text-align: center;
}
.page-intro .inner { display: flex; flex-direction: column; align-items: center; }
.page-intro .breadcrumb {
  display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-size: 0.74rem; color: rgba(255,255,255,0.75);
  margin-bottom: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
}
.page-intro .breadcrumb a { color: #a8d8f5; text-decoration: none; transition: color 0.2s; }
.page-intro .breadcrumb a:hover { color: var(--white); }
.page-intro .breadcrumb .sep { color: rgba(255,255,255,0.5); }
.page-intro-title {
  font-family: var(--font-heading); font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.15; color: var(--white);
  letter-spacing: -0.015em;
}
.page-intro-title::after { content: '.'; }
.page-intro-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.7;
  max-width: 600px; margin: 12px auto 0;
}

/* ─────────────────────────────── ABOUT ─── */
.about { background: var(--blue); padding: 0; scroll-margin-top: 130px; }
.about-wrap { background: var(--white); border-radius: 150px 0 0 0; padding: 84px 0; }
.about .inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-image { position: relative; }
.about-img-wrap {
  width: 100%; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.about-img-wrap .img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--blue-dark); font-size: 0.82rem; text-align: center; padding: 20px;
}
.about-img-wrap .img-placeholder span { font-size: 3rem; }
.badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--blue-dark); color: var(--white);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 8px 24px rgba(0,95,163,0.35); font-family: var(--font-heading);
}
.badge strong { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.badge span { font-size: 0.65rem; opacity: 0.85; line-height: 1.4; margin-top: 4px; }
.about-content p { color: #555; line-height: 1.85; margin-bottom: 18px; font-size: 0.97rem; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem;
  color: var(--blue);
}
.pillar-body h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--blue-darker); margin-bottom: 3px; }
.pillar-body p { font-size: 0.85rem; color: var(--grey-mid); line-height: 1.6; margin: 0; }

.btn-blue {
  display: inline-block; background: var(--blue); color: var(--white);
  padding: 13px 28px; border-radius: 6px; font-family: var(--font-body);
  font-weight: 700; font-size: 0.92rem; text-decoration: none;
  transition: background 0.2s;
}
.btn-blue:hover { background: var(--blue-dark); }

/* About page — larger matching headings for founder + team sections */
#founder .section-title,
#team .section-title,
.services-header .section-title {
  font-size: 50px;
  line-height: 1.15;
}

/* About page — founder section layout (image inline with heading, bottom content spans full width) */
#founder .inner {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "image content-top"
    "bottom bottom";
  align-items: start;
  row-gap: 28px;
}
#founder .about-image { grid-area: image; }
#founder .about-content-top { grid-area: content-top; }
#founder .about-content-bottom { grid-area: bottom; }

@media (max-width: 960px) {
  #founder .inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content-top"
      "bottom";
  }
}

/* ─────────────────────────────── SERVICES ─── */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 54px; }
.services-header .section-label { display: block; text-align: center; }
.services-header .section-title { margin: 0 auto 16px; }
.services-header .divider { margin: 16px auto 24px; }
.services-header .section-sub { margin: 0 auto; }
.services .inner { max-width: 1600px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  border: 1px solid var(--border); border-radius: 10px; padding: 28px;
  background: var(--white); transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; text-decoration: none; position: relative;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,135,217,0.12); transform: translateY(-3px); border-color: var(--blue); }
.service-img {
  margin: -28px -28px 20px;
  height: 180px; overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--blue-darker); margin-bottom: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.04em; }
.service-card p { font-size: 0.86rem; color: var(--grey-mid); line-height: 1.75; margin-bottom: 0; }
.service-arrow {
  display: flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 14px;
  font-size: 0.82rem; font-weight: 700; color: var(--blue);
  font-family: var(--font-body); letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.service-arrow::after { content: '→'; font-size: 1rem; }
.service-card:hover .service-arrow { color: var(--blue-dark); }

/* ─────────────────────────────── PRACTITIONERS ─── */
.practitioners { background: var(--blue-darker); color: var(--white); }
.practitioners .section-label { color: #a8d8f5; }
.practitioners .section-title { color: var(--white); }
.practitioners .section-sub { color: rgba(255,255,255,0.7); max-width: 560px; }
.practitioners .divider { background: var(--blue); }
.practitioners-header { margin-bottom: 52px; }
.practitioners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.practitioner-card {
  position: relative; border-radius: 12px; overflow: hidden;
  min-height: 440px; border: 1px solid rgba(255,255,255,0.12);
}
.practitioner-photo {
  position: absolute; inset: 0;
  background: rgba(0,135,217,0.2);
  display: flex; align-items: center; justify-content: center;
}
.practitioner-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; display: block; }
.practitioner-photo .placeholder-icon { font-size: 3.5rem; color: rgba(255,255,255,0.4); }
.practitioner-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 22px;
  background: linear-gradient(to top, rgba(0,10,30,0.97) 0%, rgba(0,10,30,0.85) 50%, rgba(0,10,30,0.3) 80%, transparent 100%);
}
.practitioner-info h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 0; color: var(--white); }
.practitioner-info .role { font-size: 0.88rem; color: #a8d8f5; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin-bottom: 0; font-family: var(--font-body); }

/* ─────────────────────────────── CONTACT ─── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info .section-sub { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem;
  color: var(--blue);
}
.contact-item h4 { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; color: var(--blue-darker); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: #555; text-decoration: none; line-height: 1.65; }
.contact-item a:hover { color: var(--blue); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 6px 0; font-size: 0.87rem; color: #555; border-bottom: 1px solid var(--border); }
.hours-table td:first-child { font-weight: 700; color: var(--text); padding-right: 22px; font-family: var(--font-heading); }
.hours-table tr:last-child td { border-bottom: none; }

.contact-form { background: var(--grey-light); border-radius: 12px; padding: 38px; }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--blue-darker); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--grey-dark); font-family: var(--font-body); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  border: 1.5px solid var(--border); border-radius: 6px; padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,135,217,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; background: var(--blue); color: var(--white);
  border: none; padding: 14px; border-radius: 6px; font-size: 0.95rem;
  font-weight: 700; cursor: pointer; font-family: var(--font-body);
  transition: background 0.2s; letter-spacing: 0.03em;
}
.btn-submit:hover { background: var(--blue-dark); }

/* ─────────────────────────────── SERVICE DETAIL (sidebar layout) ─── */
.service-detail { background: var(--white); }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px;
  align-items: start;
}
.service-content { order: 1; }
.service-sidebar {
  order: 2;
  display: flex; flex-direction: column; gap: 24px;
  position: sticky;
  top: 24px;
  align-self: start;
}
.sidebar-form {
  background: var(--grey-light); border-radius: 12px; padding: 28px;
}
.sidebar-form h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  color: var(--blue-darker); margin-bottom: 6px;
}
.sidebar-form p.sidebar-form-sub {
  font-size: 0.84rem; color: var(--grey-mid); line-height: 1.6; margin-bottom: 20px;
}
.sidebar-form .form-row { grid-template-columns: 1fr; }
.sidebar-form .form-group { margin-bottom: 12px; }
.sidebar-form .form-group input,
.sidebar-form .form-group textarea,
.sidebar-form .form-group select { font-size: 0.86rem; padding: 10px 12px; }
.sidebar-form .form-group textarea { min-height: 84px; }

/* ── Sidebar "Our Services" card ── */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 36px;
  padding: 30px 26px 26px;
  position: relative;
}
.sidebar-card h4 {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  color: var(--blue-darker); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.sidebar-card h4::after {
  content: ''; flex: 1; height: 2px;
  background: linear-gradient(to right, var(--blue), rgba(0,135,217,0));
  border-radius: 2px;
}
.sidebar-card ul.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-card ul.sidebar-links li a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 8px; text-decoration: none;
  font-size: 0.88rem; color: var(--grey-dark); font-weight: 600;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  position: relative;
}
.sidebar-card ul.sidebar-links li a::before {
  content: ''; flex-shrink: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
}
.sidebar-card ul.sidebar-links li a::after {
  content: '→'; color: var(--blue); margin-left: auto;
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.sidebar-card ul.sidebar-links li a:hover {
  background: var(--blue-light); color: var(--blue-dark); padding-left: 18px;
}
.sidebar-card ul.sidebar-links li a:hover::before,
.sidebar-card ul.sidebar-links li a.active::before {
  background: var(--blue); transform: scale(1.25);
}
.sidebar-card ul.sidebar-links li a:hover::after,
.sidebar-card ul.sidebar-links li a.active::after {
  opacity: 1; transform: translateX(0);
}
.sidebar-card ul.sidebar-links li a.active {
  background: var(--blue-light); color: var(--blue-dark);
}

/* ── Sidebar "Get In Touch" card ── */
.sidebar-contact {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-darker) 100%);
  color: var(--white);
  padding: 30px 28px;
  border-radius: 36px 12px 12px 12px;
  position: relative;
  overflow: hidden;
}
.sidebar-contact::before {
  content: ''; position: absolute;
  top: -50px; right: -50px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.sidebar-contact::after {
  content: ''; position: absolute;
  bottom: -30px; left: -30px;
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.sidebar-contact h4 {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  color: #a8d8f5; text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.sidebar-contact p {
  font-size: 0.9rem; line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.sidebar-contact p:last-child { margin-bottom: 0; }
.sidebar-contact p i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #a8d8f5; font-size: 0.82rem;
  vertical-align: middle; margin-right: 8px;
  transition: background 0.2s, color 0.2s;
}
.sidebar-contact p:hover i { background: var(--white); color: var(--blue-dark); }
.sidebar-contact a {
  color: var(--white); text-decoration: none; font-weight: 600;
  font-size: 0.92rem; vertical-align: middle;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.sidebar-contact a:hover { border-bottom-color: rgba(255,255,255,0.6); }

/* ── Sidebar map ── */
.sidebar-map {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 12px 12px 36px 12px;
  box-shadow: 0 4px 16px rgba(0,60,115,0.08);
}

/* Service content prose */
.service-content { min-width: 0; }
.service-content .service-hero-img {
  width: 100%; aspect-ratio: 16/7; border-radius: 12px; overflow: hidden;
  margin-bottom: 36px; background: var(--blue-light);
}
.service-content .service-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-content h2 {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 700; color: var(--blue-darker); line-height: 1.25;
  margin: 36px 0 14px; letter-spacing: -0.005em;
}
.service-content h2:first-child { margin-top: 0; }
.service-content p {
  font-size: 0.97rem; line-height: 1.85; color: #555; margin-bottom: 16px;
}
.service-content ul {
  list-style: none; padding: 0; margin: 6px 0 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.service-content ul li {
  position: relative; padding-left: 28px;
  font-size: 0.95rem; line-height: 1.7; color: #555;
}
.service-content ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 2px;
  color: var(--blue); font-size: 0.85rem;
}
.service-content a.inline-link {
  color: var(--blue-dark); text-decoration: underline; font-weight: 600;
}
.service-content a.inline-link:hover { color: var(--blue); }

/* ─────────────────────────────── ABOUT PAGE — TEAM BIOS ─── */
.team-bios { background: var(--white); }
.team-bios-grid { display: flex; flex-direction: column; gap: 56px; }
.team-bio {
  scroll-margin-top: 160px;
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start;
}
.team-bio:nth-child(even) { grid-template-columns: 1fr 320px; }
.team-bio:nth-child(even) .team-bio-photo { order: 2; }
.team-bio:nth-child(even) .team-bio-content { order: 1; }
.team-bio-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
  background: var(--blue-light);
}
.team-bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.team-bio-content h3 {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--blue-darker); margin-bottom: 6px; letter-spacing: -0.005em;
}
.team-bio-content .role {
  font-size: 0.78rem; color: var(--blue); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
}
.team-bio-content .qualifications {
  font-size: 0.88rem; color: var(--grey-dark); font-weight: 600;
  margin-bottom: 22px; padding: 12px 16px; background: var(--blue-light);
  border-left: 3px solid var(--blue); border-radius: 6px;
}
.team-bio-content p {
  font-size: 0.95rem; line-height: 1.85; color: #555; margin-bottom: 14px;
}

/* ─────────────────────────────── FOOTER ─── */
footer { background: var(--blue-darker); color: rgba(255,255,255,0.72); padding: 60px 0 0; }
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
}
.footer-brand .footer-logo {
  height: 60px; margin-bottom: 18px; display: flex; align-items: center;
}
.footer-brand .footer-logo img { height: 60px; width: auto; border-radius: 10px; }
.footer-brand .footer-logo .logo-text-fallback {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--white);
}
.footer-brand p { font-size: 0.86rem; line-height: 1.8; color: rgba(255,255,255,0.58); max-width: 280px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #a8d8f5; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 0.86rem; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0; padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.79rem; color: rgba(255,255,255,0.38); flex-wrap: wrap; gap: 8px;
}
.footer-legal-links a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--white); }

/* ─────────────────────────────── HAMBURGER ─── */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--grey-dark); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ─────────────────────────────── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .service-detail-grid { grid-template-columns: 1fr 280px; gap: 36px; }
}
@media (max-width: 960px) {
  .about .inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .badge { bottom: 12px; right: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .practitioners-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-sidebar { order: 2; }
  .team-bio, .team-bio:nth-child(even) {
    grid-template-columns: 1fr; gap: 24px;
  }
  .team-bio:nth-child(even) .team-bio-photo { order: 0; }
  .team-bio:nth-child(even) .team-bio-content { order: 0; }
  .team-bio-photo { max-width: 360px; }

  /* Nav / header collapse to mobile mode on tablet */
  .top-bar { position: static; }
  header { top: 0 !important; }
  .header-inner { margin-left: 0; border-radius: 0; padding: 0 20px; }
  .btn-book { display: none !important; }
  .hamburger { display: block; }
  nav {
    display: none; position: absolute; top: 96px; left: 0; right: 0;
    background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    flex-direction: column; padding: 16px; gap: 4px;
  }
  nav.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 12px; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .top-bar .inner { padding: 7px 20px; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  nav { top: 80px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .practitioners-grid { grid-template-columns: 1fr; }
  .page-hero-inner { padding: 56px 24px 48px; }
  .page-hero-wrap { border-radius: 0 0 0 80px; min-height: 280px; }
  .about-wrap { border-radius: 80px 0 0 0; }
}
