/* =========================================================
   Dr. Heather Wedgle — Main Stylesheet v2
   Comprehensive redesign: softer, warmer, more generous
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --primary: #5D8AA8;
  --primary-dk: #3d6a88;
  --primary-lt: #EBF2F7;
  --secondary: #88A096;
  --accent: #c9b8c9;
  --dark: #2B3A52;
  --light: #F8F6F3;
  --white: #ffffff;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --border: #e5e0d9;
  --shadow-sm: 0 2px 10px rgba(43, 58, 82, 0.07);
  --shadow-md: 0 6px 24px rgba(43, 58, 82, 0.10);
  --shadow-lg: 0 12px 48px rgba(43, 58, 82, 0.13);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dk);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

section {
  padding: 6rem 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  cursor: pointer;
  border: 2px solid var(--primary);
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1rem;
}

/* ── Header / Nav ────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 224, 217, 0.6);
  transition: box-shadow 0.3s, border-color 0.3s;
}

header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  line-height: 1.2;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo h1 {
  font-size: 1.65rem;
  margin: 0 0 2px;
  color: var(--primary);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.logo .tagline {
  font-size: 0.72rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

nav ul {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}

nav ul li a {
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 9px 15px;
  border-radius: var(--radius);
  transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary);
  background: var(--primary-lt);
}

nav ul li.nav-cta {
  margin-left: 0.5rem;
}

nav ul li.nav-cta a {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

nav ul li.nav-cta a:hover {
  background: var(--primary-dk);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background-image: url('../images/nature-hero.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  padding: 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 84px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(20, 30, 48, 0.72) 0%,
      rgba(20, 30, 48, 0.55) 55%,
      rgba(20, 30, 48, 0.28) 100%);
}

.hero-container {
  position: relative;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem 0 10rem;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}

.hero-eyebrow i {
  color: rgba(255, 220, 180, 0.9);
  font-size: 0.75rem;
}

.hero h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero .lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 580px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-trust-item i {
  color: rgba(255, 220, 180, 0.9);
  font-size: 1rem;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ── Section Labels ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

/* ── Section Header ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ── Intro / Welcome ─────────────────────────────────────── */
.intro {
  background: var(--white);
  padding: 7rem 0;
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-light);
  font-size: 1.03rem;
  line-height: 1.85;
}

.intro-quote {
  background: var(--light);
  border-left: 4px solid var(--primary);
  padding: 2.25rem 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 2rem;
}

.intro-quote blockquote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.intro-quote cite {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-right-text {
  font-size: 1.03rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Services Preview ────────────────────────────────────── */
.services-preview {
  background: var(--light);
  padding: 7rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(93, 138, 168, 0.1), rgba(136, 160, 150, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  transition: var(--transition);
}

.service-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.icon-circle i {
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .icon-circle i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
}

.service-card .card-link {
  margin-top: 1.5rem;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .card-link:hover {
  color: var(--primary-dk);
  gap: 10px;
}

/* ── Approach ────────────────────────────────────────────── */
.approach {
  background: var(--white);
  padding: 7rem 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.approach-left h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.approach-left>p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1.03rem;
}

.approach-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--primary);
  font-size: 1.1rem;
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.credentials-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  border: 1px solid var(--border);
}

.credentials-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.credential-item {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.credential-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cred-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-icon i {
  color: var(--primary);
  font-size: 0.95rem;
}

.cred-text h4 {
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
  color: var(--dark);
}

.cred-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 60%, #2d5080 100%);
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-band-inner {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: var(--white);
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.insurance-note {
  margin-top: 2rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
}

.insurance-note span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: #1a2640;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.footer-brand .tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact-list a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-contact-list i {
  color: var(--primary);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-hours-list li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-hours-list li span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  margin-left: 4px;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-bottom a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Page Header (inner pages) ───────────────────────────── */
.page-header {
  position: relative;
  background-image: url('../images/serene-hero.jpg');
  background-size: cover;
  background-position: center 35%;
  padding: 6.5rem 0 4.5rem;
  margin-top: 84px;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43, 58, 82, 0.72) 0%, rgba(43, 58, 82, 0.60) 100%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.9rem;
  margin-bottom: 0.65rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.page-header p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  margin: 0;
}

/* ── Services Page ───────────────────────────────────────── */
.service-section {
  border-bottom: 1px solid var(--border);
  padding: 6.5rem 0;
}

.service-section:nth-child(even) {
  background: var(--light);
}

.service-section:last-child {
  border-bottom: none;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-layout.reversed {
  direction: rtl;
}

.service-layout.reversed>* {
  direction: ltr;
}

.service-text h2 {
  font-size: 2.1rem;
  margin-bottom: 1.25rem;
}

.service-text>p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1.02rem;
}

.service-text h3 {
  font-size: 1.05rem;
  margin: 2rem 0 1rem;
  color: var(--dark);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.65;
}

.service-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}

.service-text-only {
  max-width: 820px;
}

.service-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-note {
  background: var(--primary-lt);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--primary-dk);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  border: 1px solid rgba(93, 138, 168, 0.2);
}

/* ── Biography Page ──────────────────────────────────────── */
.bio-section {
  background: var(--white);
  padding: 6.5rem 0;
}

.bio-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

.bio-sidebar {
  position: sticky;
  top: 106px;
}

.bio-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--border);
  text-align: center;
  margin-bottom: 1.5rem;
}

.bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.bio-avatar i {
  font-size: 2.8rem;
  color: var(--white);
}

.bio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.bio-card .title {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.bio-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bio-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-size: 0.87rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.bio-badge i {
  color: var(--primary);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.bio-main h2 {
  font-size: 2.1rem;
  margin-bottom: 1.25rem;
}

.bio-main h3 {
  font-size: 1.2rem;
  margin: 2.5rem 0 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--dark);
}

.bio-main h3:first-of-type {
  border-top: none;
  padding-top: 0;
}

.bio-main p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1.02rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.expertise-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
}

.expertise-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 6.5rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 106px;
}

.contact-info-card h2 {
  font-size: 1.55rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.info-item:last-of-type {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--primary);
  font-size: 1rem;
}

.info-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.info-text p,
.info-text a {
  font-size: 0.97rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.info-text a:hover {
  color: var(--primary);
}

.insurance-section {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.insurance-section h3 {
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.insurance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.insurance-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.83rem;
  color: var(--text-light);
  font-weight: 500;
}

.fee-note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  line-height: 1.6;
}

.fee-note strong {
  color: var(--dark);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.contact-form-card>p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.form-group label .required {
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  transition: var(--transition);
  width: 100%;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(93, 138, 168, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 145px;
}

.form-submit {
  margin-top: 1.75rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 0.83rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}

.form-success .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success .success-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.form-success p {
  color: var(--text-light);
  font-size: 1rem;
}

.form-error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: #b91c1c;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 8px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-inner {
    gap: 4rem;
  }

  .approach-grid {
    gap: 3.5rem;
  }

  .bio-layout {
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 900px) {

  .intro-inner,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .bio-layout {
    grid-template-columns: 1fr;
  }

  .bio-sidebar {
    position: static;
  }

  .service-layout,
  .service-layout.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 3rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }

  section {
    padding: 5rem 0;
  }

  .service-section {
    padding: 5rem 0;
  }

  .intro {
    padding: 5rem 0;
  }

  .approach,
  .services-preview {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  header .container {
    height: 68px;
  }

  nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.25rem 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - 68px);
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 0.15rem;
  }

  nav ul li a {
    display: block;
    padding: 13px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius);
  }

  nav ul li.nav-cta {
    margin-top: 0.85rem;
    margin-left: 0;
  }

  nav ul li.nav-cta a {
    display: block;
    text-align: center;
    padding: 14px 20px;
  }

  .hero {
    min-height: 100svh;
    margin-top: 68px;
    background-position: 60% center;
  }

  .hero h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }

  .hero-trust {
    gap: 1rem;
    flex-direction: column;
  }

  .hero-trust-item {
    font-size: 0.85rem;
  }

  .hero-container {
    padding: 4rem 0 8rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-image {
    display: none;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .intro-text h2,
  .approach-left h2 {
    font-size: 1.85rem;
  }

  .cta-band h2 {
    font-size: 1.9rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 2rem;
  }

  section {
    padding: 4rem 0;
  }

  .service-section {
    padding: 4rem 0;
  }

  .page-header {
    padding: 4.5rem 0 3rem;
    margin-top: 68px;
  }

  .intro {
    padding: 4rem 0;
  }

  .approach-item {
    padding: 1.75rem;
  }

  .btn {
    min-height: 44px;
  }

  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.75rem;
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .container {
    width: 92%;
  }

  .hero-container {
    padding: 3.5rem 0 7.5rem;
  }

  .hero h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.2rem);
  }

  .credentials-card,
  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .bio-card {
    padding: 1.5rem;
  }

  .intro-quote {
    padding: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .intro-quote blockquote {
    font-size: 1.1rem;
  }

  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .footer-contact-list a {
    font-size: 0.88rem;
    word-break: break-word;
  }

  .service-note {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* ── Utilities ───────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}