/* HMT — Holistic Manual Therapy — Main Stylesheet */

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

:root {
  --green-deep:   #0c1810;
  --green-dark:   #0f1a14;
  --green-mid:    #1a3025;
  --green-accent: #a8c5a0;
  --green-muted:  #2d5a3d;
  --green-dim:    #6a9a72;
  --white:        #ffffff;
  --off-white:    #f8f9f8;
  --light-green:  #eef4ec;
  --text-dark:    #111a14;
  --text-mid:     #4a5a4e;
  --text-light:   #8a9a8e;
  --border:       #e4ece6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
}

/* ─── UTILITIES ─── */
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  flex-shrink: 0;
}
.eyebrow.light { color: var(--green-accent); }
.eyebrow.light::before { background: var(--green-accent); }
.eyebrow.dark  { color: var(--green-muted); }
.eyebrow.dark::before  { background: var(--green-muted); }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(12,24,16,0.97);
  border-bottom-color: rgba(168,197,160,0.08);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green-accent);
  text-decoration: none;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-book {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-accent);
  padding: 11px 24px;
  border: 1px solid var(--green-accent);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-book:hover {
  background: #ffffff;
  color: var(--green-deep);
  border-color: #ffffff;
}

/* ─── HERO ─── */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 72px;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 30%;
}

/* Photo zone — diagonal edge, wave shows through from hero-bg */
.hero-photo-zone {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(to right, transparent 0%, rgba(2,8,4,0.25) 100%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-photo-zone::before { display: none; }
.hero-photo-zone::after { display: none; }

/* Gradient overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(6,12,8,0.96) 0%, rgba(6,12,8,0.80) 35%, rgba(6,12,8,0.15) 65%, transparent 100%),
    linear-gradient(to top,    rgba(6,12,8,0.6)  0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-content .eyebrow {
  margin-bottom: 20px;
  font-size: 12px;
}

.hero-h1 {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.05;
  color: #e8f2e8;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-h1 strong {
  font-weight: 500;
  color: #ffffff;
  display: block;
  line-height: 1;
}
.hero-h1 span {
  font-weight: 300;
  font-size: 18px;
  color: var(--green-accent);
  font-style: italic;
  display: block;
  margin-top: 10px;
}

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(168,197,160,0.65);
  line-height: 1.75;
  max-width: 400px;
  margin-top: 48px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.btn-primary {
  display: inline-block;
  background: var(--green-accent);
  color: var(--green-deep);
  padding: 14px 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #bcd8b4; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(168,197,160,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost::after { content: '↓'; font-size: 14px; }
.btn-ghost:hover { color: var(--green-accent); }

/* Credential badge */
.hero-badge {
  position: absolute;
  bottom: 72px; right: 48px;
  z-index: 3;
  background: rgba(6,16,10,0.88);
  border: 1px solid rgba(168,197,160,0.45);
  padding: 20px 28px;
  backdrop-filter: blur(16px);
  min-width: 220px;
}
.hero-badge-line { width: 100%; height: 1px; background: rgba(168,197,160,0.25); margin: 12px 0; }
.hero-badge-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-accent); font-weight: 400; }
.hero-badge-value { font-size: 11px; color: rgba(168,197,160,0.8); margin-top: 3px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-scroll-label { font-size: 7px; letter-spacing: 4px; text-transform: uppercase; color: rgba(168,197,160,0.3); }
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(168,197,160,0.3), transparent);
}

/* ─── TAGLINE BAND ─── */
.tagline-band {
  background: var(--green-dark);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(168,197,160,0.08);
  border-bottom: 1px solid rgba(168,197,160,0.08);
}
.tagline-text {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 9px;
  text-transform: uppercase;
  color: rgba(168,197,160,0.82);
}

/* ─── TEXTURED SAGE BACKGROUND (Values, Services, Reviews, FAQ, Contact) ─── */
#values, #services, #reviews, #faq, #contact, #about-bio, #about-qualifications {
  position: relative;
  background: linear-gradient(135deg, #f6faf4 0%, #eef4ec 55%, #e5eee1 100%);
}
#values::after, #services::after, #reviews::after, #faq::after, #contact::after, #about-bio::after, #about-qualifications::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ─── VALUES ─── */
#values {
  padding: 96px 48px;
}
.values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
  text-align: left;
}
.values-h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-dark);
  text-align: left;
}
.values-h2 strong { font-weight: 500; }
.values-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  text-align: left;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-card {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 36px 28px;
  transition: background 0.2s;
}
.value-card:hover { background: rgba(255,255,255,0.75); }
.value-number {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--green-muted);
  margin-bottom: 20px;
  opacity: 0.6;
}
.value-icon {
  width: 36px; height: 36px;
  background: var(--light-green);
  border-radius: 50%;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.value-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.value-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── SERVICES ─── */
#services {
  background: var(--green-dark);
  padding: 96px 48px;
}
.services-header { margin-bottom: 56px; }
.services-header .eyebrow { margin-bottom: 16px; }
.services-h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -1px;
  color: rgba(232,240,232,0.9);
  max-width: 480px;
}
.services-h2 strong { font-weight: 500; }

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.services-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.services-tab:hover { border-color: var(--green-muted); }
.services-tab.active {
  background: var(--green-muted);
  border-color: var(--green-muted);
  color: #fff;
}
.services-tab-icon {
  display: flex;
  color: var(--green-muted);
}
.services-tab.active .services-tab-icon { color: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid rgba(168,197,160,0.2);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--green-muted); transform: translateY(-2px); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green-muted);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-size: 10px; font-weight: 300; letter-spacing: 3px;
  color: var(--green-muted); opacity: 0.6;
  margin-bottom: 16px;
}
.service-title {
  font-size: 15px; font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.service-text {
  font-size: 12px; font-weight: 300;
  color: var(--text-mid); line-height: 1.75;
}

/* Home Treatments & Specializations grid sits on a dark section — override the light defaults above */
#services .service-card { border-color: rgba(168,197,160,0.15); background: rgba(12,24,16,0.5); }
#services .service-card:hover { border-color: var(--green-accent); }
#services .service-card::before { background: var(--green-accent); }
#services .service-num { color: var(--green-accent); }
#services .service-title { color: rgba(232,240,232,0.9); }
#services .service-text { color: rgba(168,197,160,0.75); }
.service-card-hidden {
  display: none !important;
}
.service-card-hidden.visible {
  display: block !important;
  animation: fadeInUp 0.4s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.services-load-more-btn {
  padding: 12px 32px;
  border: 1px solid var(--green-accent);
  background: transparent;
  color: var(--green-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  font-family: inherit;
}
.services-load-more-btn:hover {
  background: var(--green-accent);
  color: var(--green-deep);
}
.services-load-more-btn.hidden {
  display: none;
}

/* ─── REVIEWS ─── */
#reviews {
  padding: 96px 48px;
}
.reviews-header { margin-bottom: 40px; }
.reviews-header .eyebrow { margin-bottom: 16px; }
.reviews-h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -1px;
  color: var(--text-dark);
}
.reviews-h2 strong { font-weight: 500; }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.reviews-stars {
  color: #f4b400;
  font-size: 15px;
  letter-spacing: 2px;
}
.reviews-stars.small { font-size: 11px; letter-spacing: 1px; }
.reviews-count { font-size: 12px; font-weight: 400; color: var(--text-mid); }
.reviews-link {
  font-size: 11px;
  font-weight: 500;
  color: var(--green-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(45,90,61,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.reviews-link:hover { color: var(--text-dark); border-color: var(--text-dark); }

.reviews-track-wrap { display: flex; align-items: center; gap: 14px; }
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 10px;
  padding: 28px 24px;
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-muted);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.review-meta { font-size: 10.5px; color: var(--text-light); margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.review-text {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--green-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.reviews-arrow:hover { border-color: var(--green-muted); background: rgba(255,255,255,0.9); }

/* ─── FAQ ─── */
#faq {
  padding: 96px 48px;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar .eyebrow { margin-bottom: 20px; }
.faq-sidebar-h2 {
  font-size: 28px; font-weight: 300; letter-spacing: -0.8px;
  color: var(--text-dark); line-height: 1.3; margin-bottom: 20px;
}
.faq-sidebar-h2 strong { font-weight: 500; }
.faq-sidebar-text { font-size: 13px; color: var(--text-light); line-height: 1.8; }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-q-text { font-size: 14px; font-weight: 400; color: var(--text-dark); }
.faq-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px; color: var(--green-muted);
  transition: border-color 0.2s;
}
.faq-item.active .faq-icon { border-color: var(--green-muted); }

/* Accordion — collapsed by default, open via .active class */
.faq-a {
  display: none;
  font-size: 13px; font-weight: 300;
  color: var(--text-light); line-height: 1.8;
  margin-top: 14px;
  padding-right: 40px;
}
.faq-item.active .faq-a { display: block; }

/* ─── PRICING ─── */
#pricing {
  background: var(--green-dark);
  padding: 96px 48px;
}
.pricing-header { margin-bottom: 56px; }
.pricing-header .eyebrow { margin-bottom: 16px; }
.pricing-header p {
  font-size: 14px; font-weight: 300;
  color: rgba(168,197,160,0.5); line-height: 1.8;
  max-width: 520px; margin-top: 16px;
}
.pricing-h2 {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 300; letter-spacing: -0.8px;
  color: rgba(232,240,232,0.9); line-height: 1.2;
}
.pricing-h2 strong { font-weight: 500; color: #e8f2e8; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(168,197,160,0.06);
  border: 1px solid rgba(168,197,160,0.06);
  max-width: 640px;
}
.pricing-card {
  background: rgba(12,24,16,0.6);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured { background: rgba(45,90,61,0.25); }
.pricing-card.featured::before {
  content: 'ACC Covered';
  position: absolute; top: 16px; right: 16px;
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--green-muted); color: var(--green-accent);
  padding: 4px 10px;
}
.pricing-type {
  font-size: 10px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green-dim); margin-bottom: 24px;
}
.pricing-amount {
  font-size: 52px; font-weight: 200; letter-spacing: -2px;
  color: #e8f2e8; line-height: 1; margin-bottom: 8px;
}
.pricing-amount sup { font-size: 20px; font-weight: 300; vertical-align: super; }
.pricing-label {
  font-size: 11px; font-weight: 300;
  color: rgba(168,197,160,0.4); margin-bottom: 28px;
}
.pricing-cta {
  display: inline-block;
  font-size: 9px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green-accent);
  border-bottom: 1px solid rgba(168,197,160,0.3);
  padding-bottom: 2px;
  text-decoration: none;
}

/* ─── CONTACT ─── */
#contact {
  padding: 96px 48px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .eyebrow { margin-bottom: 20px; }
.contact-h2 {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 300; letter-spacing: -0.8px;
  color: var(--text-dark); margin-bottom: 20px; line-height: 1.2;
}
.contact-h2 strong { font-weight: 500; }
.contact-sub { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green-muted); margin-bottom: 4px;
}
.contact-item-value { font-size: 14px; font-weight: 400; color: var(--text-dark); }
.contact-item-value a { color: var(--text-dark); text-decoration: none; }
.contact-item-value a:hover { color: var(--green-muted); }
.contact-cta-block {
  margin-top: 40px;
  padding: 32px;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.contact-cta-text {
  font-size: 18px; font-weight: 300; letter-spacing: -0.3px;
  color: rgba(232,240,232,0.9); line-height: 1.4;
}
.contact-cta-text strong { font-weight: 500; color: #e8f2e8; }

.contact-map {
  margin-top: 56px;
  aspect-ratio: 21/7;
  border: 1px solid var(--border);
  overflow: hidden;
  filter: grayscale(0.5) contrast(0.92) brightness(1.02);
}
.contact-map iframe { width: 100%; height: 100%; display: block; }

/* ─── ABOUT PAGE ─── */
#about-hero {
  height: 60vh;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 64px;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/about-hero.webp');
  background-size: cover;
  background-position: center 75%;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6,12,8,0.92) 0%, rgba(6,12,8,0.6) 45%, rgba(6,12,8,0.15) 100%),
    linear-gradient(to top, rgba(6,12,8,0.75) 0%, transparent 45%);
}
.about-hero-content { position: relative; z-index: 2; max-width: 560px; }
.about-hero-content .eyebrow { margin-bottom: 20px; }
.about-hero-h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.05;
  color: #e8f2e8;
  letter-spacing: -1.5px;
}
.about-hero-h1 strong { font-weight: 500; color: #ffffff; display: block; }

#about-bio, #about-qualifications { padding: 96px 48px; }

.about-bio-header, .about-qual-header { margin-bottom: 56px; }
.about-bio-h2, .about-qual-h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-top: 16px;
}
.about-bio-h2 strong, .about-qual-h2 strong { font-weight: 500; }

.about-bio-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.about-bio-row:last-child { margin-bottom: 0; }
.about-bio-row.reverse .about-bio-image { order: 2; }
.about-bio-row.reverse .about-bio-text { order: 1; }
.about-bio-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-bio-text p:last-child { margin-bottom: 0; }
.about-bio-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.about-qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* Qualifications uses the same dark treatment as the homepage Treatments section */
#about-qualifications { background: var(--green-dark); }
.about-qual-h2 { color: rgba(232,240,232,0.9); }
#about-qualifications .about-qual-grid {
  background: rgba(168,197,160,0.15);
  border: 1px solid rgba(168,197,160,0.15);
}
#about-qualifications .value-card { background: rgba(12,24,16,0.5); }
#about-qualifications .value-card:hover { background: rgba(12,24,16,0.7); }
#about-qualifications .value-number { color: var(--green-accent); }
#about-qualifications .value-title { color: rgba(232,240,232,0.9); }
#about-qualifications .value-text { color: rgba(168,197,160,0.75); }

#about-cta { padding: 0 48px 96px; }
.about-cta-block { max-width: 480px; }

/* ─── SPECIALIZATION & CATEGORY HUB PAGES ─── */
/* .service-card is now also used as an <a> (related grid, hub grid, and the
   homepage grid after Task 11) — reset anchor defaults so it still renders
   identically to the original <div>-based card. */
.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.spec-hero {
  background: var(--green-dark);
  padding: 152px 48px 64px;
}
.spec-hero .eyebrow { margin: 20px 0; }
.spec-hero .hero-h1 { margin-bottom: 28px; }
.spec-hero .btn-primary { display: inline-block; }

.spec-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(168,197,160,0.45);
}
.spec-breadcrumb a { color: rgba(168,197,160,0.7); text-decoration: none; }
.spec-breadcrumb a:hover { color: var(--green-accent); }

.spec-section {
  padding: 72px 48px;
  max-width: 880px;
  margin: 0 auto;
}
.spec-h2 {
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 300;
  letter-spacing: -0.8px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.spec-h2 strong { font-weight: 500; }

.spec-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}

.spec-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.spec-body p:last-child { margin-bottom: 0; }
.spec-body strong { font-weight: 500; color: var(--text-dark); }
.spec-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.spec-body ul:last-child { margin-bottom: 0; }
.spec-body li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 10px;
}
.spec-body li:last-child { margin-bottom: 0; }

.spec-symptom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-symptom-list li {
  padding: 16px 20px;
  background: var(--light-green);
  border-left: 3px solid var(--green-muted);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

.spec-related,
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#spec-related {
  background: var(--green-dark);
  max-width: none;
  margin: 0;
}
#spec-related .spec-inner {
  max-width: 880px;
  margin: 0 auto;
}
#spec-related .spec-h2 {
  color: rgba(232,240,232,0.9);
}
.spec-related .service-card {
  background: rgba(12,24,16,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(168,197,160,0.15);
}
.spec-related .service-card:hover {
  border-color: var(--green-accent);
}
.spec-related .service-card::before {
  background: var(--green-accent);
}
.spec-related .service-title {
  color: rgba(232,240,232,0.9);
}
.spec-related .service-text {
  color: rgba(168,197,160,0.75);
}
.spec-related .service-num {
  color: var(--green-accent);
  opacity: 1;
}

.spec-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(6,16,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(168,197,160,0.15);
}
.spec-sticky-cta .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── FOOTER ─── */
footer {
  background: var(--green-deep);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(168,197,160,0.06);
}
.footer-logo {
  font-size: 10px; font-weight: 300; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #ffffff; }
.footer-copy {
  font-size: 9px; letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ─── RESPONSIVE — DESKTOP (≥ 1025px) ─── */
@media (min-width: 1025px) {
  .whatsapp-float { right: 32px; bottom: 32px; width: 60px; height: 60px; }
  .whatsapp-float svg { width: 32px; height: 32px; }
}

/* ─── RESPONSIVE — SMALL DESKTOP (≤ 1180px) ─── */
@media (max-width: 1180px) and (min-width: 641px) {
  .nav-links { gap: 20px; }
}

/* ─── RESPONSIVE — TABLET (≤ 1024px) ─── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  #hero, #values, #services, #reviews, #faq, #pricing, #contact, #about-hero, #about-bio, #about-qualifications, #about-cta { padding-left: 32px; padding-right: 32px; }
  footer { padding-left: 32px; padding-right: 32px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-bio-row { gap: 36px; }
}

/* ─── RESPONSIVE — MOBILE (≤ 640px) ─── */
@media (max-width: 640px) {

  /* Prevent horizontal overflow globally */
  html, body { overflow-x: hidden; max-width: 100%; }
  * { min-width: 0; }

  /* ── NAV ── */
  nav {
    padding: 0 20px;
    height: 60px;
  }
  .nav-hamburger { display: flex; }
  .nav-book { display: none !important; }
  .nav-links {
    display: none !important;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(9,18,12,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0 32px;
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none;
    border-bottom: 1px solid rgba(168,197,160,0.12);
    z-index: 99;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-links.open { display: flex !important; }
  .nav-links li { border-bottom: 1px solid rgba(168,197,160,0.07); width: 100%; }
  .nav-links a {
    display: block;
    padding: 18px 24px;
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.9) !important;
  }

  /* ── HERO ── */
  #hero {
    display: flex;
    flex-direction: column;
    padding: 80px 20px 110px;
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero-bg { background-position: 60% center; }
  .hero-overlay {
    background:
      linear-gradient(to right, rgba(6,12,8,0.97) 0%, rgba(6,12,8,0.85) 50%, rgba(6,12,8,0.60) 100%),
      linear-gradient(to top, rgba(6,12,8,0.7) 0%, transparent 50%);
  }
  .hero-photo-zone { display: none; }
  .hero-content {
    max-width: 100%;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .hero-text { margin-top: auto; }
  .hero-h1 {
    font-size: clamp(34px, 9vw, 44px);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .hero-h1 span { font-size: 14px; margin-top: 8px; }
  .hero-sub { max-width: 100%; font-size: 13px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-top: auto; }
  .btn-primary { text-align: center; padding: 16px 24px; }
  .btn-ghost { justify-content: center; }
  .hero-badge { display: none; }
  .hero-scroll { display: none; }

  /* ── TAGLINE ── */
  .tagline-band { padding: 22px 20px; }
  .tagline-text {
    font-size: 9px;
    letter-spacing: 5px;
    text-align: center;
    text-indent: 5px;
  }

  /* ── VALUES ── */
  #values { padding: 56px 20px; }
  .values-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
  }
  .values-h2 { font-size: clamp(24px, 7vw, 32px); text-align: left; }
  .values-desc { font-size: 14px; }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  .value-card { padding: 20px 14px; }
  .value-number { margin-bottom: 12px; }
  .value-icon { display: none; }
  .value-title { font-size: 12px; }
  .value-text { font-size: 11px; }

  /* ── SERVICES ── */
  #services { padding: 56px 20px; }
  .services-h2 { font-size: clamp(24px, 7vw, 32px); max-width: 100%; }
  .services-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 -20px 28px;
    padding: 0 20px 4px;
  }
  .services-tab { flex-shrink: 0; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card { padding: 24px 18px; }

  /* ── REVIEWS ── */
  #reviews { padding: 56px 20px; }
  .reviews-h2 { font-size: clamp(24px, 7vw, 32px); }
  .reviews-arrow { display: none; }
  .reviews-track { margin: 0 -20px; padding: 0 20px 4px; }
  .review-card { flex-basis: 82vw; padding: 22px 20px; }

  /* ── FAQ ── */
  #faq { padding: 56px 20px; }
  .faq-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .faq-sidebar-h2 { font-size: 24px; }
  .faq-a { padding-right: 0; }

  /* ── PRICING ── */
  #pricing { padding: 56px 20px; }
  .pricing-h2 { font-size: clamp(24px, 7vw, 32px); }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .pricing-card { padding: 32px 24px; }
  .pricing-amount { font-size: 44px; }

  /* ── CONTACT ── */
  #contact { padding: 56px 20px; }
  .contact-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .contact-h2 { font-size: clamp(22px, 6vw, 30px); }
  .contact-cta-block { padding: 24px 18px; margin-top: 24px; }
  .contact-map { margin-top: 32px; aspect-ratio: 4/3; }

  /* ── ABOUT PAGE ── */
  #about-hero { height: 50vh; min-height: 360px; padding: 0 20px 40px; }
  .about-hero-h1 { font-size: clamp(28px, 8vw, 38px); }
  .about-hero-content { max-width: 100%; }
  #about-bio, #about-qualifications { padding: 56px 20px; }
  .about-bio-header, .about-qual-header { margin-bottom: 32px; }
  .about-bio-h2, .about-qual-h2 { font-size: clamp(24px, 7vw, 32px); }
  .about-bio-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .about-bio-row.reverse .about-bio-image,
  .about-bio-row.reverse .about-bio-text { order: initial; }
  .about-bio-image img { min-height: 220px; }
  .about-qual-grid { grid-template-columns: 1fr; }
  #about-cta { padding: 0 20px 56px; }
  .about-cta-block { max-width: 100%; padding: 24px 18px; }

  /* ── FOOTER ── */
  footer {
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
    text-align: center;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* ── WHATSAPP FLOATING BUTTON ── */
  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 27px; height: 27px; }

  /* ── SPECIALIZATION & CATEGORY HUB PAGES ── */
  .spec-hero { padding: 120px 20px 48px; }
  .spec-section { padding: 48px 20px; }
  .spec-h2 { font-size: clamp(22px, 6vw, 28px); }
  .spec-related,
  .hub-grid { grid-template-columns: 1fr; gap: 14px; }
  body.single-specialization { padding-bottom: 76px; }
  .spec-sticky-cta { display: block; }
}
