/* Serrazur Express — landing noir & blanc */
:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --white: #fafafa;
  --gray: #8a8a8a;
  --gray-dark: #3d3d3d;
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(0, 0, 0, 0.12);
  --font: "Inter", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 64px;
  --sticky-h: 56px;
  --fab-offset: calc(var(--sticky-h) + 12px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 1.75rem, var(--max));
  margin-inline: auto;
  padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
}

a {
  color: var(--white);
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.85;
}

strong {
  font-weight: 600;
  color: #fff;
}

.ico {
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--white);
}

.logo:hover {
  opacity: 1;
  color: var(--white);
}

.logo-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-word--bold {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--black-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.nav-backdrop.is-visible {
  display: block;
}

body.is-nav-open {
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-list a:hover {
  color: var(--white);
  opacity: 1;
}

/* Bouton URGENCE (téléphone) */
.btn-urgence {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.75rem 1.15rem;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--white);
  border-radius: 2px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-urgence {
    animation: none;
  }
}

.btn-urgence:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--black);
}

.btn-urgence__label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.btn-urgence__num {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.btn-urgence--sm {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  animation: none;
}

.btn-urgence--sm .btn-urgence__label,
.btn-urgence--sm .btn-urgence__num {
  font-size: 0.8rem;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

.btn-urgence--compact {
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  animation: none;
}

.btn-urgence--compact .btn-urgence__label,
.btn-urgence--compact .btn-urgence__num {
  display: inline;
  font-size: 0.8125rem;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--black);
}

.btn-urgence--xl {
  padding: 1rem 1.35rem;
  min-width: min(100%, 280px);
}

.btn-urgence--xl .btn-urgence__num {
  font-size: 1.35rem;
}

.btn-urgence--hero-main {
  min-width: min(100%, 360px);
}

.btn-urgence--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  animation: none;
  box-shadow: none;
}

.btn-urgence--dark .btn-urgence__label {
  color: var(--gray);
}

.btn-urgence--dark .btn-urgence__num {
  color: var(--white);
}

.btn-urgence--dark:hover {
  color: var(--white);
  background: var(--black-soft);
}

/* WhatsApp */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-wa:hover {
  opacity: 1;
  background: var(--white);
  color: var(--black);
}

.btn-wa--xl {
  padding: 1rem 1.35rem;
  min-width: min(100%, 200px);
}

.btn-wa--dark {
  border-color: var(--black);
  color: var(--black);
}

.btn-wa--dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-wa--compact {
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
}

.ico-wa {
  flex-shrink: 0;
}

.btn-outline-dark {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 0;
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Hero landing */
.hero-landing {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

.hero-landing__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-landing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.08);
}

.hero-landing__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.25) 35%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero-landing__content {
  position: relative;
  z-index: 1;
  padding-bottom: 0.5rem;
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-title__line {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  margin: 0 0 1.75rem;
  max-width: 26rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-chips li {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 1rem;
  position: relative;
}

.hero-chips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 1px;
}

.trust-icons {
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.trust-icons__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-block: 1rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 0.65rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-item svg {
  flex-shrink: 0;
}

/* Band */
.band {
  border-block: 1px solid var(--border);
  background: var(--black-soft);
}

.band--inverse {
  background: var(--white);
  color: var(--black);
  border-color: var(--border-dark);
}

.band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
}

.band-item {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.band--inverse .band-item {
  color: var(--black);
}

.band-num {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  opacity: 0.35;
}

@media (max-width: 640px) {
  .band-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .band-item {
    text-align: left;
  }

  .band-num {
    display: inline;
    margin-right: 0.5rem;
  }
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(70vh, 720px);
  border-bottom: 1px solid var(--border);
}

.split__visual {
  position: relative;
  min-height: 280px;
}

.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.wrap-split {
  width: min(100% - 3rem, 420px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.h-section {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.h-section--dark {
  color: var(--black);
}

.lede {
  margin: 0 0 1.25rem;
  color: var(--gray);
  font-size: 1rem;
}

.ticks {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: rgba(250, 250, 250, 0.75);
}

.ticks li {
  margin-bottom: 0.4rem;
}

.split-cta .btn-urgence {
  animation: none;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split__visual {
    min-height: 220px;
    max-height: 40vh;
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  border-bottom: 1px solid var(--border);
}

.section--tight {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.section--mute {
  background: var(--black-soft);
}

.section-head {
  margin-bottom: 2rem;
}

.section-deck {
  margin: 0;
  max-width: 50ch;
  color: var(--gray);
  font-size: 0.98rem;
}

.tarifs-reassurance {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.tarifs-reassurance li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(250, 250, 250, 0.82);
  font-size: 0.9rem;
}

.tarifs-reassurance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

/* Tarifs */
.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.price-tile {
  background: transparent;
  padding: 1.75rem 1.5rem;
  position: relative;
  border: 1px solid var(--border);
}

.price-tile__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 0.25rem 0.5rem;
}

.price-tile__title {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}

.price-tile__eur {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-tile__eur .from {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.price-tile__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .price-row {
    grid-template-columns: 1fr;
  }
}

/* Devis block */
.devis-block {
  background: var(--white);
  color: var(--black);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  border-bottom: 1px solid var(--border-dark);
}

.devis-block__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.devis-block__copy {
  max-width: 420px;
}

.devis-block__copy p {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1rem;
}

.devis-block__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

/* Services grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.svc-card {
  background: var(--black);
  padding: 1.5rem 1.25rem;
  margin: 0;
}

.svc-card__idx {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  opacity: 0.2;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.svc-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.svc-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
}

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

/* Section kickers */
.section-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.45);
}

/* 3 étapes — cartes */
.section--steps {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.steps-head {
  max-width: 38rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.steps-head .h-section {
  margin-bottom: 0.65rem;
}

.steps-deck {
  margin: 0;
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.55;
  max-width: 42ch;
}

.steps-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  margin: 0;
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.step-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--white);
}

.step-card__num {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(250, 250, 250, 0.12);
}

.step-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.step-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
  flex: 1;
}

@media (max-width: 900px) {
  .steps-cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .step-card {
    padding: 1.15rem 1.1rem 1.25rem;
  }
}

/* Avis */
.reviews-section .h-section {
  margin-bottom: 0;
}

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--black-soft);
}

.google-badge__logo {
  display: flex;
  flex-shrink: 0;
}

.google-badge__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.google-badge__score {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray);
}

.google-badge__score strong {
  color: var(--white);
  font-size: 1rem;
}

.stars-row {
  display: flex;
  gap: 2px;
  line-height: 1;
}

.stars-row--sm {
  margin-bottom: 0.65rem;
}

.star {
  font-size: 1rem;
  color: rgba(250, 250, 250, 0.2);
  text-shadow: none;
}

.star--full {
  color: #fbbc04;
}

.quote-row--reviews {
  margin-top: 0;
}

.quote--review {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem;
  border-radius: 3px;
}

.quote--review p {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.quote--review footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.quote-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.quote-meta {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviews-cta {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.btn-google-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border-radius: 3px;
  border: 2px solid var(--white);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  text-align: left;
  max-width: 100%;
}

.btn-google-cta:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: var(--black);
}

.btn-google-cta__g {
  flex-shrink: 0;
  opacity: 0.85;
}

.btn-google-cta__arrow {
  flex-shrink: 0;
  margin-left: 0.25rem;
  opacity: 0.6;
}

@media (max-width: 520px) {
  .btn-google-cta {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 1rem 1rem;
  }

  .btn-google-cta__arrow {
    display: none;
  }
}

/* Quotes grid (avis) */
.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: var(--black-soft);
}

.quote p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.quote footer {
  font-size: 0.8rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .quote-row {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Zone + carte */
.section--zone {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.zone-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.zone-copy .h-section {
  margin-bottom: 0.65rem;
}

.h-section__accent {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.zone-lead {
  margin: 0 0 1.1rem;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 42ch;
}

.zone-lead--city-links {
  margin-top: 0.75rem;
  max-width: none;
}

.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: rgba(250, 250, 250, 0.85);
  background: var(--black);
}

.chip--more {
  border-style: dashed;
  color: var(--gray);
}

.zone-map-hint {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: rgba(250, 250, 250, 0.4);
  max-width: 40ch;
  line-height: 1.45;
}

.zone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn-zone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  min-height: 44px;
}

.btn-zone--primary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.btn-zone--primary:hover {
  opacity: 1;
  color: var(--black);
}

.btn-zone--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}

.btn-zone--ghost:hover {
  border-color: var(--white);
  opacity: 1;
}

.zone-map-shell {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
  background: var(--black-soft);
}

.zone-map {
  width: 100%;
  height: clamp(280px, 48vw, 440px);
  z-index: 1;
}

.leaflet-container {
  font-family: var(--font);
  background: var(--black-soft);
}

.leaflet-container a {
  color: rgba(250, 250, 250, 0.65);
}

.leaflet-popup-content-wrapper {
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border);
}

.leaflet-popup-tip {
  background: var(--black);
  border: 1px solid var(--border);
}

.leaflet-popup-content {
  margin: 0.65rem 0.85rem;
  font-size: 0.875rem;
}

@media (max-width: 900px) {
  .zone-layout {
    grid-template-columns: 1fr;
  }

  .zone-map-shell {
    border-radius: 14px;
    overflow: hidden;
    min-height: 260px;
  }

  .zone-map {
    height: min(56vh, 340px);
  }
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--gray);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Footer CTA */
.footer-cta {
  padding: clamp(3rem, 8vw, 4.5rem) 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.h-cta {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.footer-cta__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 0;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-tag {
  margin: 0.35rem 0 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-h {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 0.65rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray);
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(var(--fab-offset) + 8px + env(safe-area-inset-bottom, 0px));
  z-index: 1150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: transform 0.15s ease;
}

.fab-wa:hover {
  opacity: 1;
  transform: scale(1.05);
  color: var(--black);
}

/* Sticky bar */
.sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  min-height: var(--sticky-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--black-soft);
  border-top: 1px solid var(--border);
}

.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: var(--sticky-h);
  padding-block: 0.35rem;
}

.sticky-bar__hint {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.sticky-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.btn-urgence--sticky-main {
  min-height: 46px;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 420px) {
  .sticky-bar__hint {
    display: none;
  }
}

/* ========== Mobile : refonte UX ========== */
@media (max-width: 880px) {
  .sticky-bar {
    display: block;
  }

  :root {
    --header-h: 58px;
    --sticky-h: 54px;
    --fab-offset: calc(var(--sticky-h) + 14px);
  }

  .btn-urgence,
  .btn-wa,
  .btn-zone,
  .btn-google-cta,
  .nav-toggle,
  .fab-wa,
  .faq-item summary {
    touch-action: manipulation;
  }

  html {
    overflow-x: clip;
  }

  body {
    font-size: 1.0625rem;
    line-height: 1.6;
    padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px) + 10px);
  }

  .wrap {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-left: max(1.125rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.125rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .header-inner {
    min-height: var(--header-h);
    height: auto;
    padding-block: 0.35rem;
  }

  .site-header {
    height: auto;
    min-height: var(--header-h);
  }

  .logo-word {
    font-size: 1rem;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: min(72vh, calc(100dvh - var(--header-h)));
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem max(1.25rem, env(safe-area-inset-left, 0px)) calc(1.25rem + env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-right, 0px));
    margin: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 1090;
    transform: translateY(-108%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.35rem 0;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--white);
  }

  .nav-list a:active {
    opacity: 0.75;
  }

  .nav .btn-urgence--sm {
    margin-top: 0.85rem;
    width: 100%;
    min-height: 52px;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .nav .btn-urgence--sm .btn-urgence__num {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }

  /* Hero : bandeau image + texte sur fond (meilleur cadrage mobile) */
  .hero-landing {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    padding-top: var(--header-h);
    padding-bottom: 0;
  }

  .hero-landing__media {
    position: relative;
    inset: auto;
    flex-shrink: 0;
    width: 100%;
    height: clamp(200px, 42vmin, 300px);
    overflow: hidden;
    border-radius: 0 0 18px 18px;
  }

  .hero-landing__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 32%;
  }

  .hero-landing__veil {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.15) 0%,
      rgba(10, 10, 10, 0.55) 55%,
      rgba(10, 10, 10, 0.88) 100%
    );
  }

  .hero-landing__content {
    flex: 1;
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding-top: 1.35rem;
    padding-bottom: 1.5rem;
    background: var(--black);
    text-align: left;
  }

  .hero-kicker {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
  }

  .hero-title {
    font-size: clamp(1.95rem, 9.2vw, 2.85rem);
    line-height: 1.06;
    margin-bottom: 0.75rem;
    max-width: 16ch;
  }

  .hero-title__line {
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.28);
  }

  .hero-sub {
    font-size: 1.02rem;
    margin-bottom: 1.25rem;
    max-width: 36ch;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
    max-width: 100%;
  }

  .btn-urgence--xl,
  .btn-wa--xl {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    border-radius: 10px;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .btn-urgence--xl {
    flex-direction: column;
    padding: 0.75rem 1rem;
  }

  .btn-urgence--hero-main {
    min-height: 62px;
  }

  .btn-urgence--xl .btn-urgence__label {
    font-size: 0.62rem;
  }

  .btn-urgence--xl .btn-urgence__num {
    font-size: 1.2rem;
  }

  .btn-wa--xl {
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
  }

  .hero-chips {
    flex-direction: column;
    gap: 0.45rem;
    align-items: flex-start;
  }

  .hero-chips li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
  }

  .band-inner {
    padding: 1rem 0;
    gap: 0.85rem;
  }

  .trust-icons__inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-block: 0.85rem;
  }

  .trust-item {
    justify-content: flex-start;
    font-size: 0.76rem;
    border-radius: 10px;
  }

  .band-item {
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .band--inverse .band-item:last-child {
    border-bottom: none;
  }

  .split {
    min-height: 0;
  }

  .split__visual {
    position: relative;
    height: clamp(190px, 36vmin, 270px);
    min-height: 0;
    max-height: none;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
  }

  .split__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
  }

  .wrap-split {
    width: 100%;
    max-width: none;
    padding: 1.65rem max(1.125rem, env(safe-area-inset-left, 0px)) 2.1rem max(1.125rem, env(safe-area-inset-right, 0px));
    margin-inline: 0;
    box-sizing: border-box;
  }

  .h-section {
    font-size: clamp(1.55rem, 6.5vw, 1.95rem);
    line-height: 1.12;
    margin-bottom: 0.75rem;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section--tight {
    padding-top: 2rem;
  }

  .section--steps,
  .section--zone {
    padding: 2.25rem 0;
  }

  .section-head {
    margin-bottom: 1.35rem;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    background: transparent;
    border: none;
  }

  .price-tile {
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .price-tile__eur {
    font-size: 2rem;
  }

  .devis-block {
    padding: 2rem 0;
  }

  .devis-block__copy .h-section {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .svc-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    background: transparent;
    border: none;
    margin-top: 1.15rem;
  }

  .svc-card {
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 1.2rem 1.1rem;
  }

  .steps-head {
    margin-bottom: 1.15rem;
  }

  .steps-deck {
    max-width: none;
    font-size: 1rem;
  }

  .step-card {
    border-radius: 14px;
    padding: 1.2rem 1.1rem 1.35rem;
  }

  .step-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .step-card__text {
    font-size: 0.95rem;
  }

  .reviews-head {
    gap: 1rem;
  }

  .google-badge {
    width: 100%;
    justify-content: flex-start;
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .quote-row {
    gap: 0.75rem;
  }

  .quote--review,
  .quote {
    border-radius: 14px;
    padding: 1.2rem 1.05rem;
  }

  .quote--review p {
    font-size: 1rem;
  }

  .btn-google-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.35;
    padding: 0.9rem 1rem;
  }

  .btn-google-cta__arrow {
    display: none;
  }

  .zone-copy .h-section {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }

  .zone-lead {
    max-width: none;
    font-size: 1rem;
  }

  .zone-chips {
    gap: 0.4rem;
  }

  .chip {
    padding: 0.45rem 0.7rem;
    font-size: 0.6875rem;
    border-radius: 6px;
  }

  .zone-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .btn-zone {
    width: 100%;
    min-height: 50px;
    border-radius: 10px;
    font-size: 0.75rem;
  }

  .faq-item summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    font-size: 1rem;
    padding-right: 2rem;
    position: relative;
  }

  .faq-item summary::after {
    float: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
  }

  .footer-cta {
    padding: 2.5rem 0 2.75rem;
  }

  .h-cta {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.1;
  }

  .site-footer {
    padding-bottom: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .sticky-bar__inner {
    padding-inline: max(0.75rem, env(safe-area-inset-left, 0px)) max(0.75rem, env(safe-area-inset-right, 0px));
    gap: 0.5rem;
  }

  .sticky-bar__actions {
    flex: 1;
    display: flex;
    gap: 0.4rem;
    min-width: 0;
  }

  .sticky-bar__actions .btn-urgence--compact {
    flex: 1.6;
    min-width: 0;
    justify-content: center;
    min-height: 46px;
    padding: 0.5rem 0.4rem;
    border-radius: 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-bar__actions .btn-wa--compact {
    flex: 0.7;
    min-width: 0;
    justify-content: center;
    min-height: 46px;
    padding: 0.5rem 0.35rem;
    border-radius: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .fab-wa {
    width: 54px;
    height: 54px;
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: calc(var(--fab-offset) + 6px + env(safe-area-inset-bottom, 0px));
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  }

  .fab-wa svg {
    width: 26px;
    height: 26px;
  }

  .devis-block__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .devis-block__actions {
    flex-direction: column;
    width: 100%;
  }

  .devis-block__actions .btn-urgence,
  .devis-block__actions .btn-wa {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    border-radius: 10px;
  }

  .footer-cta__row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta__row .btn-urgence--xl,
  .footer-cta__row .btn-wa--xl {
    width: 100%;
  }
}

@media (max-width: 880px) and (max-height: 520px) {
  .nav {
    max-height: calc(100dvh - var(--header-h));
  }

  .hero-landing__media {
    height: clamp(150px, 28vh, 200px);
    border-radius: 0 0 12px 12px;
  }

  .hero-landing__content {
    padding-top: 1rem;
    padding-bottom: 1.15rem;
  }
}

@media (max-width: 400px) {
  .wrap {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .sticky-bar__actions .btn-urgence--compact {
    font-size: 0.7rem;
    padding-inline: 0.35rem;
  }
}

/* Pages SEO par ville */
.seo-page {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  max-width: 720px;
  margin: 0 auto;
  width: min(100% - 2rem, 720px);
}

.seo-page .seo-back {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.seo-page .seo-back a {
  text-decoration: none;
  color: var(--gray);
}

.seo-page .seo-back a:hover {
  color: var(--white);
  opacity: 1;
}

.seo-page h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 1rem;
}

.seo-page .seo-lead {
  font-size: 1.05rem;
  color: rgba(250, 250, 250, 0.92);
  margin-bottom: 1.75rem;
}

.seo-page h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--white);
}

.seo-page p,
.seo-page li {
  color: var(--gray);
  margin: 0 0 1rem;
}

.seo-page ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.seo-page li {
  margin-bottom: 0.35rem;
}

.seo-zones {
  margin-top: 2.5rem;
  padding: 1.25rem 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--black-soft);
}

.seo-zones h2 {
  margin-top: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 250, 0.55);
}

.seo-zones p:last-child {
  margin-bottom: 0;
}

.seo-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.seo-city-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: rgba(250, 250, 250, 0.9);
}

.seo-city-links a:hover {
  border-color: var(--white);
  opacity: 1;
}

.seo-cta-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.section--city-hub .city-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.section--city-hub .city-hub-grid a {
  display: block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.section--city-hub .city-hub-grid a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  opacity: 1;
}

.section--city-hub .city-hub-grid span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  margin-top: 0.25rem;
}

.seo-meta-line {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: -0.25rem;
}

.seo-kicker--tight {
  margin-bottom: 0.5rem;
}

.seo-blog-link {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--gray);
}

.seo-blog-link a {
  font-weight: 600;
  color: rgba(250, 250, 250, 0.92);
}

/* ——— Consentement cookies (RGPD) ——— */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: env(safe-area-inset-bottom, 0);
  z-index: 1160;
  padding: 0.85rem 0;
  background: rgba(14, 14, 14, 0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

html.has-sticky-bar .cookie-banner {
  bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

.cookie-banner--hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  flex: 1 1 280px;
  max-width: 52ch;
}

.cookie-banner__text strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.cookie-banner__text p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--gray);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
}

.btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.45rem 1rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn-cookie--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-cookie--primary:hover {
  opacity: 0.92;
  color: var(--black);
}

.btn-cookie--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}

.btn-cookie--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1170;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1180;
  width: min(100% - 1.5rem, 560px);
  max-height: min(88vh, 720px);
  overflow: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--black-soft);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.cookie-modal__inner {
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
}

.cookie-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-modal__close:hover {
  color: var(--white);
}

.cookie-modal__title {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 2rem 0.75rem 0;
  color: var(--white);
  font-weight: 800;
}

.cookie-modal__intro {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.cookie-cat {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--black);
}

.cookie-cat--locked {
  opacity: 0.95;
}

.cookie-cat__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.cookie-cat__badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(250, 250, 250, 0.85);
  border-radius: 2px;
}

.cookie-cat__desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray);
}

.cookie-switch {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
}

.cookie-switch--on {
  background: rgba(250, 250, 250, 0.4);
}

.cookie-switch-btn {
  position: relative;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-switch-btn::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gray);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cookie-switch-btn--on {
  border-color: rgba(250, 250, 250, 0.45);
  background: rgba(250, 250, 250, 0.2);
}

.cookie-switch-btn--on::after {
  transform: translateX(20px);
  background: var(--white);
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-banner__actions .btn-cookie {
    flex: 1 1 auto;
    min-width: 0;
  }
}
