@charset "UTF-8";
/* =========================================================
   Blanc Terrasse — main entry
   Compile with: sass scss/main.scss css/main.css
   ========================================================= */
/* =========================================================
   Blanc Terrasse — Design tokens
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap");
:root {
  /* ---- Bleu marine (logo) ---- */
  --bt-blue-50: #eaf1f9;
  --bt-blue-100: #cddfef;
  --bt-blue-200: #9bbcdc;
  --bt-blue-300: #6896c6;
  --bt-blue-400: #3e74ad;
  --bt-blue-500: #1f5995;
  --bt-blue-600: #0d4683;
  --bt-blue-700: #033a73;
  --bt-blue-800: #022c5a;
  --bt-blue-900: #011d3d;
  /* ---- Vert nature (feuille du logo) ---- */
  --bt-green-50: #eef4e7;
  --bt-green-100: #dbe7c9;
  --bt-green-200: #b8cf94;
  --bt-green-300: #94b762;
  --bt-green-400: #779c44;
  --bt-green-500: #5e8232;
  --bt-green-600: #4a6a28;
  --bt-green-700: #3a5320;
  --bt-green-800: #2a3c17;
  --bt-green-900: #1a260e;
  /* ---- Corail / coucher de soleil ---- */
  --bt-coral-50: #fdf3ec;
  --bt-coral-100: #fbe2d3;
  --bt-coral-200: #f5c2a3;
  --bt-coral-300: #efa379;
  --bt-coral-400: #e8825c;
  --bt-coral-500: #d96a44;
  --bt-coral-600: #b85534;
  --bt-coral-700: #944127;
  --bt-coral-800: #6e301d;
  --bt-coral-900: #491f12;
  /* ---- Pierre / sable ---- */
  --bt-stone-50: #fbf8f3;
  --bt-stone-100: #f4efe6;
  --bt-stone-200: #e8dfcf;
  --bt-stone-300: #d4c6ad;
  --bt-stone-400: #b6a384;
  --bt-stone-500: #8c7c63;
  --bt-stone-600: #6b5e4a;
  --bt-stone-700: #4d4335;
  --bt-stone-800: #322b22;
  --bt-stone-900: #1a1610;
  --bt-white: #ffffff;
  --bt-black: #0e0b07;
  /* ---- Semantic ---- */
  --color-brand: var(--bt-blue-700);
  --color-brand-strong: var(--bt-blue-800);
  --color-secondary: var(--bt-green-600);
  --color-secondary-strong:var(--bt-green-700);
  --color-accent: var(--bt-coral-400);
  --color-accent-strong: var(--bt-coral-600);
  --color-bg: var(--bt-stone-50);
  --color-bg-alt: var(--bt-stone-100);
  --color-bg-deep: var(--bt-blue-900);
  --color-surface: var(--bt-white);
  --color-surface-warm: var(--bt-stone-100);
  --color-fg-1: var(--bt-stone-900);
  --color-fg-2: var(--bt-stone-700);
  --color-fg-3: var(--bt-stone-500);
  --color-fg-on-dark: var(--bt-stone-50);
  --color-fg-on-brand: var(--bt-white);
  --color-border: var(--bt-stone-200);
  --color-border-strong: var(--bt-stone-300);
  /* ---- Typo ---- */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
  /* ---- Shadows ---- */
  --shadow-sm: 0 2px 6px rgba(50, 43, 34, 0.08);
  --shadow-md: 0 8px 20px -8px rgba(50, 43, 34, 0.18);
  --shadow-xl: 0 28px 60px -20px rgba(28, 61, 84, 0.32);
}

/* =========================================================
   Base — reset, layout primitives, typography
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Iron-clad horizontal-overflow protection.
   Both html and body get overflow-x: hidden so no element
   anywhere in the tree can grow the document or trigger
   horizontal scroll. position:relative on body is needed
   for iOS Safari, where overflow-x:hidden alone sometimes
   doesn't take effect.
   `position: sticky` on the header still works because the
   nearest scroll container becomes html, which keeps a
   normal vertical scroll. */
html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
  background: var(--color-bg);
  color: var(--color-fg-1);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea {
  font-family: inherit;
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-md {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--dark {
  background: var(--color-bg-deep);
  color: var(--color-fg-on-dark);
}

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
}
.eyebrow--light {
  color: var(--bt-coral-200);
}
.eyebrow--green {
  color: var(--bt-green-300);
}

.h-display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-fg-1);
}
.h-display em {
  font-style: italic;
  color: var(--color-accent-strong);
}

.h-section {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-fg-1);
}
.h-section em {
  font-style: italic;
  color: var(--color-accent-strong);
}

.section--dark .h-display,
.section--dark .h-section {
  color: var(--color-fg-on-dark);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-fg-2);
}

.section--dark .lead {
  color: var(--bt-stone-200);
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .container,
  .container-md {
    padding: 0 20px;
  }
  .section {
    padding: 64px 0;
  }
}
/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn:active {
  transform: translateY(1px);
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}
.btn {
  /* ---- Variants ---- */
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-fg-on-brand);
}
.btn--primary:hover {
  background: var(--color-accent-strong);
}
.btn--brand {
  background: var(--color-brand-strong);
  color: var(--color-fg-on-brand);
}
.btn--brand:hover {
  background: var(--bt-blue-800);
}
.btn--ghost {
  background: transparent;
  color: var(--color-fg-1);
  border-color: var(--color-border-strong);
}
.btn--ghost:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-fg-1);
}
.btn--ghost-light {
  background: transparent;
  color: var(--color-fg-on-dark);
  border-color: color-mix(in oklch, var(--bt-stone-50) 40%, transparent);
}
.btn--ghost-light:hover {
  background: color-mix(in oklch, var(--bt-stone-50) 8%, transparent);
  border-color: var(--bt-stone-50);
}
.btn {
  /* ---- Sizes ---- */
}
.btn--sm {
  padding: 10px 18px;
  font-size: 11px;
}

/* =========================================================
   Header + mobile drawer
   ---------------------------------------------------------
   Pattern: right-side drawer with darkened backdrop.
   - Hamburger morphs into an X
   - Drawer slides in from the right (transform only)
   - Backdrop fades in
   - Both elements have a hard, viewport-bounded width so
     they can never grow the document horizontally
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.header.is-scrolled {
  background: color-mix(in oklch, var(--bt-stone-50) 88%, transparent);
  border-bottom-color: var(--color-border);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__brand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.header__logo {
  height: 70px;
  width: auto;
}
.header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-fg-1);
  transition: color var(--dur-fast) var(--ease-out);
}
.header__link:hover {
  color: var(--color-accent-strong);
}
.header__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 2px;
}
.header {
  /* ---- Hamburger button ---------------------------- */
}
.header__burger {
  display: none; /* shown via media query below */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--color-fg-1);
  -webkit-tap-highlight-color: transparent;
  transition: background var(--dur-fast) var(--ease-out);
}
.header__burger:hover {
  background: color-mix(in oklch, var(--bt-stone-900) 6%, transparent);
}
.header__burger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.header__burger-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}
.header__burger-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: top 0.3s var(--ease-out), transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}
.header__burger-icon span:nth-child(1) {
  top: 1px;
}
.header__burger-icon span:nth-child(2) {
  top: calc(50% - 0.75px);
}
.header__burger-icon span:nth-child(3) {
  top: calc(100% - 2.5px);
}

/* Hamburger → X transformation when menu is open */
.is-menu-open .header__burger-icon span:nth-child(1) {
  top: calc(50% - 0.75px);
  transform: rotate(45deg);
}

.is-menu-open .header__burger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.is-menu-open .header__burger-icon span:nth-child(3) {
  top: calc(50% - 0.75px);
  transform: rotate(-45deg);
}

/* Solid header background when the menu is open */
.is-menu-open .header {
  background: var(--color-bg);
  border-bottom-color: transparent;
}

/* =========================================================
   Backdrop
   ========================================================= */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: color-mix(in oklch, var(--bt-blue-900) 55%, transparent);
  /* Fade in/out, no pointer events when closed */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease-out);
}

.is-menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   Mobile drawer (slides in from the right)
   ========================================================= */
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  /* Bounded width — drawer is always inside the viewport.
     This is the key guarantee against horizontal overflow.   */
  width: 85vw;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  padding: 88px 28px 32px; /* top padding clears the 72px header */
  background: var(--color-bg);
  background-image: linear-gradient(180deg, var(--color-bg) 0%, color-mix(in oklch, var(--bt-stone-200) 24%, var(--color-bg)) 100%);
  box-shadow: -24px 0 60px -12px rgba(2, 28, 90, 0.18);
  overflow-y: auto;
  overscroll-behavior: contain;
  /* Slide off-screen to the right — transform only,
     never affects document layout */
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.menu-drawer__nav {
  display: flex;
  flex-direction: column;
}
.menu-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid color-mix(in oklch, var(--bt-stone-900) 8%, transparent);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  color: var(--color-fg-1);
  transition: color var(--dur-fast) var(--ease-out), padding-left var(--dur-base) var(--ease-out);
}
.menu-drawer__link::after {
  content: "→";
  font-style: italic;
  font-size: 0.65em;
  color: var(--color-accent-strong);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.menu-drawer__link:hover, .menu-drawer__link:focus-visible {
  color: var(--color-accent-strong);
  padding-left: 8px;
  outline: none;
}
.menu-drawer__link:hover::after, .menu-drawer__link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}
.menu-drawer__cta {
  margin-top: 24px;
  align-self: stretch;
}
.menu-drawer__cta:focus-visible {
  outline: 2px solid var(--color-fg-1);
  outline-offset: 3px;
}
.menu-drawer__contact {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-drawer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-fg-2);
  word-break: break-word;
  transition: color var(--dur-fast) var(--ease-out);
}
.menu-drawer__contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent-strong);
  flex-shrink: 0;
}
.menu-drawer__contact-item:hover, .menu-drawer__contact-item:focus-visible {
  color: var(--color-fg-1);
  outline: none;
}
.menu-drawer__contact-item:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.is-menu-open .menu-drawer {
  transform: translateX(0);
}

/* Lock body scroll when the menu is open */
body.has-menu-open {
  overflow: hidden;
}

/* =========================================================
   Breakpoints
   ========================================================= */
@media (max-width: 768px) {
  .header__inner {
    height: 72px;
  }
  .header__logo {
    height: 56px;
  }
  .header__nav {
    display: none;
  }
  .header__burger {
    display: inline-flex;
  }
}
/* On desktop, drawer + backdrop are not rendered at all */
@media (min-width: 769px) {
  .menu-drawer,
  .menu-backdrop {
    display: none;
  }
}
/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .header__burger-icon span,
  .menu-backdrop,
  .menu-drawer {
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=2000&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, color-mix(in oklch, var(--bt-blue-800) 15%, transparent) 0%, color-mix(in oklch, var(--bt-blue-800) 55%, transparent) 70%, color-mix(in oklch, var(--bt-blue-900) 85%, transparent) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 96px;
}
.hero__content {
  max-width: 760px;
}
.hero__title {
  color: var(--bt-stone-50);
  margin-top: 18px;
}
.hero__title em {
  color: var(--bt-coral-300);
}
.hero__lead {
  color: color-mix(in oklch, var(--bt-stone-50) 88%, transparent);
  margin-top: 24px;
  max-width: 560px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero__stat {
  border-left: 1px solid color-mix(in oklch, var(--bt-stone-50) 30%, transparent);
  padding-left: 18px;
}
.hero__stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--bt-coral-200);
}
.hero__stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--bt-stone-50) 75%, transparent);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  .hero__inner {
    padding-top: 80px;
    padding-bottom: 64px;
  }
  .hero__stats {
    gap: 18px;
    margin-top: 40px;
  }
  .hero__stat-num {
    font-size: 24px;
  }
}
/* =========================================================
   Services
   ========================================================= */
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.services__intro {
  max-width: 640px;
}
.services__intro .h-section {
  margin-top: 14px;
}
.services__pitch {
  max-width: 380px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent-strong);
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  color: var(--color-fg-1);
}
.service-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-fg-2);
}
.service-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.service-card__tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bt-stone-700);
  background: var(--bt-stone-100);
  border: 1px solid var(--bt-stone-200);
  padding: 4px 10px;
  border-radius: 999px;
}
.service-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.service-card__price {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand-strong);
  transition: gap var(--dur-fast) var(--ease-out);
}
.service-card__cta:hover {
  gap: 10px;
}

@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* =========================================================
   Process
   ========================================================= */
.process__head {
  text-align: center;
  margin-bottom: 64px;
}
.process__head .h-section {
  margin-top: 14px;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  /* Connecting line — sits behind the next step's circle */
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 1px;
  background: var(--bt-stone-300);
  z-index: 0;
}
.process-step__num {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-accent-strong);
}
.process-step__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-fg-1);
}
.process-step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-fg-2);
}

@media (max-width: 960px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Zone
   ========================================================= */
.zone__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.zone__text .h-section {
  margin-top: 14px;
}
.zone__lead {
  margin-top: 22px;
  max-width: 480px;
}
.zone__cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.zone__dept-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: 10px;
}
.zone__dept ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zone__dept ul li {
  font-size: 14px;
  color: var(--color-fg-2);
}
.zone__map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bt-blue-50);
  border: 1px solid var(--color-border);
}
.zone__map-svg {
  width: 100%;
  height: 100%;
}
.zone__map-label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--color-brand-strong);
}

@media (max-width: 960px) {
  .zone__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 480px) {
  .zone__cities {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Testimonials
   ========================================================= */
.testimonials__head {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials__head .h-section {
  margin-top: 14px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.testimonial__stars svg {
  width: 14px;
  height: 14px;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-fg-1);
}
.testimonial__guillemet {
  color: var(--color-accent);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bt-stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-brand-strong);
}
.testimonial__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-fg-1);
}
.testimonial__loc {
  font-size: 11px;
  color: var(--color-fg-3);
}

@media (max-width: 960px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Devis (multi-step form)
   ========================================================= */
.devis__head {
  text-align: center;
  margin-bottom: 48px;
}
.devis__head .h-section {
  margin-top: 14px;
}
.devis__lead {
  margin-top: 18px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.devis__card {
  background: var(--color-surface);
  color: var(--color-fg-1);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.devis {
  /* ---- Progress bar ---- */
}
.devis__progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.devis__progress-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--bt-stone-200);
  transition: background var(--dur-base) var(--ease-out);
}
.devis__progress-bar.is-active {
  background: var(--color-accent);
}
.devis {
  /* ---- Step ---- */
}
.devis__step {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.devis__step[hidden] {
  display: none;
}
.devis__step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: 6px;
}
.devis {
  /* ---- Radio buttons ---- */
}
.devis__radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.devis__radio {
  padding: 20px 16px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  border-radius: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-fg-1);
  text-align: left;
  transition: all 0.2s var(--ease-out);
}
.devis__radio:hover {
  border-color: var(--color-accent);
}
.devis__radio.is-active {
  border-color: var(--color-accent);
  background: var(--bt-coral-50);
  color: var(--color-accent-strong);
}
.devis {
  /* ---- Fields ---- */
}
.devis__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.devis__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.devis__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-fg-1);
}
.devis__required {
  color: var(--color-alert);
}
.devis__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--color-fg-1);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.devis__input:focus {
  border-color: var(--color-accent);
}
.devis__textarea {
  resize: vertical;
  font-family: var(--font-sans);
}
.devis__note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-fg-3);
}
.devis {
  /* ---- Nav ---- */
}
.devis__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.devis__nav[hidden] {
  display: none;
}
.devis {
  /* ---- Confirmation ---- */
}
.devis__confirm {
  text-align: center;
  padding: 32px 0;
  align-items: center;
}
.devis__check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bt-coral-100);
  color: var(--color-accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.devis__check svg {
  width: 32px;
  height: 32px;
}
.devis__confirm-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-fg-1);
}
.devis__confirm-text {
  font-size: 15px;
  color: var(--color-fg-2);
  margin-top: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.devis #devis-reset {
  margin-top: 28px;
}

@media (max-width: 600px) {
  .devis__card {
    padding: 24px;
  }
  .devis__row {
    grid-template-columns: 1fr;
  }
  .devis__nav {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
  .devis__nav .btn {
    width: 100%;
  }
}
/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--bt-blue-900);
  color: var(--bt-stone-200);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bt-coral-200);
  margin-top: 22px;
  line-height: 1.4;
  max-width: 320px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bt-coral-300);
  margin-bottom: 18px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bt-stone-100);
}
.footer__icon {
  flex-shrink: 0;
  color: var(--bt-coral-300);
}
.footer__link {
  font-size: 14px;
  color: var(--bt-stone-200);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__link:hover {
  color: var(--bt-coral-200);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklch, var(--bt-stone-50) 10%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal {
  font-size: 12px;
  color: var(--bt-stone-300);
}
.footer__legal-links {
  display: flex;
  gap: 20px;
}
.footer__legal-links a {
  font-size: 12px;
}

@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 56px 0 28px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }
  .footer__logo {
    height: 56px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}/*# sourceMappingURL=main.css.map */