:root {
  /* Couleurs principales */
  --color-noir: #1A1A1A;
  --color-coquelicot: #C8362A;
  --color-dore: #B8923D;
  --color-brun: #6B4F35;

  /* Fonds */
  --color-creme: #F5F0E8;
  --color-blanc: #FFFFFF;

  /* Texte */
  --color-text-principal: #1A1A1A;
  --color-text-secondaire: #4A4039;
  --color-text-clair: #C4B79E;
  --color-text-creme: #F5F0E8;

  /* Bordures */
  --color-border-clair: #E8DFC9;
  --color-border-fonce: #2A2620;

  /* Typographie */
  --font-titre: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-corps: 'Inter', -apple-system, system-ui, sans-serif;
  --font-surtitre: 'Inter', sans-serif;

  /* Animations */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-corps);
  color: var(--color-text-principal);
  background-color: var(--color-blanc);
  line-height: 1.7;
  padding-top: 64px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

section {
  padding: 60px 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  transition:
    background var(--duration-normal) var(--ease-in-out),
    padding var(--duration-normal) var(--ease-in-out),
    box-shadow var(--duration-normal) var(--ease-in-out);
}

.nav.is-scrolled {
  background: var(--color-noir);
  padding: 12px 40px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav--solid {
  background: var(--color-noir) !important;
  padding: 12px 40px;
}

.nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.nav__list a {
  color: var(--color-text-creme);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--duration-normal) var(--ease-in-out);
  position: relative;
}

.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-dore);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__list a:hover {
  color: var(--color-dore);
}

.nav__list a:hover::after {
  width: 100%;
}

.incontournables__card,
.testimonials__card,
.audience__card,
.equipments__card,
.why-choose__card,
.inclus__item {
  transition:
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
  cursor: default;
}

.incontournables__card:hover,
.testimonials__card:hover,
.audience__card:hover,
.equipments__card:hover,
.why-choose__card:hover,
.inclus__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

/* Photos galerie — zoom au survol */
.gallery__grid img {
  transition: transform var(--duration-slow) var(--ease-out);
  overflow: hidden;
}

.gallery__grid a:hover img,
.gallery__grid div:hover img {
  transform: scale(1.04);
}

.btn--primary:active,
.btn--secondary:active {
  transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .nav__list a::after,
  .incontournables__card,
  .testimonials__card,
  .audience__card,
  .equipments__card,
  .why-choose__card,
  .inclus__item,
  .gallery__grid img,
  .btn--primary,
  .btn--secondary {
    transition: none;
    transform: none;
  }
}

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .nav__logo-img {
    height: 32px;
  }

  .nav.is-scrolled,
  .nav--solid {
    padding: 12px 20px;
  }

  .nav__list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-noir);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform var(--duration-normal) var(--ease-in-out),
      opacity var(--duration-normal) var(--ease-in-out),
      visibility var(--duration-normal) var(--ease-in-out);
  }

  .nav__list li {
    text-align: center;
    padding: 12px 0;
  }

  .nav__list a {
    display: block;
    padding: 8px 16px;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.lightbox--open {
  display: flex;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 16px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 1;
}

.lightbox__close {
  top: 20px;
  right: 20px;
}

.lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== CLASSES DE BASE ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-corps);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--color-coquelicot);
  color: var(--color-blanc);
}

.btn--primary:hover {
  background: #A82C22;
}

.btn--secondary {
  background: transparent;
  color: #1A1A1A;
  border: 1px solid var(--color-text-clair);
}

.btn--secondary:hover {
  background: rgba(245, 240, 232, 0.1);
}

.btn--secondary--light {
  color: #F5F0E8;
  border-color: #F5F0E8;
}

.btn--secondary-light {
  background: transparent;
  color: var(--color-noir);
  border: 1px solid var(--color-noir);
}

.btn--secondary-light:hover {
  background: rgba(0, 0, 0, 0.05);
}

.contact-meta {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-secondaire);
}


.section__overline {
  display: block;
  font-family: var(--font-surtitre);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-coquelicot);
  margin-bottom: 16px;
}

.section__overline--gold {
  color: var(--color-dore);
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group > *:nth-child(1) { transition-delay: 0ms; }
.reveal-group > *:nth-child(2) { transition-delay: 160ms; }
.reveal-group > *:nth-child(3) { transition-delay: 320ms; }
.reveal-group > *:nth-child(4) { transition-delay: 480ms; }
.reveal-group > *:nth-child(5) { transition-delay: 640ms; }
.reveal-group > *:nth-child(6) { transition-delay: 800ms; }

/* ===== HIÉRARCHIE TYPOGRAPHIQUE ===== */
h1,
h2,
h3 {
  font-family: var(--font-titre);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-titre);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__subtitle {
  font-family: var(--font-corps);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-noir);
  background-image: radial-gradient(
    ellipse 50% 40% at 0% 100%,
    rgba(200, 54, 42, 0.18) 0%,
    transparent 70%
  );
  color: var(--color-text-creme);
  margin-top: -64px;
}

.hero__content {
  width: 40%;
  max-width: 560px;
  padding: 0 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__overline {
  font-family: var(--font-surtitre);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-coquelicot);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-titre);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero__title em {
  color: var(--color-coquelicot);
  font-style: italic;
}

.hero__subtitle {
  font-family: var(--font-corps);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .hero__content {
    padding: 60px 20px;
    max-width: none;
  }

  .hero__image {
    position: static;
    width: 100%;
    height: 400px;
  }
}

/* ===== HERO SPLIT ENTRANCE ===== */
.hero__content {
  opacity: 0;
  transform: translateX(-72px);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__image {
  opacity: 0;
  transform: translateX(72px);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 180ms;
}

.hero__content.is-visible,
.hero__image.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  /* Sur mobile, le hero est empilé — on revient à un reveal vertical */
  .hero__content {
    transform: translateY(32px);
  }
  .hero__image {
    transform: translateY(32px);
    transition-delay: 0ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > *,
  .hero__content, .hero__image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== BANDEAU CONFIANCE ===== */
.trust-banner {
  background-color: var(--color-creme);
  padding: 20px 0;
}

.trust-banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-banner__rating .stars {
  color: var(--color-coquelicot);
  margin-right: 8px;
}

.trust-banner__features {
  color: var(--color-brun);
}

@media (max-width: 768px) {
  .trust-banner__content {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== GALERIE PREMIUM ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-noir);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.12),
    0 1px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.10);
}

/* Bordure dorée animée au hover */
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 500ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.gallery__item:hover::before {
  border-color: var(--color-dore);
}

/* Coin décoratif doré en bas à droite */
.gallery__item::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid var(--color-dore);
  border-right: 1px solid var(--color-dore);
  opacity: 0;
  transform: translate(4px, 4px);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.gallery__item:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* Image : zoom léger + légère désaturation au repos */
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(0.95);
  transform: scale(1);
  transition:
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

/* Overlay dégradé discret en bas */
.gallery__item .gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.55), transparent);
  z-index: 1;
  pointer-events: none;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .gallery__item img,
  .gallery__item::before,
  .gallery__item::after {
    transition: none;
  }
}

/* ===== POUR QUI ===== */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.audience__card h3 {
  font-family: var(--font-titre);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.audience__card p {
  margin-bottom: 16px;
}

.audience__card a {
  color: var(--color-brun);
  text-decoration: underline;
}

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

/* ===== ÉQUIPEMENTS ===== */
.equipments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.equipments__card {
  text-align: center;
}

.equipments__card .icon {
  width: 48px;
  height: 48px;
  color: var(--color-brun);
  margin-bottom: 16px;
}

.equipments__card h3 {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== TÉMOIGNAGES CARROUSEL ===== */
.testimonials {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 593px;
  height: 593px;
  background-image: url('../images/poppy transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .testimonials::before {
    display: none;
  }
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonials__card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: var(--color-blanc);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.testimonials__stars {
  color: var(--color-dore);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonials__text {
  margin: 0;
  flex: 1;
}

.testimonials__text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-principal);
  font-style: italic;
  margin: 0;
}

.testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.testimonials__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-principal);
}

.testimonials__meta {
  font-size: 0.8rem;
  color: var(--color-text-secondaire);
}

/* Contrôles */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testimonials__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, 0.15);
  background: transparent;
  color: var(--color-text-principal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 250ms ease,
    color 250ms ease,
    background 250ms ease;
}

.testimonials__btn:hover {
  border-color: var(--color-dore);
  color: var(--color-dore);
}

.testimonials__btn:focus-visible {
  outline: 2px solid var(--color-dore);
  outline-offset: 3px;
}

.testimonials__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 26, 26, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 250ms ease, transform 250ms ease;
}

.testimonials__dot--active {
  background: var(--color-coquelicot);
  transform: scale(1.25);
}

.testimonials__dot:focus-visible {
  outline: 2px solid var(--color-dore);
  outline-offset: 3px;
}

.testimonials__cta {
  text-align: center;
  margin-top: 32px;
}

.testimonials__airbnb-link {
  font-size: 0.9rem;
  color: var(--color-dore);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 200ms ease;
}

.testimonials__airbnb-link:hover {
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials__card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .testimonials__card {
    flex: 0 0 90vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__track {
    transition: none;
  }
}

/* ===== LOCALISATION ===== */
.location__table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.location__table th,
.location__table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-clair);
}

.location__table th {
  background-color: var(--color-creme);
  font-weight: 600;
}

/* ===== POURQUOI CHOISIR ===== */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.why-choose__card {
  text-align: center;
}

.why-choose__card .icon {
  width: 48px;
  height: 48px;
  color: var(--color-brun);
  margin-bottom: 16px;
}

.why-choose__card h3 {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== CAS D'USAGE ===== */
.use-cases__list {
  margin-top: 32px;
}

.use-cases__item {
  margin-bottom: 24px;
}

.use-cases__item h3 {
  font-family: var(--font-titre);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== TÉMOIGNAGE ===== */
.testimonial__card {
  background-color: var(--color-creme);
  padding: 32px;
  border-radius: 4px;
  text-align: center;
  margin-top: 32px;
}

.testimonial__card blockquote {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial__card cite {
  color: var(--color-brun);
  font-weight: 500;
}

/* ===== FORMULAIRE DEVIS PRO ===== */
.quote-form {
  background-color: var(--color-noir);
  background-image: radial-gradient(
    ellipse 70% 50% at 50% 100%,
    rgba(200, 54, 42, 0.10) 0%,
    transparent 70%
  );
  padding: 80px 0;
}

.quote-form__inner {
  max-width: 760px;
  margin: 0 auto;
}

.quote-form__header {
  margin-bottom: 48px;
}

.quote-form__intro {
  color: var(--color-text-clair);
  font-size: 0.95rem;
  margin-top: 12px;
}

.quote-form__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 36px;
}

.quote-form__legend {
  font-family: var(--font-titre);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dore);
  margin-bottom: 20px;
  display: block;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

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

.quote-form__row--third {
  grid-template-columns: 1fr 2fr;
}

.quote-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-form__group label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-clair);
  text-transform: uppercase;
}

.quote-form__group label span {
  color: var(--color-coquelicot);
}

.quote-form__group input,
.quote-form__group select,
.quote-form__group textarea {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-corps);
  font-size: 0.95rem;
  color: var(--color-text-creme);
  transition: border-color 250ms ease, background 250ms ease;
  width: 100%;
}

.quote-form__group input::placeholder,
.quote-form__group textarea::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.quote-form__group input:focus,
.quote-form__group select:focus,
.quote-form__group textarea:focus {
  outline: none;
  border-color: var(--color-dore);
  background: rgba(245, 240, 232, 0.07);
}

.quote-form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B8923D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.quote-form__group select option {
  background: var(--color-noir);
  color: var(--color-text-creme);
}

.quote-form__group textarea {
  resize: vertical;
  min-height: 80px;
}

.quote-form__footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.quote-form__note {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  margin: 0;
  flex: 1;
}

@media (max-width: 640px) {
  .quote-form__row,
  .quote-form__row--third {
    grid-template-columns: 1fr;
  }

  .quote-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.quote-form__reassurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.quote-form__reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 2px;
  background: rgba(245, 240, 232, 0.03);
  transition:
    background 350ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-form__reassurance-item:hover {
  background: rgba(245, 240, 232, 0.07);
  border-color: rgba(184, 146, 61, 0.35);
  transform: translateY(-3px);
}

.quote-form__reassurance-item svg {
  stroke: var(--color-dore);
  flex-shrink: 0;
}

.quote-form__reassurance-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-creme);
  line-height: 1.4;
}

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

@media (max-width: 640px) {
  .quote-form__reassurance {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ===== POURQUOI SOMME ===== */
.why-somme {
  padding: 60px 0;
}

/* ===== INCONTOURNABLES ===== */
.incontournables__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.incontournables__card {
  background-color: var(--color-blanc);
  border: 1px solid var(--color-border-clair);
  border-radius: 4px;
  overflow: hidden;
}

.incontournables__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.incontournables__card h3 {
  font-family: var(--font-titre);
  font-size: 18px;
  font-weight: 600;
  margin: 16px;
  margin-bottom: 8px;
}

.incontournables__card p {
  margin: 0 16px 16px;
  font-size: 14px;
  color: var(--color-text-secondaire);
}

.incontournables__card p:first-of-type {
  font-weight: 500;
  color: var(--color-brun);
}

/* ===== TABLEAU TRAJETS ===== */
.trajets__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.trajets__table th,
.trajets__table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-clair);
}

.trajets__table th {
  background-color: var(--color-creme);
  font-weight: 600;
}

/* ===== HERO COURT ===== */
.hero-short {
  background-color: var(--color-noir);
  color: var(--color-text-creme);
  padding: 60px 0;
}

.hero-short__content {
  text-align: center;
}

.hero-short__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-short__nudge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem 0;
}

.hero-short__nudge p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-clair);
}

.hero-short__nudge-link {
  white-space: nowrap;
  font-size: 0.88rem;
  color: var(--color-dore);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 150ms ease;
}

.hero-short__nudge-link:hover {
  opacity: 0.75;
}

@media (max-width: 640px) {
  .hero-short__nudge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.notice-box {
  background-color: var(--color-creme);
  border-left: 4px solid var(--color-coquelicot);
  padding: 24px;
  margin: 32px 0;
}

.notice-box p {
  margin: 0;
  color: var(--color-text-principal);
}

.notice-box a {
  color: var(--color-dore);
  text-decoration: none;
  font-weight: 600;
}

.notice-box a:hover {
  text-decoration: underline;
}

.flatpickr-calendar {
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.15);
  border: 1px solid var(--color-border-clair);
}

.flatpickr-months,
.flatpickr-weekdays {
  background: var(--color-noir);
}

.flatpickr-weekday,
.flatpickr-day {
  color: var(--color-text-creme);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: rgba(200, 54, 42, 0.85);
  color: #fff;
}

.flatpickr-day:hover {
  background: rgba(184, 146, 61, 0.35);
}

.flatpickr-day.today {
  border-color: var(--color-coquelicot);
}

.flatpickr-day.disabled {
  color: rgba(74, 64, 57, 0.35);
}

/* ===== TARIFS ===== */
.pricing__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.pricing__table th,
.pricing__table td {
  padding: 16px;
  text-align: left;
  border: 1px solid var(--color-border-clair);
}

.pricing__table th {
  background-color: var(--color-creme);
  font-weight: 600;
  color: #1A1A1A !important;
}

.pricing__table td:first-child {
  font-weight: 500;
}

/* ===== INDICATEUR SAISONNIER ===== */
.seasonal-indicator {
  padding: 60px 0;
  background-color: var(--color-blanc);
}

.seasonal-indicator__legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

.seasonal-indicator__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.month {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-noir);
  border-radius: 4px;
}

.month--basse {
  background-color: var(--color-creme);
  color: #1A1A1A !important;
}

.month--moyenne {
  background-color: rgba(184, 146, 61, 0.6);
  color: var(--color-noir);
}

.month--haute {
  background-color: rgba(200, 54, 42, 0.8);
  color: #fff;
}

.legend-color--basse {
  background-color: var(--color-creme);
}

.legend-color--moyenne {
  background-color: rgba(184, 146, 61, 0.6);
}

.legend-color--haute {
  background-color: rgba(200, 54, 42, 0.8);
}

/* ===== FORMULAIRE SÉPARATEUR ===== */
.form-separator {
  background-color: var(--color-creme);
  padding: 16px;
  margin: 24px 0;
  border-radius: 4px;
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq__section {
  margin-top: 40px;
}

.faq__section h3 {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-brun);
}

.faq__item {
  margin-bottom: 24px;
}

.faq__item h4 {
  font-family: var(--font-titre);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== COORDONNÉES ===== */
.contact-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-info__left h3,
.contact-info__right h3 {
  font-family: var(--font-titre);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info__left p,
.contact-info__right p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PAGES LÉGALES ===== */
.legal-page main {
  padding: 40px 0;
}

main h1 {
  margin-bottom: 40px;
}

main h2 {
  font-family: var(--font-titre);
  font-size: 24px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--color-brun);
}

main p {
  margin-bottom: 16px;
}

main ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

main li {
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  background-color: var(--color-noir);
  color: var(--color-text-creme);
}


.footer__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  align-items: center;
}

.footer__nav a {
  color: var(--color-text-creme);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--duration-normal) var(--ease-in-out);
}

.footer__nav a:hover {
  color: var(--color-dore);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer__contact p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-clair);
}

.footer__contact-link {
  font-size: 14px;
  color: var(--color-text-creme);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--duration-normal) var(--ease-in-out);
}

.footer__contact-link:hover {
  color: var(--color-dore);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 13px;
}

.footer__legal a {
  color: var(--color-text-clair);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-in-out);
}

.footer__legal a:hover {
  color: var(--color-dore);
}

.footer__legal span {
  color: var(--color-text-clair);
  opacity: 0.4;
}

.footer__copy {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-clair);
  opacity: 0.5;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__contact {
    align-items: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ===== TARIFS NUDGE ===== */
.tarifs-nudge {
  padding: 0 0 2rem 0;
  background: #FFFFFF;
}

.tarifs-nudge__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #F5F0E8;
  border-left: 3px solid #C8362A;
  border-radius: 2px;
}

.tarifs-nudge__box p {
  margin: 0;
  font-size: 0.95rem;
  color: #1A1A1A;
}

.tarifs-nudge__link {
  white-space: nowrap;
  font-family: var(--font-titre);
  font-size: 0.95rem;
  color: #B8923D;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 150ms ease;
}

.tarifs-nudge__link:hover {
  opacity: 0.75;
}

@media (max-width: 640px) {
  .tarifs-nudge__box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Flatpickr — personnalisation palette Gîte Lycot */
.flatpickr-calendar {
  background: #FFFFFF;
  border: 1px solid rgba(26, 26, 26, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 2px;
}

.flatpickr-day {
  color: #1A1A1A;
  border-radius: 2px;
}

.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
  background: #F5F0E8;
  border-color: #B8923D;
  color: #1A1A1A;
}

.flatpickr-day.today {
  border-color: #B8923D;
  color: #1A1A1A;
}

.flatpickr-day.today:hover {
  background: #B8923D;
  border-color: #B8923D;
  color: #FFFFFF;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #C8362A;
  border-color: #C8362A;
  color: #FFFFFF;
}

.flatpickr-day.inRange {
  background: rgba(184, 146, 61, 0.12);
  border-color: transparent;
  color: #1A1A1A;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(26, 26, 26, 0.3);
}

.flatpickr-day.flatpickr-disabled {
  color: rgba(26, 26, 26, 0.2);
}

.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
span.flatpickr-weekday {
  background: #1A1A1A;
  color: #F5F0E8;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #F5F0E8;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: #F5F0E8;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #B8923D;
}

/* ===== FAQ ACCORDION ===== */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  margin-bottom: 0;
}

.faq__item:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.faq__question {
  min-height: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__question:hover {
  background: #F5F0E8;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.faq__question[aria-expanded="true"] {
  color: #C8362A;
}

.faq__chevron {
  flex-shrink: 0;
  color: #B8923D;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__answer:not([hidden]) {
  max-height: 600px;
}

.faq__answer p {
  padding: 0 0 1.25rem 0;
  color: #6B4F35;
  line-height: 1.7;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq__question,
  .faq__chevron,
  .faq__answer {
    transition: none;
  }
}

/* ===== INCLUS ===== */
.inclus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.inclus__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 2px;
  background: rgba(245, 240, 232, 0.04);
  transition:
    background 350ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.inclus__item:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: rgba(184, 146, 61, 0.4);
  transform: translateY(-2px);
}

.inclus__item svg {
  flex-shrink: 0;
  stroke: var(--color-dore);
}

.inclus__item span {
  font-size: 0.95rem;
  color: var(--color-text-creme);
  font-weight: 500;
}

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

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

/* ===== ALTERNANCE FONDS ===== */

section + section {
  border-top: none;
}

/* Fond anthracite — même couleur que le hero accueil */
.trust-banner,
.gallery,
.inclus,
.seasonal-indicator,
.faq,
.pros-reassurance {
  background-color: var(--color-noir);
  background-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(200, 54, 42, 0.12) 0%,
    transparent 70%
  );
}

.tarifs-nudge {
  background-color: var(--color-blanc);
}

.presentation {
  background-color: var(--color-noir) !important;
  background-image: radial-gradient(
    ellipse 80% 60% at 50% 100%,
    rgba(200, 54, 42, 0.18) 0%,
    transparent 70%
  ) !important;
}

.use-cases {
  background-color: var(--color-noir);
  background-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(200, 54, 42, 0.12) 0%,
    transparent 70%
  );
}

.use-cases,
.use-cases * {
  color: var(--color-text-creme);
}

.use-cases .section__overline {
  color: var(--color-dore);
}

.use-cases .section__title {
  color: var(--color-text-creme);
}

/* Sur fond noir, adapter les textes pour qu'ils restent lisibles */
.presentation *,
.trust-banner *,
.gallery *,
.inclus *,
.seasonal-indicator *,
.faq *,
.pros-reassurance * {
  color: var(--color-text-creme);
}

/* Exceptions : garder les couleurs d'accent */
.presentation .section__overline { color: var(--color-dore); }
.presentation .section__title { color: var(--color-text-creme); }

.trust-banner .section__overline,
.gallery .section__overline,
.inclus .section__overline,
.seasonal-indicator .section__overline,
.faq .section__overline {
  color: var(--color-dore);
}

.trust-banner .section__title,
.gallery .section__title,
.inclus .section__title,
.seasonal-indicator .section__title,
.faq .section__title {
  color: var(--color-text-creme);
}

/* FAQ sur fond noir : adapter les bordures et hover */
.faq__item {
  border-bottom-color: rgba(245, 240, 232, 0.12);
}

.faq__item:first-child {
  border-top-color: rgba(245, 240, 232, 0.12);
}

.faq__question {
  color: var(--color-text-creme);
}

.faq__question:hover {
  background: rgba(245, 240, 232, 0.06);
}

.faq__answer p {
  color: var(--color-text-clair);
}

/* Fond blanc — sections principales */
.presentation,
.audience,
.equipments,
.testimonials,
.pricing,
.location,
.cta-buttons,
.pros-form {
  background-color: #F5F0E8;
}

.contact-info {
  background-color: #F5F0E8;
}

.why-choose,
.use-cases,
.testimonial,
.quote-form-vacanciers,
.incontournables,
.region-intro,
.region-histoire {
  background-color: #F5F0E8;
}

/* ===== LOCALISATION GRID ===== */
.location__grid {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 2rem;
}

.location__grid table {
  flex: 0 0 380px;
  width: 380px;
}

.location__grid #map-lycot {
  flex: 1;
  min-width: 0;
  height: 420px;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .location__grid {
    flex-direction: column;
  }

  .location__grid table {
    flex: none;
    width: 100%;
  }

  .location__grid #map-lycot {
    width: 100%;
    height: 320px;
  }
}

/* ===== CARTE LEAFLET ===== */
#map-lycot {
  width: 100%;
  height: 420px;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  margin-top: 2rem;
}

.leaflet-popup-content-wrapper {
  border-radius: 2px;
  font-family: var(--font-corps);
  font-size: 14px;
  color: var(--color-text-principal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.leaflet-popup-tip {
  background: #fff;
}

/* ===== FORMULAIRE CONTACT VACANCIERS ===== */
.contact-form {
  background-color: #F5F0E8;
  padding: 80px 0;
}

.contact-form__inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form__header {
  margin-bottom: 48px;
}

.contact-form__intro {
  color: var(--color-text-secondaire);
  font-size: 0.95rem;
  margin-top: 12px;
}

.contact-form__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}

.contact-form__legend {
  font-family: var(--font-titre);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dore);
  margin-bottom: 20px;
  display: block;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

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

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form__group label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-secondaire);
  text-transform: uppercase;
}

.contact-form__group label span {
  color: var(--color-coquelicot);
}

.contact-form__group input,
.contact-form__group textarea {
  background: #FFFFFF;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-corps);
  font-size: 0.95rem;
  color: var(--color-text-principal);
  transition: border-color 250ms ease, box-shadow 250ms ease;
  width: 100%;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: rgba(26, 26, 26, 0.3);
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: var(--color-dore);
  box-shadow: 0 0 0 3px rgba(184, 146, 61, 0.1);
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.contact-form__note {
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.4);
  margin: 0;
  flex: 1;
}

.contact-form__separator {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 0.9rem;
  color: var(--color-text-secondaire);
}

.contact-form__separator a {
  color: var(--color-dore);
  text-decoration: none;
  font-weight: 500;
}

.contact-form__separator a:hover {
  opacity: 0.75;
}

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

  .contact-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

section + section {
  border-top: none !important;
}

/* Force fond anthracite use-cases */
.use-cases {
  background-color: #1A1A1A !important;
  background-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(200, 54, 42, 0.12) 0%,
    transparent 70%
  ) !important;
}

.use-cases .section__overline,
.use-cases .section__overline--gold {
  color: var(--color-dore) !important;
}

.use-cases .section__title,
.use-cases p,
.use-cases h3,
.use-cases .use-cases__item,
.use-cases .use-cases__item * {
  color: #F5F0E8 !important;
}

/* ===== LIVRET ===== */
.livret-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .livret-cards__grid {
    grid-template-columns: 1fr;
  }
}

.livret-card {
  background: var(--color-blanc);
  border: 1px solid var(--color-border-clair);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.livret-card__icon {
  display: flex;
  align-items: center;
}

.livret-card__title {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-noir);
  margin: 0;
}

.livret-card__text {
  font-size: 1rem;
  color: var(--color-text-secondaire);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.livret-tri__inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.livret-tri__icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.livret-tri__content {
  flex: 1;
}

.livret-tri__link {
  display: inline-block;
  margin-top: 16px;
  color: var(--color-dore);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.livret-tri__link:hover {
  color: var(--color-brun);
}

@media (max-width: 768px) {
  .livret-tri__inner {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===== INVENTAIRE SIGNALEMENT ===== */
.inventaire .faq__question {
  color: #1A1A1A !important;
}

.inventaire .faq__item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12) !important;
}

.inventaire .faq__question[aria-expanded="true"] {
  color: #C8362A !important;
}

.inventaire .faq__answer p,
.inventaire .faq__answer ul,
.inventaire .faq__answer li {
  color: #1A1A1A !important;
}

.inventaire .faq__chevron {
  color: #B8923D !important;
}

.pricing {
  background-color: var(--color-noir) !important;
  background-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(200, 54, 42, 0.12) 0%,
    transparent 70%
  ) !important;
}

.pricing *,
.pricing .section__title {
  color: var(--color-text-creme) !important;
}

.pricing .section__overline {
  color: var(--color-dore) !important;
}
