@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #071a2a;
  --ink-soft: #17334a;
  --blue: #0b5bd3;
  --blue-dark: #0849a8;
  --ice: #eaf4ff;
  --cream: #f7f5ef;
  --paper: #ffffff;
  --line: #dbe4eb;
  --muted: #607386;
  --green: #1f9d62;
  --shadow: 0 24px 60px rgba(7, 26, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  padding: 12px 18px;
  background: var(--paper);
  border-radius: 10px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.site-header {
  height: 80px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: white;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
  text-decoration: none;
}
.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 11px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue);
}
.brand-mark svg { width: 28px; stroke-width: 2.3; }
.site-header nav { display: flex; gap: 30px; margin-left: auto; }
.site-header nav a { color: #c9d4dc; text-decoration: none; font-size: 14px; }
.site-header nav a:hover { color: white; }

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; background: white; color: var(--ink); font-size: 14px; }
.button-primary { width: 100%; background: var(--blue); color: white; box-shadow: 0 11px 28px rgba(11, 91, 211, .22); }
.button-primary:hover { background: var(--blue-dark); }
.button svg { width: 20px; }

.hero {
  min-height: 720px;
  padding: 72px clamp(24px, 7vw, 112px) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .78fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(7, 26, 42, .97) 5%, rgba(9, 41, 65, .94) 56%, rgba(10, 55, 83, .92) 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  width: 780px;
  height: 440px;
  left: -120px;
  bottom: -220px;
  opacity: .13;
  transform: rotate(-7deg);
  background: linear-gradient(135deg, transparent 49%, #8ec6ff 50% 51%, transparent 52%), linear-gradient(30deg, transparent 49%, #8ec6ff 50% 51%, transparent 52%);
}
.hero::after {
  width: 420px;
  height: 420px;
  right: -160px;
  top: -190px;
  border: 80px solid rgba(47, 133, 255, .10);
  border-radius: 50%;
}
.hero-copy, .booking-card { position: relative; z-index: 1; }
.eyebrow, .step-label {
  margin: 0 0 16px;
  color: #75b8ff;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.05em;
}
.hero h1 span { color: #9bc9ff; }
.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #c7d5df;
  font-size: 18px;
  line-height: 1.65;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 17px 26px; margin-top: 32px; color: #dce6ec; font-size: 13px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(73, 170, 255, .16); color: #8dc8ff; font-style: normal; font-weight: 700; }

.booking-card {
  width: 100%;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.booking-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; margin-bottom: 24px; }
.booking-heading .step-label, .summary .step-label { color: var(--blue); margin-bottom: 5px; }
.booking-heading h2, .summary h3 { margin: 0; font-family: Manrope, sans-serif; font-size: 25px; letter-spacing: -.025em; }
.secure-note { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); font-size: 11px; white-space: nowrap; }
.secure-note svg { width: 14px; }

form { display: grid; grid-template-columns: 1fr; gap: 13px; }
.trip-kind { min-width: 0; margin: 0 0 2px; padding: 0; border: 0; }
.trip-kind legend { margin-bottom: 7px; font-size: 14px; font-weight: 700; }
.trip-kind-options { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8px; }
.trip-kind-options label { min-width: 0; cursor: pointer; }
.trip-kind-options input { position: absolute; opacity: 0; pointer-events: none; }
.trip-kind-options span {
  min-height: 44px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: border .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.trip-kind-options input:checked + span { color: var(--blue-dark); background: var(--ice); border-color: #91bced; }
.trip-kind-options input:focus-visible + span { box-shadow: 0 0 0 4px rgba(11, 91, 211, .14); }
.medical-hint { margin: 8px 2px 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.client-details { padding: 18px; border: 1px solid #cddbe5; border-radius: 15px; background: #f5f9fc; }
.medical-details { padding: 18px; border: 1px solid #bdd9cd; border-radius: 15px; background: #f1faf6; }
.medical-details-heading { margin-bottom: 14px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.medical-details-heading .step-label { margin: 0 0 3px; color: #167958; }
.medical-details-heading h3 { margin: 0; font-family: Manrope, sans-serif; font-size: 17px; }
.medical-details-heading > span { padding: 5px 8px; color: #0c6849; background: #dcefe6; border-radius: 999px; font-size: 10px; font-weight: 800; white-space: nowrap; }
.client-details-heading .step-label { color: var(--blue); }
.client-details-heading > span { color: var(--blue-dark); background: var(--ice); }
.medical-form-row { grid-template-columns: .8fr 1.2fr; }
.medical-form-row + .medical-form-row { margin-top: 12px; }
.sensitive-note { margin: 12px 1px 0; color: #567267; font-size: 11px; line-height: 1.5; }
.sensitive-note strong { color: #31594a; }
.consent-field { margin-top: 12px; }
.consent-row {
  margin: 0 !important;
  padding: 12px;
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: #31594a;
  background: rgba(255,255,255,.72);
  border: 1px solid #bdd9cd;
  border-radius: 11px;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.45;
  cursor: pointer;
}
.consent-row input { width: 17px; height: 17px; margin: 0; flex: 0 0 auto; accent-color: var(--green); }
.consent-field.invalid .consent-row { border-color: #d44c55; background: #fff7f7; }
.field { min-width: 0; }
.field label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 700; }
.field label small { color: var(--muted); font-size: 10px; font-weight: 500; }
.input-wrap { height: 53px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 13px; background: #fbfcfd; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.input-wrap:focus-within { border-color: var(--blue); background: white; box-shadow: 0 0 0 4px rgba(11, 91, 211, .10); }
.input-wrap svg { flex: 0 0 19px; width: 19px; margin-left: 15px; color: var(--blue); }
.input-wrap input { width: 100%; min-width: 0; height: 100%; padding: 0 14px 0 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 15px; }
.input-wrap input::placeholder { color: #9ba8b3; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.address-block { padding: 16px; background: #f8fbff; border: 1px solid #dce9f7; border-radius: 16px; }
.address-block-heading { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.address-block-heading > span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--blue); border-radius: 50%; font-size: 12px; font-weight: 800; }
.address-block-heading h3 { margin: 0; color: var(--blue-dark); font-family: Manrope, sans-serif; font-size: 15px; }
.address-locality-row { grid-template-columns: .7fr 1.3fr; margin-top: 12px; }
.swap-button { width: 32px; height: 32px; margin: -7px 12px -9px auto; display: grid; place-items: center; position: relative; z-index: 2; color: var(--blue); background: var(--ice); border: 4px solid white; border-radius: 50%; cursor: pointer; }
.swap-button svg { width: 16px; }
.error { display: none; margin: 5px 0 0 2px; color: #c83f46; font-size: 11px; }
.field.invalid .input-wrap { border-color: #d44c55; }
.field.invalid .error { display: block; }
.privacy-line { margin: -2px 0 0; color: #81909d; text-align: center; font-size: 11px; }
.privacy-line a { color: var(--blue-dark); font-weight: 700; }

.summary { animation: rise .35s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }
.summary-success { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.summary-success > span { width: 44px; height: 44px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: 22px; }
.summary dl { margin: 0 0 18px; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.summary dl div { padding: 11px 14px; display: grid; grid-template-columns: 95px 1fr; gap: 8px; border-bottom: 1px solid var(--line); }
.summary dl div:last-child { border-bottom: 0; }
.summary dt { color: var(--muted); font-size: 12px; }
.summary dd { margin: 0; font-size: 13px; font-weight: 700; text-align: right; overflow-wrap: anywhere; }
.summary-note { margin: 0 0 15px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.sensitive-summary-note { margin: -5px 0 15px; padding: 10px 12px; color: #655330; background: #fff8e7; border: 1px solid #ead7a6; border-radius: 10px; font-size: 11px; line-height: 1.5; }
.delivery-actions { display: grid; gap: 10px; }
.button-whatsapp { width: 100%; color: white; background: #168f5b; }
.button-whatsapp:hover { background: #0d7d4c; }
.button-email { width: 100%; color: var(--blue-dark); background: var(--ice); border: 1px solid #91bced; }
.button-email:hover { background: #dbeeff; }
.summary-actions { display: flex; justify-content: center; gap: 20px; margin-top: 14px; }
.text-button { padding: 3px; color: var(--blue); background: none; border: 0; font-size: 12px; font-weight: 700; cursor: pointer; }
.copy-status { min-height: 16px; margin: 5px 0 0; color: var(--green); text-align: center; font-size: 11px; }

.services-section { padding: 105px clamp(24px, 7vw, 112px) 112px; background: var(--cream); }
.section-heading { margin-bottom: 46px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; }
.section-heading .eyebrow, .area-copy .eyebrow { color: var(--blue); }
.section-heading h2, .area-copy h2 { max-width: 740px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(36px, 4vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { min-height: 330px; padding: 29px; display: flex; flex-direction: column; position: relative; overflow: hidden; border: 1px solid #e0e4e6; border-radius: 22px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(7, 26, 42, .09); }
.service-number { position: absolute; top: 27px; right: 28px; color: #9daab4; font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800; }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 17px; }
.service-icon svg { width: 38px; stroke-width: 1.7; }
.medical-card .service-icon { background: #167958; }
.ski-card .service-icon { color: var(--ink); background: #dcecff; }
.local-card .service-icon { background: var(--ink); }
.service-tag { align-self: flex-start; margin-top: 18px; padding: 6px 9px; color: #0c6849; background: #e1f5ec; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.service-card h3 { margin: 28px 0 10px; font-family: Manrope, sans-serif; font-size: 24px; letter-spacing: -.025em; }
.medical-card h3 { margin-top: 12px; }
.service-card p { margin: 0 0 24px; color: var(--muted); line-height: 1.6; font-size: 15px; }
.route-preset, .service-detail-link { padding: 0; margin-top: auto; display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; color: var(--blue); background: none; border: 0; font-weight: 700; font-size: 13px; cursor: pointer; text-decoration: none; }
.route-preset span, .service-detail-link span { transition: transform .2s ease; }
.route-preset:hover span, .service-detail-link:hover span { transform: translateX(4px); }

.area-section { min-height: 570px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: white; overflow: hidden; }
.area-visual { min-height: 570px; position: relative; overflow: hidden; background: linear-gradient(160deg, #d9ebfb 0%, #afcff0 100%); }
.sun { width: 160px; height: 160px; position: absolute; left: 12%; top: 11%; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: 0 0 90px rgba(255,255,255,.55); }
.mountains { width: 115%; position: absolute; left: -5%; bottom: -8px; }
.mountains.back { color: #90bce4; fill: currentColor; stroke: none; bottom: 48px; opacity: .85; }
.mountains.front { color: #4e83b4; fill: currentColor; stroke: none; }
.route-line { width: 72%; height: 170px; position: absolute; left: 13%; bottom: 10%; border-top: 3px dashed rgba(255,255,255,.85); border-radius: 50%; transform: rotate(-8deg); }
.route-line span { width: 14px; height: 14px; position: absolute; top: -8px; background: white; border: 4px solid var(--blue); border-radius: 50%; }
.route-line span:nth-child(1) { left: 0; }
.route-line span:nth-child(2) { left: 48%; top: -30px; }
.route-line span:nth-child(3) { right: 0; }
.area-copy { padding: clamp(70px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.area-copy h2 { font-size: clamp(34px, 3.8vw, 55px); }
.area-copy > p:not(.eyebrow) { max-width: 610px; margin: 25px 0; color: #c3d1da; line-height: 1.75; }
.place-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.place-list span { padding: 8px 12px; color: #d5e2e9; border: 1px solid #355065; border-radius: 999px; font-size: 12px; }
.button-light { align-self: flex-start; background: white; color: var(--ink); }

.contact-section {
  padding: 96px clamp(24px, 7vw, 112px) 105px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
  background: #eef5fb;
}
.contact-copy .eyebrow { color: var(--blue); }
.contact-copy h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(34px, 4vw, 54px); line-height: 1.06; letter-spacing: -.04em; }
.contact-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); line-height: 1.72; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card {
  min-width: 0;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink);
  background: white;
  border: 1px solid #d5e2ec;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 26, 42, .04);
}
a.contact-card { transition: transform .2s ease, box-shadow .2s ease; }
a.contact-card:hover { transform: translateY(-3px); box-shadow: 0 17px 30px rgba(7, 26, 42, .09); }
.contact-card > span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-card strong { font-family: Manrope, sans-serif; font-size: 17px; overflow-wrap: anywhere; }
.contact-card small { color: var(--muted); line-height: 1.45; }

footer { padding: 34px clamp(24px, 7vw, 112px); display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; color: #8ea1af; background: #04111c; font-size: 12px; }
.footer-brand { margin-right: auto; font-size: 16px; }
footer p, footer address { margin: 0; font-style: normal; }
.footer-brand .brand-logo { width: 38px; height: 38px; }
.footer-contact, .footer-legal { display: flex; flex-wrap: wrap; gap: 13px; }
.footer-contact a, .footer-legal a { color: #b4c4cf; text-decoration: none; }
.footer-contact a:hover, .footer-legal a:hover { color: white; }

.mobile-quick-actions { display: none; }

/* Pages légales */
.legal-main { background: #fff; }
.legal-hero { padding: 72px clamp(24px, 7vw, 112px); color: white; background: linear-gradient(128deg, #071a2a 0%, #0b304d 100%); }
.legal-hero .eyebrow { margin-bottom: 12px; }
.legal-hero h1 { max-width: 850px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(40px, 5vw, 68px); line-height: 1.02; letter-spacing: -.05em; }
.legal-hero p:last-child { max-width: 720px; margin: 22px 0 0; color: #c7d5df; line-height: 1.7; }
.legal-content { max-width: 950px; margin: 0 auto; padding: 78px 24px 100px; }
.legal-content section + section { margin-top: 42px; }
.legal-content h2 { margin: 0 0 14px; font-family: Manrope, sans-serif; font-size: 27px; letter-spacing: -.025em; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.75; }
.legal-content a { color: var(--blue-dark); font-weight: 700; }
.legal-content ul { padding-left: 22px; }
.legal-alert { padding: 18px 20px; background: #fff8e7; border: 1px solid #ead7a6; border-radius: 13px; }

/* Pages de services */
.service-page { background: #fff; }
.service-page .site-header { position: relative; z-index: 20; }
.service-page .site-header nav { gap: 22px; }
.service-page .site-header nav a[aria-current="page"] { color: white; }
.breadcrumb { margin: 0 0 32px; display: flex; flex-wrap: wrap; gap: 9px; color: #a8bdcc; font-size: 12px; }
.breadcrumb a { color: #cfe2ef; text-decoration: none; }
.breadcrumb span { opacity: .65; }
.service-hero { min-height: 620px; padding: 64px clamp(24px, 7vw, 112px) 76px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .7fr); gap: clamp(40px, 8vw, 120px); align-items: center; color: white; background: linear-gradient(128deg, #071a2a 0%, #0b304d 100%); overflow: hidden; }
.service-hero-copy { position: relative; z-index: 2; }
.service-hero h1 { max-width: 850px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(44px, 5vw, 72px); line-height: 1.01; letter-spacing: -.05em; }
.service-hero h1 span { color: #9bc9ff; }
.service-hero .hero-lead { max-width: 720px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button { width: auto; }
.button-ghost { color: white; border: 1px solid #56748a; background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.service-visual { min-height: 390px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)); box-shadow: 0 30px 70px rgba(0,0,0,.2); }
.service-visual::before { content: ""; width: 310px; height: 310px; position: absolute; right: -110px; top: -120px; border: 70px solid rgba(117,184,255,.10); border-radius: 50%; }
.visual-icon { width: 76px; height: 76px; display: grid; place-items: center; position: relative; color: white; border-radius: 21px; background: var(--blue); }
.visual-icon svg { width: 45px; }
.visual-route { position: relative; }
.visual-route-line { height: 90px; border-top: 2px dashed #87bdec; border-radius: 50%; transform: rotate(-5deg); }
.visual-route-points { margin-top: -70px; display: flex; justify-content: space-between; position: relative; }
.visual-route-points span { width: 16px; height: 16px; border: 4px solid #9bc9ff; border-radius: 50%; background: var(--ink); }
.service-visual strong { position: relative; font-family: Manrope, sans-serif; font-size: 22px; }
.service-visual small { display: block; margin-top: 7px; color: #b9cbd8; font-size: 13px; }
.medical-page .visual-icon { background: #16805b; }
.ski-page .visual-icon { color: var(--ink); background: #dcecff; }
.local-page .visual-icon { background: #eaf4ff; color: var(--blue-dark); }
.quick-facts { padding: 0 clamp(24px, 7vw, 112px); display: grid; grid-template-columns: repeat(3, 1fr); background: #f6f8fa; border-bottom: 1px solid var(--line); }
.quick-fact { padding: 28px 32px; border-right: 1px solid var(--line); }
.quick-fact:first-child { padding-left: 0; }
.quick-fact:last-child { border-right: 0; }
.quick-fact strong { display: block; margin-bottom: 5px; font-family: Manrope, sans-serif; font-size: 16px; }
.quick-fact span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.content-section { padding: 100px clamp(24px, 7vw, 112px); }
.content-section.soft { background: var(--cream); }
.content-intro { max-width: 790px; margin-bottom: 48px; }
.content-intro .eyebrow { color: var(--blue); }
.content-intro h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(35px, 4vw, 54px); line-height: 1.06; letter-spacing: -.04em; }
.content-intro > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.info-card .card-number { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 24px; color: var(--blue); background: var(--ice); border-radius: 11px; font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800; }
.info-card h3 { margin: 0 0 10px; font-family: Manrope, sans-serif; font-size: 21px; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
.long-distance-section { background: #fff; }
.long-distance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.destination-card { min-height: 410px; padding: 34px; display: flex; flex-direction: column; position: relative; overflow: hidden; border: 1px solid #d6e2e9; border-radius: 24px; background: linear-gradient(145deg, #f7fbff 0%, #edf6ff 100%); }
.destination-card::after { content: ""; width: 190px; height: 190px; position: absolute; right: -90px; top: -90px; border: 38px solid rgba(11,91,211,.08); border-radius: 50%; }
.grenoble-card { background: linear-gradient(145deg, #f7fbf9 0%, #e9f6f0 100%); }
.grenoble-card::after { border-color: rgba(31,157,98,.08); }
.destination-route { margin: 0 0 32px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.destination-route i { color: var(--blue); font-size: 18px; font-style: normal; }
.destination-route strong { color: var(--blue-dark); }
.destination-card h3 { margin: 0 0 14px; font-family: Manrope, sans-serif; font-size: clamp(27px, 3vw, 38px); line-height: 1.08; letter-spacing: -.035em; }
.destination-card > p:not(.destination-route) { margin: 0; color: var(--muted); line-height: 1.7; }
.destination-card ul { margin: 24px 0 30px; padding: 0; display: grid; gap: 10px; list-style: none; }
.destination-card li { padding-left: 25px; position: relative; color: var(--ink-soft); font-size: 14px; }
.destination-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.destination-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; position: relative; z-index: 1; color: var(--blue-dark); font-weight: 800; text-decoration: none; }
.destination-cta span { transition: transform .2s ease; }
.destination-cta:hover span { transform: translateX(4px); }
.route-origins { margin-top: 22px; padding: 20px 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 15px; background: #fbfcfd; }
.route-origins strong { margin-right: 5px; font-family: Manrope, sans-serif; }
.route-origins span { padding: 7px 10px; color: var(--muted); background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; }
.long-distance-note { margin: 20px 0 0; padding: 18px 20px; color: #5b6d78; background: #edf4fa; border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; font-size: 13px; line-height: 1.65; }
.long-distance-note a { color: var(--blue-dark); font-weight: 700; }
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.prose h2 { margin: 0 0 22px; font-family: Manrope, sans-serif; font-size: clamp(32px, 3.5vw, 48px); letter-spacing: -.04em; }
.prose h3 { margin: 30px 0 10px; font-family: Manrope, sans-serif; font-size: 20px; }
.prose p { color: var(--muted); line-height: 1.75; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.check-list li { padding-left: 34px; position: relative; color: var(--ink-soft); line-height: 1.55; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; position: absolute; left: 0; top: 1px; color: white; background: var(--green); border-radius: 50%; font-size: 12px; font-weight: 800; }
.local-panel { padding: 34px; color: white; border-radius: 24px; background: var(--ink); }
.local-panel h3 { margin: 0 0 11px; font-family: Manrope, sans-serif; font-size: 25px; }
.local-panel p { color: #bfd0dc; line-height: 1.7; }
.local-panel .place-list { margin: 25px 0 0; }
.notice { margin-top: 25px; padding: 17px 20px; color: #5b6d78; background: #edf4fa; border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; font-size: 13px; line-height: 1.6; }
.notice a { color: var(--blue-dark); font-weight: 700; }
.faq-list { max-width: 900px; display: grid; gap: 12px; }
.faq-list details { padding: 0 22px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.faq-list summary { padding: 21px 30px 21px 0; position: relative; cursor: pointer; font-family: Manrope, sans-serif; font-weight: 700; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; color: var(--blue); font-size: 22px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 0 22px; color: var(--muted); line-height: 1.65; }
.page-cta { padding: 78px clamp(24px, 7vw, 112px); display: flex; align-items: center; justify-content: space-between; gap: 40px; color: white; background: var(--blue-dark); }
.page-cta h2 { max-width: 720px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.04em; }
.page-cta p { max-width: 650px; margin: 14px 0 0; color: #d3e5f8; line-height: 1.65; }
.page-cta .button { flex: 0 0 auto; background: white; color: var(--blue-dark); }
.service-footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.service-footer-links a { color: #a9bdcc; text-decoration: none; }
.service-footer-links a:hover { color: white; }

button:focus-visible,
a:focus-visible,
input:focus-visible { outline: 3px solid #75b8ff; outline-offset: 3px; }

@media (max-width: 1000px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 46px; padding-top: 60px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .trust-row { justify-content: center; }
  .booking-card { max-width: 610px; margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 680px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .area-section { grid-template-columns: 1fr; }
  .area-visual { min-height: 410px; }
  .area-copy { padding: 80px clamp(24px, 8vw, 80px); }
  .contact-section { grid-template-columns: 1fr; }
  .service-page .site-header nav { display: none; }
  .service-hero { grid-template-columns: 1fr; }
  .service-visual { min-height: 300px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .long-distance-grid { grid-template-columns: 1fr; }
  .two-columns { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { height: 68px; padding: 0 18px; }
  .brand { font-size: 17px; }
  .brand-logo { width: 36px; height: 36px; border-radius: 9px; }
  .brand-mark { width: 34px; height: 34px; }
  .site-header .button-small { min-height: 40px; padding: 0 13px; font-size: 12px; }
  .hero { min-height: auto; padding: 50px 16px 58px; gap: 38px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-lead { margin-top: 22px; font-size: 16px; }
  .trust-row { display: grid; justify-items: start; width: max-content; max-width: 100%; margin: 27px auto 0; gap: 11px; }
  .booking-card { padding: 22px 18px; border-radius: 22px; }
  .booking-heading { display: block; }
  .secure-note { margin-top: 7px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .medical-form-row { grid-template-columns: 1fr; }
  .client-details, .medical-details { padding: 16px 14px; }
  .address-block { padding: 14px; }
  .services-section { padding: 78px 18px 82px; }
  .section-heading { margin-bottom: 31px; }
  .section-heading h2, .area-copy h2 { font-size: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { grid-column: auto; min-height: 305px; }
  .area-visual { min-height: 300px; }
  .area-copy { padding: 68px 20px 72px; }
  .contact-section { padding: 68px 18px 74px; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 20px; }
  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-brand { margin: 0 0 8px; }
  .service-hero { min-height: auto; padding: 40px 18px 55px; gap: 36px; }
  .breadcrumb { margin-bottom: 24px; }
  .service-hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .service-visual { min-height: 260px; padding: 25px; border-radius: 23px; }
  .quick-facts { padding: 0 18px; grid-template-columns: 1fr; }
  .quick-fact { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-fact:last-child { border-bottom: 0; }
  .content-section { padding: 74px 18px; }
  .content-intro { margin-bottom: 32px; }
  .info-grid { grid-template-columns: 1fr; }
  .destination-card { min-height: 390px; padding: 26px; }
  .route-origins { align-items: flex-start; }
  .route-origins strong { width: 100%; }
  .info-card { padding: 23px; }
  .local-panel { padding: 25px; }
  .page-cta { padding: 60px 20px; flex-direction: column; align-items: flex-start; }
  .page-cta .button { width: 100%; }
  .mobile-quick-actions {
    width: calc(100% - 24px);
    padding: 7px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    position: fixed;
    left: 12px;
    bottom: 10px;
    z-index: 80;
    background: rgba(7, 26, 42, .94);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
  }
  .mobile-quick-actions a { min-height: 44px; display: grid; place-items: center; color: white; border-radius: 11px; font-weight: 800; text-decoration: none; }
  .mobile-quick-actions a:first-child { background: var(--blue); }
  .mobile-quick-actions a:last-child { background: #168f5b; }
  body { padding-bottom: 76px; }
}

@media (max-width: 410px) {
  .site-header .button-small { font-size: 0; width: 43px; padding: 0; }
  .site-header .button-small::after { content: "→"; font-size: 19px; }
  .booking-heading h2 { font-size: 22px; }
  .form-row { gap: 8px; }
  .address-locality-row { grid-template-columns: .78fr 1.22fr; }
  .input-wrap input { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
