*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal:    #0A7B8E;
  --teal-d:  #065A6A;
  --teal-l:  #E3F4F6;
  --teal-m:  #B0DEE4;
  --cream:   #FAF7F2;
  --sand:    #EDE5D5;
  --sand-d:  #C9B99A;
  --warm:    #B5462A;
  --ink:     #1C1C1C;
  --slate:   #4A5A5E;
  --mist:    #7A8C91;
  --white:   #FFFFFF;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Jost', system-ui, sans-serif;
  --r:       14px;
  --shadow:  0 8px 40px rgba(10,123,142,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 5vw;
  background: rgba(250,247,242,0.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10,123,142,0.07);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 30px rgba(10,123,142,0.09); }
.logo-wrap { display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: var(--serif); font-size: 1.1rem; color: var(--teal-d); font-weight: 500; line-height: 1.2; }
.logo-text small { display: block; font-family: var(--sans); font-size: 0.65rem; font-weight: 400; color: var(--mist); letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.85rem; font-weight: 400; color: var(--slate); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-btn { font-size: 0.78rem; font-weight: 500; color: var(--mist); padding: 4px 8px; border-radius: 6px; transition: all 0.2s; }
.lang-btn.on { background: var(--teal-l); color: var(--teal); }
.nav-btn {
  background: var(--teal); color: var(--white);
  padding: 10px 20px; border-radius: 100px; font-size: 0.82rem; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.nav-btn:hover { background: var(--teal-d); transform: translateY(-1px); }
.burger { display: none; gap: 5px; flex-direction: column; padding: 5px; }
.burger span { width: 20px; height: 1.5px; background: var(--ink); display: block; border-radius: 2px; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 70px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  position: relative;
}
.hero-l {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 6vw 5rem 8vw;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.44rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 2rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--teal); }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 400; line-height: 1.1; color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-desc {
  font-size: 1rem; color: var(--slate); line-height: 1.75;
  max-width: 440px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 3.5rem; }
.btn-p {
  background: var(--teal); color: var(--white);
  padding: 13px 26px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-p:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,123,142,0.28); }
.btn-o {
  font-size: 0.88rem; color: var(--teal); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: gap 0.2s;
}
.btn-o:hover { gap: 10px; }
.trust-bar { display: flex; gap: 2rem; padding-top: 2.5rem; border-top: 1px solid var(--sand); }
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-num { font-family: var(--serif); font-size: 1.9rem; color: var(--teal-d); font-weight: 500; }
.trust-lbl { font-size: 0.72rem; color: var(--mist); text-transform: uppercase; letter-spacing: 0.05em; }

/* Hero mosaic */
.hero-r {
  display: grid; grid-template-rows: 1fr 1fr; grid-template-columns: 1fr 1fr;
  gap: 4px; overflow: hidden;
}
.hero-img {
  overflow: hidden; position: relative;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-img:hover img { transform: scale(1.04); }
.hero-img-main { grid-row: span 2; }
.hero-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,90,106,0.85), transparent);
  padding: 1rem; color: var(--white); font-size: 0.72rem;
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500;
  opacity: 0; transition: opacity 0.3s;
}
.hero-img:hover .hero-img-caption { opacity: 1; }

/* ── NETWORK STRIP ──────────────────────────────────────────── */
.network-strip {
  background: var(--teal-d); color: var(--white);
  padding: 2rem 8vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.network-strip p { font-size: 0.85rem; color: rgba(255,255,255,0.65); max-width: 380px; font-weight: 300; line-height: 1.6; }
.network-nums { display: flex; gap: 3rem; flex-wrap: wrap; }
.nnum { text-align: center; }
.nnum strong { display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--teal-m); font-weight: 400; }
.nnum span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); }

/* ── SECTION BASE ──────────────────────────────────────────── */
section.pad { padding: 5.5rem 8vw; }
.sec-label {
  font-size: 0.72rem; font-weight: 500; color: var(--warm);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.sec-label::after { content: ''; flex: 0 0 24px; height: 1px; background: var(--warm); }
.sec-title {
  font-family: var(--serif); font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 400; line-height: 1.18; color: var(--ink); margin-bottom: 1rem;
}
.sec-title em { font-style: italic; color: var(--teal); }
.sec-sub { font-size: 0.95rem; color: var(--slate); line-height: 1.75; max-width: 500px; font-weight: 300; }

/* ── DESTINATION MARTINIQUE ─────────────────────────────────── */
.destination { background: var(--white); }
.dest-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; margin-top: 3.5rem;
}
.dest-photo { position: relative; }
.dest-photo-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 20px;
}
.dest-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--r);
  padding: 1rem 1.25rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.75rem;
  max-width: 220px;
}
.dest-badge-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--teal-l); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.dest-badge h4 { font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.dest-badge p { font-size: 0.75rem; color: var(--mist); }
.dest-points { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.dest-point {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.25rem; border-radius: var(--r);
  border: 1px solid var(--sand); transition: border-color 0.2s, background 0.2s;
}
.dest-point:hover { border-color: var(--teal-m); background: var(--teal-l); }
.dest-point-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.dest-point h4 { font-size: 0.9rem; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.dest-point p { font-size: 0.82rem; color: var(--mist); line-height: 1.6; }

/* ── SERVICES ────────────────────────────────────────────────── */
.services { background: var(--cream); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.svc-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(10,123,142,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.svc-img { width: 100%; height: 180px; object-fit: cover; }
.svc-body { padding: 1.5rem; }
.svc-body h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.svc-body p { font-size: 0.82rem; color: var(--mist); line-height: 1.65; font-weight: 300; margin-bottom: 1rem; }
.svc-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--teal-l); color: var(--teal);
  font-size: 0.75rem; font-weight: 500; padding: 4px 10px; border-radius: 100px;
}

/* ── PARCOURS ────────────────────────────────────────────────── */
.parcours { background: var(--white); }
.parcours-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start; margin-top: 3.5rem;
}
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: flex; gap: 1.25rem; position: relative; cursor: pointer;
  padding: 1.25rem; border-radius: var(--r); transition: background 0.2s;
}
.step-row:hover, .step-row.active { background: var(--teal-l); }
.step-row:not(:last-child)::before {
  content: '';
  position: absolute; left: 2rem; top: 4rem; bottom: -1.25rem;
  width: 1px; background: var(--sand);
}
.step-n {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,123,142,0.3);
  transition: transform 0.2s;
}
.step-row:hover .step-n, .step-row.active .step-n { transform: scale(1.1); }
.step-txt h4 { font-size: 0.95rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; padding-top: 10px; }
.step-txt p { font-size: 0.82rem; color: var(--slate); line-height: 1.6; font-weight: 300; }
.parcours-visual { position: sticky; top: 90px; }
.parcours-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 20px; }
.parcours-overlay {
  background: var(--white); border-radius: var(--r);
  padding: 1.25rem; margin-top: -3rem; margin-left: 2rem; margin-right: 2rem;
  position: relative; z-index: 2; box-shadow: var(--shadow);
}
.parcours-overlay p { font-size: 0.8rem; color: var(--slate); font-weight: 300; line-height: 1.6; }
.parcours-overlay strong { color: var(--teal); font-weight: 500; }

/* ── MÉDECINE D'EXCELLENCE ──────────────────────────────────── */
.excellence { background: var(--teal-d); color: var(--white); }
.excellence .sec-title { color: var(--white); }
.excellence .sec-sub { color: rgba(255,255,255,0.6); max-width: 560px; }
.excellence .sec-label { color: var(--teal-m); }
.excellence .sec-label::after { background: var(--teal-m); }
.exc-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  align-items: center; margin-top: 3.5rem;
}
.exc-items { display: flex; flex-direction: column; gap: 1rem; }
.exc-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 1.1rem 1.25rem;
  transition: background 0.2s;
}
.exc-item:hover { background: rgba(255,255,255,0.1); }
.exc-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.exc-item h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 3px; color: var(--white); }
.exc-item p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.exc-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.exc-photo { border-radius: 12px; overflow: hidden; }
.exc-photo img { width: 100%; height: 160px; object-fit: cover; transition: transform 0.6s ease; }
.exc-photo:hover img { transform: scale(1.05); }
.exc-photo-tall img { height: 330px; }


/* ── MÉDECINS & RÉFÉRENTS ───────────────────────────────────── */
.for-doctors {
  padding: 5.5rem 8vw;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 4.5rem;
  align-items: center;
  background: var(--cream);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.doc-left { min-width: 0; }
.doc-left .sec-title { max-width: 680px; margin-bottom: 1rem; }
.doc-left .sec-sub { max-width: 650px; }
.doc-benefits { display: grid; gap: 0.9rem; margin-top: 2rem; }
.doc-benefit {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(10,123,142,0.10);
  border-radius: var(--r);
  box-shadow: 0 4px 18px rgba(10,123,142,0.05);
}
.doc-benefit-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--teal-l);
  font-size: 1.25rem;
}
.doc-benefit strong { display:block; font-size:0.9rem; font-weight:600; color:var(--ink); margin:0.15rem 0 0.25rem; }
.doc-benefit p { font-size:0.8rem; line-height:1.55; color:var(--mist); font-weight:300; }
.doc-right {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.doc-right .sec-label { margin-bottom: 0.75rem; }
.doc-right .sec-title { margin-bottom: 0.75rem; }
.doc-right .sec-sub { max-width: none; }
.doc-photo {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin: 1.25rem 0;
}
.doc-cta {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.doc-cta:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,123,142,0.2); }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact-sec {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 5rem; align-items: start;
  background: var(--white);
}
.contact-info { padding-top: 0.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.35rem; }
.cd-icon { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; background: var(--teal-l); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.cd-text h4 { font-size: 0.78rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.cd-text p, .cd-text a { font-size: 0.8rem; line-height: 1.55; color: var(--slate); }
.cd-text a:hover { color: var(--teal); }
.contact-form-wrap { background: var(--cream); border: 1px solid var(--sand); border-radius: 18px; padding: 2rem; box-shadow: var(--shadow); }
.form-head { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 0.45rem; }
.form-sub { font-size: 0.78rem; line-height: 1.6; color: var(--slate); margin-bottom: 1.5rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg > label { display: block; font-size: 0.73rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.fg input, .fg select, .fg textarea { width: 100%; box-sizing: border-box; border: 1px solid var(--sand-d); border-radius: 8px; background: var(--white); color: var(--ink); font: inherit; font-size: 0.82rem; padding: 11px 12px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.fg input, .fg select { height: 44px; }
.fg textarea { resize: vertical; min-height: 90px; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,123,142,0.07); }
.form-rgpd { font-size: 0.73rem; color: var(--mist); line-height: 1.55; margin-bottom: 1.25rem; }
.form-rgpd a { color: var(--teal); }
.form-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; margin-top: 0.25rem; }
.btn-submit { width: auto; min-width: 190px; background: var(--teal); color: var(--white); padding: 13px 24px; border-radius: 100px; font-size: 0.92rem; font-weight: 500; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.btn-submit:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,123,142,0.25); }
.radio-group { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; align-items: stretch; }
.radio-opt { position: relative; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.82rem; color: var(--slate); padding: 10px 34px; border: 1px solid var(--sand); border-radius: 8px; background: var(--cream); min-height: 46px; text-align: center; box-sizing: border-box; }
.radio-opt:hover { border-color: var(--teal-m); background: var(--teal-l); }
.radio-opt input { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); margin: 0; accent-color: var(--teal); width: 16px; height: 16px; }
.radio-opt span { display: block; width: 100%; text-align: center; line-height: 1.25; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.5);
  padding: 4rem 8vw 2rem;
}
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-brand .ft-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.ft-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 240px; }
.photo-credit { margin-top: 0.75rem; font-size: 0.68rem !important; color: rgba(255,255,255,0.35); }
.photo-credit a { color: var(--teal-m); text-decoration: underline; }
.ft-col h5 { font-size: 0.72rem; font-weight: 500; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.ft-col a { display: block; font-size: 0.82rem; margin-bottom: 0.6rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.ft-col a:hover { color: var(--white); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; font-size: 0.75rem; flex-wrap: wrap; gap: 0.75rem;
}
.ft-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; margin-left: 1.5rem; }
.ft-bottom a:hover { color: var(--white); }

/* ── COOKIE ─────────────────────────────────────────────────── */
.cookie {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 999;
  background: var(--ink); border-radius: var(--r); padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
  animation: up 0.5s ease 0.8s both;
}
@keyframes up { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.cookie p { font-size: 0.8rem; color: rgba(255,255,255,0.65); flex: 1; min-width: 180px; }
.cookie p a { color: var(--teal-m); }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.ck-yes { background: var(--teal); color: var(--white); padding: 7px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 500; }
.ck-no { color: rgba(255,255,255,0.4); font-size: 0.8rem; padding: 7px 10px; transition: color 0.2s; }
.ck-no:hover { color: var(--white); }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mob-nav {
  position: fixed; inset: 0; z-index: 98;
  background: var(--cream); padding: 90px 6vw 3rem;
  display: flex; flex-direction: column; gap: 1.75rem;
  transform: translateX(100%); transition: transform 0.35s ease;
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }

/* ── REVEAL ─────────────────────────────────────────────────── */
.r { opacity: 0; transform: translateY(22px); transition: opacity 0.7s, transform 0.7s; }
.r.v { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
/* ── RESPONSIVE V4 ─────────────────────────────────────────── */
@media (max-width: 1180px) {
  nav { padding: 0 3.5vw; }
  .nav-links { gap: 1.1rem; }
  .hero { grid-template-columns: 1fr 0.82fr; }
  .hero-l { padding-left: 6vw; padding-right: 4vw; }
  .dest-grid { gap: 3rem; }
}
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: calc(100svh - 70px); }
  .hero h1 { font-size: clamp(2.25rem, 4vw, 3.1rem); }
  .hero-l { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .hero-r { min-height: 560px; }
}
/* Tablet landscape: keep the visual hero instead of switching too early to mobile. */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr 0.72fr; min-height: 620px; }
  .hero-l { padding: 3rem 4vw; }
  .hero-r { min-height: 620px; }
  .hero h1 { font-size: clamp(2rem, 4.2vw, 2.8rem); }
  .nav-links { display: none; }
  .nav-right .nav-btn { display: none; }
  .burger { display: flex; }
  .dest-grid, .exc-grid, .parcours-inner, .contact-sec, .for-doctors { grid-template-columns: 1fr; }
  .for-doctors { grid-template-rows: auto auto; padding: 4.5rem 6vw; gap: 2.5rem; }
  .parcours-visual { position: static; }
  .dest-badge { position: static; margin-top: 1rem; }
}
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-r { display: none; }
  .hero-l { padding: 5rem 6vw 4rem; }
  .trust-bar { gap: 1.5rem; }
}
@media (max-width: 640px) {
  section.pad { padding: 4rem 5vw; }
  .svc-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .network-nums { gap: 1.5rem; }
  .ft-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.1rem; flex-wrap: wrap; }
  .trust-num { font-size: 1.6rem; }
  .for-doctors { padding: 4rem 5vw; gap: 2rem; }
  .doc-right { padding: 1.35rem; }
  .doc-photo { height: 220px; }
  .hero-btns { align-items: stretch; flex-direction: column; }
  .btn-p, .btn-o { width: fit-content; }
  .form-actions { justify-content: stretch; }
  .btn-submit { width: 100%; min-width: 0; }
  .radio-group { grid-template-columns: 1fr; } .radio-opt { min-height: 44px; }
}
@media (max-height: 700px) and (min-width: 761px) {
  .hero-l { padding-top: 2.25rem; padding-bottom: 2.25rem; }
  .eyebrow { margin-bottom: 1rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero-desc { margin-bottom: 1.5rem; }
  .hero-btns { margin-bottom: 1.5rem; }
  .trust-bar { padding-top: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .r { opacity: 1; transform: none; }
}
