/* =========================================================
   Fatima Azelmat Dental Center
   Identité de marque : #349292 (teal) · #BFD50E (lime) · blanc
   ========================================================= */

:root {
  --teal: #349292;
  --teal-dark: #267575;
  --teal-darker: #1d5a5a;
  --teal-light: #e6f2f2;
  --teal-tint: #f0f7f7;

  --lime: #BFD50E;
  --lime-dark: #a4b80a;
  --lime-light: #f3f9d4;

  --wa: #25D366;
  --wa-dark: #1ebe57;

  --ink: #1b2a3a;
  --ink-soft: #4a5a6b;
  --muted: #7c8a99;

  --bg: #ffffff;
  --bg-soft: #f7faf9;
  --bg-tint: #f0f7f7;

  --border: #e5ecea;
  --border-soft: #eef3f2;

  --shadow-sm: 0 4px 12px rgba(27, 42, 58, 0.06);
  --shadow-md: 0 12px 28px rgba(27, 42, 58, 0.09);
  --shadow-lg: 0 24px 48px rgba(27, 42, 58, 0.12);
  --shadow-xl: 0 30px 80px rgba(27, 42, 58, 0.16);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute;
  top: -40px; left: 16px;
  padding: 10px 18px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 .6em;
  color: var(--ink);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.accent { color: var(--teal); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .2em;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: .42rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(191, 213, 14, 0.25);
  animation: pulseDot 2.4s var(--ease) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(191, 213, 14, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(191, 213, 14, 0.05); }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-head {
  max-width: 740px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head p { font-size: 1.06rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: .96rem;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(52, 146, 146, 0.32);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(52, 146, 146, 0.4); }
.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(191, 213, 14, 0.4);
}
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); }
.btn-ghost {
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 12.5px 24px;
  background: transparent;
}
.btn-ghost:hover { background: var(--teal); color: #fff; }
.btn-ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-ghost-light:hover { background: #fff; color: var(--teal); border-color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  gap: 16px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  transition: color .2s var(--ease);
}
.topbar-link svg { width: 14px; height: 14px; }
.topbar-link:hover { color: #fff; }
.topbar-sep { opacity: .35; }
.topbar-wa { color: #6ce694; }
.topbar-wa:hover { color: #fff; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
}
.lang-switch .lang-active { color: var(--lime); }
.lang-switch .lang-sep { opacity: .4; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.96); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}

/* Logo "Fatima Azelmat / Dental Center" */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.logo img { width: 42px; height: 42px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .005em;
}
.logo-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 2px;
  position: relative;
  padding: 0 4px;
}
.logo-tagline::before, .logo-tagline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px; height: 1px;
  background: var(--ink-soft);
}
.logo-tagline::before { left: -10px; }
.logo-tagline::after { right: -10px; }

/* ---------- Navigation ---------- */
.nav > ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav > ul > li { position: relative; }
.nav a, .nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .92rem;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover, .nav .nav-link:hover, .nav a.active { color: var(--teal); background: var(--teal-tint); }

.nav .caret {
  width: 10px; height: 6px;
  transition: transform .25s var(--ease);
  opacity: .7;
}
.has-dropdown:hover > .nav-link .caret,
.has-dropdown:focus-within > .nav-link .caret,
.has-dropdown.open > .nav-link .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
  z-index: 10;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 26px;
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
  transform: rotate(45deg);
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.open > .dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}
.dropdown li { width: 100%; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  width: 100%;
}
.dropdown a:hover {
  background: var(--teal-tint);
  color: var(--teal);
}
.dropdown li:first-child a {
  font-weight: 600;
  color: var(--ink);
}

.header-cta { display: inline-flex; padding: 10px 20px; font-size: .88rem; }
.header-cta svg { width: 15px; height: 15px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px; width: 24px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.scroll-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  transition: width .15s linear;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 90px 0 140px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
}
.hero-orb-1 { width: 460px; height: 460px; background: var(--lime); top: -140px; right: -100px; }
.hero-orb-2 { width: 380px; height: 380px; background: #fff; bottom: -100px; left: -120px; opacity: .08; }
.hero-arch {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%);
  width: 130%;
  max-width: 1500px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text h1 { color: #fff; }
.hero-text .accent { color: var(--lime); }
.hero-text .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-text .eyebrow-dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(191, 213, 14, 0.2); }

.hero-text .lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-stars .stars { color: var(--lime); letter-spacing: 2px; font-size: 1.05rem; }
.hero-stars strong { color: #fff; font-size: 1rem; }

.hero-meta {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta li {
  display: flex; flex-direction: column;
  padding-left: 14px;
  border-left: 2px solid var(--lime);
}
.hero-meta strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.hero-meta span { font-size: .8rem; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }

/* Practitioner card */
.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.practitioner-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-xl);
  padding: 28px;
  width: 100%;
  max-width: 420px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.6);
  transform: rotate(-1.5deg);
  transition: transform .4s var(--ease-out);
}
.practitioner-card:hover { transform: rotate(0deg) translateY(-4px); }
.practitioner-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--lime), var(--teal-dark));
  border-radius: 26px;
  z-index: -1;
  opacity: .4;
  filter: blur(24px);
}
.pc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pc-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 16px rgba(52, 146, 146, 0.35);
  flex-shrink: 0;
}
.pc-id { flex: 1; min-width: 0; }
.pc-id strong { display: block; font-family: 'Manrope', sans-serif; font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.pc-id span { font-size: .82rem; color: var(--muted); }
.pc-badge {
  width: 28px; height: 28px;
  background: var(--lime);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-badge svg { width: 14px; height: 14px; }

.pc-slot {
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--border);
}
.pc-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 600;
}
.pc-time {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 6px 0 14px;
  letter-spacing: -0.02em;
}
.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pc-tag {
  font-size: .74rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lime-light);
  color: var(--lime-dark);
  font-weight: 600;
}
.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
}
.pc-foot-item span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.pc-foot-item strong { display: block; font-size: .86rem; color: var(--ink); margin-top: 2px; }
.pc-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: .86rem;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.pc-book svg { width: 13px; height: 13px; }
.pc-book:hover { background: var(--teal-dark); transform: translateX(2px); }

.hero-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatY 5s ease-in-out infinite;
}
.hero-card svg { width: 26px; height: 26px; flex-shrink: 0; }
.hero-card strong { display: block; font-size: .86rem; color: var(--ink); font-family: 'Manrope', sans-serif; font-weight: 700; }
.hero-card span { font-size: .74rem; color: var(--muted); }
.hero-card-1 { top: 30px; left: -40px; color: var(--lime-dark); animation-delay: 0s; }
.hero-card-2 { bottom: 50px; right: -30px; color: var(--teal); animation-delay: -2.5s; }

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

.wave-divider {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  z-index: 1;
}
.wave-divider svg { width: 100%; height: 80px; }

/* ---------- Trust strip ---------- */
.trust {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-item svg {
  width: 34px; height: 34px;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-item p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.trust-item strong { display: block; color: var(--ink); margin-bottom: 4px; font-family: 'Manrope', sans-serif; font-weight: 700; }

/* ---------- Services ---------- */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  padding: 38px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform .4s var(--ease-out);
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.05); }
.service-icon svg { width: 28px; height: 28px; }
.icon-teal { background: var(--teal-light); color: var(--teal); }
.icon-lime { background: var(--lime-light); color: var(--lime-dark); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { margin-bottom: 14px; font-size: .96rem; }
.service-price {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-family: 'Manrope', sans-serif;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: .92rem;
  transition: gap .25s var(--ease), color .2s var(--ease);
}
.card-link:hover { gap: 12px; color: var(--teal-dark); }

/* ---------- Parcours patient ---------- */
.journey { background: #fff; }
.journey-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-light) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.journey-step {
  position: relative;
  padding: 80px 18px 26px;
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  z-index: 1;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.journey-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.journey-num {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(52, 146, 146, 0.35);
  border: 4px solid #fff;
}
.journey-step:nth-child(even) .journey-num {
  background: linear-gradient(135deg, var(--lime), var(--lime-dark));
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(191, 213, 14, 0.45);
}
.journey-step h3 { margin-bottom: 8px; font-size: 1.08rem; }
.journey-step p { margin: 0; font-size: .92rem; }

/* ---------- About ---------- */
.about { background: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
}
.about-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-card-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(191, 213, 14, .35), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .12), transparent 60%);
}
.about-monogram {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  backdrop-filter: blur(8px);
}
.about-card-foot {
  position: relative;
  padding: 24px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  color: #fff;
}
.about-card-foot strong { display: block; font-family: 'Manrope', sans-serif; font-size: 1.15rem; font-weight: 700; }
.about-card-foot span { font-size: .85rem; opacity: .85; }

.about-badge {
  position: absolute;
  bottom: 30px; left: -20px;
  background: var(--lime);
  padding: 22px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
}
.about-badge strong {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.about-badge span { font-size: .8rem; color: var(--ink); font-weight: 500; }

.about-list {
  list-style: none;
  padding: 0; margin: 0 0 36px;
}
.about-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: var(--ink-soft);
}
.about-list .check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: .78rem;
}

/* ---------- Team ---------- */
.team { background: var(--bg-soft); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.member-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 28px;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member-photo {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.member-photo[data-color="teal"] {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
}
.member-photo[data-color="lime"] {
  background: linear-gradient(160deg, var(--lime) 0%, var(--lime-dark) 100%);
}
.member-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.22), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(0,0,0,0.08), transparent 50%);
}
.member-monogram {
  font-family: 'Manrope', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  z-index: 1;
  text-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.member-photo[data-color="lime"] .member-monogram { color: var(--ink); text-shadow: none; }
.member-card h3 { margin: 22px 0 4px; font-size: 1.08rem; }
.member-card .role {
  display: block;
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.member-card p { padding: 0 22px; margin: 0; font-size: .92rem; }

/* ---------- Pricing ---------- */
.pricing { background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.pricing-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 38px 32px;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.pricing-featured {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-family: 'Manrope', sans-serif;
}
.pricing-featured .pricing-tag {
  color: var(--ink);
  background: var(--lime);
}
.pricing-amount {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.pricing-amount em {
  font-style: normal;
  color: var(--teal);
}
.pricing-featured .pricing-amount,
.pricing-featured .pricing-amount em { color: #fff; }
.pricing-card p { margin-bottom: 20px; font-size: .95rem; }
.pricing-featured p { color: rgba(255,255,255,0.85); }
.pricing-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: .94rem;
  color: var(--ink-soft);
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--teal);
  font-weight: 700;
}
.pricing-featured ul li { color: rgba(255,255,255,0.92); }
.pricing-featured ul li::before { color: var(--lime); }

/* Insurance strip */
.insurance-strip {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.insurance-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
}
.insurance-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.insurance-list li {
  font-family: 'Manrope', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  opacity: .7;
  transition: opacity .2s var(--ease);
}
.insurance-list li:hover { opacity: 1; }
.insurance-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* ---------- Gallery avant/après ---------- */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.gallery-visual::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
}
.gallery-side {
  position: relative;
  aspect-ratio: 200 / 140;
}
.gallery-side svg { width: 100%; height: 100%; display: block; }
.gallery-label {
  position: absolute;
  top: 10px; left: 10px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: rgba(27,42,58,0.78);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  font-family: 'Manrope', sans-serif;
}
.gallery-after .gallery-label { background: var(--teal); }
.gallery-card figcaption { padding: 18px 22px 22px; }
.gallery-card figcaption strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.gallery-card figcaption span { font-size: .85rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
  opacity: .12;
}
.cta-banner::before { width: 300px; height: 300px; top: -130px; left: -90px; }
.cta-banner::after { width: 240px; height: 240px; bottom: -110px; right: -50px; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.testimonials { background: #fff; }
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .92rem;
  color: var(--ink-soft);
  margin-top: 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.google-rating:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.google-rating .stars { color: var(--lime-dark); letter-spacing: 2px; }
.google-rating strong { color: var(--ink); }
.google-rating svg { width: 14px; height: 14px; color: var(--teal); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg-soft);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 0;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: 14px; right: 26px;
  font-family: 'Manrope', serif;
  font-size: 5rem;
  color: var(--teal-light);
  line-height: 1;
}
.testimonial .stars {
  color: var(--lime-dark);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial figcaption strong { display: block; color: var(--ink); font-family: 'Manrope', sans-serif; font-weight: 700; }
.testimonial figcaption span { font-size: .82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq-head { position: sticky; top: 110px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.faq-item[open] { background: var(--teal-light); border-color: var(--teal); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 300;
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact { background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0; margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list svg {
  width: 38px; height: 38px;
  padding: 8px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--ink); font-family: 'Manrope', sans-serif; font-weight: 700; }
.contact-list a, .contact-list span { color: var(--ink-soft); font-size: .94rem; transition: color .2s var(--ease); }
.contact-list a:hover { color: var(--teal); }

.contact-map {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-map iframe { display: block; }

.contact-form {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-size: 1.15rem;
  margin: 0 0 22px;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  font-family: 'Manrope', sans-serif;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(52, 146, 146, 0.12);
}
.contact-form input.error-field,
.contact-form select.error-field,
.contact-form textarea.error-field {
  border-color: #d44;
  background: #fff5f5;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 18px !important;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--teal);
}
.form-consent span {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 0 !important;
  font-family: 'Inter', sans-serif;
}
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-submit { width: 100%; margin-top: 6px; }
.form-feedback {
  margin: 14px 0 0;
  font-size: .92rem;
  color: var(--teal);
  text-align: center;
  min-height: 1.2em;
  font-weight: 500;
}
.form-feedback.error { color: #c33; }
.form-feedback.success {
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 12px;
  border-radius: 10px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.logo-footer { color: #fff; }
.logo-footer .logo-name { color: var(--lime); }
.logo-footer .logo-tagline { color: rgba(255,255,255,0.65); }
.logo-footer .logo-tagline::before,
.logo-footer .logo-tagline::after { background: rgba(255,255,255,0.4); }

.site-footer h4 {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
.site-footer p { color: rgba(255, 255, 255, 0.6); font-size: .92rem; }
.site-footer ul {
  list-style: none;
  padding: 0; margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .92rem;
}
.site-footer a { color: rgba(255,255,255,0.75); transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--lime); }

.footer-hours { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.footer-hours strong { color: #fff; font-weight: 500; font-family: 'Manrope', sans-serif; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(27,42,58,0.08);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  z-index: 99;
}
.mb-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 12px;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
}
.mb-action svg { width: 22px; height: 22px; }
.mb-call { color: var(--teal); }
.mb-wa { color: var(--wa); }
.mb-book {
  background: var(--teal);
  color: #fff;
}
.mb-book:active { background: var(--teal-dark); }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  z-index: 90;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease);
}
.fab-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: .4;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.9); opacity: .5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fab-wa:hover { transform: scale(1.08); background: var(--wa-dark); }
.fab-wa svg { width: 28px; height: 28px; position: relative; z-index: 1; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav > ul { gap: 2px; }
  .nav a, .nav .nav-link { font-size: .86rem; padding: 8px 10px; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: auto; }
  .practitioner-card { max-width: 380px; }
  .hero-card-1 { left: 0; }
  .hero-card-2 { right: 0; }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 380px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .testimonial-grid, .pricing-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.pricing-featured { transform: none; }
  .pricing-card.pricing-featured:hover { transform: translateY(-4px); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }
}

@media (max-width: 760px) {
  .topbar-hours { display: none; }
  .topbar-inner { padding: 8px 16px; gap: 8px; }
  .topbar-left { flex-wrap: wrap; }
  .topbar-sep { display: none; }

  .logo-name { font-size: 1.25rem; }
  .logo-tagline { font-size: .55rem; letter-spacing: .22em; }

  .nav { display: none; }
  .nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 20px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    animation: slideDown .3s var(--ease);
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav.open > ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .nav.open .has-dropdown { width: 100%; }
  .nav.open .nav-link { justify-content: space-between; width: 100%; }
  .nav.open .dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--teal-light);
    border-radius: 0;
    padding: 4px 0 4px 14px;
    margin: 4px 0 8px 14px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: max-height .3s var(--ease);
  }
  .nav.open .dropdown::before { display: none; }
  .nav.open .has-dropdown.open .dropdown { max-height: 500px; }

  .burger { display: flex; }
  .header-cta { display: none; }
  .hero { padding-top: 50px; padding-bottom: 120px; }
  .hero-meta { gap: 20px; }
  .hero-meta li { padding-left: 10px; }
  .hero-meta strong { font-size: 1.4rem; }
  .practitioner-card { padding: 22px; }
  .pc-time { font-size: 1.3rem; }
  .services-grid, .testimonial-grid, .team-grid, .trust-grid, .pricing-grid, .gallery-grid, .journey-steps { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .insurance-strip { padding: 18px 20px; gap: 14px; }

  .mobile-bar { display: flex; gap: 6px; }
  .fab-wa { bottom: 86px; right: 16px; width: 50px; height: 50px; }
  .fab-wa svg { width: 24px; height: 24px; }
  body { padding-bottom: 70px; }
}

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

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .mobile-bar, .fab-wa, .cta-banner, .contact-form, .hero-bg, .hero-card, .wave-divider, .scroll-progress { display: none !important; }
  .hero { padding: 20px 0; background: #fff; color: #000; }
  .hero-text h1, .hero-text .lead { color: #000; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
