/* SITE VIGOT — VERSION MODERNE */

:root {
  --blue-dark: #071f43;
  --blue-main: #0a376d;
  --blue-soft: #eef5fb;
  --red: #e21d2f;
  --white: #ffffff;
  --text: #172235;
  --border: #d8e0ea;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 28px rgba(7,31,67,0.08);
}

.header-inner {
  max-width: 1360px;
  min-height: 96px;
  margin: 0 auto;
  padding: 7px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Le lien du logo garde toujours toute sa hauteur visible. */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
}

/* La hauteur est limitée pour que le logo ne soit jamais rogné. */
.logo {
  display: block;
  width: auto;
  height: 82px;
  max-width: 118px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
}

.main-nav a {
  position: relative;
  padding: 36px 0 30px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a:hover,
.main-nav a.active { color: var(--red); }

.menu-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--blue-dark);
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,31,67,0.96) 0%, rgba(7,31,67,0.82) 34%, rgba(7,31,67,0.22) 72%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center right;
}

.hero-content {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  color: var(--white);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero p {
  max-width: 560px;
  margin: 26px 0 32px;
  font-size: 1.35rem;
  color: rgba(255,255,255,0.92);
}

.red-line {
  display: block;
  width: 96px;
  height: 4px;
  margin: 24px 0;
  background: var(--red);
}

.red-line.small {
  width: 50px;
  height: 3px;
  margin: 14px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: 0.2s ease;
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.75);
}

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

.btn-dark {
  color: var(--white);
  background: var(--blue-dark);
}

.btn-dark:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.quick-services {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 32px;
  border-right: 1px solid var(--border);
}

.quick-card:last-child { border-right: none; }

.quick-card h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-card p { margin: 0; }

.service-icon {
  width: 104px;
  height: 90px;
  flex: 0 0 104px;
}

/* Les trois pictogrammes sont de vrais fichiers SVG placés dans images/. */
.service-icon-image {
  display: block;
  object-fit: contain;
  object-position: center;
}

.section { padding: 90px 24px; }
.section-light { background: linear-gradient(180deg, #ffffff 0%, var(--blue-soft) 100%); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.two-columns,
.service-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.service-section.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.service-section.reverse .service-text { order: 2; }

.section-kicker {
  margin: 0 0 8px;
  color: var(--blue-main);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.section-kicker.light { color: #9fd0ff; }

h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: var(--blue-dark);
  text-transform: uppercase;
}

.photo-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(7,31,67,0.14);
}

.photo-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.visual-box {
  min-height: 330px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7,31,67,0.88), rgba(10,55,109,0.55));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 18px 55px rgba(7,31,67,0.14);
}

.gallery-intro {
  max-width: 720px;
  margin: 22px 0 0;
}

/* ===================================================== */
/* GALERIE DES RÉALISATIONS                              */
/* 4 cartes régulières sur ordinateur, 2 sur tablette    */
/* et 1 sur téléphone.                                   */
/* ===================================================== */

.gallery-premium {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 235px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7,31,67,0.13);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,18,38,0.82) 0%,
    rgba(4,18,38,0.25) 38%,
    transparent 68%
  );
  transition: background 0.35s ease;
}

.gallery-overlay {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-transform: none;
  letter-spacing: 0;
}

.gallery-overlay strong {
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.gallery-overlay > span:last-child {
  color: rgba(255,255,255,0.86);
  font-size: 0.76rem;
  font-weight: 500;
}

.gallery-category {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: linear-gradient(
    to top,
    rgba(4,18,38,0.88) 0%,
    rgba(4,18,38,0.30) 42%,
    transparent 72%
  );
}

.gallery-item:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
  background: rgba(2, 12, 29, 0.94);
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: min(1200px, 88vw);
  max-height: 88vh;
  margin: 0;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--white);
  font-weight: 700;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 28px;
  font-size: 3rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

body.lightbox-open { overflow: hidden; }

.contact-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  color: var(--white);
}

.contact-section h2 { color: var(--white); }
.contact-section p { color: rgba(255,255,255,0.9); }

.contact-form {
  background: var(--white);
  color: var(--text);
  padding: 34px;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
}

.site-footer {
  padding: 26px 20px;
  background: #04152f;
  color: rgba(255,255,255,0.72);
  text-align: center;
}

@media (max-width: 980px) {
  .header-inner { min-height: 86px; padding: 7px 22px; }
  .logo { width: auto; height: 70px; max-width: 92px; }
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(7,31,67,0.16);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }

  .quick-services,
  .two-columns,
  .service-section,
  .service-section.reverse {
    grid-template-columns: 1fr;
  }

  .quick-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-section.reverse .service-text { order: 0; }

  .gallery-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .hero { min-height: 560px; background-position: center; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 70px 20px; }
  .gallery-premium {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    height: 245px;
  }

  .lightbox { padding: 60px 18px 24px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-prev,
  .lightbox-next { font-size: 3rem; }
}

/* ===================================================== */
/* DÉTAILS DE LA SECTION COUVERTURE                      */
/* ===================================================== */

.service-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--blue-dark);
  font-weight: 600;
}

.coverage-points {
  margin: 28px 0 30px;
  display: grid;
  gap: 12px;
}

.coverage-point {
  position: relative;
  padding: 16px 18px 16px 54px;
  border: 1px solid rgba(7,31,67,0.10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7,31,67,0.06);
}

.coverage-point::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 17px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.coverage-point h3 {
  margin: 0 0 4px;
  color: var(--blue-dark);
  font-size: 1rem;
  text-transform: uppercase;
}

.coverage-point p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.5;
}

.coverage-visual {
  min-height: 560px;
  overflow: hidden;
}

.coverage-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .coverage-visual,
  .coverage-visual img {
    min-height: 380px;
  }
}

/* ===================================================== */
/* SECTION ENTREPRISE                                    */
/* ===================================================== */

.company-section {
  position: relative;
  overflow: hidden;
}

.company-section::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -130px;
  width: 360px;
  height: 360px;
  border: 60px solid rgba(10,55,109,0.035);
  border-radius: 50%;
  pointer-events: none;
}

.company-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.company-visual {
  position: relative;
  min-height: 590px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(7,31,67,0.18);
}

.company-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,31,67,0.56), transparent 48%);
  pointer-events: none;
}

.company-visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.company-since {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.94);
  border-left: 4px solid var(--red);
  box-shadow: 0 12px 30px rgba(7,31,67,0.16);
}

.company-since strong,
.company-since span {
  display: block;
}

.company-since strong {
  color: var(--blue-dark);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.company-since span {
  margin-top: 3px;
  color: #526176;
  font-size: 0.92rem;
}

.company-lead {
  margin-top: 0;
  color: var(--blue-dark);
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 600;
}

.company-points {
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.company-point {
  display: flex;
  gap: 14px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(7,31,67,0.10);
  border-radius: 8px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 8px 25px rgba(7,31,67,0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(7,31,67,0.09);
}

.company-point-number {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.company-point h3 {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.company-point p {
  margin: 0;
  color: #526176;
  font-size: 0.88rem;
  line-height: 1.55;
}

.company-stats {
  position: relative;
  z-index: 1;
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--blue-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(7,31,67,0.15);
}

.company-stat {
  position: relative;
  padding: 27px 20px;
  text-align: center;
  color: var(--white);
}

.company-stat + .company-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  width: 1px;
  height: 52%;
  background: rgba(255,255,255,0.18);
}

.company-stat strong,
.company-stat span {
  display: block;
}

.company-stat strong {
  color: var(--white);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.1;
}

.company-stat span {
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

@media (max-width: 980px) {
  .company-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .company-visual,
  .company-visual img {
    min-height: 430px;
    height: 430px;
  }

  .company-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-stat:nth-child(3)::before {
    display: none;
  }

  .company-stat:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,0.14);
  }
}

@media (max-width: 640px) {
  .company-points,
  .company-stats {
    grid-template-columns: 1fr;
  }

  .company-point {
    min-height: auto;
  }

  .company-visual,
  .company-visual img {
    min-height: 360px;
    height: 360px;
  }

  .company-since {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .company-stat + .company-stat::before {
    display: none;
  }

  .company-stat:nth-child(n+2) {
    border-top: 1px solid rgba(255,255,255,0.14);
  }
}

/* ==========================================================
   ICÔNES PNG VIGOT — pack transparent intégré en juillet 2026
   ========================================================== */
.service-icon-image {
  object-fit: contain;
  filter: none;
}

.section-title-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.section-title-icon img {
  width: 58px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.section-title-icon .section-kicker {
  margin: 0;
}

.company-stat-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.company-stat-with-icon img {
  width: 54px;
  height: 44px;
  object-fit: contain;
}

.company-stat-with-icon div {
  display: flex;
  flex-direction: column;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-details p img {
  width: 42px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 42px;
}

@media (max-width: 720px) {
  .section-title-icon img {
    width: 48px;
    height: 40px;
  }

  .contact-details p img {
    width: 36px;
    height: 32px;
    flex-basis: 36px;
  }
}


/* ===================================================== */
/* SECTION BARDAGE — FINITION PREMIUM                    */
/* ===================================================== */

.bardage-premium-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(18, 92, 167, 0.08), transparent 27%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.bardage-premium-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(135deg, transparent 20%, rgba(7, 31, 67, 0.035) 100%);
  pointer-events: none;
}

.bardage-section {
  position: relative;
  z-index: 1;
  gap: 78px;
}

.bardage-title-icon {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 5px;
}

.bardage-title-icon img {
  width: 54px;
  height: 44px;
  object-fit: contain;
}

.bardage-title-icon .section-kicker { margin: 0; }

.bardage-materials {
  margin: 30px 0 26px;
  display: grid;
  gap: 13px;
}

.bardage-material-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(7, 31, 67, 0.09);
  border-left: 3px solid var(--blue-main);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(7, 31, 67, 0.065);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-left-color 0.25s ease;
}

.bardage-material-card:hover {
  transform: translateY(-3px);
  border-left-color: var(--red);
  box-shadow: 0 16px 34px rgba(7, 31, 67, 0.11);
}

.bardage-material-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.bardage-material-card h3 {
  margin: 1px 0 5px;
  color: var(--blue-dark);
  font-size: 1rem;
  text-transform: uppercase;
}

.bardage-material-card p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.55;
}

.bardage-benefits {
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.bardage-benefits span {
  position: relative;
  padding: 9px 13px 9px 32px;
  border-radius: 999px;
  background: rgba(10, 55, 109, 0.075);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.bardage-benefits span::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 900;
}

.bardage-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--blue-dark);
  box-shadow: 0 24px 65px rgba(7, 31, 67, 0.2);
}

.bardage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 21, 47, 0.8) 100%);
  pointer-events: none;
}

.bardage-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.bardage-visual:hover img { transform: scale(1.035); }

.bardage-visual-badge {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 25px;
  padding: 19px 20px;
  border-left: 4px solid var(--red);
  background: rgba(4, 21, 47, 0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  text-transform: none;
  letter-spacing: normal;
}

.bardage-visual-badge strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.03rem;
  text-transform: uppercase;
}

.bardage-visual-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .bardage-section { gap: 44px; }
  .bardage-section.reverse .service-text { order: 0; }
  .bardage-visual,
  .bardage-visual img { min-height: 460px; }
}

@media (max-width: 560px) {
  .bardage-title-icon img {
    width: 46px;
    height: 38px;
  }

  .bardage-material-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 15px;
  }

  .bardage-material-number {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .bardage-benefits { gap: 7px; }
  .bardage-benefits span { font-size: 0.76rem; }

  .bardage-visual,
  .bardage-visual img { min-height: 360px; }

  .bardage-visual-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 15px 16px;
  }
}


/* ===================================================== */
/* SECTION CONTACT — VERSION PREMIUM                     */
/* ===================================================== */
.contact-premium-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(72, 157, 235, 0.16), transparent 26%),
    linear-gradient(135deg, #061a39 0%, #0a376d 100%);
}

.contact-premium-section::before {
  content: "";
  position: absolute;
  left: -170px;
  bottom: -210px;
  width: 470px;
  height: 470px;
  border: 72px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: 38px;
  align-items: stretch;
}

.contact-form-panel {
  padding: 42px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-form-panel h2 { color: var(--blue-dark); }
.contact-form-panel .section-kicker { color: var(--blue-main); }
.contact-form-panel .contact-intro {
  max-width: 760px;
  margin: 20px 0 28px;
  color: var(--text);
  line-height: 1.7;
}

.contact-title-icon {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 7px;
}

.contact-title-icon img {
  width: 52px;
  height: 42px;
  object-fit: contain;
}

.contact-title-icon .section-kicker { margin: 0; }

.contact-form-premium {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 20px;
}

.contact-form-premium label {
  display: block;
  margin-bottom: 17px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form-premium label > span[aria-hidden="true"],
.contact-form-footer p span { color: var(--red); }

.contact-form-premium input,
.contact-form-premium select,
.contact-form-premium textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #ccd6e3;
  border-radius: 6px;
  background: #f9fbfd;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-premium select { cursor: pointer; }
.contact-form-premium textarea { resize: vertical; min-height: 145px; }

.contact-form-premium input:focus,
.contact-form-premium select:focus,
.contact-form-premium textarea:focus {
  outline: none;
  border-color: var(--blue-main);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 55, 109, 0.11);
}

.contact-urgent {
  display: flex !important;
  align-items: center;
  gap: 11px;
  margin: 2px 0 23px !important;
  padding: 13px 15px;
  border: 1px solid rgba(197, 35, 47, 0.18);
  border-radius: 6px;
  background: rgba(197, 35, 47, 0.045);
  cursor: pointer;
}

.contact-urgent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
  flex: 0 0 18px;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-form-footer p {
  margin: 0;
  color: #68788b;
  font-size: 0.79rem;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  padding: 42px 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(4, 21, 47, 0.58);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.contact-card-kicker {
  margin: 0 0 8px;
  color: #9fd0ff !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-card-text {
  margin: 18px 0 27px;
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.65;
}

.contact-details-premium {
  display: grid;
  gap: 11px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
  text-decoration: none;
}

.contact-detail-row img {
  width: 42px;
  height: 36px;
  flex: 0 0 42px;
  object-fit: contain;
}

.contact-detail-row span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-detail-row small {
  margin-bottom: 3px;
  color: #9fd0ff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-detail-row strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-detail-row[href] { transition: transform 0.2s ease, opacity 0.2s ease; }
.contact-detail-row[href]:hover { transform: translateX(4px); opacity: 0.9; }

.contact-hours {
  margin: 28px 0;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.contact-hours h4 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-hours div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.contact-hours div + div { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.contact-hours strong { color: #fff; text-align: right; }

.contact-call-button {
  margin-top: auto;
  justify-content: center;
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.contact-call-button:hover { background: #a91826; border-color: #a91826; }

@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { min-height: auto; }
}

@media (max-width: 640px) {
  .contact-form-panel,
  .contact-info-card { padding: 30px 22px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form-footer { align-items: stretch; flex-direction: column; }
  .contact-form-footer .btn { width: 100%; justify-content: center; }
  .contact-hours div { flex-direction: column; gap: 3px; }
  .contact-hours strong { text-align: left; }
}


/* ===================================================== */
/* ACCUEIL PREMIUM — inspiration validée par le client   */
/* ===================================================== */
.home-stage { position: relative; background: var(--blue-dark); }
.home-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(3,19,43,.78), rgba(3,19,43,.18) 78%, transparent);
  box-shadow: none;
}
.home-header .header-inner { max-width: 1460px; min-height: 104px; padding: 10px 32px; gap: 26px; }
.home-header .logo { width: auto; height: 88px; max-width: 138px; filter: drop-shadow(0 3px 8px rgba(0,0,0,.28)); }
.home-header .main-nav { gap: clamp(18px, 2vw, 34px); color: #fff; font-size: .76rem; letter-spacing: .045em; }
.home-header .main-nav a { padding: 38px 0 28px; }
.home-header .main-nav a::after { bottom: 21px; height: 2px; }
.home-header .main-nav a:hover, .home-header .main-nav a.active { color: #fff; }
.header-phone { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; padding: 10px 16px; border: 1px solid rgba(255,255,255,.75); border-radius: 8px; color: #fff; font-weight: 800; font-size: .86rem; }
.header-phone:hover { background: #fff; color: var(--blue-dark); }

.hero-showcase {
  min-height: 720px;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(3,18,42,.95) 0%, rgba(3,18,42,.78) 29%, rgba(3,18,42,.28) 55%, rgba(3,18,42,.04) 78%),
    linear-gradient(0deg, rgba(3,18,42,.34), transparent 42%),
    url("images/hero-vigot.jpg");
  background-size: cover;
  background-position: center center;
}
.hero-showcase .hero-content { max-width: 1460px; padding: 160px 72px 48px; }
.hero-kicker { margin: 0 0 10px !important; color: var(--red) !important; font-size: 1rem !important; font-weight: 700; text-transform: uppercase; letter-spacing: .055em; }
.hero-showcase h1 { display: flex; flex-direction: column; max-width: 520px; font-size: clamp(2.7rem, 4vw, 4.4rem); line-height: .98; letter-spacing: -.02em; }
.hero-showcase h1 span { display: block; }
.hero-showcase h1 .hero-accent { color: #2384d8; }
.hero-subtitle { margin: 20px 0 0 !important; font-size: clamp(1.6rem, 2.2vw, 2.25rem) !important; line-height: 1.12; font-weight: 500; }
.hero-line { width: 64px; height: 3px; margin: 20px 0; }
.hero-intro { max-width: 430px !important; margin: 0 0 25px !important; font-size: 1rem !important; line-height: 1.45; }
.hero-cta { min-width: 310px; justify-content: space-between; padding: 16px 20px; border-radius: 5px; color: #fff; background: linear-gradient(135deg, #e31c2d, #d51d2b); box-shadow: 0 14px 34px rgba(226,29,47,.28); }
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(226,29,47,.35); }
.hero-cta-icon { font-size: 1.35rem; }
.hero-cta-arrow { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; display: grid; place-items: center; }
.hero-reassurance { margin: 12px 0 0 !important; font-size: .78rem !important; color: rgba(255,255,255,.88) !important; }
.hero-reassurance span { margin-right: 7px; }

.quick-services-premium { max-width: none; padding: 0 clamp(24px, 7vw, 130px); grid-template-columns: repeat(4, minmax(0,1fr)); }
.quick-services-premium .quick-card { min-height: 216px; padding: 22px 34px 24px; flex-direction: column; justify-content: center; gap: 12px; text-align: center; transition: background .2s ease, transform .2s ease; }
.quick-services-premium .quick-card:hover { background: #f7faff; transform: translateY(-3px); }
.quick-services-premium .service-icon { width: 82px; height: 68px; flex: 0 0 68px; }
.quick-services-premium .quick-card h2 { font-size: 1.04rem; margin: 0; }
.quick-services-premium .quick-card p { max-width: 245px; margin: 10px auto 0; font-size: .84rem; line-height: 1.45; color: #182235; }
.quick-red-line { display: block; width: 34px; height: 3px; margin: 10px auto 0; background: var(--red); }

.trust-strip { background: linear-gradient(90deg, #071f43, #0a376d 50%, #071f43); color: #fff; }
.trust-strip-inner { max-width: 1080px; margin: 0 auto; padding: 16px 24px; display: grid; grid-template-columns: repeat(3,1fr); }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 58px; border-right: 1px solid rgba(255,255,255,.32); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.85); border-radius: 12px; font-size: 1.25rem; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: .86rem; text-transform: uppercase; letter-spacing: .025em; }
.trust-item div > span { color: rgba(255,255,255,.82); font-size: .78rem; }

@media (max-width: 1180px) {
  .home-header .main-nav { gap: 18px; font-size: .69rem; }
  .header-phone { display: none; }
  .hero-showcase .hero-content { padding-left: 42px; }
  .quick-services-premium { padding: 0 24px; }
}
@media (max-width: 980px) {
  .home-header { position: absolute; }
  .home-header .header-inner { min-height: 88px; padding: 7px 22px; }
  .home-header .logo { height: 72px; max-width: 106px; }
  .home-header .menu-toggle { display: block; color: #fff; }
  .home-header .main-nav { top: 88px; color: var(--blue-dark); background: #fff; }
  .home-header .main-nav a { padding: 16px 24px; }
  .hero-showcase { min-height: 680px; background-position: 58% center; }
  .hero-showcase .hero-content { padding: 145px 28px 46px; }
  .quick-services-premium { grid-template-columns: repeat(2,1fr); }
  .quick-services-premium .quick-card:nth-child(2) { border-right: 0; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); justify-content: flex-start; padding: 10px 20px; }
  .trust-item:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .hero-showcase { min-height: 700px; background-position: 64% center; }
  .hero-showcase::before { content:""; position:absolute; inset:0; background:rgba(3,18,42,.2); pointer-events:none; }
  .hero-showcase .hero-content { position: relative; z-index: 1; padding: 130px 20px 34px; }
  .hero-showcase h1 { font-size: 2.55rem; }
  .hero-cta { min-width: 0; width: 100%; }
  .quick-services-premium { grid-template-columns: 1fr; padding: 0; }
  .quick-services-premium .quick-card { border-right: 0; border-bottom: 1px solid var(--border); }
}


/* =====================================================
   NAVIGATION CONFORT : menu fixe + retour en haut
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(7, 31, 67, .14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.main-nav a {
  position: relative;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-nav a.active {
  color: var(--red);
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  box-shadow: 0 10px 28px rgba(7, 31, 67, .28);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255,255,255,.9);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 23px;
  }

  .main-nav a::after {
    bottom: -2px;
  }
}

/* Correctif final navigation : le header reste accessible aussi sur mobile */
@media (max-width: 1020px) {
  .home-header.site-header {
    position: sticky;
    top: 0;
  }
}

.back-to-top {
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}


/* =====================================================
   FINITIONS PREMIUM — cohérence, transitions et mobile
   ===================================================== */
:root {
  --section-space: clamp(72px, 8vw, 112px);
  --shadow-soft: 0 18px 48px rgba(7, 31, 67, .10);
  --shadow-hover: 0 24px 60px rgba(7, 31, 67, .16);
}

body { overflow-x: hidden; }
.section {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(10,55,109,.16), transparent);
}
.section-light {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 52%, #f9fcff 100%);
}

.btn, .quick-card, .company-point, .coverage-point, .bardage-material-card,
.contact-detail-row, .gallery-item, .visual-box img {
  transition-duration: .32s;
  transition-timing-function: cubic-bezier(.2,.7,.2,1);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.company-point, .coverage-point, .bardage-material-card {
  border-radius: 10px;
}
.company-point:hover, .coverage-point:hover, .bardage-material-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.visual-box { overflow: hidden; border-radius: 14px; box-shadow: var(--shadow-soft); }
.visual-box img { width: 100%; height: 100%; object-fit: cover; }
.visual-box:hover img { transform: scale(1.025); }

.gallery-item {
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(7,31,67,.10);
}
.gallery-item:hover, .gallery-item:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.gallery-item::before {
  content: "Voir la réalisation  ↗";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7,31,67,.72);
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .25s ease, transform .25s ease;
}
.gallery-item:hover::before, .gallery-item:focus-visible::before { opacity: 1; transform: translateY(0); }

/* Apparition discrète au défilement */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Header lisible après le hero, tout en gardant le logo officiel */
.site-header.is-scrolled .main-nav { color: var(--blue-dark); }
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.active { color: var(--red); }
.site-header.is-scrolled .header-phone { color: var(--blue-dark); border-color: rgba(7,31,67,.18); }
.site-header.is-scrolled .menu-toggle { color: var(--blue-dark); }

/* Accessibilité clavier */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(226,29,47,.38);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .section { padding-left: 22px; padding-right: 22px; }
  .home-header.site-header { position: sticky; top: 0; }
  .home-header.site-header.is-scrolled { position: fixed; left: 0; right: 0; }
  .main-nav.open { max-height: calc(100vh - 88px); overflow-y: auto; box-shadow: 0 18px 35px rgba(7,31,67,.18); }
  .company-layout, .service-section, .contact-layout { gap: 48px; }
}

@media (max-width: 640px) {
  :root { --section-space: 68px; }
  html { scroll-padding-top: 86px; }
  .section { padding-left: 18px; padding-right: 18px; }
  .section + .section::before { width: calc(100% - 36px); }
  .hero-showcase .hero-content { padding-left: 20px; padding-right: 20px; }
  .hero-intro { font-size: 1rem !important; line-height: 1.65; }
  .company-points, .coverage-points, .bardage-materials { gap: 14px; }
  .company-point, .coverage-point, .bardage-material-card { padding: 18px; }
  .company-stats { grid-template-columns: repeat(2, 1fr); }
  .company-stat { min-height: 132px; padding: 20px 12px; }
  .gallery-premium { gap: 16px; }
  .gallery-item::before { display: none; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-footer { align-items: stretch; gap: 18px; }
  .contact-form-footer .btn { width: 100%; justify-content: center; }
  .back-to-top { bottom: max(16px, env(safe-area-inset-bottom)); }
}

@media (max-width: 420px) {
  .company-stats { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .hero-showcase h1 { font-size: 2.28rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}


/* Accessibilité et contenu local SEO */
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 99999; padding: .75rem 1rem; background: #fff; color: #071f43; border-radius: .4rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }
.company-service-area { margin-top: 1rem; }


/* Sécurité et accessibilité du formulaire */
.form-honeypot { position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
.contact-consent { display:flex; align-items:flex-start; gap:.65rem; font-size:.9rem; line-height:1.45; }
.contact-consent input { margin-top:.2rem; flex:0 0 auto; }
.contact-consent a { color:inherit; text-decoration:underline; }
.form-status { min-height:1.5em; margin:.25rem 0; font-weight:600; }
.footer-legal { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-top:.5rem; }
.footer-legal a { color:inherit; text-underline-offset:3px; }

/* VERSION ULTIMATE — accessibilité, FAQ et pages légales */
.skip-link{position:fixed;left:16px;top:-100px;z-index:9999;background:#fff;color:var(--blue-dark);padding:12px 18px;border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.22);font-weight:800}.skip-link:focus{top:16px}
.faq-section{padding-top:90px;padding-bottom:90px}.faq-list{max-width:900px;margin:36px auto 0;display:grid;gap:14px}.faq-list details{background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:0 10px 30px rgba(7,31,67,.06);overflow:hidden}.faq-list summary{cursor:pointer;list-style:none;padding:20px 56px 20px 22px;color:var(--blue-dark);font-weight:800;position:relative}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary::after{content:"+";position:absolute;right:22px;top:50%;transform:translateY(-50%);font-size:1.6rem;color:var(--red)}.faq-list details[open] summary::after{content:"–"}.faq-list details p{margin:0;padding:0 22px 22px}.faq-list a{color:var(--red);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.legal-page{background:#f3f6fa}.legal-header{background:var(--blue-dark);min-height:108px;display:flex;align-items:center;padding:10px max(24px,calc((100% - 980px)/2))}.legal-header img{height:84px;width:auto}.legal-main{max-width:980px;margin:42px auto;padding:0 24px 50px}.legal-main h1{font-size:clamp(2rem,5vw,3.3rem);color:var(--blue-dark);margin:18px 0 30px}.legal-main section{background:#fff;border:1px solid var(--border);border-radius:14px;padding:24px;margin:16px 0;box-shadow:0 10px 30px rgba(7,31,67,.05)}.legal-main h2{color:var(--blue-dark);margin-top:0}.legal-main a{color:var(--red);font-weight:700;text-decoration:underline;text-underline-offset:3px}.legal-main address{font-style:normal}.legal-back{display:inline-flex;margin-top:4px}.legal-footer{text-align:center;padding:25px;background:var(--blue-dark);color:#fff}.legal-footer a{text-decoration:underline;text-underline-offset:3px}
@media(max-width:700px){.faq-section{padding-top:64px;padding-bottom:64px}.legal-main{margin-top:26px}.legal-main section{padding:20px}}

/* États du formulaire de contact */
.form-status { min-height: 1.5em; margin: .75rem 0 0; font-weight: 700; }
.form-status-success { color: #176b36; }
.form-status-error { color: #a51f1f; }
.contact-form button[disabled] { cursor: wait; opacity: .72; }


/* POP-UP TEMPORAIRE — VACANCES D’ÉTÉ 2026 */
.visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.holiday-popup[hidden]{display:none}
.holiday-popup{position:fixed;inset:0;z-index:10000;display:grid;place-items:center;padding:clamp(12px,2.5vw,30px)}
.holiday-popup__backdrop{position:absolute;inset:0;background:rgba(2,15,31,.88);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px)}
.holiday-popup__panel{position:relative;z-index:1;width:min(720px,calc(100vw - 24px));max-height:calc(100vh - 24px);display:flex;justify-content:center;animation:holidayPopupIn .32s ease-out both}
.holiday-popup__panel img{display:block;width:auto;max-width:100%;height:auto;max-height:calc(100vh - 24px);object-fit:contain;border-radius:14px;box-shadow:0 24px 70px rgba(0,0,0,.48)}
.holiday-popup__close{position:absolute;right:10px;top:10px;z-index:2;width:46px;height:46px;border:2px solid rgba(255,255,255,.9);border-radius:50%;background:rgba(3,24,52,.88);color:#fff;font-size:2rem;line-height:1;display:grid;place-items:center;cursor:pointer;box-shadow:0 5px 18px rgba(0,0,0,.35);transition:transform .18s ease,background .18s ease}
.holiday-popup__close:hover,.holiday-popup__close:focus-visible{background:#c51a16;transform:scale(1.06);outline:3px solid #fff;outline-offset:2px}
body.holiday-popup-open{overflow:hidden}
@keyframes holidayPopupIn{from{opacity:0;transform:translateY(18px) scale(.97)}to{opacity:1;transform:none}}
@media(max-width:600px){.holiday-popup{padding:8px}.holiday-popup__panel{width:calc(100vw - 16px);max-height:calc(100vh - 16px)}.holiday-popup__panel img{max-height:calc(100vh - 16px);border-radius:10px}.holiday-popup__close{right:7px;top:7px;width:42px;height:42px;font-size:1.8rem}}
@media(prefers-reduced-motion:reduce){.holiday-popup__panel{animation:none}}

.contact-form .form-status {
  display: block;
  min-height: 0;
  margin: 16px 0;
  padding: 13px 15px;
  border-radius: 6px;
  font-weight: 700;
}

.contact-form .form-status:empty {
  display: none;
}

.contact-form .form-status-success {
  color: #176b36 !important;
  background: #eaf7ef;
  border: 1px solid #9bd3ae;
}

.contact-form .form-status-error {
  color: #a51f1f !important;
  background: #fff0f0;
  border: 1px solid #e2aaaa;
}
