/* =========================================================
   VARIABLES GLOBALES
========================================================= */
:root {
  --primary: #A71E25;
  --secondary: #227246;
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --surface: #f8fafc;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(0,0,0,.08);
  --border: #e5e7eb; /* facteur commun (optionnel, sans refonte) */
}

/* Reset + Base */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.serif {
  font-family: 'Crimson Text', Georgia, serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 1rem;
}

.section { padding: 4rem 0; }
.section--alt { background: var(--surface); }

/* =========================================================
   A11Y – FOCUS VISIBLE (RGAA)
========================================================= */
:where(a, button, [role="button"], input, select, textarea):focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 10px;
}

:where(.btn):focus-visible {
  outline-offset: 4px;
}

/* =========================================================
   A11Y – REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* =========================================================
   TYPO – LISIBILITÉ
========================================================= */
.hero__title,
.card__title,
.room__title {
  line-height: 1.15;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* =========================================================
   LIENS DANS LE CONTENU (sans casser la nav)
========================================================= */
main a:not(.btn):not(.nav__link):not(.lang-switch__btn) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

main a:not(.btn):not(.nav__link):not(.lang-switch__btn):hover {
  color: var(--primary);
}

/* =========================================================
   STABILITÉ & RENDU IMAGES
========================================================= */
.card__media,
.room__media,
.hero__media,
.split__media {
  background-color: var(--border); /* fallback pendant chargement */
}

.hero__media picture,
.card__media picture,
.room__media picture,
.about__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about__media img {
  background-color: var(--border);
}

/* =========================================================
   BOUTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 6px 14px rgba(167, 30, 37, .28);
}

.btn--ghost {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn--ghost:hover {
  background: #fff;
  color: #111827;
}

/* =========================================================
   HEADER & NAVIGATION
========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  height: 78px;
}

.nav {
  justify-self: center;
}

.brand__title {
  font-weight: 700;
  font-size: 1.25rem;
}
.brand__img {
  height: 74px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
}

.nav { display: block; }

.nav__list {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.nav__item--has-children { position: relative; }

.nav__btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: transparent;
  border: 0;
  padding: .5rem .75rem;
  border-radius: 10px;
  cursor: pointer;
  color: #374151;
  font: inherit;
  line-height: inherit;
}

.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: .5rem;
  display: none;
  min-width: 220px;
}

.nav__submenu.is-open { display: block; }

.nav__submenu a {
  display: block;
  padding: .5rem .75rem;
  border-radius: 8px;
  color: #374151;
}

.nav__submenu a:hover { background: #f9fafb; }

.nav__link {
  padding: .5rem .75rem;
  border-radius: 10px;
  color: #374151;
}

.nav__link:hover {
  color: var(--primary);
  background: #f9fafb;
}

.nav__btn:hover {
  color: var(--primary);
  background: #f9fafb;
}

/* Lang switch */
.lang-switch {
  display: flex;
  gap: .25rem;
}

.lang-switch__btn {
  border: 1px solid var(--border);
  background: #f3f4f6;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
}

.lang-switch__btn.is-active {
  background: #fff;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

/* =========================================================
   ERGONOMIE TACTILE
========================================================= */
.nav__link,
.nav__btn,
.lang-switch__btn {
  min-height: 44px;
}

/* Mobile Nav */
@media (max-width:960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 78px;
    background: #fff;
    border-top: 1px solid var(--border);
  }
  .nav.is-open { display: block; }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem;
  }
  .nav__submenu {
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-left: 1rem;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  align-items: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__media picture {
  position: absolute;
  inset: 0;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay supprimé pour laisser la photo pleine */
.hero::after { content: none; }

.hero__content {
  position: absolute;
  left: 1.5rem;
  bottom: 2.25rem;
  z-index: 1;
  color: #fff;
  padding: 1.25rem 1.35rem;
  display: inline-block;
  max-width: 720px;
  width: min(90vw, 720px);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0 0 .4rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0;
  color: #f9fafb;
}

.hero__cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.hero--home {
  min-height: 90vh;
  align-items: center;
}

.hero--home .hero__content {
  left: 50%;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: min(78vw, 500px);
  padding: clamp(1rem, 2vw, 1.6rem) clamp(1.2rem, 2.4vw, 2rem);
  background: rgba(222, 216, 205, .84);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  color: #1b1f1d;
  text-align: center;
}

.hero--home .hero__title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 0 0 .45rem;
  letter-spacing: .01em;
  color: #0f1b16;
}

.hero--home .hero__subtitle {
  font-size: clamp(1rem, .95vw + .7rem, 1.16rem);
  color: #27302c;
  margin: 0;
}

@media (max-width: 960px) {
  .hero--home .hero__content {
    left: 50%;
    right: auto;
    width: calc(100vw - 2rem);
    max-width: 640px;
    top: auto;
    bottom: 1.5rem;
    transform: translateX(-50%);
  }
}

@keyframes hero-kenburns {
  0% { transform: scale(1.04); }
  50% { transform: scale(1.085); }
  100% { transform: scale(1.04); }
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================================
   CARDS (Maison / Cottage / Région)
========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  align-items: stretch;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card__media {
  height: 256px;
  background-size: cover;
  background-position: center;
}

.card__media img,
.room__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__body {
  padding: 1rem;
  text-align: center;
  display: grid;
  flex: 1;
  grid-template-rows: auto minmax(5.5rem, auto) auto;
  align-items: start;
}

.card__title {
  font-size: 1.25rem;
  margin: .25rem 0 .5rem;
}

.card__text {
  color: #4b5563;
  margin: 0 0 1.25rem;
  align-self: center;
}

.card__body .btn {
  align-self: end;
  justify-self: center;
}

@media (max-width:1024px) {
  .cards { grid-template-columns: repeat(2,1fr); }
}

@media (max-width:640px) {
  .cards { grid-template-columns: 1fr; }
}

/* =========================================================
   ROOMS (Cards sur Home)
========================================================= */
.rooms {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}

.room {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.room__media {
  height: 256px;
  background-size: cover;
  background-position: center;
}

.room__body {
  padding: 1rem;
  text-align: center;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.room__title {
  font-size: 1.5rem;
  margin: .25rem 0 .5rem;
}

.room__text {
  color: #4b5563;
  margin: 0 0 .75rem;
}

.room__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.room__body > .center {
  margin-top: auto;
}

@media (max-width:1024px) {
  .rooms { grid-template-columns: repeat(2,1fr); }
}

@media (max-width:640px) {
  .rooms { grid-template-columns: 1fr; }
}

.carousel--testimonials {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1rem 1.75rem;
  max-width: 980px;
  margin: 0 auto;
}

.carousel--testimonials .carousel__track {
  position: relative;
  min-height: 200px;
  padding: 0 5rem; /* réserve de place pour les flèches */
  touch-action: pan-y;
}

.carousel--testimonials .carousel__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 .5rem;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  width: calc(100% - 5rem);
}

.carousel--testimonials .carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.carousel--testimonials .carousel__slide.is-prev,
.carousel--testimonials .carousel__slide.is-next {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) translateY(8px);
  box-shadow: none;
}

.carousel--testimonials .carousel__control {
  background: #111827;
}

.carousel--testimonials .carousel__control:hover {
  background: var(--primary);
}

.carousel--testimonials .carousel__dots {
  padding-top: 1.1rem;
}

.review-card {
  max-width: 740px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: var(--shadow);
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #4b5563;
  font-weight: 600;
}

.review-card__rating {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #f59e0b;
}

.review-card__rating i { font-size: 1.1rem; }

.review-card__date {
  font-weight: 500;
  color: #6b7280;
}

.review-card__text {
  margin: 1rem 0 .75rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #111827;
}

.review-card__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  padding: 0;
  margin: 0 0 .9rem;
  cursor: pointer;
}

.review-card__more:hover,
.review-card__more:focus-visible {
  text-decoration: underline;
}

.review-card__author {
  margin: 0;
  color: #374151;
  font-weight: 700;
}

.review-card--modal {
  max-width: min(760px, calc(100vw - 2rem));
  box-shadow: none;
  border: 0;
  padding: 1.4rem 1.4rem 1.2rem;
}

.review-card__text--full {
  white-space: normal;
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, .62);
}

.review-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, .28);
  background: #fff;
}

.review-modal__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.review-modal__close:hover,
.review-modal__close:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

body.has-modal {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@media (max-width: 640px) {
  .carousel--testimonials {
    padding: 1rem 0 3.5rem;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .carousel--testimonials .carousel__track {
    min-height: auto;
    padding: 0;
  }

  .carousel--testimonials .carousel__slide,
  .carousel--testimonials .carousel__slide.is-active,
  .carousel--testimonials .carousel__slide.is-prev,
  .carousel--testimonials .carousel__slide.is-next {
    position: static;
    transform: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .carousel--testimonials .carousel__slide {
    display: none;
    opacity: 0;
  }

  .carousel--testimonials .carousel__slide.is-active {
    display: block;
    opacity: 1;
  }

  .carousel--testimonials .carousel__control {
    top: auto;
    bottom: .35rem;
    transform: none;
    width: 42px;
    height: 42px;
  }

  .carousel--testimonials .carousel__control:active {
    transform: scale(.97);
  }

  .carousel--testimonials .carousel__control--prev {
    left: calc(50% - 58px);
  }

  .carousel--testimonials .carousel__control--next {
    right: calc(50% - 58px);
  }

  .carousel--testimonials .carousel__dots {
    padding-top: .9rem;
  }

  .review-card {
    padding: 1.15rem 1rem 1rem;
    max-width: none;
  }

  .review-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-card__text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .review-card--modal {
    padding: 1.15rem 1rem 1rem;
  }
}

/* =========================================================
   SPLIT BLOCK
========================================================= */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}

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

.hosp__list li {
  margin: .2rem 0;
}

.split__media {
  border-radius: var(--radius);
  height: 380px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

@media (max-width:960px) {
  .split { grid-template-columns: 1fr; }
  .split__media { height: 260px; }
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  text-align: center;
}

.footer__title { margin: 0 0 .5rem; }

.footer__links li,
.footer__info li {
  margin: .35rem 0;
}

.footer__info li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* Icônes */
.footer__info i {
  font-size: 1.15rem;
  color: var(--primary);
  margin-top: 2px;
}

/* Liens footer – version unique & optimisée */
.footer__info a,
.footer__links a,
.footer__legal a {
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}

.footer__info a:hover,
.footer__links a:hover,
.footer__legal a:hover {
  border-bottom-color: currentColor;
  color: var(--primary);
}

.footer__legal {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

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

@media (max-width:520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PAGES LÉGALES (Mentions, CGV, etc.)
========================================================= */
.legal {
  max-width: 820px; /* largeur de lecture confortable */
  margin: 0 auto;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-row {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-row:last-child {
  border-bottom: none;
}

.legal-row h2.serif {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.legal-row p {
  margin: 0;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .legal {
    padding: 0 1rem;
  }

  .legal-grid {
    gap: 1.5rem;
  }
}

/* =========================================================
   HERO SIMPLE (Pages légales, CGV, etc.)
========================================================= */
.hero--simple {
  position: relative;
  min-height: auto;
  padding: 2.5rem 0;
  align-items: center;
  background: linear-gradient(90deg, #A71E25 0%, rgba(167,30,37,0.14) 42%, rgba(167,30,37,0.08) 100%), #f3f4f6;
}

.hero--simple::after {
  content: none; /* on désactive le dégradé sombre du hero principal */
}

.hero--simple .hero__content {
  color: var(--text);
  padding: 0 1rem;
}

.hero__simple-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: .5rem 0 0;
}

.breadcrumb {
  font-size: .9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .375rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
  border-bottom-color: currentColor;
  color: var(--text);
}

/* =========================================================
   HERO LÉGAL – FIX (neutralise le hero "photo")
========================================================= */
.hero.hero--legal {
  min-height: auto;        /* stop 70vh */
  align-items: center;     /* stop align-items:end */
  padding: 2.75rem 0 2rem; /* padding sur le conteneur */
  background:
    radial-gradient(1200px 400px at 20% 0%, rgba(0,0,0,.04), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,0));
}

/* IMPORTANT: neutralise .hero::after (overlay sombre) */
.hero.hero--legal::after {
  content: none !important;
}

/* On garde ton “cartouche papier” */
.hero.hero--legal .hero__content {
  color: var(--text);
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.1rem;
}

/* Typo */
.hero.hero--legal .hero__title {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  margin: .25rem 0 .35rem;
}

.hero.hero--legal .breadcrumb {
  margin: 0 0 .75rem;
}

.hero__kicker {
  margin: 0 0 .25rem;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* Mobile (fusion du doublon) */
@media (max-width: 768px) {
  .hero.hero--legal {
    padding: 2.25rem 0 1.5rem;
  }
  .hero.hero--legal .hero__content {
    border-radius: 14px;
    padding: 1rem;
  }
}

/* =========================================================
   UTILITAIRES
========================================================= */
.muted { color: var(--muted); }
.center { text-align: center; }

.mb-1{margin-bottom:.25rem}
.mb-2{margin-bottom:.5rem}
.mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.mb-8{margin-bottom:2rem}
.mb-12{margin-bottom:3rem}
.mb-16{margin-bottom:4rem}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* =========================================================
   FAQ
========================================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: .5rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  outline: none;
  list-style: none;
}

.faq__item[open] summary {
  color: var(--primary);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary:focus {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 8px;
}

.faq__answer {
  margin: .5rem 0 0;
  color: #374151;
}

/* FAQ CTA */
.faq-cta__inner {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  display: grid;
  gap: .85rem;
  align-items: center;
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
}

.faq-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 8px;
  background: linear-gradient(180deg, rgba(167,30,37,0.2), rgba(167,30,37,0.45));
}

.faq-cta__title {
  margin: 0;
  font-size: 1.35rem;
}

.faq-cta__text {
  margin: 0;
  color: #374151;
}

.faq-cta__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

@media (min-width: 720px) {
  .faq-cta__inner {
    grid-template-columns: 1.3fr .7fr;
  }
  .faq-cta__actions { justify-content: flex-end; }
}

/* =========================================================
   ABOUT / QUI SOMMES-NOUS
========================================================= */
.about__content .about__title {
  font-size: 2rem;
  margin: 0 0 .75rem;
}

.about__content .about__text {
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

/* Image ovale style portrait */
.about__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__media img {
  width: 100%;
  max-width: 380px;
  height: auto;

  /* Forme ovale */
  border-radius: 50% / 38%;

  /* Cadre élégant cohérent avec Maison Narbay */
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* Responsive */
@media (max-width: 960px) {
  .about__media img {
    max-width: 300px;
    margin-inline: auto;
  }
}

.highlight {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 380px at 110% 5%, rgba(167,30,37,.22), transparent 55%),
    radial-gradient(1200px 420px at 15% -20%, rgba(255,255,255,.16), transparent 60%),
    linear-gradient(125deg, #1f5f48, var(--secondary) 45%, #174235);
}
.highlight::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 60%;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.08) 0,
    rgba(255,255,255,.08) 2px,
    transparent 2px,
    transparent 14px
  );
  opacity: .35;
  pointer-events: none;
}
.highlight__panel {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(2.2rem, 4vw, 3.5rem);
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
  animation: highlight-fade-up .7s ease-out both;
}
.highlight .hero__title {
  color: #fff;
  margin: .75rem 0 .75rem;
  letter-spacing: .01em;
}
.highlight__text {
  color: rgba(255,255,255,.92);
  margin: 0 auto;
  max-width: 860px;
  line-height: 1.75;
  font-size: clamp(1rem, 1.1vw + .8rem, 1.2rem);
  animation: highlight-fade-up .9s ease-out both;
  animation-delay: .05s;
  margin-bottom: 1.25rem;
}

@keyframes highlight-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1024px) {
  .highlight .hero__title {
    font-size: 32px;
  }
  .highlight__text {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .highlight {
    padding: 2.25rem 0;
  }
  .highlight__panel {
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 100%;
  }
  .highlight .hero__title {
    font-size: clamp(1.4rem, 4.5vw, 1.9rem);
  }
  .highlight__text {
    line-height: 1.65;
    font-size: 1rem;
  }
}

/* CTA highlight alignment */
.cta-highlight .highlight__panel {
  text-align: center;
}

.cta-highlight .highlight__text {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.cta-highlight .hero__cta {
  justify-content: center;
  margin-bottom: .75rem;
}

/* =========================================================
   CTA – LISIBILITÉ (sans toucher au HTML)
========================================================= */
.section[style*="background:#227246"] p {
  color: rgba(255,255,255,.92);
}

@media (max-width: 768px) {
  .hero:not(.hero--home) .hero__content {
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    max-width: none;
  }
  .hero--home {
    min-height: auto;
  }
  .hero--home .hero__grid {
    padding: 2.5rem 0 3rem;
  }
}
