﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #26363b;
  --muted: #756b5f;
  --paper: #fff;
  --surface: #fbf8f4;
  --stone: #dfd0bf;
  --accent: #ef681e;
  --accent-light: #f58a4c;
  --line: rgba(21, 21, 21, 0.12);
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.12);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 76px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

.navbar {
  align-items: center;
  background: #fff;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 6vw, 92px);
  position: fixed;
  top: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
  width: 100%;
  z-index: 100;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 12px 34px rgba(38, 54, 59, 0.12);
  height: 66px;
}

.logo {
  background: #fff;
  border-radius: 0;
  display: block;
  height: 62px;
  overflow: hidden;
  width: 122px;
}

.logo img {
  display: block;
  height: 122px;
  object-fit: cover;
  object-position: center;
  transform: translateY(-30px);
  width: 122px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.88;
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a::after {
  background: var(--accent-light);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  width: 100%;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-light);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-btn {
  align-items: center;
  background: rgba(38, 54, 59, 0.06);
  border: 1px solid rgba(38, 54, 59, 0.16);
  border-radius: 999px;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-btn span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 18px;
}

.menu-btn span:nth-child(1) { transform: translateY(-6px); }
.menu-btn span:nth-child(3) { transform: translateY(6px); }
.menu-btn.active span:nth-child(1) { transform: rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg); }

.hero {
  align-items: center;
  background: #231f1a;
  color: #fff;
  display: flex;
  min-height: 92vh;
  min-height: 92svh;
  padding: 132px clamp(20px, 6vw, 92px) 72px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.badge,
.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: 0;
  line-height: 0.96;
  max-width: 980px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-top: 28px;
  max-width: 660px;
}

.hero-about {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 138, 76, 0.24);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.84);
  display: grid;
  gap: 10px;
  line-height: 1.65;
  margin-top: 26px;
  max-width: 760px;
  padding: 20px;
}

.hero-actions,
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 36px;
}

.hero-tags {
  margin-top: 30px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.primary {
  background: var(--accent-light);
  box-shadow: 0 16px 34px rgba(239, 104, 30, 0.28);
  color: #181818;
}

.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.section,
.stats {
  padding-left: clamp(20px, 6vw, 92px);
  padding-right: clamp(20px, 6vw, 92px);
}

.section {
  padding-bottom: clamp(72px, 10vw, 118px);
  padding-top: clamp(72px, 10vw, 118px);
}

.section-header {
  margin-bottom: 42px;
  max-width: 820px;
}

.section-header h2,
.contact-text h2,
.review-box h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 1.02;
}

.section-text {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 16px;
  max-width: 700px;
}

.stats {
  background: #e6d9c9;
  display: flex;
  justify-content: center;
  padding-bottom: 0;
  padding-top: 0;
}

.stat {
  border-left: 0;
  min-height: 132px;
  max-width: 460px;
  padding: 34px 28px;
  text-align: center;
  width: 100%;
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  color: var(--accent);
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  display: block;
  font-weight: 700;
  margin-top: 8px;
}

.cards,
.gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #f2e8dc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(21, 21, 21, 0.06);
  min-height: 250px;
  padding: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-icon {
  color: var(--accent);
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 48px;
}

.card h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.card p,
.review-box p,
.contact-text p {
  color: var(--muted);
}

.service-area {
  background: #f7f1ea;
}

.service-area-card {
  background: #fff;
  border: 1px solid rgba(38, 54, 59, 0.08);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(38, 54, 59, 0.12);
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
}

.service-area-visual {
  background: var(--ink);
  margin: 0;
  min-width: 0;
  padding: 22px;
}

.service-area-map {
  aspect-ratio: 4 / 3;
  background: #e9e2d8;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  position: relative;
}

.service-area-map::after {
  background: rgba(239, 104, 30, 0.07);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.map-tiles {
  display: grid;
  filter: grayscale(0.62) sepia(0.16) saturate(0.78) contrast(0.94) brightness(1.04);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: 100%;
  transform: scale(1.5);
  transform-origin: 55% 62%;
  width: 100%;
}

.map-tiles img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.map-marker {
  background: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(38, 54, 59, 0.26);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 5px 8px;
  position: absolute;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}

.map-marker::before {
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  top: -7px;
  transform: translateX(-50%);
  width: 9px;
}

.map-zone-label {
  background: rgba(38, 54, 59, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
  position: absolute;
  z-index: 2;
}

.zone-rhone { left: 3%; top: 5%; }
.marker-lyon { left: 43%; top: 50%; }
.marker-vienne { left: 45%; top: 76%; }
.marker-bourgoin { left: 66%; top: 68%; }

.service-area-visual figcaption {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  line-height: 1.45;
  margin-top: 12px;
}

.service-area-visual figcaption a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-area-content {
  align-self: center;
  padding: clamp(30px, 6vw, 68px);
}

.service-area-content h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.02;
}

.service-area-content > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 620px;
}

.service-area-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-top: 24px;
}

.service-area-list li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.service-area-list li::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.service-area-button {
  margin-top: 30px;
}

.dark {
  background: #151515;
  color: #fff;
}

.dark .eyebrow,
.quote-calculator .eyebrow {
  color: var(--accent-light);
}

.gallery-item {
  align-items: flex-end;
  aspect-ratio: 3 / 4;
  background: #2a251f;
  border: 1px solid rgba(245, 138, 76, 0.24);
  border-radius: var(--radius);
  display: flex;
  cursor: zoom-in;
  font: inherit;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-item::before {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.04) 58%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.gallery-item:hover {
  border-color: rgba(245, 138, 76, 0.58);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.gallery-item img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.45s ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-caption {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 900;
  padding: 22px;
  position: relative;
  z-index: 2;
}

.gallery-caption small {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
}

.gallery-item:focus-visible {
  border-color: var(--accent-light);
  outline: 3px solid rgba(245, 138, 76, 0.42);
  outline-offset: 4px;
}

.gallery-lightbox {
  background: transparent;
  border: 0;
  height: 100%;
  margin: auto;
  max-height: none;
  max-width: none;
  padding: 18px;
  width: 100%;
}

.gallery-lightbox::backdrop {
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(8px);
}

.gallery-lightbox-inner {
  align-items: center;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  height: 100%;
  margin: auto;
  max-width: 1180px;
  position: relative;
}

.gallery-lightbox-figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: min(88vh, 900px);
  justify-content: center;
  margin: 0;
  min-width: 0;
}

.gallery-lightbox-figure img {
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  display: block;
  max-height: calc(100% - 58px);
  max-width: 100%;
  object-fit: contain;
}

.gallery-lightbox-figure figcaption {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 14px;
  width: min(100%, 720px);
}

.gallery-lightbox-figure figcaption small {
  color: rgba(255, 255, 255, 0.62);
  flex: 0 0 auto;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: 3px solid rgba(245, 138, 76, 0.55);
  outline-offset: 3px;
}

.gallery-lightbox-close {
  font-size: 2rem;
  height: 46px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 46px;
  z-index: 2;
}

.gallery-lightbox-nav {
  font-size: 2.3rem;
  height: 54px;
  width: 54px;
}

@media (max-width: 640px) {
  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-inner {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
  }

  .gallery-lightbox-figure {
    height: 86vh;
  }

  .gallery-lightbox-nav {
    font-size: 2rem;
    height: 42px;
    width: 42px;
  }

  .gallery-lightbox-close {
    height: 42px;
    right: 2px;
    top: 2px;
    width: 42px;
  }

  .gallery-lightbox-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px 6px 0;
  }
}

.gallery-empty {
  align-items: center;
  background: #24211d;
  border: 1px solid rgba(245, 138, 76, 0.26);
  border-radius: var(--radius);
  display: flex;
  gap: 22px;
  max-width: 820px;
  padding: clamp(24px, 5vw, 42px);
}

.gallery-empty > span {
  align-items: center;
  border: 1px solid rgba(245, 138, 76, 0.48);
  border-radius: 50%;
  color: var(--accent-light);
  display: flex;
  flex: 0 0 auto;
  font-size: 1.6rem;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.gallery-empty h3 {
  font-size: 1.35rem;
  margin-bottom: 7px;
}

.gallery-empty p {
  color: rgba(255, 255, 255, 0.68);
}

.quote-calculator {
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.98), rgba(42, 38, 32, 0.98));
  color: #fff;
}

.calculator-box {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}

.calculator-form,
.calculator-result,
.form,
.review-box {
  border-radius: var(--radius);
}

.calculator-form,
.calculator-result {
  background: rgba(247, 240, 230, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  padding: clamp(22px, 4vw, 36px);
}

.calculator-form {
  display: grid;
  gap: 22px;
}

.calculator-intro {
  align-items: flex-start;
  background: var(--ink);
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
  padding: 18px;
}

.calculator-intro strong {
  font-size: 1.15rem;
}

.calculator-intro span {
  color: rgba(255, 255, 255, 0.72);
}

.calculator-form label {
  color: var(--ink);
  font-weight: 900;
}

.field-help {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: -3px 0 6px;
}

.surface-field {
  align-items: center;
  background: #fbf6ee;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 16px;
  display: flex;
  overflow: hidden;
}

.surface-field input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.surface-field span {
  color: var(--muted);
  font-weight: 900;
  padding-right: 16px;
}

.form input,
.form select,
.form textarea,
.calculator-form input,
.calculator-form select,
.calculator-form textarea {
  background: #fbf6ee;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 14px;
  color: var(--ink);
  min-height: 52px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form textarea {
  resize: vertical;
}

.calculator-form textarea {
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus,
.calculator-form input:focus,
.calculator-form select:focus,
.calculator-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(239, 104, 30, 0.18);
  outline: none;
}

.calculator-progress {
  display: grid;
  gap: 9px;
}

.calculator-progress-meta {
  color: var(--muted);
  display: flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: space-between;
}

.calculator-progress-track {
  background: #e6ddd2;
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}

.calculator-progress-track span {
  background: var(--accent);
  display: block;
  height: 100%;
  transition: width 0.35s ease;
  width: 25%;
}

.calculator-progress-track span[data-progress="50"] { width: 50%; }
.calculator-progress-track span[data-progress="75"] { width: 75%; }
.calculator-progress-track span[data-progress="100"] { width: 100%; }

.calculator-step {
  animation: calculatorStepIn 0.32s ease both;
}

.calculator-step-heading {
  align-items: center;
  border-bottom: 1px solid rgba(38, 54, 59, 0.12);
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.calculator-step-heading > span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.calculator-step-heading h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.calculator-step-heading p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 3px;
}

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

.calculator-field {
  border: 0;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.calculator-field.full {
  grid-column: 1 / -1;
}

.calculator-field > span,
.calculator-field legend {
  color: var(--ink);
  font-weight: 900;
}

.calculator-field > span small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.calculator-field > small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.45;
}

.calculator-choices {
  display: grid;
  gap: 10px;
}

.calculator-choices.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-choices.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calculator-choices label {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(38, 54, 59, 0.14);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.calculator-choices label:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.calculator-choices label:has(input:checked) {
  background: #fff2ea;
  border-color: var(--accent);
}

.calculator-choices input {
  accent-color: var(--accent);
  flex: 0 0 auto;
  height: 20px;
  min-height: 0;
  padding: 0;
  width: 20px;
}

.calculator-navigation {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.calculator-nav-button {
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  min-height: 50px;
  padding: 12px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calculator-nav-button:hover,
.calculator-nav-button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.calculator-nav-button.back {
  background: transparent;
  border-color: rgba(38, 54, 59, 0.18);
  color: var(--ink);
}

.calculator-nav-button.next {
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(239, 104, 30, 0.2);
  color: #fff;
}

.calculator-error {
  color: #a33a1b;
  font-size: 0.9rem;
  font-weight: 800;
  min-height: 22px;
}

@keyframes calculatorStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.calculator-notes {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
}

.calculator-notes span {
  background: #f5efe6;
  border: 1px solid rgba(239, 104, 30, 0.22);
  border-radius: 12px;
  color: #6a4d2b;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
  padding: 10px;
  text-align: center;
}

.calculator-result {
  background: #1f2d31;
  color: #fff;
  position: sticky;
  top: 92px;
}

.quote-kicker {
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-content > h3,
.quote-empty h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
  margin-top: 8px;
}

.quote-empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  justify-content: center;
  text-align: center;
}

.quote-empty > span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1.25rem;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
}

.quote-empty p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 12px;
  max-width: 310px;
}

.quote-content {
  animation: calculatorStepIn 0.35s ease both;
}

.quote-price-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 24px 0;
}

.quote-price-list > div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 13px 0;
}

.quote-price-list > div:last-child {
  border-bottom: 0;
}

.quote-price-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.quote-price-list strong {
  flex: 0 0 auto;
  font-size: 1.15rem;
  text-align: right;
}

.quote-price-list .quote-average strong {
  color: var(--accent-light);
  font-size: 1.55rem;
}

.quote-supply,
.quote-exclusion,
.quote-disclaimer {
  font-size: 0.88rem;
  line-height: 1.5;
}

.quote-supply {
  color: #fff;
  font-weight: 800;
}

.quote-exclusion {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 7px;
}

.quote-summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 22px;
  padding: 20px 0;
}

.quote-summary h4 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.quote-summary dl {
  display: grid;
  gap: 8px;
}

.quote-summary dl > div {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(90px, 0.7fr) minmax(0, 1.3fr);
}

.quote-summary dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.quote-summary dd {
  font-size: 0.84rem;
  font-weight: 700;
  margin: 0;
  overflow-wrap: anywhere;
}

.quote-disclaimer {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 18px;
}

.quote-btn {
  gap: 10px;
  margin-top: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.quote-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.quote-restart {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  min-height: 50px;
  padding: 12px 18px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.quote-restart:hover,
.quote-restart:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-light);
  outline: none;
  transform: translateY(-2px);
}

.quote-btn svg {
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.quote-btn.disabled {
  cursor: not-allowed;
  filter: grayscale(0.35);
  opacity: 0.62;
  pointer-events: none;
}

[hidden] {
  display: none !important;
}

.review-box {
  align-items: center;
  background: #f2e8dc;
  box-shadow: var(--shadow);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: clamp(26px, 5vw, 50px);
}

.stars {
  color: var(--accent);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.review-box h2 {
  margin-bottom: 18px;
}

.review-score {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  height: 152px;
  justify-content: center;
  width: 152px;
}

.review-score strong {
  font-size: 3rem;
  line-height: 1;
}

.faq-section {
  background: #f7f1ea;
}

.faq-list {
  border-bottom: 1px solid rgba(38, 54, 59, 0.16);
  max-width: 920px;
}

.faq-item {
  border-top: 1px solid rgba(38, 54, 59, 0.16);
}

.faq-item summary {
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 1.08rem;
  font-weight: 900;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  min-height: 76px;
  padding: 20px 0;
}

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

.faq-item summary::after {
  align-items: center;
  border: 1px solid rgba(38, 54, 59, 0.2);
  border-radius: 50%;
  color: var(--accent);
  content: "+";
  display: flex;
  flex: 0 0 auto;
  font-size: 1.35rem;
  font-weight: 500;
  height: 34px;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
  width: 34px;
}

.faq-item[open] summary::after {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item p {
  animation: faqAnswerIn 0.25s ease both;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
  padding: 0 58px 24px 0;
}

@keyframes faqAnswerIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact {
  background: #e6d9c9;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-text p {
  margin-top: 16px;
  max-width: 520px;
}

.form {
  background: #f2e8dc;
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field > span {
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status {
  color: #247a42;
  font-weight: 800;
  min-height: 24px;
}

.whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: flex;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 22px;
  transition: transform 0.2s ease;
  width: 62px;
  z-index: 30;
}

.whatsapp svg {
  fill: currentColor;
  height: 34px;
  width: 34px;
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid rgba(38, 54, 59, 0.1);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 92px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 16px;
}

.footer-details {
  display: grid;
  gap: 5px;
}

.footer-details a {
  overflow-wrap: anywhere;
}

.footer-logo {
  height: 56px;
  width: 110px;
}

.footer-logo img {
  height: 110px;
  transform: translateY(-27px);
  width: 110px;
}

.footer a {
  color: var(--accent);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .menu-btn {
    display: inline-flex;
    position: relative;
  }

  .nav-links {
    align-items: flex-start;
    background: #fff;
    border-bottom: 2px solid var(--accent);
    display: none;
    flex-direction: column;
    gap: 20px;
    left: 0;
    padding: 24px clamp(20px, 6vw, 92px) 32px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    min-height: 86vh;
  }

  .stats,
  .cards,
  .gallery,
  .calculator-box,
  .contact {
    grid-template-columns: 1fr;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:first-child {
    border-top: 0;
  }

  .calculator-result {
    position: static;
  }

  .service-area-card {
    grid-template-columns: 1fr;
  }

  .service-area-map {
    margin: 0 auto;
    max-width: 620px;
  }

  .calculator-notes {
    grid-template-columns: 1fr;
  }

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

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .navbar {
    height: 68px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .card {
    min-height: 220px;
  }

  .gallery-item {
    aspect-ratio: 1 / 0.86;
  }

  .review-score {
    height: 126px;
    width: 126px;
  }

  .whatsapp {
    bottom: 16px;
    height: 56px;
    right: 16px;
    width: 56px;
  }
}

/* Lisibilité téléphone */
@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }

  .navbar {
    padding: 0 18px;
  }

  .logo {
    height: 54px;
    width: 106px;
  }

  .logo img {
    height: 106px;
    transform: translateY(-26px);
    width: 106px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-logo {
    height: 54px;
    width: 106px;
  }

  .hero {
    min-height: auto;
    padding: 112px 20px 54px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 1rem;
    margin-top: 20px;
  }

  .hero-about {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-top: 22px;
    padding: 16px;
  }

  .hero-tags span {
    font-size: 0.9rem;
    padding: 9px 12px;
  }

  .section,
  .stats {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2,
  .contact-text h2,
  .review-box h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.08;
  }

  .stat {
    min-height: 112px;
    padding: 28px 20px;
  }

  .card,
  .calculator-form,
  .calculator-result,
  .form,
  .review-box {
    border-radius: 16px;
  }

  .card {
    min-height: auto;
    padding: 24px;
  }

  .service-area-visual {
    padding: 16px;
  }

  .service-area-content {
    padding: 30px 24px;
  }

  .service-area-content h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .service-area-button {
    width: 100%;
  }

  .map-marker {
    font-size: 0.58rem;
    padding: 4px 6px;
  }

  .map-zone-label {
    font-size: 0.66rem;
    padding: 5px 7px;
  }

  .card-icon {
    margin-bottom: 34px;
  }

  .gallery-item {
    min-height: 210px;
  }

  .calculator-form,
  .calculator-result {
    padding: 22px;
  }

  .calculator-fields,
  .calculator-choices.two-columns,
  .calculator-choices.three-columns {
    grid-template-columns: 1fr;
  }

  .calculator-step-heading {
    align-items: flex-start;
  }

  .calculator-navigation {
    display: grid;
    grid-template-columns: 1fr;
  }

  .calculator-nav-button {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
  }

  .quote-summary dl > div {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    align-items: flex-start;
    font-size: 1rem;
    gap: 14px;
    min-height: 68px;
    padding: 18px 0;
  }

  .faq-item summary::after {
    height: 30px;
    width: 30px;
  }

  .faq-item p {
    padding: 0 0 22px;
  }

  .contact {
    gap: 28px;
  }

  .form input,
  .form select,
  .form textarea,
  .calculator-form input,
  .calculator-form select,
  .calculator-form textarea {
    font-size: 16px;
  }

  .footer {
    padding: 26px 20px;
  }

  .whatsapp {
    bottom: 14px;
    height: 54px;
    right: 14px;
    width: 54px;
  }

}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-actions .btn,
  .quote-btn {
    width: 100%;
  }
}
