/* ============================================================
   Wellness Therapy Center Design System
   Professional Organic: clinical credibility + emotional warmth
   ============================================================ */

:root {
  --navy: #003F5F;
  --navy-deep: #002A40;
  --navy-soft: #2E6E93;
  --navy-tint: rgba(0, 63, 95, 0.09);
  --sage: #97AE83;
  --sage-dark: #5C7A50;
  --sage-tint: rgba(151, 174, 131, 0.14);
  --cream: #FDFBF7;
  --white: #FFFFFF;
  --ink: #1a1a1a;
  --muted: #6B7280;
  --line: rgba(0, 63, 95, 0.12);

  --font-head: 'Cabinet Grotesk', 'Avenir Next', -apple-system, sans-serif;
  --font-body: 'Satoshi', 'Avenir Next', -apple-system, sans-serif;

  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;

  --shadow-sm: 0 2px 8px rgba(0, 41, 63, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 41, 63, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 41, 63, 0.16);
  --shadow-sage: 0 10px 24px rgba(151, 174, 131, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.35rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 18px;
}
.eyebrow--light { color: #D8E3CB; }

/* ---------- Brand mark (real clinic lotus, painted via mask) ---------- */

.logo-mark {
  display: inline-block;
  width: 46px;
  height: 29px;
  flex-shrink: 0;
  background: var(--navy);
  -webkit-mask: url('assets/mark.png') center / contain no-repeat;
  mask: url('assets/mark.png') center / contain no-repeat;
}
.logo-mark--cream { background: var(--cream); }
.logo-mark--lg { width: 74px; height: 47px; }

.lotus-watermark {
  position: absolute;
  background: var(--cream);
  opacity: 0.08;
  -webkit-mask: url('assets/mark.png') center / contain no-repeat;
  mask: url('assets/mark.png') center / contain no-repeat;
  pointer-events: none;
}
.lotus-watermark--panel {
  width: 280px;
  height: 179px;
  right: -50px;
  bottom: -28px;
  transform: rotate(-8deg);
}
.lotus-watermark--band {
  width: 520px;
  height: 332px;
  left: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(6deg);
  opacity: 0.05;
}

.underline-swash { position: relative; white-space: nowrap; }
.underline-swash::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  height: 0.3em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'%3E%3Cpath d='M3 10 C 30 4, 60 3, 117 8' fill='none' stroke='%2397AE83' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sage {
  background: var(--sage);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sage);
}
.btn--sage:hover { background: #A8BC95; }

.btn--navy {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(0, 63, 95, 0.25);
}
.btn--navy:hover { background: var(--navy-deep); }

.btn--ghost {
  border-color: rgba(253, 251, 247, 0.45);
  color: var(--cream);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(253, 251, 247, 0.08); }

.btn--outline {
  border-color: var(--line);
  color: var(--navy);
  background: transparent;
}
.btn--outline:hover { border-color: var(--navy); background: var(--navy-tint); }

.btn--sm { padding: 11px 22px; font-size: 0.9375rem; }
.btn--lg { padding: 18px 38px; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand { display: inline-flex; align-items: center; gap: 12px; }

.lockup {
  display: flex;
  flex-direction: column;
  font-family: 'Marcellus', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--navy);
  white-space: nowrap;
}
.lockup b, .lockup i { font-weight: 400; font-style: normal; }

.lang-toggle {
  font-family: 'Cairo', var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--navy-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--ease);
}
.lang-toggle:hover { background: var(--navy); color: var(--cream); transform: translateY(-1px); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav__links a {
  font-weight: 500;
  font-size: 0.9688rem;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--sage-dark); }

.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.9688rem;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.25s ease;
}
.nav__dropdown-trigger:hover,
.nav__dropdown.open .nav__dropdown-trigger,
.nav__dropdown:focus-within .nav__dropdown-trigger {
  color: var(--sage-dark);
}
.nav__dropdown-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.nav__dropdown.open .nav__dropdown-caret,
.nav__dropdown:focus-within .nav__dropdown-caret {
  transform: translateY(2px) rotate(225deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 4;
  display: grid;
  width: 226px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 42, 64, 0.16);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transform: translate(-50%, -8px);
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.35s var(--ease), visibility 0.25s ease;
}
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -15px 0 auto;
  height: 15px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}
.nav__links .nav__dropdown-menu a {
  border-radius: 13px;
  color: var(--navy);
  font-size: 0.9375rem;
  padding: 11px 13px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}
.nav__links .nav__dropdown-menu a:hover,
.nav__links .nav__dropdown-menu a:focus-visible {
  color: var(--navy);
  background: var(--sage-tint);
  transform: translateX(3px);
}
[dir="rtl"] .nav__links .nav__dropdown-menu a:hover,
[dir="rtl"] .nav__links .nav__dropdown-menu a:focus-visible {
  transform: translateX(-3px);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__actions .btn { white-space: nowrap; }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav__phone:hover { color: var(--sage-dark); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy-deep);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 80px 0 0 0;
  z-index: 99;
  background: var(--cream);
  padding: 32px 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav > a:not(.btn),
.mobile-menu__group-trigger {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__group-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--ink);
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  cursor: pointer;
  text-align: left;
}
[dir="rtl"] .mobile-menu__group-trigger { text-align: right; }
.mobile-menu__group.open .nav__dropdown-caret {
  transform: translateY(2px) rotate(225deg);
}
.mobile-menu__submenu {
  display: grid;
  max-height: 0;
  border-left: 2px solid var(--sage);
  margin: 0 0 0 5px;
  opacity: 0;
  overflow: hidden;
  padding-left: 15px;
  pointer-events: none;
  visibility: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.28s ease, margin 0.4s var(--ease), visibility 0.28s ease;
}
[dir="rtl"] .mobile-menu__submenu {
  border-right: 2px solid var(--sage);
  border-left: 0;
  margin-right: 5px;
  margin-left: 0;
  padding-right: 15px;
  padding-left: 0;
}
.mobile-menu__group.open .mobile-menu__submenu {
  max-height: 210px;
  margin-top: 8px;
  margin-bottom: 10px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu__submenu a {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 6px;
}
.mobile-menu__submenu a:hover { color: var(--sage-dark); }
.mobile-menu .btn { margin-top: 20px; }
.mobile-menu__phone {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  padding: 14px;
  border-bottom: none !important;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 190px 0 150px;
  overflow: hidden;
  color: var(--cream);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  transform: translateZ(0);
}
.hero__blob--1 {
  width: 560px; height: 560px;
  background: #2E6E93;
  top: -180px; right: -120px;
}
.hero__blob--2 {
  width: 420px; height: 420px;
  background: rgba(151, 174, 131, 0.35);
  bottom: -200px; left: -140px;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.hero h1 { color: var(--white); margin-bottom: 24px; }

.hero__lead {
  font-size: 1.1875rem;
  color: #E5E7EB;
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }

.hero__facts { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #C9DCE8;
}
.hero__facts svg { color: var(--sage); flex-shrink: 0; }

/* Hero visual */

.hero__visual { position: relative; }

.hero__photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  border: 1px solid rgba(253, 251, 247, 0.18);
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
  transition: transform 0.5s var(--ease);
}
.hero__visual:hover .hero__photo { transform: rotate(0deg); }

/* Floating cards */

.float-card {
  position: absolute;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  animation: floatY 6s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.9375rem; font-weight: 700; }
.float-card span:not(.float-card__icon) { font-size: 0.8125rem; color: var(--muted); }

.float-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--navy-tint);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.float-card__icon--sage { background: var(--sage-tint); color: var(--sage-dark); }

.float-card--hours {
  top: 8px;
  right: -8px;
  animation-delay: 1.2s;
}

.float-card--rating {
  flex-direction: column;
  gap: 2px;
  left: -24px;
  bottom: -18px;
}
.float-card--rating strong { font-size: 1rem; }
.stars { color: var(--sage); font-size: 0.875rem; letter-spacing: 2px; }
.stars--lg { font-size: 1.25rem; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Waves ---------- */

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}
.wave svg { width: 100%; height: 64px; }
.wave--top { top: -1px; bottom: auto; }

/* ---------- Sections ---------- */

.section { padding: 110px 0; }
.section--white { background: var(--white); }

.section__head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head h2 { margin-bottom: 20px; }
.section__sub { color: var(--muted); font-size: 1.0625rem; }
.section__sub--left { text-align: left; margin: 0 0 40px; }

/* ---------- Trust strip ---------- */

.trust { padding: 64px 0 26px; }

.trust__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 36px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: var(--navy-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__grid strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.trust__grid strong em {
  font-style: normal;
  font-size: 0.55em;
  color: var(--sage-dark);
}
.trust__grid li > span:last-child { font-size: 0.9375rem; color: var(--muted); font-weight: 500; }
.trust__grid strong span { font-size: inherit; color: inherit; font-weight: inherit; }

/* ---------- Service cards (literal icon motif) ---------- */

/* Insurance ticker */

.insurance-marquee {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 62px 0 46px;
  overflow: hidden;
}
.insurance-marquee__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 34px;
}
.insurance-marquee__head .eyebrow { margin-bottom: 10px; }
.insurance-marquee__head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.insurance-marquee__head > p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.9375rem;
}
.insurance-marquee__viewport {
  position: relative;
  direction: ltr;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.insurance-marquee__track {
  display: flex;
  width: max-content;
  animation: insurance-scroll 42s linear infinite;
}
.insurance-marquee__set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 22px;
  min-width: max(100vw, 2800px);
  box-sizing: border-box;
  padding-right: 22px;
}
.insurance-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 92px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 18px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s var(--ease);
}
.insurance-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.insurance-logo:hover {
  border-color: rgba(151, 174, 131, 0.7);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.insurance-marquee:hover .insurance-marquee__track { animation-play-state: paused; }

@keyframes insurance-scroll {
  to { transform: translateX(-50%); }
}

[dir="rtl"] .insurance-marquee__track {
  animation-name: insurance-scroll;
}

/* Image-led therapy services */

.therapy-services {
  background:
    radial-gradient(circle at 8% 16%, var(--sage-tint), transparent 24%),
    var(--cream);
}
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.therapy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 63, 95, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 12px 12px 26px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s ease;
}
.therapy-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.therapy-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 42, 64, 0.22));
  transition: opacity 0.4s ease;
}
.therapy-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.45s ease;
}
.therapy-card:hover {
  border-color: rgba(151, 174, 131, 0.55);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.therapy-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.07);
}
.therapy-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 8px;
  padding-inline: 12px;
  transition: color 0.25s ease, transform 0.35s var(--ease);
}
.therapy-card:hover h3 {
  color: var(--sage-dark);
  transform: translateY(-2px);
}
.therapy-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  padding-inline: 12px;
}

/* ---------- Social services ---------- */

.social-services {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(151, 174, 131, 0.2), transparent 30%),
    var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
}
.social-services__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 76px;
}
.social-services__copy h2 {
  max-width: 12ch;
  margin-bottom: 22px;
}
.social-services__copy > p:not(.eyebrow) {
  max-width: 50ch;
  margin-bottom: 30px;
  color: #C8D9E3;
  font-size: 1.0625rem;
}
.social-services__resources {
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-xl);
  box-shadow: 0 22px 50px rgba(0, 20, 31, 0.24);
  backdrop-filter: blur(10px);
}
.social-services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.social-services__list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  transition: transform 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.social-services__list li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(151, 174, 131, 0.55);
}
.social-services__list li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 800;
}
.social-services__list strong {
  font-size: 0.9375rem;
  line-height: 1.35;
}
.social-services__more {
  margin-top: 18px;
  color: #C8D9E3;
  font-size: 0.875rem;
  text-align: center;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-grid[hidden] { display: none !important; }

.svc-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 63, 95, 0.08);
  border-radius: 28px;
  padding: 36px 32px 42px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(151, 174, 131, 0.45);
}

.svc-card__bg {
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 220px;
  height: 220px;
  color: var(--navy);
  opacity: 0.06;
  transform: rotate(-8deg);
  pointer-events: none;
  transition: color 0.45s ease, opacity 0.45s ease, transform 0.55s var(--ease);
}
.svc-card:hover .svc-card__bg {
  color: var(--sage-dark);
  opacity: 0.14;
  transform: rotate(-2deg) scale(1.05);
}

.svc-card__icon {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(0, 63, 95, 0.22);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s var(--ease);
}
.svc-card:hover .svc-card__icon {
  background: var(--sage);
  color: var(--navy-deep);
  transform: scale(1.06) rotate(-5deg);
}

.svc-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.svc-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.9531rem;
}

[dir="rtl"] .svc-card__bg {
  right: auto;
  left: -44px;
  transform: rotate(8deg);
}
[dir="rtl"] .svc-card:hover .svc-card__bg { transform: rotate(2deg) scale(1.05); }

/* ---------- Approach ---------- */

.approach {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.approach__copy h2 { margin-bottom: 20px; }

.steps { display: flex; flex-direction: column; gap: 28px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; }

.steps__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--navy-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sage);
}

.steps h3 {
  font-size: 1.125rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.steps h3 svg { color: var(--sage-dark); flex-shrink: 0; }
.steps p { color: var(--muted); font-size: 0.9688rem; max-width: 46ch; }

.approach__visual { position: relative; }

.approach__photo {
  width: 82%;
  height: 300px;
  object-fit: cover;
  margin-left: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform 0.5s var(--ease);
}
.approach__photo:hover { transform: rotate(0deg); }

.quote-panel {
  position: relative;
  overflow: hidden;
  width: 88%;
  margin-top: -64px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: 44px 40px 52px;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease);
  box-shadow: var(--shadow-lg);
}
.quote-panel:hover { transform: rotate(0deg); }

.quote-panel__mark { color: var(--sage); margin-bottom: 16px; }

.quote-panel blockquote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.quote-panel figcaption {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #D8E3CB;
}

/* ---------- Why Michigan families choose us ---------- */

.why-michigan {
  position: relative;
  color: var(--cream);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 110px 0;
  overflow: hidden;
}
.why-michigan__head {
  position: relative;
  max-width: 760px;
  margin-bottom: 48px;
}
.why-michigan__head h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.why-michigan__head > p:last-child {
  color: #C9DCE8;
  font-size: 1.0625rem;
  max-width: 60ch;
}
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  position: relative;
  min-height: 240px;
  background: rgba(253, 251, 247, 0.08);
  border: 1px solid rgba(253, 251, 247, 0.13);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.45s var(--ease), background 0.35s ease, border-color 0.35s ease;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: auto -45% -70% 18%;
  height: 150px;
  background: radial-gradient(circle, rgba(151, 174, 131, 0.32), transparent 67%);
  transition: transform 0.55s var(--ease);
}
.why-card:hover {
  background: rgba(253, 251, 247, 0.13);
  border-color: rgba(151, 174, 131, 0.65);
  transform: translateY(-9px);
}
.why-card:hover::after { transform: translate(-18px, -18px) scale(1.2); }
.why-card__number {
  display: block;
  color: var(--sage);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 38px;
}
.why-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p {
  position: relative;
  z-index: 1;
  color: #C9DCE8;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ---------- Daily mental health tip ---------- */

.daily-tip {
  background: var(--white);
}
.daily-tip__inner {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 72px;
  max-width: 960px;
}
.daily-tip__orb {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.daily-tip__orb::before,
.daily-tip__orb::after,
.daily-tip__orb span {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.daily-tip__orb::before {
  inset: 0;
  background: radial-gradient(circle at 38% 34%, #C9D8BB 0%, var(--sage) 52%, #6F8C62 100%);
  box-shadow: 0 30px 70px rgba(92, 122, 80, 0.22);
  animation: tip-breathe 5.5s ease-in-out infinite;
}
.daily-tip__orb::after {
  inset: 15%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: tip-breathe 5.5s ease-in-out 0.45s infinite reverse;
}
.daily-tip__orb span {
  width: 36%;
  height: 36%;
  background: rgba(253, 251, 247, 0.64);
  filter: blur(2px);
  animation: tip-float 6s ease-in-out infinite;
}
@keyframes tip-breathe {
  0%, 100% { transform: scale(0.94); }
  50% { transform: scale(1.03); }
}
@keyframes tip-float {
  0%, 100% { transform: translate(-16px, 14px); }
  50% { transform: translate(18px, -12px); }
}
.daily-tip__copy .eyebrow { margin-bottom: 8px; }
.daily-tip__date {
  color: var(--sage-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.daily-tip__copy h2 {
  color: var(--navy);
  margin-bottom: 18px;
}
.daily-tip__text {
  color: #3f4750;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.5;
  max-width: 54ch;
  margin-bottom: 20px;
}
.daily-tip__note {
  color: var(--muted);
  font-size: 0.8125rem;
}

/* ---------- Therapists ---------- */

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

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  background: var(--white);
  border: 1px solid rgba(0, 63, 95, 0.07);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card:focus-visible {
  outline: 3px solid rgba(151, 174, 131, 0.72);
  outline-offset: 4px;
}

.team-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  background: var(--sage-tint);
  padding: 5px 12px;
  border-radius: 999px;
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  outline: 1px solid var(--line);
  background: var(--navy-tint);
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.55s var(--ease), box-shadow 0.35s ease;
}
.avatar--lg { width: 104px; height: 104px; }

.team-card h3 { font-size: 1.1875rem; margin-bottom: 4px; }

.team-card__cred {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.team-card__bio {
  display: -webkit-box;
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.team-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.team-card__tags span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--navy-tint);
  padding: 5px 13px;
  border-radius: 999px;
}

.team-card--last {
  grid-column: 2;
}

.team-card__read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 800;
  margin-top: 18px;
}
.team-card__read-more svg {
  transition: transform 0.35s var(--ease);
}
.team-card:hover .team-card__read-more svg,
.team-card:focus-visible .team-card__read-more svg {
  transform: translateX(5px);
}
[dir="rtl"] .team-card__read-more svg {
  transform: scaleX(-1);
}
[dir="rtl"] .team-card:hover .team-card__read-more svg,
[dir="rtl"] .team-card:focus-visible .team-card__read-more svg {
  transform: scaleX(-1) translateX(5px);
}

.team-card__bio-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 10%, rgba(151, 174, 131, 0.32), transparent 30%),
    linear-gradient(155deg, rgba(0, 63, 95, 0.98), rgba(0, 42, 64, 0.99));
  border-radius: inherit;
  padding: 30px 28px;
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
  transform: translateY(102%) rotate(1.5deg);
  transform-origin: bottom center;
  transition: transform 0.62s var(--ease), opacity 0.3s ease;
  scrollbar-color: var(--sage) transparent;
  scrollbar-width: thin;
}
.team-card__bio-overlay::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -62px;
  bottom: -62px;
  background: rgba(151, 174, 131, 0.12);
  border: 1px solid rgba(151, 174, 131, 0.25);
  border-radius: 50%;
}
.team-card:hover .team-card__bio-overlay,
.team-card:focus .team-card__bio-overlay,
.team-card:focus-within .team-card__bio-overlay,
.team-card.bio-open .team-card__bio-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(0);
}
.team-card:hover .avatar,
.team-card:focus .avatar {
  box-shadow: var(--shadow-lg);
  transform: scale(1.08) rotate(-2deg);
}
.team-card__bio-label {
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.team-card__bio-overlay h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
.team-card__bio-full {
  position: relative;
  z-index: 1;
  color: #DCE8EF;
  font-size: 0.9375rem;
  line-height: 1.72;
}
.team-card__bio-hint {
  position: relative;
  z-index: 1;
  color: #B9CFDA;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: auto;
  padding-top: 22px;
}
.team-card__bio-label,
.team-card__bio-overlay h4,
.team-card__bio-full,
.team-card__bio-hint {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.45s var(--ease);
}
.team-card:hover .team-card__bio-label,
.team-card:focus .team-card__bio-label,
.team-card.bio-open .team-card__bio-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}
.team-card:hover .team-card__bio-overlay h4,
.team-card:focus .team-card__bio-overlay h4,
.team-card.bio-open .team-card__bio-overlay h4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.19s;
}
.team-card:hover .team-card__bio-full,
.team-card:focus .team-card__bio-full,
.team-card.bio-open .team-card__bio-full {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}
.team-card:hover .team-card__bio-hint,
.team-card:focus .team-card__bio-hint,
.team-card.bio-open .team-card__bio-hint {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.29s;
}

/* Click-open therapist biography */

body.dialog-open { overflow: hidden; }

.bio-dialog,
.coverage-dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  background: transparent;
  border: 0;
  color: var(--body);
  margin: 0;
  overflow: auto;
  padding: 18px;
}
.bio-dialog[open],
.coverage-dialog[open] {
  display: grid;
  place-items: center;
}
.bio-dialog::backdrop,
.coverage-dialog::backdrop {
  background: rgba(0, 30, 47, 0.58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.bio-dialog__panel,
.coverage-dialog__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  background:
    radial-gradient(circle at 92% 4%, rgba(151, 174, 131, 0.2), transparent 28%),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: 0 32px 90px rgba(0, 25, 40, 0.34);
  opacity: 0;
  overflow-y: auto;
  padding: 44px;
  transform: translateY(24px) scale(0.97);
}
.bio-dialog[open] .bio-dialog__panel,
.coverage-dialog[open] .coverage-dialog__panel {
  animation: dialog-enter 0.48s var(--ease) forwards;
}
@keyframes dialog-enter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.dialog-close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--ease);
}
.dialog-close:hover {
  color: var(--white);
  background: var(--navy);
  transform: rotate(7deg);
}
[dir="rtl"] .dialog-close { right: auto; left: 20px; }
.bio-dialog__identity {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: center;
  padding-right: 46px;
}
[dir="rtl"] .bio-dialog__identity { padding-right: 0; padding-left: 46px; }
.bio-dialog__avatar {
  width: 112px;
  height: 112px;
  object-fit: cover;
  background: var(--navy-tint);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  outline: 1px solid var(--line);
}
.bio-dialog__identity .eyebrow { margin-bottom: 8px; }
.bio-dialog__identity h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 7px;
}
.bio-dialog__cred {
  color: var(--sage-dark);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.bio-dialog__copy {
  color: #424b53;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 30px;
}
.bio-dialog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.bio-dialog__tags span {
  color: var(--navy);
  background: var(--navy-tint);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 14px;
}

/* ---------- Reviews carousel ---------- */

.rev-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 14px;
}
.rev-summary__score {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}

.reviews {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.reviews__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--ease);
}
.reviews__arrow:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.reviews__arrow svg { transform: none; }
[dir="rtl"] .reviews__arrow svg { transform: scaleX(-1); }

.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 22px;
  scrollbar-width: none;
  flex-grow: 1;
}
.reviews__track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--cream);
  border: 1px solid rgba(0, 63, 95, 0.09);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.review-card blockquote {
  font-size: 0.9688rem;
  line-height: 1.65;
  color: #374151;
  flex-grow: 1;
}
.review-card figcaption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}
.review-card figcaption::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 3 2.5 5.3 5.5.7-4 4 1 5.7-5-2.8-5 2.8 1-5.7-4-4 5.5-.7z' fill='%2397AE83'/%3E%3C/svg%3E") no-repeat center / contain;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.reviews__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 63, 95, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.reviews__dots button.active {
  background: var(--sage);
  transform: scale(1.25);
}

/* ---------- Pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(0, 63, 95, 0.09);
  border-radius: var(--r-xl);
  padding: 38px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.price-card--featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  border: none;
  box-shadow: var(--shadow-lg);
}

.price-card__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--sage);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sage);
}

.price-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--navy-tint);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.price-card--featured .price-card__icon {
  background: rgba(253, 251, 247, 0.14);
  color: var(--sage);
}

.price-card h3 { font-size: 1.375rem; margin-bottom: 6px; }

.price-card__intake {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 22px;
}
.price-card--featured .price-card__intake { color: #C2D6E2; }

.price-card__amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--navy);
}
.price-card--featured .price-card__amount { color: var(--white); }

.price-card__per {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.price-card--featured .price-card__per { color: #C2D6E2; }

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}
.price-card li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--sage-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C7A50' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 10px;
}
.price-card--featured li::before {
  background-color: rgba(151, 174, 131, 0.25);
}

/* Insurance band */

.insurance-band {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--navy-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 34px;
}
.insurance-band__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.insurance-band > div { flex-grow: 1; }
.insurance-band h3 { font-size: 1.1875rem; margin-bottom: 4px; }
.insurance-band p { color: var(--muted); font-size: 0.9375rem; }
.insurance-band .btn { flex-shrink: 0; }

/* Searchable insurance dialog */

.coverage-dialog__panel {
  width: min(640px, 100%);
  padding: 48px;
}
.coverage-dialog__panel > .eyebrow { margin-bottom: 10px; }
.coverage-dialog__panel h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  padding-right: 44px;
}
[dir="rtl"] .coverage-dialog__panel h2 { padding-right: 0; padding-left: 44px; }
.coverage-dialog__intro {
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 28px;
}
.coverage-search {
  display: grid;
  gap: 9px;
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.coverage-search__field {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  color: var(--sage-dark);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.coverage-search__field:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(151, 174, 131, 0.18);
}
.coverage-search input {
  width: 100%;
  color: var(--navy);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1rem;
}
.coverage-results {
  min-height: 112px;
  padding-top: 20px;
}
.coverage-results__status {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 13px;
}
.coverage-results__status--empty {
  color: #75442f;
  background: #fff5ef;
  border: 1px solid #f2d7c9;
  border-radius: 14px;
  padding: 13px 15px;
}
.coverage-results__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.coverage-results__option {
  color: var(--navy);
  background: var(--navy-tint);
  border: 1px solid rgba(0, 63, 95, 0.1);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 14px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.coverage-results__option:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}
.coverage-dialog__call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--navy);
  border-radius: 20px;
  margin-top: 6px;
  padding: 20px;
}
.coverage-dialog__call p {
  color: #dce8ef;
  font-size: 0.875rem;
  line-height: 1.55;
}
.coverage-dialog__call .btn { flex-shrink: 0; }

/* ---------- FAQ ---------- */

.faq-section {
  background:
    linear-gradient(110deg, rgba(151, 174, 131, 0.08), transparent 45%),
    var(--white);
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 88px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 120px;
}
.faq-intro h2 { margin-bottom: 18px; }
.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 28px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: 700 1.1rem/1.35 var(--font-head);
  text-align: left;
  padding: 24px 4px;
  cursor: pointer;
  transition: color 0.25s ease, padding 0.35s var(--ease);
}
.faq-question:hover,
.faq-question:focus-visible {
  color: var(--navy);
  padding-inline: 12px;
}
.faq-question:focus-visible {
  outline: 3px solid var(--sage-tint);
  outline-offset: -3px;
  border-radius: var(--r-md);
}
.faq-question__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--navy);
  background: var(--sage-tint);
  border-radius: 50%;
  font: 500 1.4rem/1 var(--font-body);
  transition: color 0.25s ease, background 0.25s ease, transform 0.45s var(--ease);
}
.faq-item.open .faq-question__icon {
  color: var(--cream);
  background: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 62ch;
  padding: 0 50px 0 4px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p {
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 150px 0;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p {
  color: #C9DCE8;
  max-width: 56ch;
  margin: 0 auto 36px;
  font-size: 1.0938rem;
}
.cta-band__inner { position: relative; }
.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Contact ---------- */

.crisis-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 820px;
  margin: -26px auto 52px;
  background: rgba(166, 85, 63, 0.07);
  border: 1px solid rgba(166, 85, 63, 0.28);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #7C4030;
}
.crisis-note svg { flex-shrink: 0; margin-top: 2px; color: #A6553F; }
.crisis-note a {
  font-weight: 700;
  color: #A6553F;
  text-decoration: underline;
  text-underline-offset: 2px;
}
[lang="ar"] .crisis-note { font-size: 1.0625rem; line-height: 1.85; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px;
  margin-bottom: 28px;
}

.contact__form {
  background: var(--white);
  border: 1px solid rgba(0, 63, 95, 0.07);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: block; margin-bottom: 18px; }
.field > span {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--navy-deep);
}
.field > input,
.field > textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 13px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.field > input:focus,
.field > textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px var(--navy-tint);
}
.field ::placeholder { color: #9CA3AF; }

.multi-select {
  position: relative;
}
.multi-select summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  list-style: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.multi-select summary::-webkit-details-marker { display: none; }
.multi-select summary:focus-visible,
.multi-select[open] summary {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px var(--navy-tint);
}
.multi-select summary > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-select__chevron {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.multi-select[open] .multi-select__chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}
.multi-select__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  inset-inline: 0;
  display: grid;
  gap: 4px;
  max-height: 310px;
  padding: 10px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.multi-select__option {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.multi-select__option:hover,
.multi-select__option:has(input:checked) {
  color: var(--navy-deep);
  background: var(--sage-pale);
}
.multi-select__option input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  accent-color: var(--navy);
}
.multi-select__option span {
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.35;
}

.contact__note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}
.contact__note a { color: var(--navy); font-weight: 700; }
.contact__note a:hover { color: var(--sage-dark); }

.form-success {
  display: block;
  background: var(--navy-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--navy-deep);
}
.form-success a { color: var(--navy); font-weight: 700; white-space: nowrap; }
.form-success a:hover { color: var(--sage-dark); }

.contact__info { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(0, 63, 95, 0.07);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
a.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.info-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--navy-tint);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.info-card strong { display: block; font-size: 0.9375rem; margin-bottom: 2px; }
.info-card span { font-size: 0.9063rem; color: var(--muted); line-height: 1.5; }

.map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 63, 95, 0.07);
  line-height: 0;
}
.map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(0.85);
}

/* ---------- Footer ---------- */

.footer {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 72px 0 0;
}

.footer__logo {
  width: 150px;
  height: auto;
  display: block;
  margin: -14px 0 4px -10px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand p {
  color: #B9CEDC;
  font-size: 0.9375rem;
  margin: 14px 0 22px;
  max-width: 34ch;
}

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.1);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--sage);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.footer__col { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #D8E3CB;
  margin-bottom: 6px;
}
.footer__col a:not(.btn) {
  font-size: 0.9375rem;
  color: #B9CEDC;
  transition: color 0.25s ease;
  line-height: 1.5;
}
.footer__col a:not(.btn):hover { color: var(--sage); }
.footer__hours { font-size: 0.9375rem; color: #B9CEDC; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(253, 251, 247, 0.14);
  padding: 22px 0 28px;
  font-size: 0.8438rem;
  color: #9FBACB;
}
.footer__crisis a { color: var(--sage); font-weight: 700; }
.footer__crisis a:hover { color: #A8BC95; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1260px) {
  .nav__phone { display: none; }
}

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 80px; }
  .hero { padding: 160px 0 140px; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }

  .approach { grid-template-columns: 1fr; gap: 64px; }
  .quote-panel { max-width: 560px; margin-inline: auto; }

  .therapy-grid { grid-template-columns: repeat(2, 1fr); }
  .social-services__panel { grid-template-columns: 1fr; gap: 48px; }
  .social-services__copy h2 { max-width: 16ch; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .daily-tip__inner { grid-template-columns: 240px 1fr; gap: 52px; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro { position: static; }

  .svc-grid, .team-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card--last {
    grid-column: 1 / -1;
    width: calc((100% - 24px) / 2);
    justify-self: center;
  }
  .price-grid { max-width: 720px; margin-inline: auto; margin-bottom: 28px; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }

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

@media (max-width: 680px) {
  .container { width: calc(100% - 40px); }
  .section { padding: 80px 0; }

  .nav__phone { display: none; }
  .nav__actions .btn { display: none; }

  .hero { padding: 140px 0 120px; }
  .hero__visual { min-height: 400px; }
  .breathe { width: 230px; height: 230px; }
  .float-card--hours { right: 0; top: -4px; }
  .float-card--quote { left: 0; bottom: -22px; max-width: 230px; }

  .insurance-marquee { padding: 48px 0 38px; }
  .insurance-marquee__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
  }
  .insurance-marquee__viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }
  .insurance-logo {
    width: 176px;
    height: 76px;
    border-radius: 18px;
    padding: 15px 20px;
  }
  .therapy-grid { grid-template-columns: 1fr; gap: 22px; }
  .therapy-card { border-radius: 24px; }
  .therapy-card__image-wrap { aspect-ratio: 16 / 10; margin-bottom: 18px; }
  .therapy-card h3 { font-size: 1.1rem; }
  .therapy-card p { font-size: 0.875rem; }
  .social-services { padding: 80px 0; }
  .social-services__panel { gap: 38px; }
  .social-services__resources { padding: 20px; border-radius: 24px; }
  .social-services__list { grid-template-columns: 1fr; }
  .social-services__list li { min-height: 68px; }
  .why-michigan { padding: 82px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 210px; }
  .daily-tip__inner { grid-template-columns: 1fr; gap: 38px; }
  .daily-tip__orb { width: min(210px, 68vw); margin-inline: auto; }
  .faq-question { font-size: 1rem; }
  .faq-answer p { padding-right: 8px; }

  .svc-grid, .team-grid, .price-grid { grid-template-columns: 1fr; }
  .team-card--last { grid-column: auto; width: auto; }
  .bio-dialog__panel,
  .coverage-dialog__panel {
    border-radius: 24px;
    padding: 34px 24px 26px;
  }
  .dialog-close {
    top: 14px;
    right: 14px;
  }
  [dir="rtl"] .dialog-close { right: auto; left: 14px; }
  .bio-dialog__identity {
    grid-template-columns: 76px 1fr;
    gap: 17px;
    padding-right: 38px;
  }
  [dir="rtl"] .bio-dialog__identity { padding-right: 0; padding-left: 38px; }
  .bio-dialog__avatar { width: 76px; height: 76px; }
  .bio-dialog__identity h2 { font-size: 1.45rem; }
  .bio-dialog__copy { font-size: 0.9375rem; margin-top: 24px; }
  .coverage-dialog__call {
    align-items: stretch;
    flex-direction: column;
  }
  .coverage-dialog__call .btn { text-align: center; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); }

  .insurance-band { flex-direction: column; align-items: flex-start; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact__form { padding: 28px 22px; }

  .float-card--free { position: static; margin-top: 20px; max-width: none; }
  .approach__visual { display: flex; flex-direction: column; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---------- Arabic language & RTL ---------- */

[lang="ar"] body,
[lang="ar"] .btn,
[lang="ar"] input,
[lang="ar"] textarea,
[lang="ar"] button {
  font-family: 'Cairo', 'Satoshi', sans-serif;
}
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, [lang="ar"] h4,
[lang="ar"] .trust__grid strong,
[lang="ar"] .price-card__amount,
[lang="ar"] .rev-summary__score {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}
[lang="ar"] h1 { font-size: clamp(2.6rem, 5.8vw, 4.1rem); line-height: 1.3; }
[lang="ar"] h2 { font-size: clamp(2.2rem, 4.7vw, 3.4rem); line-height: 1.4; }
[lang="ar"] h3 { font-size: 1.45rem; line-height: 1.45; }
[lang="ar"] .svc-card h3 { font-size: 1.45rem; }
[lang="ar"] .therapy-card h3 { font-size: 1.22rem; }
[lang="ar"] .steps h3 { font-size: 1.35rem; }
[lang="ar"] .team-card h3 { font-size: 1.3rem; }
[lang="ar"] .price-card h3 { font-size: 1.5rem; }
[lang="ar"] .insurance-band h3 { font-size: 1.32rem; }
[lang="ar"] .eyebrow { font-size: 0.9688rem; }
[lang="ar"] .trust__label { font-size: 0.9375rem; }
[lang="ar"] .hero__lead { font-size: 1.3125rem; line-height: 1.9; }
[lang="ar"] .section__sub { font-size: 1.1875rem; line-height: 1.9; }
[lang="ar"] .svc-card p,
[lang="ar"] .therapy-card p,
[lang="ar"] .steps p,
[lang="ar"] .team-card__bio,
[lang="ar"] .team-card__bio-full,
[lang="ar"] .why-card p,
[lang="ar"] .faq-answer p,
[lang="ar"] .review-card blockquote,
[lang="ar"] .insurance-band p,
[lang="ar"] .footer__brand p,
[lang="ar"] .info-card span {
  font-size: 1.0625rem;
  line-height: 1.85;
}
[lang="ar"] .quote-panel blockquote { font-size: clamp(1.35rem, 2.1vw, 1.6rem); line-height: 1.8; }
[lang="ar"] .daily-tip__text { font-size: clamp(1.35rem, 2.6vw, 1.7rem); line-height: 1.8; }
[lang="ar"] .cta-band p { font-size: 1.1875rem; line-height: 1.9; }
[lang="ar"] .underline-swash::after { bottom: -0.16em; height: 0.24em; }
[lang="ar"] .eyebrow,
[lang="ar"] .trust__label,
[lang="ar"] .team-card__cred,
[lang="ar"] .quote-panel figcaption,
[lang="ar"] .price-card__flag,
[lang="ar"] .team-card__badge,
[lang="ar"] .footer__col h4 {
  letter-spacing: 0;
}
[lang="ar"] .lockup {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
  font-size: 1.05rem;
  font-weight: 700;
}
[lang="ar"] .underline-swash { white-space: normal; }
[lang="ar"] .trust__grid strong em { display: none; }

[dir="rtl"] .section__sub--left { text-align: right; }
[dir="rtl"] .float-card--hours { right: auto; left: -8px; }
[dir="rtl"] .float-card--rating { left: auto; right: -24px; }
[dir="rtl"] .team-card__badge { right: auto; left: 22px; }
[dir="rtl"] .team-card__bio-overlay::after { right: auto; left: -62px; }
[dir="rtl"] .faq-question { text-align: right; }
[dir="rtl"] .faq-answer p { padding-right: 4px; padding-left: 50px; }
[dir="rtl"] .approach__photo { margin-left: 0; margin-right: auto; }
[dir="rtl"] .lotus-watermark--band { left: auto; right: -100px; }
[dir="rtl"] .lotus-watermark--panel { right: auto; left: -50px; }
[dir="rtl"] .footer__logo { margin: -14px -10px 4px 0; }

@media (max-width: 680px) {
  [dir="rtl"] .faq-answer p { padding-left: 8px; }
}

/* ---------- New components: responsive ---------- */

@media (max-width: 1240px) {
  .nav__phone { display: none; }
}

@media (max-width: 1080px) {
  .review-card { flex-basis: calc((100% - 20px) / 2); }
  .lockup { font-size: 0.78rem; }
}

@media (max-width: 680px) {
  .review-card { flex-basis: 100%; }
  .reviews__arrow { display: none; }
  .reviews { gap: 0; }

  .hero__photo { height: 320px; }
  .float-card--rating { bottom: -26px; left: -4px; }
  [dir="rtl"] .float-card--rating { right: -4px; }
  .float-card--hours { top: -16px; }

  .approach__photo { width: 100%; height: 220px; }
  .quote-panel { width: 100%; margin-top: -36px; }

  .lang-toggle { padding: 7px 13px; font-size: 0.875rem; }
  .rev-summary { flex-wrap: wrap; }
}
