:root {
  --navy: #14457b;
  --blue: #2490eb;
  --bg-light-text: #d3e9fb;
  --bg-dark: #14457b;
  --btn: #2490eb;
  --btn-hover: #1976c2;
  --link-hover: #fa5452;
  --white: #ffffff;
  --body: #000000;
  --primary: #6ec1e4;
  --secondary: #54595f;
  --text: #7a7a7a;
  --accent: #61ce70;
  --font-heading: "Outfit", "Quicksand", system-ui, sans-serif;
  --font-body: "Quicksand", "Outfit", system-ui, sans-serif;
  --font-display: "Outfit", "Quicksand", system-ui, sans-serif;
  --font-serif: "Roboto Slab", Georgia, serif;
  --container-max: 1140px;
  --section-pad-y: clamp(2.5rem, 5vw, 5rem);
  --header-height: 72px;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
}

#contenu-principal a:not([class]) {
  font-family: var(--font-body);
  color: var(--btn);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#contenu-principal a:not([class]):hover {
  color: var(--link-hover);
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.pill {
  display: inline-block;
}

.pill--btn {
  background: #2490eb;
  color: #fff;
  padding: 5px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}

.pill--light {
  background: #d3e9fb;
  color: #2490eb;
  padding: 5px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}

.hero-booking {
  background: #14457b;
  border-radius: 25px;
  padding: 35px 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-booking__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 35px;
  line-height: 18px;
  color: #fff;
  margin: 0 0 15px;
}

.hero-booking__form input,
.hero-booking__form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid rgba(20, 69, 123, 0.15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--body);
  box-sizing: border-box;
}

.hero-booking__form input::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.hero-booking__submit {
  width: 100%;
  padding: 14px;
  margin-top: 4px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bg-dark);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

@media (max-width: 767px) {
  .section {
    padding-top: clamp(2.25rem, 6vw, 2.5rem);
    padding-bottom: clamp(2.25rem, 6vw, 2.5rem);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--btn);
  color: var(--white);
  border-color: var(--btn);
}

.btn-primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--btn);
  border-color: var(--btn);
}

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

.btn-cta {
  background: var(--btn);
  color: var(--white);
  border-color: var(--btn);
  box-shadow: 0 4px 14px rgba(36, 144, 235, 0.35);
}

.btn-cta:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--white);
}

.site-header__cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(36, 144, 235, 0.42);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(20, 69, 123, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.site-header__brand {
  flex-shrink: 0;
}

.site-header__brand img {
  height: 64px;
  width: auto;
  max-width: 140px;
}

.site-header__nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bg-dark);
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--btn);
  transform: translateY(-2px);
  outline: none;
}

.site-nav__link.active {
  color: var(--btn);
}

.site-nav__link[aria-current="page"] {
  color: var(--btn);
}

.site-nav__caret {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}

.site-nav__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  padding: 0.5rem 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 69, 123, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown:focus-within .site-nav__dropdown,
.site-nav__item--dropdown.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--bg-dark);
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
  background: var(--bg-light-text);
  color: var(--btn);
  transform: translateX(3px);
  outline: none;
}

.site-nav__dropdown-link.active {
  color: var(--btn);
  font-weight: 600;
}

.site-header__cta {
  flex-shrink: 0;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn-nav-rdv {
  background: transparent;
  color: var(--bg-dark);
  border: 2px solid var(--bg-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-nav-rdv:hover {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}

.btn-nav-login {
  background: var(--btn);
  color: var(--white);
  border-color: var(--btn);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-nav-login:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--white);
}

.site-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--bg-dark);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bg-dark);
  position: relative;
}

.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--bg-dark);
}

.site-header__toggle-bar::before {
  top: -6px;
}

.site-header__toggle-bar::after {
  top: 6px;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar {
  background: transparent;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.mobile-drawer.is-open {
  pointer-events: auto;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 69, 123, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100%;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 2rem;
  overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__section {
  margin-bottom: 1.25rem;
}

.mobile-drawer__link {
  display: block;
  padding: 0.65rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--bg-dark);
  border-bottom: 1px solid var(--bg-light-text);
  transition: color 0.2s ease, padding 0.2s ease, background 0.2s ease;
}

.mobile-drawer__link:hover,
.mobile-drawer__link:focus-visible {
  color: var(--btn);
  background: rgba(211, 233, 251, 0.35);
  padding-left: 0.35rem;
  outline: none;
}

.mobile-drawer__link[aria-current="page"] {
  color: var(--btn);
}

.mobile-drawer__sub {
  padding-left: 0.75rem;
}

.mobile-drawer__sub .mobile-drawer__link {
  font-weight: 500;
  font-size: 0.95rem;
}

.mobile-drawer__cta {
  margin-top: auto;
}

@media (min-width: 1025px) {
  .site-nav {
    display: flex;
  }

  .site-header__cta {
    display: flex;
  }

  .site-header__toggle {
    display: none;
  }

  .mobile-drawer {
    display: none;
  }
}

.site-footer {
  background: var(--bg-dark);
  color: var(--white);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: 2rem;
}

.site-footer a {
  color: var(--bg-light-text);
  font-style: normal;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer__logo img {
  height: 64px;
  width: auto;
  max-width: 140px;
  margin-bottom: 0.75rem;
}

.site-footer__tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--bg-light-text);
  margin-bottom: 0.75rem;
}

.site-footer__bio {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.site-footer__contact-block {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__contact-block a {
  display: inline-block;
  margin-top: 0.25rem;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-footer__social a:hover {
  background: var(--btn);
  color: var(--white);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__copyright {
  margin: 0;
}

.site-footer__newsletter {
  margin-top: 1.25rem;
}

.site-footer__newsletter-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.site-footer__newsletter-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.site-footer__newsletter-row {
  display: flex;
  gap: 0;
}

.site-footer__newsletter-input {
  flex: 1;
  border-radius: 6px 0 0 6px;
  border: none;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  min-width: 0;
}

.site-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__newsletter-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 0 1rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-footer__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__hours li {
  margin-bottom: 0.35rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  padding: 0.3rem 0;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-style: italic;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.site-footer__list a:hover {
  color: var(--white);
}

.site-footer__contact-lines {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
}

.site-footer__contact-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--btn);
}

.site-prefooter {
  background: var(--bg-dark);
  padding: 2rem 0;
}

.site-prefooter__card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--blue);
  border-radius: 14px;
  padding: 1.5rem 2rem;
}

.site-prefooter__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  flex-shrink: 0;
}

.site-prefooter__text {
  flex: 1;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}

.site-prefooter__btn {
  background: var(--bg-dark);
  color: var(--white);
  border: none;
  white-space: nowrap;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
}

.site-prefooter__btn:hover {
  opacity: 0.92;
  color: var(--white);
}

.site-header > .site-topbar {
  background: var(--bg-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 0.35rem 0;
  width: 100%;
}

.site-header > .site-topbar .site-topbar__inner {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
  min-height: 32px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.site-header > .site-topbar .site-topbar__link {
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  font-weight: 500;
}

.site-header > .site-topbar .site-topbar__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.floating-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-actions__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.floating-actions__btn--phone {
  background: var(--btn);
  color: var(--white);
}

.floating-actions__btn--wa {
  background: #25d366;
  color: var(--white);
}

.floating-actions__btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.foundation {
  background: linear-gradient(135deg, var(--bg-light-text) 0%, var(--white) 50%, var(--bg-light-text) 100%);
  min-height: calc(100vh - var(--header-height) - 200px);
  display: flex;
  align-items: center;
}

.foundation__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(20, 69, 123, 0.12);
  border: 1px solid rgba(20, 69, 123, 0.08);
}

.foundation__title {
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.foundation__lead {
  color: var(--text);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.foundation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.page-404 {
  padding: var(--section-pad-y) 0;
  text-align: center;
}

.page-404 h1 {
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.page-404 p {
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* —— Home (Accueil) —— */
.home {
  overflow-x: hidden;
}

.home-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  padding-bottom: calc(90px + clamp(2rem, 6vw, 4rem));
  background-color: var(--bg-dark);
  background-image: url("../images/Dr-taj-anesthesiologist.webp");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    102deg,
    rgba(20, 69, 123, 0.82) 0%,
    rgba(20, 69, 123, 0.75) 38%,
    rgba(20, 69, 123, 0.32) 48%,
    rgba(20, 69, 123, 0) 54%
  );
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  width: 100%;
}

.home-hero__col--left {
  min-width: 0;
  padding-left: 8%;
}

.home-hero__content {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) 0;
}

.home-hero__eyebrow-wrap {
  margin: 0 0 0.75rem;
}

.home-hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 50px);
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 1rem;
}

.home-hero__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.98);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.home-hero__cta-wrap {
  margin: 0;
}

.home-hero__cta-wrap--dual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  align-items: center;
}

.btn-hero-services {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.65rem 1.15rem;
  text-decoration: none;
}

.btn-hero-services:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-hero-services__plus {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
}

.home-flash {
  margin: 0;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 600;
}

.home-flash--success {
  background: #e8f7ee;
  color: #1b5e20;
}

.home-hero .btn {
  font-style: normal;
  text-decoration: none;
}

.home-hero .btn.btn-primary,
.home-hero .btn.btn-outline {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-hero .btn.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(36, 144, 235, 0.45);
}

.home-hero .btn.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.home-hero__col--right {
  min-width: 0;
}

.hours-card {
  background: var(--white);
  color: var(--bg-dark);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.hours-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.hours-card__list {
  margin: 0;
}

.hours-card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.hours-card__row dt {
  font-weight: 600;
}

.hours-card__row dd {
  margin: 0;
  text-align: right;
}

.hours-card__emergency {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-light-text);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--btn);
  line-height: 1.45;
}

.hours-card--hero {
  max-width: 300px;
  width: 280px;
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 20px;
  padding: 1.5rem 1.35rem 1.25rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.hours-card--hero .hours-card__title {
  color: var(--white);
}

.hours-card--hero .hours-card__row {
  color: rgba(255, 255, 255, 0.95);
}

.hours-card--hero .hours-card__row dt {
  color: rgba(255, 255, 255, 0.88);
}

.hours-card--hero .hours-card__row dd {
  color: var(--white);
}

.hours-card__pill-wrap {
  margin: 1.1rem 0 0;
  text-align: center;
}

.hours-card__pill {
  display: inline-block;
  margin: 0;
  padding: 8px 16px;
  border-radius: 20px;
  background: #2490eb;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  text-transform: none;
}

.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -90px;
  background: var(--bg-dark);
  padding: clamp(1rem, 2.5vw, 1.35rem) 0;
}

.booking-bar__inner {
  position: relative;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.booking-bar__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--white);
  text-align: left;
}

.booking-bar__form {
  position: relative;
}

.booking-bar__rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking-bar__row--fields,
.booking-bar__row--actions {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .booking-bar__row--fields,
  .booking-bar__row--actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.booking-bar__control {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(20, 69, 123, 0.12);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #14457b;
  background: #fff;
}

.booking-bar__control::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.booking-bar__tab-label {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 6px 6px 0 0;
  margin-bottom: 1.2rem;
}

.booking-bar__submit {
  width: 100%;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  background: #2490eb;
  border-color: #2490eb;
  color: #fff;
}

.booking-bar__submit:hover {
  background: #1976c2;
  border-color: #1976c2;
  color: #fff;
}

.booking-bar__row--privacy {
  margin-top: 0.15rem;
}

.booking-bar__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

.booking-bar__privacy a {
  color: var(--bg-light-text);
  text-decoration: underline;
  font-style: normal;
}

.booking-bar__privacy input {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.cta-strip-24h {
  background: #2490eb;
  color: #fff;
  text-align: center;
  padding: 14px 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-hours-strip {
  background: var(--bg-light-text);
  padding: clamp(0.65rem, 2vw, 1rem) 0;
  border-top: 1px solid rgba(20, 69, 123, 0.06);
}

.home-hours-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.home-hours-strip__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .home-hours-strip__card {
    justify-content: flex-start;
    text-align: left;
    gap: 1rem 2rem;
  }
}

.home-hours-strip__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bg-dark);
  margin: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .home-hours-strip__heading {
    width: auto;
    flex: 0 0 auto;
  }
}

.home-hours-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  justify-content: center;
  flex: 1 1 auto;
}

@media (min-width: 768px) {
  .home-hours-strip__list {
    justify-content: flex-start;
  }
}

.home-hours-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--body);
}

.home-hours-strip__row dt {
  font-weight: 600;
}

.home-hours-strip__row dd {
  margin: 0;
}

.home-hours-strip__notice {
  margin: 0;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--btn);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .home-hours-strip__notice {
    width: auto;
    margin-left: auto;
    text-align: right;
  }
}

.home-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-about__media-wrap {
  position: relative;
}

.home-about__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.home-about__stat-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--bg-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.home-about__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-serif);
}

.home-about__stat-label {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-about__pill {
  display: inline-block;
  margin-bottom: 1rem;
}

.home-about__h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.home-about__h2 strong {
  font-weight: 800;
}

.home-about__intro {
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.home-about__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-mini-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: none;
  box-shadow: none;
  padding: 0;
  border: none;
}

.about-mini-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.about-mini-card__title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
}

.about-mini-card__text {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.home-about__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.home-about__bullets li {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  padding: 0.3rem 0;
}

.home-about__signature img {
  max-width: 220px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .home-about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.home-services {
  background-color: rgba(112, 147, 229, 0.11);
}

.home-services__head {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.home-services__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  color: var(--bg-dark);
  margin: 0 0 1rem;
}

.home-services__subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--secondary);
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 42rem;
  line-height: 1.45;
}

.home-services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 69, 123, 0.08);
  box-shadow:
    0 4px 20px rgba(20, 69, 123, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 22px 48px rgba(20, 69, 123, 0.18),
    0 10px 24px rgba(20, 69, 123, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

@media (min-width: 1025px) {
  .service-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 599px) {
  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.service-card__media {
  display: block;
  min-height: 220px;
  height: clamp(220px, 28vw, 300px);
  overflow: hidden;
  background: var(--bg-light-text);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card--compact .service-card__media {
  min-height: 140px;
  height: 170px;
}

.service-card--compact .service-card__media img {
  min-height: 140px;
}

.service-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card__title a {
  color: var(--bg-dark);
  text-decoration: none;
  font-style: normal;
}

.service-card__title a:hover {
  color: var(--btn);
}

.service-card__excerpt {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.service-card__more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--btn);
  align-self: flex-start;
}

.service-card__more:hover {
  color: var(--link-hover);
}

.home-cta-banner {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}

.home-cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.home-cta-banner__title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  max-width: 52rem;
  margin: 0;
}

.home-cta-banner .btn {
  font-style: normal;
}

.home-cta-banner .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(36, 144, 235, 0.45);
}

.home-cta-banner .btn.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.home-blog {
  background-color: rgba(112, 147, 229, 0.11);
}

.home-blog__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.5rem;
}

.home-blog__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  color: var(--bg-dark);
  margin-bottom: 2rem;
}

.home-blog__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .home-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 69, 123, 0.08);
  box-shadow: 0 4px 18px rgba(20, 69, 123, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(20, 69, 123, 0.12);
}

.blog-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-light-text);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.blog-card__title a {
  color: var(--bg-dark);
  text-decoration: none;
  font-style: normal;
}

.blog-card__title a:hover {
  color: var(--btn);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--btn);
}

.blog-card__more:hover {
  color: var(--link-hover);
}

.blog-card__meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-conseils-sante__hero {
  background: var(--bg-light-text);
}

.page-conseils-sante__breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.page-conseils-sante__breadcrumb a {
  color: var(--btn);
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
}

.page-conseils-sante__breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.page-conseils-sante__breadcrumb-current {
  font-weight: 600;
  color: var(--bg-dark);
}

.page-conseils-sante__h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.page-conseils-sante__intro {
  font-size: 1.05rem;
  color: var(--secondary);
  max-width: 40rem;
  line-height: 1.6;
}

.post-article__breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: var(--secondary);
}

.post-article__breadcrumb a {
  color: var(--btn);
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
}

.post-article__breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.post-article__breadcrumb-current {
  font-weight: 600;
  color: var(--bg-dark);
}

.post-article__hero-media {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(20, 69, 123, 0.12);
}

.post-article__hero-media img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(52vh, 420px);
  object-fit: cover;
}

.post-article__h1 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.post-article__meta {
  font-size: 0.95rem;
  color: var(--secondary);
  margin: 0;
}

.post-article__meta time {
  font-weight: 600;
  color: var(--bg-dark);
}

.post-article__body-inner {
  max-width: 48rem;
}

.post-prose {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body);
}

.post-prose h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: var(--bg-dark);
  margin: 2rem 0 1rem;
}

.post-prose p {
  margin: 0 0 1rem;
}

.post-prose ul {
  list-style: disc;
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}

.post-prose li {
  margin-bottom: 0.4rem;
}

.post-prose strong {
  font-weight: 700;
  color: var(--bg-dark);
}

.post-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.95rem;
}

.post-table th,
.post-table td {
  border: 1px solid rgba(20, 69, 123, 0.12);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.post-table thead th {
  background: var(--bg-light-text);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--bg-dark);
}

.post-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--bg-dark);
  background: rgba(211, 233, 251, 0.35);
}

.post-article__cta-wrap {
  margin: 2rem 0 0;
}

.post-related .home-blog__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .post-related .home-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.home-contact-strip {
  background: linear-gradient(180deg, var(--bg-light-text) 0%, rgba(211, 233, 251, 0.35) 100%);
  text-align: center;
}

.home-contact-strip__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.35rem;
}

.home-contact-strip__sub {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--btn);
  margin-bottom: 0.75rem;
}

.home-contact-strip__intro {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  color: var(--secondary);
  line-height: 1.55;
}

.home-contact-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem 2rem;
}

.home-contact-strip__item {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 100%;
  text-align: left;
  font-weight: 500;
  color: var(--body);
  font-style: normal;
  text-decoration: none;
}

a.home-contact-strip__item:hover {
  color: var(--btn);
}

.home-contact-strip__item--address {
  margin: 0;
}

.home-contact-strip__svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--btn);
}

@media (max-width: 1024px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
  }

  .home-hero__col--left {
    padding-left: clamp(1rem, 4vw, 8%);
  }

  .home-hero__content {
    padding-left: clamp(1rem, 3vw, 2rem);
  }

  .hours-card--hero {
    width: 100%;
    max-width: min(300px, 100%);
  }
}

@media (min-width: 1025px) {
  .home-hero__col--left {
    padding-left: clamp(2rem, 8%, 120px);
  }
}

.home-tabs {
  background: var(--bg-light-text);
}

.home-tabs__header {
  text-align: center;
  margin-bottom: 2rem;
}

.home-tabs__eyebrow {
  display: inline;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
}

.home-tabs__h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--navy);
  font-weight: 400;
  margin-top: 0.5rem;
}

.home-tabs__h2 strong {
  font-weight: 800;
}

.home-tabs .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 30px;
}

.home-tabs .tab__icon {
  display: block;
  color: #14457b;
}

.home-tabs .tab.is-active .tab__icon {
  color: #fff;
}

.home-tabs .tab.is-active .tab__icon svg {
  stroke: var(--white);
}

.home-tabs .tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.2rem;
  background: rgba(112, 147, 229, 0.12);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  text-align: center;
  min-width: 130px;
  transition: background 0.2s, color 0.2s;
}

.home-tabs .tab__label {
  display: block;
  text-align: center;
  max-width: 10rem;
}

.home-tabs .tab:hover:not(.is-active) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 69, 123, 0.12);
}

.home-tabs .tab.is-active {
  background: var(--bg-dark);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(20, 69, 123, 0.22);
}

.btn-more-plus__icon {
  font-weight: 800;
  margin-left: 0.15rem;
}

.home-tabs .tab:focus-visible {
  outline: 2px solid var(--btn);
  outline-offset: 2px;
}

.home-tabs .tab-panels {
  padding-top: 0.5rem;
}

.home-tabs .tab-panel {
  display: none;
}

.home-tabs .tab-panel.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.home-tabs .tab-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.home-tabs .tab-panel__grid--single {
  grid-template-columns: 1fr;
  max-width: 52rem;
}

.home-tabs .tab-panel__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.home-tabs .tab-panel__eyebrow {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.home-tabs .tab-panel__text {
  margin: 0 0 0.75rem;
  color: var(--body);
  line-height: 1.65;
}

.home-tabs .tab-panel__list {
  list-style: none;
  padding: 0;
  margin: 15px 0 1.25rem;
}

.home-tabs .tab-panel__list li {
  font-weight: 700;
  color: var(--navy);
  padding: 0.2rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .home-tabs .tab-panel__grid:not(.tab-panel__grid--single) {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* —— Service pages —— */
.service-page__hero {
  position: relative;
  min-height: min(52vh, 420px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.service-page__hero-overlay {
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, rgba(20, 69, 123, 0.15) 0%, rgba(20, 69, 123, 0.75) 100%);
}

.service-page__hero-inner {
  width: 100%;
  padding-bottom: 0.5rem;
}

.service-page__breadcrumb--on-dark a {
  color: var(--bg-light-text);
}

.service-page__breadcrumb--on-dark a:hover {
  color: var(--white);
}

.service-page__breadcrumb--on-dark .service-page__breadcrumb-current {
  color: var(--white);
}

.service-page__hero-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin: 0.5rem 0 0.75rem;
}

.service-page__hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 42rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.service-page__hero-cta .btn-primary {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-le-cabinet__hero-inner .hero-booking {
  min-width: 0;
}

.page-nos-services__hero-layout .hero-booking {
  min-width: 0;
}

.service-page__breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.service-page__breadcrumb a {
  color: var(--btn);
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
}

.service-page__breadcrumb a:hover {
  color: var(--link-hover);
}

.service-page__breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.service-page__breadcrumb-current {
  color: var(--bg-dark);
  font-weight: 600;
}


.service-page__split-inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
  .service-page__split-inner {
    grid-template-columns: 1fr minmax(280px, 42%);
    align-items: center;
  }

  .service-page__split-inner--media-left {
    grid-template-columns: minmax(280px, 42%) 1fr;
  }

  .service-page__split-inner--commitment {
    grid-template-columns: 1fr minmax(280px, 42%);
    align-items: center;
  }
}

.service-page__commitment-split {
  margin-bottom: 0;
  padding-bottom: 0;
  background: var(--bg-light-text);
}

.service-page__intro-heading {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.service-page__p {
  margin-bottom: 1rem;
  line-height: 1.65;
  color: var(--body);
}

.service-page__p--muted {
  color: var(--secondary);
  font-size: 0.95rem;
}

.service-page__hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(20, 69, 123, 0.12);
}

.service-page__h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--bg-dark);
  margin-bottom: 1.25rem;
}

.service-page__features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-page__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .service-page__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-page__feature {
  background: var(--white);
  border: 1px solid rgba(20, 69, 123, 0.08);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(20, 69, 123, 0.05);
}

.service-page__h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.service-page__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-page__bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  line-height: 1.55;
  color: var(--body);
}

.service-page__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--btn);
}

.service-page__commitment {
  background: var(--bg-light-text);
}

.service-page__commitment-text {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  max-width: 48rem;
}

.service-page__stats {
  margin-top: 0;
  padding-top: 0;
  background: var(--bg-light-text);
}

.service-page__stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  text-align: center;
}

.service-page__stat {
  flex: 1 1 120px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg-dark);
  padding: 0.75rem;
}

.service-page__faq-list {
  margin: 0;
}

.service-page__faq-q {
  font-weight: 700;
  color: var(--bg-dark);
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.service-page__faq-a {
  margin: 0 0 1.25rem;
  padding-left: 0;
  color: var(--secondary);
  line-height: 1.6;
}

.service-page__related {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light-text) 100%);
}

.service-page__related-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-page__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .service-page__related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card--compact .service-card__body {
  padding: 1rem;
}

.service-card--compact .service-card__title {
  font-size: 1rem;
}

.service-card--compact .service-card__excerpt {
  font-size: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-page__bottom-cta {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}

.service-page__bottom-cta-title {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin: 0 0 0.75rem;
  color: var(--white);
}

.service-page__bottom-cta-text {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
}

.service-page__bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.service-page__bottom-cta .btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
  font-style: normal;
}

.service-page__bottom-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.service-card__excerpt--long {
  display: block;
  overflow: visible;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* —— Le Cabinet —— */
.page-le-cabinet__hero {
  background: var(--bg-light-text);
}

.page-le-cabinet__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--btn);
  margin-bottom: 0.5rem;
}

.page-le-cabinet__breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: var(--secondary);
}

.page-le-cabinet__breadcrumb a {
  color: var(--btn);
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
}

.page-le-cabinet__breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.page-le-cabinet__breadcrumb-current {
  font-weight: 600;
  color: var(--bg-dark);
}

.page-le-cabinet__hero-inner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
  .page-le-cabinet__hero-inner {
    grid-template-columns: 60% 40%;
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }
}

.page-le-cabinet__hero-main {
  min-width: 0;
}

.page-le-cabinet__hero-main-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-le-cabinet__hero-main-grid {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 38%);
  }
}

.page-le-cabinet__h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.page-le-cabinet__h2-lead {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--btn);
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-le-cabinet__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--body);
  max-width: 40rem;
}

.page-le-cabinet__hero-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(20, 69, 123, 0.12);
}

.page-le-cabinet__icon-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-le-cabinet__icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cabinet-icon-card {
  background: var(--white);
  border: 1px solid rgba(20, 69, 123, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(20, 69, 123, 0.06);
}

.cabinet-icon-card__title {
  font-size: 1.1rem;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.cabinet-icon-card__text {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.page-le-cabinet__stats {
  background: var(--white);
}

.page-le-cabinet__stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.page-le-cabinet__stat {
  min-width: 120px;
}

.page-le-cabinet__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--bg-dark);
}

.page-le-cabinet__stat-label {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
}

.page-le-cabinet__about {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light-text) 100%);
}

.page-le-cabinet__about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
  .page-le-cabinet__about-split {
    grid-template-columns: 1fr minmax(280px, 42%);
  }
}

.page-le-cabinet__section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.page-le-cabinet__subhead {
  font-size: 1.15rem;
  color: var(--btn);
  font-weight: 600;
  margin: 1rem 0 0.75rem;
}

.page-le-cabinet__p {
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 1rem;
}

.page-le-cabinet__cta-line {
  margin-top: 1.25rem;
}

.page-le-cabinet__about-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(20, 69, 123, 0.1);
}

.page-le-cabinet__services-kicker {
  text-align: center;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.page-le-cabinet__services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-le-cabinet__services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .page-le-cabinet__services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-le-cabinet__hours {
  background: var(--white);
}

.page-le-cabinet__hours-list {
  margin: 0;
  max-width: 28rem;
}

.page-le-cabinet__hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.page-le-cabinet__hours-row dt {
  font-weight: 600;
  color: var(--bg-dark);
}

.page-le-cabinet__hours-row dd {
  margin: 0;
}

.page-le-cabinet__hours-rdv {
  margin-top: 1.5rem;
}

.page-le-cabinet__timeline {
  background: var(--bg-light-text);
}

.page-le-cabinet__timeline-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-le-cabinet__timeline-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-le-cabinet__timeline-h {
  font-size: 1.05rem;
  color: var(--bg-dark);
  margin: 1rem 0 0.5rem;
}

.page-le-cabinet__timeline-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--body);
  line-height: 1.6;
}

.page-le-cabinet__timeline-list li {
  margin-bottom: 0.35rem;
}

.page-le-cabinet__why {
  background: var(--white);
}

.page-le-cabinet__why-intro {
  max-width: 48rem;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: var(--secondary);
  line-height: 1.6;
}

.page-le-cabinet__why-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-le-cabinet__why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cabinet-why-card {
  background: var(--bg-light-text);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(20, 69, 123, 0.06);
}

.cabinet-why-card__title {
  font-size: 1.1rem;
  color: var(--bg-dark);
  margin-bottom: 0.65rem;
}

.cabinet-why-card__text {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.55;
  margin: 0;
}

/* —— Nos services (hub) —— */
.page-nos-services__hero {
  background: var(--bg-light-text);
}

.page-nos-services__breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.page-nos-services__breadcrumb a {
  color: var(--btn);
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
}

.page-nos-services__breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.page-nos-services__breadcrumb-current {
  font-weight: 600;
  color: var(--bg-dark);
}

.page-nos-services__hero-text {
  min-width: 0;
}

.page-nos-services__hero-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
  .page-nos-services__hero-layout {
    grid-template-columns: 60% 40%;
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }
}

.page-nos-services__h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.page-nos-services__intro {
  font-size: 1.1rem;
  color: var(--body);
  max-width: 42rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.page-nos-services__cta-hero {
  margin: 0;
}

.page-nos-services__h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.page-nos-services__hub-lead {
  font-size: 1.05rem;
  color: var(--secondary);
  max-width: 48rem;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.page-nos-services__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-nos-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .page-nos-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card--hub .service-card__excerpt--long {
  min-height: 4.5rem;
}

.page-nos-services__bottom {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}

.page-nos-services__bottom-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.page-nos-services__bottom .page-nos-services__h2 {
  color: var(--white);
}

.page-nos-services__bottom-text {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.page-nos-services__bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.page-nos-services__bottom .btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
  font-style: normal;
}

.page-nos-services__bottom .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* —— Contact —— */
.page-contact__hero {
  background: var(--bg-light-text);
}

.page-contact__breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.page-contact__breadcrumb a {
  color: var(--btn);
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
}

.page-contact__breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.page-contact__breadcrumb-current {
  font-weight: 600;
  color: var(--bg-dark);
}

.page-contact__h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bg-dark);
}

.page-contact__flash {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  max-width: 42rem;
}

.page-contact__flash--success {
  color: #0d4f2d;
  background: #e6f7ec;
  border: 1px solid rgba(13, 79, 45, 0.2);
}

.page-contact__flash--error {
  color: #7a1f16;
  background: #ffe8e6;
  border: 1px solid rgba(122, 31, 22, 0.2);
}

.page-contact__icons-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-contact__icons-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-contact__icon-title {
  font-size: 1rem;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.page-contact__icon-value {
  margin: 0;
  color: var(--secondary);
  line-height: 1.55;
  font-size: 0.95rem;
}

.page-contact__icon-value a {
  color: var(--btn);
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
}

.page-contact__icon-value a:hover {
  color: var(--link-hover);
}

.page-contact__layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 1025px) {
  .page-contact__layout {
    grid-template-columns: 1fr minmax(320px, 45%);
  }
}

.page-contact__h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.page-contact__form-lead {
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.page-contact__field {
  margin-bottom: 1.1rem;
}

.page-contact__field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bg-dark);
  margin-bottom: 0.35rem;
}

.page-contact__field input,
.page-contact__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(20, 69, 123, 0.2);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--body);
}

.page-contact__field input::placeholder,
.page-contact__field textarea::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.page-contact__field textarea {
  resize: vertical;
  min-height: 8rem;
}

.page-contact__actions {
  margin-top: 1.25rem;
}

.page-contact__form .btn.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.page-contact__form .btn.btn-primary:hover {
  background: #52be64;
  border-color: #52be64;
  color: var(--white);
}

.page-contact__map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(20, 69, 123, 0.12);
  min-height: 280px;
}

.page-contact__map {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.page-contact__social {
  background: var(--bg-light-text);
}

.page-contact__social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
}

.page-contact__social-link {
  font-weight: 600;
  color: var(--btn);
  font-style: italic;
  text-decoration: none;
}

.page-contact__social-link:hover {
  color: var(--link-hover);
}

@media (prefers-reduced-motion: reduce) {
  .site-nav__link:hover,
  .site-nav__link:focus-visible {
    transform: none;
  }

  .site-nav__dropdown-link:hover,
  .site-nav__dropdown-link:focus-visible {
    transform: none;
  }

  .home-tabs .tab:hover:not(.is-active) {
    transform: none;
  }

  .site-footer__social a:hover {
    transform: none;
    box-shadow: none;
  }

  .home-hero .btn.btn-primary:hover,
  .home-hero .btn.btn-outline:hover,
  .home-cta-banner .btn.btn-primary:hover,
  .home-cta-banner .btn.btn-outline:hover,
  .site-header__cta .btn-nav-rdv:hover,
  .site-header__cta .btn-nav-login:hover {
    transform: none;
    box-shadow: none;
  }

  .service-card:hover {
    transform: none;
    box-shadow:
      0 4px 20px rgba(20, 69, 123, 0.06),
      0 1px 0 rgba(255, 255, 255, 0.6) inset;
  }
}

/* Rendez-vous form, thank-you, legacy portal placeholders */
.hero-booking__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-booking__form textarea,
.hero-booking__form input[type="date"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid rgba(20, 69, 123, 0.15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--body);
  box-sizing: border-box;
}

.hero-booking__form textarea::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.hero-booking__check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.hero-booking__check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hero-booking__check a {
  color: #d3e9fb;
  font-style: normal;
  text-decoration: underline;
}

.page-rendez-vous__intro {
  color: var(--secondary);
  max-width: 42rem;
}

.page-rendez-vous__grid2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-rendez-vous__grid2 {
    grid-template-columns: 1fr 1fr;
  }
}

.page-contact__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(20, 69, 123, 0.2);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--body);
}

.page-rendez-vous__check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-weight: 500;
  color: var(--secondary);
}

.page-rendez-vous__check input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.page-rendez-vous__check a {
  color: var(--btn);
  font-style: normal;
  text-decoration: underline;
}

.page-rendez-vous__alert {
  color: #7a1f16;
  background: #ffe8e6;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.page-rendez-vous-merci__inner {
  max-width: 38rem;
}

.page-rendez-vous-merci__lead {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.page-rendez-vous-merci__summary {
  background: var(--bg-light-text);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.page-rendez-vous-merci__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-rendez-vous-merci__list li {
  margin-bottom: 0.5rem;
}

.page-rendez-vous-merci__wa {
  margin-top: 1.25rem;
}

.page-rendez-vous-merci__back {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.page-unavailable__text {
  color: var(--secondary);
  margin-bottom: 0.75rem;
  max-width: 38rem;
}

.page-unavailable__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

/* —— Parcours, contact split, blog badge (home refresh) —— */
.home-parcours__eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
}

.home-parcours__title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: var(--bg-dark);
  margin: 0 0 2rem;
  text-align: center;
}

.home-parcours__grid {
  display: grid;
  gap: 1.5rem 0.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .home-parcours__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  .home-parcours__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-parcours__step {
  text-align: center;
  padding: 0 0.35rem;
}

.home-parcours__lines {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 3.5rem;
}

.home-parcours__seg {
  flex: 1 1 0;
  min-width: 0.5rem;
  height: 0;
  border-top: 2px dashed rgba(20, 69, 123, 0.35);
}

.home-parcours__step:first-child .home-parcours__seg--prev {
  visibility: hidden;
}

.home-parcours__step:last-child .home-parcours__seg--next {
  visibility: hidden;
}

.home-parcours__circle {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 0.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  background: #14457b;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 16px rgba(20, 69, 123, 0.2);
}

.home-parcours__step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin: 0 0 0.5rem;
}

.home-parcours__step-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--secondary);
  line-height: 1.55;
}

.home-contact-split {
  background: #f7fafc;
}

.home-contact-split__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.home-contact-split__eyebrow {
  display: inline;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
}

.home-contact-split__h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  font-weight: 800;
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.home-contact-split__h2 em {
  font-weight: 400;
  font-style: normal;
}

.home-contact-split__desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.home-contact-split__social-label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.home-contact-split__socials {
  display: flex;
  gap: 0.75rem;
}

.home-contact-split__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.home-contact-split__social-link:hover {
  opacity: 0.85;
}

.home-contact-split__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-contact-split__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.home-contact-split__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d0d8e4;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #f5f7fa;
  color: #333;
  box-sizing: border-box;
}

.home-contact-split__select {
  appearance: auto;
  cursor: pointer;
}

.home-contact-split__textarea {
  resize: vertical;
  min-height: 100px;
}

.home-contact-split__submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--bg-dark);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.home-contact-split__submit:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .home-contact-split__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

.blog-card.blog-card--badged {
  overflow: visible;
  border-radius: 14px;
  box-shadow:
    0 6px 22px rgba(20, 69, 123, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.blog-card__media-wrap {
  position: relative;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.blog-card--badged .blog-card__media {
  border-radius: 0;
}

.blog-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #2490eb;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-card__more--plus {
  font-style: normal;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════════════════════════
   PAGE RENDEZ-VOUS — full redesign
   ════════════════════════════════════════════════════════════ */

/* Hero */
.page-rdv__hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e6bb0 100%);
  color: #fff;
  padding: 72px 0 56px;
}

.page-rdv__hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.page-rdv__hero-text {
  flex: 1 1 55%;
}

.page-rdv__hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin: 16px 0 20px;
  line-height: 1.2;
}

.page-rdv__hero-lead {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.page-rdv__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline--white {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  background: transparent;
}
.btn-outline--white:hover {
  background: rgba(255,255,255,.15);
}

/* Quick callback card */
.page-rdv__callback {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.page-rdv__callback-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 18px;
  text-align: center;
}

.page-rdv__callback-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-rdv__callback-form input[type="text"],
.page-rdv__callback-form input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s;
}

.page-rdv__callback-form input:focus {
  outline: none;
  border-color: var(--btn);
}

.page-rdv__callback-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* Info cards */
.page-rdv__cards {
  background: var(--bg-light-text);
  padding: 40px 0;
}

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

.page-rdv__card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.page-rdv__card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.page-rdv__card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 8px;
}

.page-rdv__card-text {
  font-size: .9rem;
  color: var(--secondary);
  line-height: 1.5;
}

/* Full form section */
.page-rdv__form-section {
  background: #fff;
}

.page-rdv__form-wrap {
  max-width: 760px;
}

.page-rdv__form-header {
  margin-bottom: 28px;
}

.page-rdv__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.page-rdv__form .page-contact__field {
  margin-bottom: 20px;
}

.page-rdv__form-note {
  font-size: .9rem;
  color: var(--secondary);
  margin-top: 12px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .page-rdv__hero-inner {
    flex-direction: column;
  }
  .page-rdv__callback {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 767px) {
  .page-rdv__cards-grid {
    grid-template-columns: 1fr;
  }
  .page-rdv__row2 {
    grid-template-columns: 1fr;
  }
}

.page-rdv__hero .pill.pill--white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
