@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/montserrat-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/montserrat-semibold.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-bold.woff2") format("woff2");
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: #f47b27;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover, a:focus {
  color: #d96915;
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.25rem;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

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

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

strong {
  font-weight: 700;
  color: #1a1a1a;
}

::selection {
  background: #f47b27;
  color: #fff;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #f47b27;
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 100;
  font-weight: 700;
  border-bottom-right-radius: 6px;
}
.skip-link:focus {
  top: 0;
  color: #fff;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid #f47b27;
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.site-header {
  background: #1a1a1a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid #f47b27;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.brand:hover {
  color: #fff;
  text-decoration: none;
}
.brand__logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
}
@media (min-width: 768px) {
  .brand__logo {
    height: 72px;
    width: 72px;
  }
}
@media (min-width: 1024px) {
  .brand__logo {
    height: 96px;
    width: 96px;
  }
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.brand__name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.01em;
}
@media (min-width: 1024px) {
  .brand__name {
    font-size: 1.25rem;
  }
}
.brand__tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  display: none;
}
@media (min-width: 1024px) {
  .brand__tagline {
    display: block;
  }
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  margin: 0;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
}
.menu-button:hover {
  background: rgba(255, 255, 255, 0.08);
}
.menu-button__bar {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:focus-visible + .menu-button {
  outline: 3px solid #f47b27;
  outline-offset: 2px;
}

.menu-toggle:checked + .menu-button .menu-button__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle:checked + .menu-button .menu-button__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked + .menu-button .menu-button__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.menu-toggle:checked ~ .nav {
  display: block;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-left: 3px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #f47b27;
  text-decoration: none;
}
.nav__link--current {
  color: #f47b27;
  border-left-color: #f47b27;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #f47b27;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.phone-cta:hover {
  background: #d96915;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.phone-cta__icon {
  width: 18px;
  height: 18px;
}
.phone-cta__label {
  display: none;
}
@media (min-width: 768px) {
  .phone-cta__label {
    display: inline;
  }
}

@media (min-width: 768px) {
  .menu-toggle,
  .menu-button {
    display: none;
  }
  .nav {
    display: flex;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    width: auto;
  }
  .nav__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: stretch;
    gap: 0.25rem;
  }
  .nav__item {
    display: flex;
  }
  .nav__link {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    border-left: 0;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.8);
  }
  .nav__link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left: 0;
    border-bottom-color: #f47b27;
  }
  .nav__link--current {
    color: #f47b27;
    border-bottom-color: #f47b27;
  }
}
.site-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4rem;
}
.site-footer a {
  color: #fff;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer a:hover {
  color: #f47b27;
}
.site-footer strong {
  color: #fff;
}
.site-footer h2 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid #f47b27;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1.4fr 1fr;
  }
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  font-size: 0.875rem;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.site-footer__bottom-inner p {
  margin: 0;
}
@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__credit {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(244, 123, 39, 0.5);
  text-underline-offset: 3px;
}
.site-footer__credit a:hover {
  color: #f47b27;
  text-decoration-color: #f47b27;
}

.page__header {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.page__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #f47b27;
}
.page__header h1 {
  color: #fff;
  margin: 0;
}

.page__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0.5rem 0 0;
  font-weight: 400;
}

.page__content {
  padding: 4rem 0;
}
.page__content h2 {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}
.page__content h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  max-width: 100%;
  border-radius: 6px;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  overflow-wrap: anywhere;
  letter-spacing: 0.01em;
}
.btn:hover, .btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.btn--primary {
  background: #1a1a1a;
  color: #fff;
}
.btn--primary:hover {
  background: #0d0d0d;
  color: #fff;
}
.btn--accent {
  background: #f47b27;
  color: #fff;
}
.btn--accent:hover {
  background: #d96915;
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
.btn--outline {
  background: transparent;
  color: #f47b27;
  border-color: #f47b27;
}
.btn--outline:hover {
  background: #f47b27;
  color: #fff;
}
.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  background: #1a1a1a;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 4rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 80px, rgba(255, 255, 255, 0.02) 80px, rgba(255, 255, 255, 0.02) 81px);
  z-index: -1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.75) 100%);
  z-index: -1;
}
.hero__inner {
  position: relative;
  max-width: 880px;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #f47b27;
  font-weight: 700;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(244, 123, 39, 0.12);
  border-radius: 6px;
}
.hero__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero__accent {
  color: #f47b27;
  position: relative;
  white-space: nowrap;
}
.hero__lead {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 0 2.5rem;
  opacity: 0.92;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero__lead {
    font-size: 1.25rem;
  }
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.section {
  padding: 4rem 0;
}
.section--alt {
  background: #fafafa;
}
.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section__header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}
.section__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #f47b27;
  font-weight: 700;
  margin: 0 0 1rem;
}
.section__lead {
  color: #6b6b6b;
  font-size: 1.05rem;
  margin: 0;
}
.section__footer {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .grid--feature-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: #f47b27;
}
.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff1e6;
  color: #f47b27;
  border-radius: 6px;
  margin-bottom: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card__icon .icon {
  width: 28px;
  height: 28px;
}
.card:hover .card__icon {
  background: #f47b27;
  color: #fff;
  transform: scale(1.05);
}
.card__title {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}
.card__text {
  color: #6b6b6b;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.card--feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.card--feature .card__icon {
  margin-left: auto;
  margin-right: auto;
  width: 64px;
  height: 64px;
}
.card--feature .card__icon .icon {
  width: 32px;
  height: 32px;
}
.card--image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card__image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #fafafa;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card--image:hover .card__image {
  transform: scale(1.03);
}
.card__body {
  padding: 1.5rem;
}
.card__icon--lg {
  width: 72px;
  height: 72px;
  margin: 1.5rem 1.5rem 0;
}
.card__icon--lg .icon {
  width: 36px;
  height: 36px;
}

.page-figure {
  margin: 0 0 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.page-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.about-intro {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin: 0 0 4rem;
}
@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: start;
    gap: 4rem;
  }
}
.about-intro__photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #fafafa;
}
.about-intro__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-intro__text h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.about-intro__text p:last-child {
  margin-bottom: 0;
}

.intervention-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}
@media (min-width: 768px) {
  .intervention-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
.intervention-gallery__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #fafafa;
}
.intervention-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.intervention-gallery__item:hover img {
  transform: scale(1.03);
}

.cta-band {
  background: #1a1a1a;
  color: #fff;
  padding: 2.5rem 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #f47b27;
}
.cta-band h2, .cta-band p {
  color: #fff;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band__title {
  margin: 0;
  font-size: 1.5rem;
}

.cta-band__text {
  margin: 0.5rem 0 0;
  opacity: 0.85;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e5e5;
}
.price-table th, .price-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}
.price-table th {
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.price-table tr:last-child td {
  border-bottom: 0;
}
.price-table tr:hover td {
  background: #fff1e6;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #d96915;
  white-space: nowrap;
}

.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.trust-bar:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}
.trust-bar__stars {
  display: inline-flex;
  color: #ffd54a;
}
.trust-bar__stars .icon {
  width: 16px;
  height: 16px;
}
.trust-bar__rating {
  font-weight: 700;
}
.trust-bar__count {
  opacity: 0.85;
  font-size: 0.85rem;
}

.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .avis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .avis-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .avis-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }
}

.avis {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.avis__stars {
  display: inline-flex;
  gap: 2px;
  color: #ffb400;
}
.avis__stars .icon {
  width: 18px;
  height: 18px;
}
.avis__star--empty {
  color: #e5e5e5;
}
.avis__texte {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 0.95rem;
}
.avis__texte::before, .avis__texte::after {
  content: none;
}
.avis__footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
  margin-top: auto;
}
.avis__auteur {
  color: #1a1a1a;
  font-size: 0.95rem;
}
.avis__date {
  font-size: 0.8rem;
  color: #6b6b6b;
}

.commune-search {
  background: #fafafa;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  margin: 1.5rem 0 2.5rem;
}
.commune-search h2 {
  margin-top: 0;
}
.commune-search__label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.commune-search__combobox {
  position: relative;
}
.commune-search__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1.1rem;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  background: #ffffff;
  font-family: inherit;
  color: #1a1a1a;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.commune-search__input:focus {
  outline: none;
  border-color: #f47b27;
  box-shadow: 0 0 0 3px rgba(244, 123, 39, 0.18);
}
.commune-search__help {
  display: block;
  margin-top: 0.4rem;
  color: #6b6b6b;
  font-size: 0.85rem;
}

.commune-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.suggestion {
  padding: 0.6rem 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.suggestion:last-child {
  border-bottom: 0;
}
.suggestion:hover, .suggestion--active {
  background: #fff1e6;
}
.suggestion__name {
  color: #1a1a1a;
  font-weight: 600;
  flex-shrink: 0;
}
.suggestion__meta {
  color: #6b6b6b;
  font-size: 0.85rem;
  flex: 1;
  min-width: 0;
}

.commune-result {
  margin-top: 1.5rem;
}
.commune-result__box {
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid #6b6b6b;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.commune-result__box--found {
  background: #ffffff;
  border-left-color: #f47b27;
}
.commune-result__box--out {
  background: #fff7ed;
  border-left-color: #f59e0b;
  color: #92400e;
}
.commune-result__box--miss {
  background: #f3f4f6;
  border-left-color: #6b7280;
  color: #374151;
}
.commune-result__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #1a1a1a;
}
.commune-result__tarifs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.commune-result__tarifs td {
  padding: 0.5rem 0;
  border-top: 1px solid #e5e5e5;
}
.commune-result__tarifs td:last-child {
  text-align: right;
  color: #d96915;
}

.zone-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.6rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  background: #6b6b6b;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
.zone-badge--off {
  background: #6b6b6b;
  opacity: 0.8;
}

.price-table--zones small {
  color: #6b6b6b;
  font-weight: 400;
  margin-left: 0.4rem;
}
.price-table--zones td:first-child {
  line-height: 1.5;
}
.price-table--zones .price-table__off td {
  background: #f9fafb;
  color: #6b6b6b;
}

.zone-details {
  margin: 1rem 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}
.zone-details[open] {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.zone-details__summary {
  cursor: pointer;
  padding: 1rem 1.5rem;
  background: #fafafa;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  user-select: none;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.zone-details__summary::-webkit-details-marker {
  display: none;
}
.zone-details__summary::marker {
  content: "";
}
.zone-details__summary:hover {
  background: #fff1e6;
}
.zone-details__summary::after {
  content: "▾";
  margin-left: auto;
  color: #6b6b6b;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.zone-details__summary small {
  color: #6b6b6b;
  font-weight: 400;
}
.zone-details[open] .zone-details__summary::after {
  transform: rotate(180deg);
}
.zone-details .commune-list {
  margin: 0;
  padding: 1.5rem;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}
.zone-details .commune-list__meta {
  color: #6b6b6b;
  font-size: 0.85rem;
  margin-left: 0.3rem;
}

.list-check {
  list-style: none;
  padding: 0;
}
.list-check li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 18px;
  height: 18px;
  background: #f47b27;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #f47b27, 0 0 0 0 transparent;
}
.list-check li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.05rem;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.commune-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  columns: 2;
  column-gap: 1.5rem;
}
@media (min-width: 768px) {
  .commune-list {
    columns: 3;
  }
}
@media (min-width: 1024px) {
  .commune-list {
    columns: 4;
  }
}
.commune-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  break-inside: avoid;
}
.commune-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: #f47b27;
  border-radius: 50%;
}

.form-error {
  background: #fef3f2;
  border: 1px solid #fda4af;
  color: #991b1b;
  border-left: 4px solid #ef4444;
  padding: 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.required {
  color: #f47b27;
  font-weight: 700;
}

.contact-form {
  background: #fafafa;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  margin: 1.5rem 0 2.5rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.form-field label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}
.form-field input[type=text],
.form-field input[type=email],
.form-field input[type=tel],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  background: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  color: #1a1a1a;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-field input[type=text]:focus,
.form-field input[type=email]:focus,
.form-field input[type=tel]:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #f47b27;
  box-shadow: 0 0 0 3px rgba(244, 123, 39, 0.15);
}
.form-field input[type=text]:invalid:not(:placeholder-shown),
.form-field input[type=email]:invalid:not(:placeholder-shown),
.form-field input[type=tel]:invalid:not(:placeholder-shown),
.form-field select:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #f59e0b;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-field--consent {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-left: 4px solid #f47b27;
  padding: 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}
.form-field--consent label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
}
.form-field--consent input[type=checkbox] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: #f47b27;
  flex-shrink: 0;
  cursor: pointer;
}

.thank-you {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.thank-you__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff1e6;
  color: #f47b27;
  border-radius: 50%;
}
.thank-you__icon .icon {
  width: 56px;
  height: 56px;
}
.thank-you__lead {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin: 2.5rem 0;
}
@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info__block {
  background: #fafafa;
  padding: 2.5rem;
  border-radius: 12px;
  border-top: 4px solid #f47b27;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info__block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.contact-info__block h3 {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
}
.contact-info__block h3 .icon {
  width: 22px;
  height: 22px;
  color: #f47b27;
}

/*# sourceMappingURL=main.css.map */