/* =========================================================
   Dr Hayat Louizy — Ophtalmologue
   Design: reference-matched (deep forest green + tan logo)
   ========================================================= */

:root {
  /* Palette — extracted from reference design */
  --cream:       #F5F2EC;   /* page background */
  --cream-2:     #EFEBE3;   /* info-strip bg + card alt */
  --ivory:       #FFFFFF;   /* card background */

  --forest:      #1E4632;   /* primary — dark forest green */
  --forest-hover:#163525;   /* darker for hover */
  --forest-soft: #28463C;   /* text on forest, stats numbers */

  --mint:        #DCF0E6;   /* pale green — icon bg, hover */
  --mint-soft:   #E6F0E6;
  --mint-deep:   #B5D6C2;

  --sage-muted:  #64786E;   /* eyebrow text, secondary */
  --sage-line:   #A8BAB0;

  --tan:         #B49678;   /* logo accent + section underlines */
  --tan-deep:    #8A7358;
  --tan-light:   #E6D8C8;   /* hero arch decor */

  --ink:         #1F2A22;   /* body text — very dark, slight green */
  --body:        #3C4B41;
  --muted:       #6E7A71;   /* secondary text */
  --line:        #E4DFD6;   /* borders */

  /* Type */
  --serif: "Playfair Display", "Instrument Serif", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --arabic: "Noto Kufi Arabic", "Tajawal", system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--forest);
  color: var(--ivory);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
  font-size: 14px;
  transition: top .2s;
}
.skip-link:focus {
  top: 0;
}

/* Focus visible — keyboard users only */
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* Minimum touch target — 44px for interactive elements */
.btn, .nav-links a, .btn-rdv-top, .burger, .lang-toggle,
.slider-arrow, .review-arrow, .dot, .mc-card, .fs-card,
.audience-card, .footer-socials a { min-height: 44px; min-width:20px; }

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  overflow-x: hidden;
}

html[dir="rtl"] body { font-family: var(--arabic); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

.container {
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================= TYPOGRAPHY ========================= */
.serif { font-family: var(--serif); font-weight: 500; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 2px;
  background: var(--tan);
  border-radius: 2px;
}

/* ========================= BUTTONS ========================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all .25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-hover);
  border-color: var(--forest-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(30,70,50,.5);
}

.btn-outline {
  background: var(--ivory);
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--ivory);
}

.btn-ghost {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  border-color: #1EBE5A;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(37,211,102,.5);
}
.btn-whatsapp svg { width: 18px; height: 18px; }

.btn-link {
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s var(--ease);
}
.btn-link:hover { gap: 10px; }
.btn-link::after {
  content: '→';
  transition: transform .25s var(--ease);
}

/* ========================= NAVIGATION ========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -10px rgba(30,70,50,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 12px -4px rgba(30,70,50,.1);
  background: #fff;
  padding: 4px;
}
.logo-img--footer {
  height: 80px;
  filter: none;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 16px -6px rgba(0,0,0,.2);
}
.logo-mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--serif);
  line-height: 1.05;
}
.logo-text .t1 {
  display: block;
  color: var(--tan);
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}
.logo-text .t2 {
  display: block;
  color: var(--tan);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-top: -2px;
}
.logo-text .t3 {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--forest); }
.nav-links a.active {
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--forest);
}
.nav-links .caret {
  width: 10px; height: 10px;
  opacity: 0.6;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ivory);
  min-width: 240px;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 12px 40px -10px rgba(30,70,50,.15);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: all .2s var(--ease);
  list-style: none;
}
.nav-links > li:hover > .dropdown-menu,
.nav-links > li:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--body);
}
.dropdown-menu li a:hover {
  background: var(--mint);
  color: var(--forest);
}
.dropdown-menu li a.active::after { display: none; }

/* Nav actions (right side) */
.nav-buttons-right{
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}
.btn-rdv-top {
  background: var(--forest);
  color: var(--ivory);
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s var(--ease);
}
.btn-rdv-top:hover { background: var(--forest-hover); }
.btn-rdv-top svg { width: 16px; height: 16px; }

.btn-phone-top {
  background: var(--ivory);
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s var(--ease);
}
.btn-phone-top:hover {
  border-color: var(--forest);
  color: var(--forest);
}
.btn-phone-top svg { width: 14px; height: 14px; color: var(--forest); }

/* Lang toggle */
.lang-toggle {
  min-width: 25px; min-height: 25px;
  margin-right: 10px;
  width: 34px; height: 34px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s;
}
.lang-toggle:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* Burger (mobile) */
.burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all .25s;
}

/* ========================= HERO SLIDER ========================= */
/* ========================= SPLIT HERO (Proposition 2) ========================= */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  height: min(560px, 75vh);
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 16px 28px 0;
  border: 1px solid var(--line);
}
@media (min-width: 1336px) { .split-hero { max-width: 95vw; margin: 16px auto 0; } }

.split-main {
  position: relative;
  overflow: hidden;
}
.split-main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
  z-index: 1;
}
.split-main img.is-active { opacity: 1; }

.split-sidebar {
  background: var(--forest);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  color: var(--ivory);
}
.split-sidebar .eyebrow {
  color: var(--tan-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.split-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.split-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 28px;
}
.split-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.split-actions .btn { font-size: 13px; padding: 12px 18px; }
.split-actions .btn svg { width: 15px; height: 15px; }

.split-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: auto;
}
.split-thumb {
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.45;
  transition: all .3s var(--ease);
}
.split-thumb:hover { opacity: 0.7; }
.split-thumb.is-active {
  border-color: var(--tan);
  opacity: 1;
}
.split-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .split-hero { grid-template-columns: 1fr 360px; }
}
@media (max-width: 900px) {
  .split-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .split-main { height: 320px; }
  .split-sidebar { padding: 32px 28px; }
  .split-thumbs { grid-template-columns: repeat(4, 1fr); }
  .split-thumb { height: 56px; }
}
@media (max-width: 560px) {
  .split-hero { margin: 12px 16px 0; border-radius: var(--radius-md); }
  .split-main { height: 260px; }
  .split-sidebar { padding: 28px 20px; }
  .split-title { font-size: 26px; }
  .split-actions { flex-direction: column; }
  .split-actions .btn { width: 100%; justify-content: center; }
  .split-thumb { height: 48px; }
}

/* Ocean waves on photo side only */
.split-photo-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  line-height: 0;
  pointer-events: none;
}
.split-photo-waves svg {
  width: 100%;
  height: 200px;
  display: block;
}

/* ========================= KEN BURNS HERO ========================= */
.kb-hero {
  position: relative;
  height: min(620px, 80vh);
  min-height: 480px;
  overflow: hidden;
  margin: 0;
}

.kb-slides { position: absolute; inset: 0; }
.kb-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.kb-slide.is-active { opacity: 1; }
.kb-slide img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 18s ease infinite alternate;
}
.kb-slide:nth-child(2) img { animation-delay: -3s; object-position: center 30%; }
.kb-slide:nth-child(3) img { animation-delay: -6s; }
.kb-slide:nth-child(4) img { animation-delay: -9s; }
.kb-slide:nth-child(5) img { animation-delay: -12s; }
.kb-slide:nth-child(6) img { animation-delay: -15s; }
.kb-slide:nth-child(7) img { animation-delay: -18s; }
@keyframes kenburns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-1%,-1%); }
}

/* Wave at bottom of slider */
.kb-wave {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  line-height: 0;
}
.kb-wave svg { width: 100%; height: 60px; display: block; }

.kb-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(30,70,50,.65) 0%, rgba(30,70,50,.3) 50%, rgba(30,70,50,.1) 100%);
  display: flex; align-items: center;
  padding: 0 80px;
}
.kb-content { max-width: 560px; color: var(--ivory); }
.kb-content .eyebrow {
  color: var(--tan-light); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 18px;
}
.kb-title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; color: var(--ivory); margin-bottom: 18px;
  letter-spacing: -0.02em; line-height: 1.1;
}
.kb-sub {
  font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 32px;
  line-height: 1.6; max-width: 460px;
}
.kb-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-kb-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 10px; font-weight: 600; font-size: 14px;
  background: var(--ivory); color: var(--forest); border: none;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn-kb-primary:hover {
  background: var(--tan-light); transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.3);
}
.btn-kb-primary svg { width: 16px; height: 16px; }

.kb-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 8px;
}
.kb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: all .3s var(--ease);
}
.kb-dot:hover { background: rgba(255,255,255,.6); }
.kb-dot.is-active { width: 28px; border-radius: 4px; background: var(--ivory); }

@media (max-width: 760px) {
  .kb-hero { height: min(520px, 75vh); min-height: 400px; margin: 12px 16px 0; border-radius: var(--radius-md); }
  .kb-overlay { padding: 0 32px; }
  .kb-title { font-size: 32px; }
  .kb-sub { font-size: 14px; }
}
@media (max-width: 560px) {
  .kb-hero { height: min(480px, 70vh); min-height: 360px; }
  .kb-overlay { padding: 0 20px; align-items: flex-end; padding-bottom: 60px; }
  .kb-title { font-size: 28px; }
  .kb-actions { flex-direction: column; }
  .kb-actions .btn, .kb-actions .btn-kb-primary { width: 100%; justify-content: center; }
}

/* Old hero (keep for other pages if needed) */
.hero {
  background: var(--cream);
  padding: 20px 0 60px;
  position: relative;
}
.hero-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 28px;
}
@media (min-width: 1336px) {
  .hero-slider { margin: 0 auto; max-width: 95vw; }
}

.slides {
  position: relative;
  height: min(560px, 75vh);
  min-height: 460px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s var(--ease), visibility .8s;
  background: var(--cream-2);
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  height: 100%;
  position: relative;
}

/* Decorative arch behind the left copy */
.slide-inner::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 640px;
  background: var(--tan-light);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  opacity: 0.5;
  z-index: 0;
}

.slide-copy {
  position: relative;
  z-index: 2;
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide-copy .eyebrow {
  color: var(--sage-muted);
  margin-bottom: 18px;
}
.slide-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.slide-sub {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 32px;
  max-width: 440px;
}
.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slide-visual {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Full-image slide (no text) */
.slide--fullimg {
  display: flex;
}
.slide--fullimg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Full-img slides use the full slides height via flex + object-fit: cover.
   No inner grid needed — the direct <img> fills the slide. */

/* Slide content entrance animation */
.slide.is-active .slide-copy > * {
  animation: slideInCopy .9s var(--ease) both;
}
.slide.is-active .slide-copy > *:nth-child(1) { animation-delay: .2s; }
.slide.is-active .slide-copy > *:nth-child(2) { animation-delay: .3s; }
.slide.is-active .slide-copy > *:nth-child(3) { animation-delay: .4s; }
.slide.is-active .slide-copy > *:nth-child(4) { animation-delay: .5s; }
.slide.is-active .slide-visual {
  animation: slideInVisual 1s var(--ease) .1s both;
}
@keyframes slideInCopy {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInVisual {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  transition: all .25s var(--ease);
  z-index: 10;
  box-shadow: 0 6px 20px -10px rgba(30,70,50,.25);
}
.slider-arrow:hover {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.slider-arrow svg { width: 18px; height: 18px; }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(30,70,50,.25);
  transition: all .3s var(--ease);
}
.slider-dots .dot:hover { background: rgba(30,70,50,.5); }
.slider-dots .dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--forest);
}
.seo-zones {
  margin-top: 5px;
  padding: 22px 24px;
  background: #f9fbfd;
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* Header alignment */
.seo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* Icon */
.seo-icon {
  width: 36px;
  height: 36px;
  background: var(--mint-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.seo-icon svg {
  width: 20px;
  height: 20px;
}

/* Title */
.seo-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Tags container */
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Tags */
.seo-tags span {
  font-size: 13px;
  padding: 7px 13px;
  background: var(--mint-deep);
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  color: #334155;
  transition: all 0.25s ease;
}

/* Hover (subtle, not aggressive) */
.seo-tags span:hover {
  background: var(--mint-deep);
  color: #fff;
  border-color: #0284c7;
  transform: translateY(-1px);
}

/* Mobile tweak */
@media (max-width: 576px) {
  .seo-zones {
    padding: 18px;
  }

  .seo-title {
    font-size: 14px;
  }
}
#zones-services::after {
  content: "|";
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}
/* ========================= INFO STRIP ========================= */
.info-strip {
  background: var(--ivory);
  margin: 0 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 22px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 40px -20px rgba(30,70,50,.1);
}
@media (min-width: 1336px) {
  .info-strip { max-width: 95vw; margin: 0 auto; }
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 10px;
}
.info-item + .info-item {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
html[dir="rtl"] .info-item + .info-item {
  border-left: none;
  border-right: 1px solid var(--line);
  padding-left: 10px;
  padding-right: 34px;
}
.info-icon {
  width: 46px; height: 46px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.info-value {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ========================= SERVICES GRID (legacy — kept for soins.html) ========================= */
.services {
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint-deep);
  box-shadow: 0 20px 40px -20px rgba(30,70,50,.15);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

/* ========================= CABINET SECTION ========================= */
.cabinet {
  padding: 0 0 90px;
}
.cabinet-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
}
.cabinet-copy {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cabinet-copy .eyebrow {
  color: var(--sage-muted);
}
.cabinet-copy h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cabinet-copy > p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 440px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  max-width: 440px;
}
.stat {
  display: flex;
  gap: 14px;
  align-items: center;
}
.stat-icon {
  width: 44px; height: 44px;
  color: var(--forest);
  flex-shrink: 0;
  display: grid; place-items: center;
}
.stat-icon svg { width: 100%; height: 100%; }
.stat-n {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
.cabinet-visual {
  position: relative;
  min-height: 420px;
  background: var(--tan-light);
}
.cabinet-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ========================= TESTIMONIALS ========================= */
.testimonials {
  padding: 80px 0;
  background: var(--cream-2);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.test-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.test-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: -36px;
  margin-bottom: 36px;
}
/* Review slider */
.review-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}
.review-track {
  display: flex;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.review-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 10px;
  box-sizing: border-box;
}
.review-slide .test-card {
  opacity: 1;
  transform: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-slide .test-body { flex: 1; }
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 16px -8px rgba(30,70,50,.2);
  transition: all .25s var(--ease);
}
.review-arrow:hover {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.review-arrow svg { width: 18px; height: 18px; }
.review-prev { left: 4px; }
.review-next { right: 4px; }

@media (max-width: 1080px) {
  .review-slide { flex: 0 0 50%; }
}
@media (max-width: 760px) {
  .review-slide { flex: 0 0 100%; }
  .review-prev { left: 2px; }
  .review-next { right: 2px; }
  .review-arrow { width: 36px; height: 36px; }
}

.test-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.test-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--tan);
}
.test-stars svg { width: 14px; height: 14px; fill: currentColor; }
.test-body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 22px;
  min-height: 80px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.test-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.test-role { font-size: 12px; color: var(--muted); }

/* ========================= DOCTOR CTA ========================= */
.doctor-cta {
  padding: 90px 0;
}
.doctor-card {
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.doctor-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--tan) 0%, transparent 65%);
  opacity: 0.15;
}
.doctor-card h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 16px;
  position: relative;
}
.doctor-card h2 em {
  color: var(--tan-light);
  font-style: italic;
}
.doctor-card p {
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  line-height: 1.7;
  position: relative;
}
.doctor-card .btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255,255,255,.4);
}
.doctor-card .btn-outline:hover {
  background: var(--ivory);
  color: var(--forest);
  border-color: var(--ivory);
}

.doctor-phone {
  text-align: center;
  background: rgba(255,255,255,.08);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
}
.doctor-phone small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 8px;
  font-weight: 600;
}
.doctor-phone a.phone {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ivory);
  margin-bottom: 18px;
}
.doctor-phone .btn {
  width: 100%;
  justify-content: center;
  background: var(--tan);
  color: var(--forest);
  border-color: var(--tan);
}
.doctor-phone .btn:hover {
  background: var(--ivory);
  color: var(--forest);
  border-color: var(--ivory);
}

/* ========================= FOOTER ========================= */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,.75);
  padding: 64px 0 24px;
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo .logo-text .t1,
.footer-logo .logo-text .t2 { color: var(--tan-light); }
.footer-logo .logo-text .t3 { color: rgba(255,255,255,.6); }
.footer-about {
  margin-top: 18px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: all .25s;
  color: rgba(255,255,255,.8);
}
.footer-socials a:hover {
  background: var(--tan);
  color: var(--forest);
}
.footer-socials svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-col a:hover { color: var(--tan-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
  line-height: 1.55;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--tan-light);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer-credit {
  text-align: center;
  padding-top: 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
}
.footer-credit a {
  color: rgba(255,255,255,.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.footer-credit a:hover {
  color: var(--tan-light);
}

/* ========================= RTL support ========================= */
html[dir="rtl"] .section-title::after,
html[dir="rtl"] .slide-copy,
html[dir="rtl"] .cabinet-copy,
html[dir="rtl"] .doctor-card h2,
html[dir="rtl"] .doctor-card p {
  text-align: right;
}
html[dir="rtl"] .slide-inner { grid-template-columns: 1.2fr 1fr; direction: rtl; }
html[dir="rtl"] .slide-inner::before { left: auto; right: -60px; }

/* RTL: keep phone numbers, buttons, and actions LTR */
html[dir="rtl"] .slide-actions,
html[dir="rtl"] .test-actions,
html[dir="rtl"] .lsm-cta,
html[dir="rtl"] .spec-hero-actions {
  direction: ltr;
}
html[dir="rtl"] .slide-actions .btn,
html[dir="rtl"] .lsm-cta .btn {
  direction: ltr;
}
html[dir="rtl"] .info-value[dir="ltr"],
html[dir="rtl"] .phone[dir="ltr"],
html[dir="rtl"] .doctor-phone .phone {
  direction: ltr;
  unicode-bidi: embed;
}
/* RTL: keep hours table numbers LTR */
html[dir="rtl"] .hc-row span:last-child,
html[dir="rtl"] .info-value span {
  direction: ltr;
  unicode-bidi: embed;
}
/* RTL: medecin layout reverse */
html[dir="rtl"] .medecin-layout { direction: rtl; }
html[dir="rtl"] .medecin-copy { text-align: right; }
html[dir="rtl"] .medecin-quote { border-left: none; border-right: 3px solid var(--forest); padding-left: 0; padding-right: 20px; }
/* RTL: audience */
html[dir="rtl"] .audience-copy { text-align: right; }
/* RTL: nav actions keep LTR */
html[dir="rtl"] .nav-actions { direction: ltr; }
html[dir="rtl"] .btn-rdv-top { direction: ltr; }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1080px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-inner { grid-template-columns: 1fr; position: relative; }
  .slide-visual { position: absolute; inset: 0; z-index: 0; }
  .slide-visual img { width: 100%; height: 100%; object-fit: cover; }
  .slide-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,70,50,.85) 0%, rgba(30,70,50,.6) 100%); }
  .slide-copy { padding: 64px 40px; position: relative; z-index: 2; color: var(--ivory); }
  .slide-copy .eyebrow { color: var(--tan-light); }
  .slide-copy .slide-title, .slide-copy .slide-title em { color: var(--ivory); }
  .slide-copy .slide-sub { color: rgba(255,255,255,.85); }
  .slide-inner::before { display: none; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .info-item:nth-child(3) { border-left: none; padding-left: 10px; }
  .cabinet-card { grid-template-columns: 1fr; }
  .cabinet-visual { min-height: 320px; }
  .doctor-card { grid-template-columns: 1fr; padding: 48px; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  body.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory);
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  body.menu-open .nav-links > li { width: 100%; }
  body.menu-open .nav-links a { padding: 12px 0; width: 100%; }
  body.menu-open .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0 16px;
    display: none;
  }
  body.menu-open .dropdown-menu.is-open {
    display: block;
  }
  .nav-buttons-right{
    gap: 8px;
  }
  .nav-actions { flex-direction: row; }
  .btn-phone-top span { display: none; }
  .info-strip { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .info-item + .info-item { border: none; padding-left: 10px; }
  html[dir="rtl"] .info-item + .info-item { padding-right: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .slide-copy { padding: 56px 28px; }
  .slides { height: min(480px, 70vh); min-height: 380px; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .cabinet-copy { padding: 40px 28px; }
  .four-services { padding: 56px 0 0; }
  .four-services-grid { grid-template-columns: repeat(2, 1fr); }
  .medecin-layout { grid-template-columns: 1fr; gap: 28px; }
  .medecin-photo { max-width: 100%; }
  .le-medecin { padding: 56px 0; }
  .testimonials { padding: 56px 0; }
  .test-card { padding: 24px; }
  .doctor-card { padding: 36px 28px; }
  .doctor-cta { padding: 56px 0; }
  .home-contact { padding: 56px 0; }
  .home-contact-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ========================= 4 SERVICES ========================= */
.four-services {
  padding: 80px 0 0;
}
.four-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fs-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all .3s var(--ease);
}
.fs-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint-deep);
  box-shadow: 0 20px 40px -20px rgba(30,70,50,.15);
}
.fs-icon {
  width: 52px; height: 52px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.fs-icon svg { width: 24px; height: 24px; }
.fs-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.25;
  color: var(--ink);
}
.fs-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
/* Colored icon variants */
.fs-icon--red { background: #FDEAEA; color: #C0392B; }
.fs-icon--green { background: var(--mint); color: var(--forest); }
.fs-icon--blue { background: #E8F0FE; color: #2B6CB0; }
.fs-icon--teal { background: #E0F5F0; color: #1A7A6D; }

@media (max-width: 1080px) {
  .four-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .four-services-grid { grid-template-columns: 1fr; }
}

/* ========================= MÉDECINE COMPLÈTE ========================= */
.medecine-complete {
  padding: 80px 0;
  background: var(--cream-2);
}
.mc-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  align-items: start;
}
.mc-featured {
  background: linear-gradient(160deg, #1E4632 0%, #2A5A42 50%, #1E4632 100%);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mc-featured-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: rgba(255,255,255,.85);
}
.mc-featured-icon svg { width: 24px; height: 24px; }
.mc-featured h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 18px;
  line-height: 1.2;
}
.mc-featured p {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}
.mc-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tan-light);
  font-size: 14px;
  font-weight: 600;
  transition: gap .25s var(--ease);
}
.mc-featured-link:hover { gap: 12px; }
.mc-featured-link svg { width: 16px; height: 16px; }

.mc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mc-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: all .3s var(--ease);
}
.mc-card:hover {
  transform: translateY(-3px);
  border-color: var(--mint-deep);
  box-shadow: 0 12px 30px -15px rgba(30,70,50,.15);
}
.mc-card-icon {
  width: 44px; height: 44px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 10px;
  display: grid; place-items: center;
}
.mc-card-icon svg { width: 20px; height: 20px; }
.mc-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.mc-bilan-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: stretch;
}
.mc-bilan-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mc-bilan-right .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.mc-bilan-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 1;
  min-height: 220px;
  background: var(--cream);
}
.mc-bilan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1080px) {
  .mc-bilan-layout { grid-template-columns: 1fr; }
}

.mc-card--link {
  background: var(--forest);
  border-color: var(--forest);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.mc-card--link span {
  color: var(--ivory);
  font-size: 16px;
  font-weight: 600;
}
.mc-card--link svg { width: 20px; height: 20px; color: var(--ivory); }
.mc-card--link:hover {
  background: var(--forest-hover);
  border-color: var(--forest-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -15px rgba(30,70,50,.4);
}
.mc-card--link:hover span { color: var(--ivory); }
.mc-card--link:hover svg { color: var(--ivory); }

@media (max-width: 1080px) {
  .mc-layout { grid-template-columns: 1fr; }
  .mc-grid { grid-template-columns: repeat(3, 1fr); }
  .mc-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .mc-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-grid--4 { grid-template-columns: 1fr; }
}

/* ========================= LE MÉDECIN ========================= */
.le-medecin {
  padding: 80px 0;
  background: var(--cream);
}
.medecin-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.medecin-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-2);
}
.medecin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.medecin-copy .eyebrow {
  color: var(--sage-muted);
  background: var(--mint);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  display: inline-block;
}
.medecin-copy h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.medecin-copy > p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 24px;
}
.medecin-quote {
  border-left: 3px solid var(--forest);
  padding: 16px 0 16px 20px;
  margin: 0 0 28px 0;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.medecin-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.medecin-sig-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.medecin-sig-logo svg { width: 100%; height: 100%; }
.medecin-sig strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.medecin-sig span {
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .medecin-layout { grid-template-columns: 1fr; gap: 36px; }
  .medecin-photo { max-width: 400px; }
}

/* ========================= À QUI JE M'ADRESSE ========================= */
.audience {
  padding: 80px 0;
  background: var(--cream);
}
.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.audience-copy .eyebrow { color: var(--sage-muted); }
.audience-copy h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.audience-copy p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 12px;
}
.audience-copy strong { color: var(--ink); font-weight: 600; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.audience-card {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: all .3s var(--ease);
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -15px rgba(30,70,50,.1);
}
.audience-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 6px;
  font-style: italic;
}
.audience-card span {
  font-size: 13px;
  color: var(--muted);
}
.audience-card--highlight {
  background: var(--forest);
}
.audience-card--highlight strong {
  color: var(--tan-light);
}
.audience-card--highlight span {
  color: rgba(255,255,255,.8);
}

@media (max-width: 1080px) {
  .audience-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ========================= HOME CONTACT + MAP ========================= */
.home-contact {
  padding: 80px 0;
  background: var(--cream-2);
}
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
}
.home-contact-card {
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.home-contact-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 28px;
  line-height: 1.3;
  font-style: italic;
}
.hc-block { margin-bottom: 22px; }
.hc-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.hc-value { color: rgba(255,255,255,.92); line-height: 1.55; font-size: 14.5px; }
.hc-value a { color: rgba(255,255,255,.92); }
.hc-value a:hover { color: var(--tan-light); }
.hc-hours { margin-top: 8px; }
.hc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 4px;
  background: rgba(255,255,255,.05);
  transition: background .2s;
}
.hc-row:hover { background: rgba(255,255,255,.1); }
.hc-row--closed {
  background: rgba(220,80,60,.25);
  color: rgba(255,200,190,.9);
}
.hc-row--closed:hover { background: rgba(220,80,60,.35); }
.home-contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  min-height: 520px;
}
.home-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}
/* home-contact-grid collapse is handled in the 1080px breakpoint */

/* ========================= 560px — small mobile ========================= */
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .section-title { margin-bottom: 32px; font-size: 24px; }
  .hero { padding: 12px 0 36px; }
  .hero-slider { margin: 0 16px; border-radius: var(--radius-md); }
  .slides { height: min(420px, 65vh); min-height: 340px; }
  .slide-copy { padding: 36px 20px; }
  .slide-title { font-size: 28px; }
  .slide-sub { font-size: 14px; margin-bottom: 24px; }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .slider-arrow { width: 32px; height: 32px; opacity: 0.7; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .slider-arrow svg { width: 14px; height: 14px; }

  /* Full-bleed image slide */
  .slide--fullimg { min-height: 260px; }

  .info-strip { margin: 0 16px; padding: 16px; gap: 12px; }
  .info-icon { width: 38px; height: 38px; }

  .four-services { padding: 56px 0 0; }

  .mc-featured { padding: 28px 24px; }
  .mc-grid { grid-template-columns: 1fr; }

  .medecin-layout { gap: 28px; }
  .medecin-photo { max-width: 100%; }
  .medecin-copy h2 { font-size: 24px; }
  .medecin-quote { font-size: 14px; padding: 12px 0 12px 16px; }

  .audience { padding: 56px 0; }
  .audience-copy h2 { font-size: 26px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 22px 18px; }

  .cabinet { padding: 0 0 56px; }
  .cabinet-copy { padding: 28px 20px; }
  .cabinet-copy h2 { font-size: 22px; }
  .cabinet-visual { min-height: 240px; }

  .testimonials { padding: 56px 0; }
  .test-card { padding: 22px; }
  .test-body { font-size: 13.5px; min-height: auto; }

  .doctor-cta { padding: 56px 0; }
  .doctor-card { padding: 28px 20px; gap: 28px; }
  .doctor-phone a.phone { font-size: 24px; }
  .doctor-phone { padding: 24px 20px; }

  .home-contact { padding: 56px 0; }
  .home-contact-card { padding: 28px 20px; }
  .home-contact-card h3 { font-size: 20px; }
  .home-contact-map { min-height: 320px; }
  .home-contact-map iframe { min-height: 320px; }
  .home-contact-grid{
  grid-template-columns: 1fr;
  }

  .footer { padding: 48px 0 20px; }
  .footer-grid { gap: 28px; padding-bottom: 28px; }
  .footer-col h4 { font-size: 15px; margin-bottom: 14px; }

  .nav { padding: 12px 0; }
  .logo-img { height: 52px; padding: 3px; border-radius: 8px; }
  .logo-mark { width: 44px; height: 44px; }
  .logo-text .t2 { font-size: 16px; }
  .nav-actions .btn-rdv-top { padding: 9px 14px; font-size: 12px; }
  .nav-actions .btn-phone-top { padding: 9px 14px; font-size: 12px; }
}

/* ========================= LOCAL SEO MODERN ========================= */
.local-seo-modern {
  padding: 80px 0;
  background: var(--cream);
}
.lsm-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.lsm-left .eyebrow { color: var(--sage-muted); }
.lsm-left h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.lsm-left h2 em { color: var(--tan); font-style: italic; }
.lsm-left > p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 24px;
}
.lsm-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.lsm-services a {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: var(--mint);
  color: var(--forest);
  transition: all .2s;
}
.lsm-services a:hover {
  background: var(--forest);
  color: var(--ivory);
}
.lsm-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lsm-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lsm-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: all .3s var(--ease);
}
.lsm-card:hover {
  border-color: var(--mint-deep);
  box-shadow: 0 8px 24px -12px rgba(30,70,50,.12);
}
.lsm-card-icon {
  width: 42px; height: 42px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.lsm-card-icon svg { width: 18px; height: 18px; }
.lsm-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.lsm-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1080px) {
  .lsm-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .local-seo-modern { padding: 56px 0; }
  .lsm-cta { flex-direction: column; }
  .lsm-cta .btn { width: 100%; justify-content: center; }
}

/* ========================= REVEAL ========================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
