:root {
  --navy: #001b3d;
  --navy-deep: #00122a;
  --navy-soft: #0a2a52;
  --cyan: #4eb7e2;
  --cyan-bright: #6ec8ec;
  --cyan-deep: #2a9bc4;
  --sand: #e8dcc8;
  --sand-soft: #f3ebe0;
  --ink: #f4f8fb;
  --ink-muted: #a8bdd0;
  --white: #ffffff;
  --line: rgba(78, 183, 226, 0.22);
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x: clamp(1.15rem, 4vw, 3.5rem);
  --section: clamp(4.5rem, 10vw, 7.5rem);
  --z-nav: 40;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

#root {
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.site {
  overflow-x: clip;
}

/* ——— Logo ——— */
.brand-logo {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.15rem;
  align-items: end;
  line-height: 1;
  width: max-content;
}

.brand-word {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.brand-sg {
  font-weight: 800;
}

.brand-services {
  font-weight: 700;
}

.brand-wave {
  grid-column: 1;
  width: 2.6rem;
  height: 0.7rem;
  margin-top: 0.1rem;
  overflow: visible;
}

.brand-piscines {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 0.05rem;
}

/* ——— Site intro splash ——— */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: linear-gradient(
    160deg,
    var(--navy-deep) 0%,
    var(--navy) 45%,
    var(--navy-soft) 100%
  );
  overflow: hidden;
}

.site-intro-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
}

.site-intro-brand {
  transform: scale(1.85);
  transform-origin: center;
}

@media (min-width: 700px) {
  .site-intro-brand {
    transform: scale(2.35);
  }
}

.site-intro-brand .brand-wave path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: intro-wave-draw 1.1s var(--ease) 0.45s forwards;
}

@keyframes intro-wave-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.site-intro-shine {
  position: absolute;
  inset: -20% auto -20% 0;
  width: 35%;
  background: linear-gradient(
    90deg,
    transparent,
    oklch(1 0 0 / 0.18),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

.site-intro-tag {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}

.site-intro-wipe {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  transform-origin: bottom;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-intro-brand .brand-wave path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem var(--pad-x);
  background: linear-gradient(
    to bottom,
    oklch(0.16 0.04 250 / 0.94),
    oklch(0.16 0.04 250 / 0.55),
    transparent
  );
  backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-muted);
  transition: color 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a.is-active {
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 0.15rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-devis {
  padding: 0.42rem 0.72rem;
  font-size: 0.68rem;
  background: var(--white);
  color: var(--navy);
  letter-spacing: 0.04em;
}

.nav-devis:hover,
.nav-devis:focus-visible {
  background: var(--sand-soft);
  color: var(--navy);
}

.btn-urgent {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  background: #e11;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  animation: urgent-glow 1.35s ease-in-out infinite;
}

.btn-urgent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff4d4d;
  animation: urgent-bar 0.85s step-end infinite;
}

.btn-urgent:hover,
.btn-urgent:focus-visible {
  background: #c00;
  transform: translateY(-1px);
}

@keyframes urgent-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(238 17 17 / 0.55);
  }
  50% {
    box-shadow: 0 0 14px 3px rgb(238 17 17 / 0.55);
  }
}

@keyframes urgent-bar {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-urgent {
    animation: none;
    box-shadow: none;
  }
  .btn-urgent::before {
    animation: none;
    opacity: 0.9;
  }
}

.nav-burger {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
}

.nav-burger span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--white);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 3.6rem var(--pad-x) auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    background: oklch(0.14 0.04 250 / 0.97);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

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

  .nav-links a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--white);
  }

  .nav-burger {
    display: inline-flex;
  }

  .btn-primary.nav-devis {
    display: inline-flex;
    padding: 0.32rem 0.55rem;
    font-size: 0.58rem;
  }
}

@media (max-width: 520px) {
  .nav .btn-urgent {
    font-size: 0.65rem;
    padding: 0.5rem 0.55rem;
  }
}

/* ——— Buttons ——— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cyan-bright);
  transform: translateY(-1px);
}

.btn-primary.nav-devis {
  padding: 0.35rem 0.62rem;
  font-size: 0.62rem;
  background: #fff;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.btn-primary.nav-devis:hover,
.btn-primary.nav-devis:focus-visible {
  background: #f3f6f9;
  color: var(--navy);
  transform: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--cyan-bright);
  border-color: var(--cyan);
  background: oklch(0.22 0.05 230 / 0.35);
}

.nav-urgent {
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
}

/* ——— Google badge ——— */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.95rem;
  background: oklch(0.2 0.04 250 / 0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s var(--ease);
  max-width: 100%;
}

.google-badge:hover,
.google-badge:focus-visible {
  border-color: var(--cyan);
}

.google-badge.compact {
  padding: 0.5rem 0.7rem;
  gap: 0.55rem;
}

.google-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.google-copy strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.google-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.stars {
  display: inline-flex;
  gap: 1px;
}

.stars-pulse svg {
  animation: star-twinkle 1.7s ease-in-out infinite;
  transform-origin: center;
}

.stars-pulse svg:nth-child(1) {
  animation-delay: 0s;
}
.stars-pulse svg:nth-child(2) {
  animation-delay: 0.18s;
}
.stars-pulse svg:nth-child(3) {
  animation-delay: 0.36s;
}
.stars-pulse svg:nth-child(4) {
  animation-delay: 0.54s;
}
.stars-pulse svg:nth-child(5) {
  animation-delay: 0.72s;
}

@keyframes star-twinkle {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
    filter: brightness(0.85);
  }
  45% {
    opacity: 1;
    transform: scale(1.12);
    filter: brightness(1.25);
  }
}

.google-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: #fff;
  flex-shrink: 0;
}

.google-badge.compact .google-mark {
  width: 1.9rem;
  height: 1.9rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem var(--pad-x) 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.14 0.05 250 / 0.88) 0%, oklch(0.14 0.05 250 / 0.45) 55%, oklch(0.14 0.05 250 / 0.35) 100%),
    linear-gradient(180deg, oklch(0.14 0.05 250 / 0.45) 0%, transparent 30%, oklch(0.12 0.05 250 / 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(36rem, 100%);
  padding-bottom: 2.5rem;
}

.hero-light .hero-content {
  padding-bottom: 3rem;
}

.hero-proof {
  margin-bottom: 1.5rem;
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  color: var(--white);
  line-height: 1.05;
  max-width: 12ch;
}

.hero-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--cyan-bright);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-lead {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 36ch;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0;
}

.hero-actions .btn-primary {
  padding: 0.72rem 1.15rem;
  font-size: 0.78rem;
  background: var(--white);
  color: var(--navy);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  background: var(--sand-soft);
  color: var(--navy);
}

.hero-stats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 1.5rem;
  border-top: 1px solid oklch(1 0 0 / 0.12);
  max-width: 32rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 0 1 auto;
  max-width: 11rem;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  color: var(--cyan-bright);
  letter-spacing: -0.02em;
}

.hero-stats span {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

@media (max-width: 560px) {
  .hero-stats {
    flex-direction: column;
    gap: 0.85rem;
  }

  .hero-stats li {
    max-width: none;
  }
}

.hero-ribbon {
  position: relative;
  z-index: 1;
  margin: 0 calc(-1 * var(--pad-x));
  padding: 0.72rem 0;
  background: var(--cyan);
  color: #fff;
  overflow: hidden;
  max-width: 100vw;
}

@media (max-width: 799px) {
  .hero-ribbon {
    padding: 0.28rem 0;
  }

  .ticker-track {
    font-size: 0.6rem;
    letter-spacing: 0.015em;
    animation-duration: 26s;
  }
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker-scroll 36s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.7rem, 1.3vw, 0.86rem);
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: #fff;
  will-change: transform;
}

.ticker-track span {
  flex: none;
  padding-right: 0;
  color: #fff;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    /* 4 identical spans → translate by half the track (2 spans) for a seamless loop */
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
  .stars-pulse svg {
    animation: none;
    opacity: 1;
  }
}

/* ——— Sections ——— */
.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.85rem;
  color: var(--white);
}

.section-head p {
  color: var(--ink-muted);
  font-weight: 300;
}

.services {
  padding: var(--section) var(--pad-x);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.services-showcase {
  background:
    radial-gradient(70% 50% at 90% 10%, oklch(0.32 0.07 220 / 0.35), transparent 55%),
    var(--navy);
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.25rem 2.5rem;
  max-width: none;
}

.section-head-aside {
  max-width: 28ch;
  color: var(--ink-muted);
  font-weight: 300;
  margin: 0;
}

.svc-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 0.85rem;
}

.svc-tile {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: oklch(0.16 0.04 250);
  isolation: isolate;
}

.svc-tile-1 {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 340px;
}

.svc-tile-2 {
  grid-column: span 4;
  min-height: 165px;
}

.svc-tile-3 {
  grid-column: span 3;
  min-height: 165px;
}

.svc-tile-4 {
  grid-column: span 4;
  min-height: 165px;
}

.svc-tile-5 {
  grid-column: span 3;
  min-height: 165px;
}

.svc-tile-6 {
  grid-column: span 3;
  min-height: 190px;
}

.svc-tile-7 {
  grid-column: span 3;
  min-height: 190px;
}

.svc-tile-8 {
  grid-column: span 3;
  min-height: 190px;
}

.svc-tile-9 {
  grid-column: span 3;
  min-height: 190px;
}

.svc-bento-page .svc-tile {
  min-height: 220px;
}

.svc-tile-link {
  display: block;
  position: relative;
  height: 100%;
  min-height: inherit;
  color: inherit;
  padding: 1.25rem 1.2rem;
}

.svc-tile-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease), opacity 0.35s var(--ease);
  opacity: 0.62;
  z-index: 0;
}

.svc-tile:hover .svc-tile-media,
.svc-tile:focus-within .svc-tile-media,
.svc-tile:active .svc-tile-media {
  transform: scale(1);
  opacity: 0.92;
}

.svc-tile-1 .svc-tile-media {
  opacity: 0.72;
}

.svc-tile-1:hover .svc-tile-media,
.svc-tile-1:focus-within .svc-tile-media,
.svc-tile-1:active .svc-tile-media {
  opacity: 0.95;
}

.svc-tile-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, oklch(0.14 0.04 250 / 0.08) 0%, oklch(0.12 0.05 250 / 0.55) 100%),
    linear-gradient(90deg, oklch(0.14 0.05 250 / 0.28), transparent 65%);
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.svc-tile:hover .svc-tile-veil,
.svc-tile:focus-within .svc-tile-veil,
.svc-tile:active .svc-tile-veil {
  opacity: 0.35;
}

.svc-tile-index {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: oklch(0.75 0.04 220 / 0.55);
}

.svc-tile-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: inherit;
  gap: 0.35rem;
}

.svc-tile-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.55rem;
  color: var(--cyan-bright);
  border: 1px solid oklch(0.55 0.1 220 / 0.4);
  background: oklch(0.2 0.05 230 / 0.45);
  backdrop-filter: blur(8px);
}

.svc-tile-body h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  margin: 0;
  color: var(--white);
  line-height: 1.15;
}

.svc-tile-1 .svc-tile-body h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.svc-tile-body p {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 32ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-tile-go {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.svc-tile:hover .svc-tile-go,
.svc-tile:focus-within .svc-tile-go {
  opacity: 1;
  transform: translateY(0);
}

.svc-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.svc-tile:hover::after,
.svc-tile:focus-within::after {
  border-color: oklch(0.65 0.1 220 / 0.55);
  box-shadow: inset 0 0 0 1px oklch(0.55 0.1 220 / 0.2);
}

@media (max-width: 980px) {
  .svc-tile-1,
  .svc-tile-2,
  .svc-tile-3,
  .svc-tile-4,
  .svc-tile-5,
  .svc-tile-6,
  .svc-tile-7,
  .svc-tile-8,
  .svc-tile-9 {
    grid-column: span 6;
    grid-row: auto;
    min-height: 200px;
  }

  .svc-tile-1 {
    grid-column: span 12;
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .svc-bento {
    grid-template-columns: 1fr;
  }

  .svc-tile-1,
  .svc-tile-2,
  .svc-tile-3,
  .svc-tile-4,
  .svc-tile-5,
  .svc-tile-6,
  .svc-tile-7,
  .svc-tile-8,
  .svc-tile-9 {
    grid-column: 1;
    min-height: 180px;
  }

  .svc-tile-go {
    opacity: 1;
    transform: none;
  }
}

/* legacy service card bits kept for detail pages */
.services-grid {
  display: none;
}

.service-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  color: var(--cyan-bright);
  border: 1px solid oklch(0.55 0.1 220 / 0.35);
  background: oklch(0.22 0.05 230 / 0.35);
  border-radius: 0.35rem;
}

.svc-icon {
  display: block;
}

.svc-bolt {
  animation: bolt-flash 2.4s ease-in-out infinite;
}

.svc-drop {
  animation: drop-bob 2.8s ease-in-out infinite;
}

.svc-spark {
  animation: spark-spin 6s linear infinite;
}

.svc-wave path:first-child {
  animation: wave-shift 2.2s ease-in-out infinite;
}

.svc-spin {
  animation: gear-spin 5s linear infinite;
  transform-origin: 16px 16px;
}

.svc-season {
  animation: season-pulse 3s ease-in-out infinite;
}

.svc-cover {
  animation: cover-lift 2.6s ease-in-out infinite;
}

.svc-power {
  animation: power-glow 2.2s ease-in-out infinite;
}

@keyframes bolt-flash {
  0%,
  100% {
    opacity: 0.7;
  }
  45% {
    opacity: 1;
    filter: drop-shadow(0 0 6px oklch(0.7 0.12 220 / 0.6));
  }
}

@keyframes drop-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@keyframes spark-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes wave-shift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

@keyframes gear-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes season-pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes cover-lift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes power-glow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 5px oklch(0.7 0.12 220 / 0.55));
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-bolt,
  .svc-drop,
  .svc-spark,
  .svc-spin,
  .svc-season,
  .svc-cover,
  .svc-power,
  .svc-wave path {
    animation: none !important;
  }

  .svc-tile-media {
    transition: none;
  }
}

.service h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
  color: var(--white);
}

.service p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  font-weight: 300;
}

/* ——— Réalisations ——— */
.realisations {
  padding: var(--section) var(--pad-x);
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}

.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.work-video {
  margin: 0;
  overflow: hidden;
  background: var(--navy-soft);
  position: relative;
}

.work-video video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #000;
}

.work-video figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: linear-gradient(transparent, oklch(0.12 0.05 250 / 0.9));
  pointer-events: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.shot {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-soft);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.shot:hover img {
  transform: scale(1.04);
}

@media (max-width: 800px) {
  .video-row,
  .gallery {
    grid-template-columns: 1fr;
  }

  .work-video video {
    aspect-ratio: 16 / 9;
    max-height: none;
    min-height: 180px;
    object-fit: contain;
  }
}

/* ——— Intro video (contact, full-bleed) ——— */
.intro-video-section {
  padding: 0;
  background: #000;
  border-top: 1px solid var(--line);
}

.intro-video-solo {
  width: 100%;
}

.intro-video-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #000;
}

.intro-video-frame-lg {
  width: 100%;
}

.intro-video-frame-lg video {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  max-height: min(72vh, 720px);
  background: #000;
}

@media (max-width: 800px) {
  .intro-video-frame-lg video {
    aspect-ratio: 16 / 9;
    max-height: none;
    min-height: 220px;
  }
}

/* ——— Inner page hero ——— */
.page-hero {
  padding: 7.5rem var(--pad-x) 3rem;
  background:
    radial-gradient(60% 80% at 10% 0%, oklch(0.3 0.07 230 / 0.35), transparent 70%),
    var(--navy-deep);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 0.75rem;
  max-width: 16ch;
}

.page-hero .hero-lead {
  margin-bottom: 0;
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

.home-cta-band {
  padding: calc(var(--section) * 0.7) var(--pad-x);
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  text-align: center;
}

.home-cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.home-cta-band p {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.home-cta-band .hero-actions {
  justify-content: center;
}

/* ——— Home devis form (bottom of homepage) ——— */
.home-devis {
  padding: calc(var(--section) * 0.9) var(--pad-x);
  background:
    radial-gradient(60% 50% at 100% 0%, oklch(0.32 0.07 220 / 0.22), transparent 55%),
    var(--navy-deep);
  border-top: 1px solid var(--line);
}

.home-devis-card {
  width: min(68rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  background: #fff;
  color: #122;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px oklch(0.15 0.04 250 / 0.35);
}

.home-devis-aside h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--navy-deep);
}

.home-devis-aside h2 em {
  font-style: normal;
  color: var(--cyan-deep);
}

.home-devis-aside > p {
  margin: 0 0 1.75rem;
  color: #5a6573;
  font-weight: 400;
  line-height: 1.55;
  max-width: 34ch;
}

.home-devis-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cyan-deep);
  margin-bottom: 0.35rem;
}

.home-devis-mail {
  display: block;
  font-size: 0.95rem;
  color: #3a4553;
  font-weight: 500;
  word-break: break-word;
}

.home-devis-form-note {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  color: #6a7583;
  line-height: 1.45;
}

.home-devis-form-wrap .contact-form,
.home-devis-form-wrap .form-short {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.1rem 1.15rem !important;
  margin: 0 !important;
}

.home-devis-form-wrap .form-short .field-full,
.home-devis-form-wrap .form-short .btn-submit-full,
.home-devis-form-wrap .form-short .btn-primary,
.home-devis-form-wrap .form-wa-hint,
.home-devis-form-wrap .form-success {
  grid-column: 1 / -1;
}

.home-devis-form-wrap .form-short label {
  color: #3a4553;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-devis-form-wrap .form-short input,
.home-devis-form-wrap .form-short select,
.home-devis-form-wrap .form-short textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1.5px solid #d5dde6 !important;
  border-radius: 0 !important;
  padding: 0.55rem 0 !important;
  color: var(--navy-deep) !important;
  font-size: 1rem !important;
}

.home-devis-form-wrap .form-short input:focus,
.home-devis-form-wrap .form-short select:focus,
.home-devis-form-wrap .form-short textarea:focus {
  outline: none;
  border-bottom-color: var(--cyan) !important;
}

.home-devis-form-wrap .form-short select {
  color: var(--navy-deep);
}

.home-devis-form-wrap .form-short select option {
  color: #122;
  background: #fff;
}

.home-devis-form-wrap .form-short .btn-primary {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
}

.home-devis-form-wrap .form-short .btn-primary:hover,
.home-devis-form-wrap .form-short .btn-primary:focus-visible {
  background: var(--navy-soft);
  color: #fff;
}

.home-devis-form-wrap .form-wa-hint {
  color: #6a7583;
}

.home-devis-form-wrap .form-success {
  color: var(--navy-deep);
}

.home-devis-form-wrap .form-success h3 {
  color: var(--navy-deep);
}

@media (max-width: 860px) {
  .home-devis-card {
    grid-template-columns: 1fr;
    padding: 1.35rem 1.15rem 1.5rem;
    border-radius: 1rem;
  }

  .home-devis {
    padding: 2.5rem var(--pad-x) calc(2.75rem + 4.5rem);
  }

  .home-devis-form-wrap .form-short {
    grid-template-columns: 1fr !important;
  }
}

/* ——— Showcase chantier / résultat (vidéos qui s'ouvrent au scroll) ——— */
.showcase {
  padding: var(--section) var(--pad-x);
  background:
    radial-gradient(60% 45% at 100% 0%, oklch(0.32 0.07 220 / 0.32), transparent 60%),
    var(--navy);
  border-top: 1px solid var(--line);
}

.showcase-head {
  width: min(72rem, 100%);
  margin-inline: auto;
}

.showcase-head h2 span {
  color: var(--cyan-bright);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.75rem);
  align-items: stretch;
  width: min(72rem, 100%);
  margin-inline: auto;
}

.showcase-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.4vw, 1.75rem);
  min-width: 0;
}

.showcase-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0.9rem;
  background: var(--navy-deep);
  will-change: clip-path, opacity;
}

.showcase-media.is-landscape {
  aspect-ratio: 16 / 9;
}

.showcase-media.is-portrait {
  aspect-ratio: 9 / 16;
}

.showcase-media.showcase-tall {
  aspect-ratio: auto;
  height: 100%;
  min-height: 26rem;
}

.showcase-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.showcase-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.75rem 1.1rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: oklch(0.95 0.01 240);
  background: linear-gradient(to top, oklch(0.14 0.03 250 / 0.85), transparent);
  pointer-events: none;
}

.showcase-note {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.15rem, 2.4vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: oklch(0.18 0.04 250 / 0.45);
}

.showcase-note .section-eyebrow {
  margin: 0;
}

.showcase-note-link {
  align-self: flex-start;
  margin-top: 0.25rem;
  color: var(--cyan-bright);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.showcase-note-link:hover,
.showcase-note-link:focus-visible {
  border-bottom-color: var(--cyan-bright);
}

.showcase-note-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.25;
  color: var(--white);
}

.showcase-note ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.showcase-note li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.94rem;
  line-height: 1.45;
}

.showcase-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--cyan);
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-media.showcase-tall {
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 0;
  }

  .showcase-media.is-portrait {
    max-height: 66vh;
  }

  .showcase-caption {
    padding-bottom: 1.35rem;
    font-size: 0.78rem;
  }
}

/* ——— Slemen story (video + first-person copy) ——— */
.slemen-story {
  padding: var(--section) var(--pad-x);
  background:
    radial-gradient(55% 45% at 0% 30%, oklch(0.3 0.07 220 / 0.28), transparent 60%),
    var(--navy);
  border-top: 1px solid var(--line);
}

.slemen-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
  width: min(72rem, 100%);
  margin: 0 auto;
}

.slemen-story-media {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--navy-deep);
  /* Source video is 720×1280 — keep portrait */
  aspect-ratio: 9 / 16;
  width: min(100%, 380px);
  max-height: min(68vh, 620px);
  justify-self: start;
  will-change: clip-path, transform, opacity;
}

.slemen-story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.slemen-story-copy h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.55rem);
  line-height: 1.15;
  margin: 0.4rem 0 1rem;
  color: var(--white);
}

.slemen-story-copy h2 span {
  display: block;
  color: var(--cyan-bright);
}

.slemen-story-lead {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
  max-width: 38ch;
}

.slemen-story-body {
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 42ch;
}

.client-choices {
  margin: 0 0 1.35rem;
}

.client-choices-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.slemen-story-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.slemen-story-points li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.4;
}

.slemen-story-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.slemen-story-sign {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan-bright);
  letter-spacing: 0.02em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border: 1px solid oklch(0.7 0.08 70 / 0.35);
  border-radius: 999px;
  background: oklch(0.75 0.06 70 / 0.12);
  color: oklch(0.88 0.04 80);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sg-closing {
  width: min(68rem, 100%);
  margin: 2.25rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.sg-closing-logo {
  transform: scale(1.35);
  transform-origin: center;
}

.sg-closing p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Soft grain — below overlays/modals so it never glitches popups */
.site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  .slemen-story {
    padding-block: clamp(2rem, 6vw, 3rem);
  }

  /* Vidéo verticale bien visible au-dessus, texte en dessous — pas de vignette */
  .slemen-story-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .slemen-story-media {
    aspect-ratio: 9 / 16;
    width: min(18rem, 72vw);
    max-width: none;
    max-height: min(56vh, 460px);
    border-radius: 0.9rem;
    margin: 0 auto;
    justify-self: center;
    will-change: auto;
  }

  .slemen-story-copy {
    min-width: 0;
  }

  .slemen-story-copy h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
    margin: 0.15rem 0 0.75rem;
  }

  .slemen-story-lead,
  .slemen-story-body {
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: none;
  }

  .slemen-story-points {
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .slemen-story-points li {
    font-size: 0.86rem;
  }

  .trust-badges {
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .trust-badges span {
    font-size: 0.62rem;
    padding: 0.3rem 0.55rem;
  }
}

@media (max-width: 420px) {
  .slemen-story-media {
    width: min(15rem, 76vw);
    max-height: min(48vh, 380px);
  }

  .section-eyebrow {
    font-size: 0.68rem;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-nav a {
  color: var(--ink-muted);
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cyan-bright);
}

/* ——— Avis ——— */
.avis {
  padding: calc(var(--section) * 0.65) var(--pad-x);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.avis-compact .avis-head {
  margin-bottom: 1.25rem;
}

.avis-compact .marquee {
  margin-bottom: 1rem;
}

.avis-footnote {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.avis-footnote a {
  color: var(--cyan-bright);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.avis-footnote a:hover,
.avis-footnote a:focus-visible {
  border-color: var(--cyan);
}

/* Instagram band */
.insta-band {
  padding: 0 var(--pad-x) calc(var(--section) * 0.85);
  background: var(--navy);
}

.insta-card {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 100% 0%, oklch(0.45 0.18 340 / 0.25), transparent 55%),
    radial-gradient(70% 100% at 0% 100%, oklch(0.4 0.12 250 / 0.3), transparent 50%),
    oklch(0.16 0.04 250 / 0.85);
}

.insta-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.insta-card-copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 0.55rem;
}

.insta-card-copy p {
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 48ch;
  margin-bottom: 1rem;
}

.insta-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.insta-highlights li {
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid var(--line);
  background: oklch(0.2 0.04 250 / 0.5);
}

.insta-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.05rem 1.35rem;
  min-width: min(300px, 100%);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
  box-shadow: 0 12px 28px oklch(0.35 0.12 340 / 0.35);
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

.insta-cta-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.18);
}

.insta-cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  text-align: left;
  line-height: 1.2;
}

.insta-cta:hover,
.insta-cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.insta-cta strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.insta-cta em {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  opacity: 0.92;
}

@media (max-width: 800px) {
  .insta-card {
    grid-template-columns: 1fr;
  }
}

.avis-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.avis-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-bottom: 0.6rem;
  max-width: 16ch;
}

.avis-head p {
  color: var(--ink-muted);
  font-weight: 300;
}

.avis-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.score-big {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.score-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--white);
}

.score-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.score-bars {
  display: grid;
  gap: 0.4rem;
  max-width: 22rem;
}

.score-bar-row {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.bar {
  height: 0.45rem;
  background: oklch(0.25 0.03 250);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #f4b400;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.review {
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.review p {
  margin: 0.7rem 0 1rem;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.98rem;
}

.review footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.review cite {
  font-style: normal;
  font-weight: 600;
  color: var(--white);
}

.review time {
  color: var(--ink-muted);
}

@media (max-width: 700px) {
  .avis-score {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ——— About ——— */
.hero-water {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  mix-blend-mode: screen;
  pointer-events: none;
}

.about {
  position: relative;
  overflow: hidden;
  padding: var(--section) var(--pad-x);
  background:
    radial-gradient(50% 60% at 20% 20%, oklch(0.3 0.07 230 / 0.35), transparent 70%),
    var(--navy-deep);
  border-top: 1px solid var(--line);
}

.about-card {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

/* ——— Reviews marquee ——— */
.marquee {
  overflow: hidden;
  margin-bottom: 2.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.marquee-card {
  margin: 0;
  flex: 0 0 min(320px, 78vw);
  padding: 1.25rem;
  background: oklch(0.2 0.04 250 / 0.65);
  border: 1px solid var(--line);
}

.marquee-card p {
  margin: 0.7rem 0 1rem;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.marquee-card footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.marquee-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--white);
}

.marquee-card time {
  color: var(--ink-muted);
}

/* legacy carousel unused — keep space clean */
.carousel {
  display: none;
}

.hero-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: var(--cyan-bright);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.hero-mail:hover,
.hero-mail:focus-visible {
  border-color: var(--cyan);
}

.hero-mail svg {
  flex-shrink: 0;
}

/* ——— Pourquoi ——— */
.pourquoi {
  padding: var(--section) var(--pad-x);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.pourquoi-card {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.pourquoi-card h3 {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--cyan-bright);
}

.pourquoi-check {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.35;
}

.pourquoi-card p {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.98rem;
}

/* ——— FAQ ——— */
.faq {
  padding: var(--section) var(--pad-x);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: none;
  width: 100%;
  display: grid;
  gap: 0;
}

.faq .section-head {
  max-width: none;
  width: 100%;
}

.faq .section-head h2 {
  max-width: none;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--white);
}

.faq-icon {
  color: var(--cyan);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-a {
  overflow: hidden;
}

.faq-a p {
  padding: 0 0 1.15rem;
  color: var(--ink-muted);
  font-weight: 300;
}

/* ——— About social ——— */
.about-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.social-chip:hover,
.social-chip:focus-visible {
  border-color: var(--cyan);
  background: oklch(0.22 0.05 230 / 0.4);
}

.social-chip.mail {
  color: var(--cyan-bright);
}

.social-chip.wa {
  background: #128c7e;
  border-color: #128c7e;
}

/* ——— Contact highlights ——— */
.contact-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .contact-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-hl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: oklch(0.18 0.04 250 / 0.5);
  transition: border-color 0.25s var(--ease);
}

.contact-hl:hover,
.contact-hl:focus-visible {
  border-color: var(--cyan);
}

.contact-hl strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.contact-hl em {
  font-style: normal;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  word-break: break-all;
}

.contact-hl svg {
  color: var(--cyan-bright);
  flex-shrink: 0;
}

.phone-dot {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px oklch(0.55 0.1 220 / 0.2);
}

.contact-open {
  margin-bottom: 1.75rem;
}

.contact-form select {
  font: inherit;
  font-size: 1rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  outline: none;
}

.contact-form select:focus {
  border-color: var(--cyan);
}

.contact-form select option {
  color: #111;
}

.form-success {
  padding: 1.5rem 0;
  text-align: center;
}

.form-success h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--ink-muted);
  font-weight: 300;
}

.form-success-sign {
  margin-top: 1rem !important;
  color: var(--cyan-bright) !important;
  font-weight: 600 !important;
}

/* ——— Modal ——— */
.modal-root {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: max(0.75rem, env(safe-area-inset-top)) 0.85rem
    max(0.75rem, env(safe-area-inset-bottom));
  overscroll-behavior: contain;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.08 0.03 250 / 0.78);
  border: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  max-height: min(100svh - 1.5rem, 100dvh - 1.5rem);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 24px 60px oklch(0.1 0.04 250 / 0.55);
}

.modal-panel-short {
  width: min(380px, 100%);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.modal-head h2 {
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.modal-close {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  background: oklch(0.18 0.04 250 / 0.6);
  border-radius: 0.35rem;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--white);
  border-color: var(--cyan);
}

.modal-lead {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.modal-mail {
  display: none;
}

.form-short {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.75rem !important;
  margin-bottom: 0 !important;
}

.form-short label {
  gap: 0.28rem;
}

.form-short .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: oklch(0.55 0.03 240);
  font-size: 0.78rem;
}

.form-short input,
.form-short select,
.form-short textarea {
  width: 100%;
  padding: 0.62rem 0.8rem !important;
  background: oklch(0.2 0.04 250 / 0.55) !important;
  border: 1px solid var(--line) !important;
  border-radius: 0.4rem;
  font-size: 1rem !important;
}

.form-short .field-phone input {
  border-color: oklch(0.55 0.1 220 / 0.45) !important;
  font-size: 1.05rem !important;
  font-weight: 600;
}

.form-short textarea {
  min-height: 2.4rem;
  resize: none !important;
}

.form-short .btn-submit-full,
.form-short .btn-primary {
  width: 100%;
  justify-self: stretch;
  margin-top: 0.15rem;
  padding: 0.85rem 1rem;
}

.form-wa-hint {
  margin: 0.05rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 300;
}

@media (max-width: 799px) {
  .modal-panel {
    width: min(360px, 100%);
    max-height: min(100svh - 2.5rem, 100dvh - 2.5rem);
    padding: 1rem 0.95rem 1.05rem;
  }

  .modal-panel-short {
    width: min(340px, 100%);
  }

  .modal-lead {
    font-size: 0.88rem;
  }

  .form-short {
    gap: 0.65rem !important;
  }

  .form-short input,
  .form-short select,
  .form-short textarea {
    padding: 0.55rem 0.7rem !important;
  }
}

.form-wa-hint a {
  color: #25d366;
  font-weight: 700;
}

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .wa-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.wa-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 4.1rem;
  min-width: 4.1rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 10px 28px oklch(0.2 0.02 250 / 0.45);
  overflow: visible;
  transition:
    background 0.35s var(--ease),
    padding 0.35s var(--ease),
    gap 0.35s var(--ease),
    min-width 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.25s var(--ease);
}

.wa-fab-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.92rem;
  transition: max-width 0.35s var(--ease), opacity 0.25s var(--ease), margin 0.35s var(--ease);
}

.wa-fab:hover,
.wa-fab:focus-visible,
.wa-fab.is-hover {
  background: #25d366;
  gap: 0.55rem;
  padding: 0 1.2rem 0 1rem;
  min-width: 12.5rem;
  box-shadow:
    0 12px 30px oklch(0.45 0.15 150 / 0.4),
    0 0 0 6px oklch(0.65 0.15 150 / 0.18);
  transform: translateY(-1px);
}

.wa-fab:hover .wa-fab-label,
.wa-fab:focus-visible .wa-fab-label,
.wa-fab.is-hover .wa-fab-label {
  max-width: 11rem;
  opacity: 1;
}

.wa-fab-dot {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #25d366;
  border: 2px solid #111;
  box-shadow: 0 0 0 0 oklch(0.65 0.15 150 / 0.55);
  animation: online-pulse 1.8s ease-out infinite;
}

.wa-fab:hover .wa-fab-dot,
.wa-fab:focus-visible .wa-fab-dot,
.wa-fab.is-hover .wa-fab-dot {
  border-color: #25d366;
  background: #9ef0b8;
}

@keyframes online-pulse {
  0% {
    box-shadow: 0 0 0 0 oklch(0.65 0.15 150 / 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px oklch(0.65 0.15 150 / 0);
  }
  100% {
    box-shadow: 0 0 0 0 oklch(0.65 0.15 150 / 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab-dot {
    animation: none;
  }
}

@media (hover: none) {
  .wa-fab {
    background: #25d366;
  }

  .wa-fab-dot {
    border-color: #25d366;
  }
}

@media (hover: none) and (min-width: 800px) {
  .wa-fab {
    min-width: auto;
    padding: 0 1rem;
    gap: 0.45rem;
  }

  .wa-fab-label {
    max-width: 11rem;
    opacity: 1;
    font-size: 0.82rem;
  }
}

.wa-bubble {
  width: min(320px, calc(100vw - 2rem));
  padding: 1rem 1rem 1.05rem;
  background: #fff;
  color: #122;
  border-radius: 1.15rem;
  box-shadow:
    0 18px 40px oklch(0.2 0.03 250 / 0.28),
    0 2px 8px oklch(0.2 0.02 250 / 0.12);
  position: relative;
}

@media (max-width: 799px) {
  /* Keep WhatsApp FAB on phone — bubble stays desktop-only */
  .wa-float {
    display: flex !important;
    right: 0.85rem;
    bottom: calc(1.15rem + env(safe-area-inset-bottom));
    z-index: 56;
  }

  .wa-fab {
    height: 3.35rem;
    min-width: 3.35rem;
    padding: 0;
    background: #25d366;
    box-shadow:
      0 8px 22px oklch(0.45 0.15 150 / 0.38),
      0 0 0 5px oklch(0.65 0.15 150 / 0.16);
  }

  .wa-fab-label {
    display: none !important;
    max-width: 0 !important;
    opacity: 0 !important;
  }

  .wa-fab:hover,
  .wa-fab:focus-visible,
  .wa-fab.is-hover {
    min-width: 3.35rem;
    padding: 0;
    gap: 0;
    background: #20bd5a;
  }

  .wa-fab-dot {
    border-color: #25d366;
  }

  .wa-bubble {
    display: none !important;
  }

  .modal-root {
    place-items: end center;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  }

  .modal-panel,
  .modal-panel-short {
    width: min(100%, 26rem);
    max-height: min(78svh, calc(100svh - 2rem - env(safe-area-inset-bottom)));
    padding: 1rem 0.95rem 1rem;
  }

  .modal-lead {
    font-size: 0.86rem;
  }

  .modal-panel .form-wa-hint {
    display: none;
  }

  .form-short {
    gap: 0.75rem !important;
  }

  .form-short input,
  .form-short select,
  .form-short textarea {
    padding: 0.58rem 0.75rem !important;
    font-size: 0.95rem !important;
  }

  .form-short textarea {
    min-height: 2.4rem;
  }

  .form-short .btn-submit-full,
  .form-short .btn-primary {
    padding: 0.8rem 1rem;
  }
}

.wa-bubble-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: start;
  margin-bottom: 0.85rem;
}

.wa-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  object-fit: cover;
  background: #001b3d;
}

.wa-bubble-id {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  padding-top: 0.1rem;
}

.wa-bubble-id strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.wa-bubble-id > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #5a6570;
}

.wa-online-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #25d366;
  display: inline-block;
}

.wa-bubble-phone {
  font-size: 0.8rem;
  font-weight: 600;
  color: #001b3d;
  margin-top: 0.1rem;
}

.wa-bubble-close {
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  color: #8a93a0;
  font-size: 1.35rem;
  line-height: 1;
  border-radius: 999px;
  margin-top: -0.15rem;
  margin-right: -0.25rem;
}

.wa-bubble-close:hover,
.wa-bubble-close:focus-visible {
  color: #333;
  background: #f0f2f5;
}

.wa-bubble-msg {
  font-size: 0.9rem;
  margin: 0 0 0.95rem;
  line-height: 1.45;
  color: #2a3340;
}

.wa-bubble-msg strong {
  color: #111;
  font-weight: 700;
}

.btn-wa {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 0.9rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0.85rem;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-wa:hover,
.btn-wa:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* ——— Mobile sticky bar (removed — WhatsApp FAB only) ——— */
.mobile-bar {
  display: none !important;
}

.site {
  padding-bottom: 0;
}

/* ——— Footer social ——— */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  color: var(--cyan-bright);
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--cyan);
  background: oklch(0.22 0.05 230 / 0.35);
}

.footer-insta {
  background: linear-gradient(135deg, oklch(0.45 0.18 340 / 0.25), oklch(0.35 0.12 280 / 0.2));
}

.footer-hook {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.linkish {
  color: var(--cyan-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-meta a {
  color: var(--cyan-bright);
}

@media (max-width: 600px) {
  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .contact-inline .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-urgent,
  .hero-actions .btn-ghost {
    justify-content: center;
    text-align: center;
  }
}

.about-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.about-card h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.35rem;
}

.about-phone {
  margin: 0 0 1rem;
}

.about-phone a {
  color: var(--cyan-bright);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.about-lead {
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 1.1rem;
  max-width: 42ch;
}

.about-sub {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.about-specialties {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  color: var(--ink-muted);
}

@media (min-width: 560px) {
  .about-specialties {
    grid-template-columns: 1fr 1fr;
  }
}

.about-specialties li {
  padding-left: 0.9rem;
  position: relative;
}

.about-specialties li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.about-cta-line {
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 1.35rem;
  max-width: 44ch;
  line-height: 1.55;
}

.about-cta-line strong {
  color: var(--white);
  font-weight: 600;
}

.about-card ul:not(.about-specialties) {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-muted);
}

.about-card ul:not(.about-specialties) li::before {
  content: "— ";
  color: var(--cyan);
}

.insta-link {
  color: var(--cyan-bright);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.insta-link:hover,
.insta-link:focus-visible {
  border-color: var(--cyan);
}

/* ——— Contact ——— */
.contact {
  padding: var(--section) var(--pad-x);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.contact-panel {
  max-width: none;
  width: 100%;
}

.contact-wide .contact-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.contact-panel h2,
.contact-wide .contact-intro h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.contact-panel > p,
.contact-wide .contact-intro p {
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 0;
  max-width: 48ch;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .contact-wide .contact-intro {
    grid-template-columns: 1fr;
  }
  .contact-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

@media (max-width: 800px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: oklch(0.5 0.03 240);
}

.contact-form .btn-primary {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.35rem;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: 0.95rem;
}

.contact-meta a {
  color: var(--cyan-bright);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.contact-meta a:hover,
.contact-meta a:focus-visible {
  border-color: var(--cyan);
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* ——— Footer ——— */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem var(--pad-x) 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--navy-deep);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* ——— Slemen story (legacy helpers; layout lives above) ——— */
.slemen-story-visual {
  position: relative;
}

.slemen-portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--navy);
}

.slemen-story-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
}

.client-choices {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.client-choices li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--ink-muted);
  font-weight: 300;
}

.client-choices span {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

.slemen-closing {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
  max-width: 40ch;
  line-height: 1.5;
}

.slemen-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 800px) {
  .slemen-portrait {
    max-width: 280px;
  }
}

/* ——— Zone ——— */
.zone {
  padding: calc(var(--section) * 0.75) var(--pad-x);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.zone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.zone-list li {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  background: oklch(0.18 0.04 250 / 0.45);
}

.zone-more {
  color: var(--cyan-bright) !important;
  border-color: oklch(0.55 0.1 220 / 0.4) !important;
}

/* ——— Home photos ——— */
.home-photos {
  padding: var(--section) var(--pad-x);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.home-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.home-shot {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-soft);
}

.home-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.home-shot:hover img {
  transform: scale(1.04);
}

@media (max-width: 800px) {
  .home-photos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ——— Pourquoi ——— */
.pourquoi-grid-5 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .pourquoi-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .pourquoi-grid-5 {
    grid-template-columns: 1fr;
  }
}

.pourquoi-card h3 {
  color: var(--white);
}

/* ——— Contact minimal ——— */
.contact-icons-panel {
  width: min(42rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-icons-hint {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 1rem;
}

.contact-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-icon-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.45rem 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: oklch(0.17 0.035 250 / 0.72);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-icon-link:hover,
.contact-icon-link:focus-visible {
  border-color: oklch(0.7 0.1 220 / 0.55);
  background: oklch(0.2 0.045 230 / 0.75);
  box-shadow: 0 16px 40px oklch(0.12 0.04 250 / 0.35);
}

.contact-icon-ripple {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin: -0.25rem;
  border-radius: 999px;
  background: oklch(0.75 0.1 220 / 0.35);
  opacity: 0;
  pointer-events: none;
}

.contact-icon-link:hover .contact-icon-ripple,
.contact-icon-link:focus-visible .contact-icon-ripple {
  animation: contact-water-ripple 0.9s var(--ease);
}

@keyframes contact-water-ripple {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(38);
  }
}

.contact-icon-badge {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 0.15rem;
  filter: drop-shadow(0 10px 18px oklch(0.15 0.03 250 / 0.35));
  animation: contact-icon-float 3.6s ease-in-out infinite;
}

.brand-app-icon {
  width: 4.25rem;
  height: 4.25rem;
  display: block;
  border-radius: 0.95rem;
}

.contact-icon-link.is-whatsapp .contact-icon-badge {
  animation-delay: 0.4s;
}

.contact-icon-link.is-mail .contact-icon-badge {
  animation-delay: 0.8s;
}

.contact-icon-link.is-instagram .contact-icon-badge {
  animation-delay: 1.2s;
}

.contact-icon-link.is-phone .contact-icon-badge {
  animation-name: contact-icon-float, contact-phone-ring;
  animation-duration: 3.6s, 2.8s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

@keyframes contact-phone-ring {
  0%,
  86%,
  100% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(-8deg);
  }
  94% {
    transform: rotate(8deg);
  }
  98% {
    transform: rotate(-4deg);
  }
}

.contact-icon-link.is-mail .brand-app-icon {
  animation: contact-mail-shine 4s ease-in-out infinite;
}

@keyframes contact-mail-shine {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.15) brightness(1.05);
  }
}

.contact-icon-link strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.contact-icon-link span {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 300;
  word-break: break-word;
  max-width: 100%;
}

@keyframes contact-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-icon-badge,
  .contact-icon-link.is-phone .contact-icon-badge,
  .contact-icon-link.is-mail .brand-app-icon {
    animation: none;
  }
  .contact-icon-link:hover .contact-icon-ripple {
    animation: none;
  }
}

.contact-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: oklch(0.18 0.04 250 / 0.45);
  transition: border-color 0.25s var(--ease);
}

.contact-row:hover,
.contact-row:focus-visible {
  border-color: var(--cyan);
}

.contact-row strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-row span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-all;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .contact-rows {
    grid-template-columns: 1fr;
  }
}

.page-hero-slim {
  padding: 6.5rem var(--pad-x) 2.25rem;
}

.urgence-points {
  padding: 0 var(--pad-x) calc(var(--section) * 0.8);
  background: var(--navy-deep);
}

.urgence-points ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
}

.urgence-points li {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-weight: 300;
}

.urgence-points li:last-child {
  border-bottom: 1px solid var(--line);
}

/* ——— Footer refined ——— */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  width: 100%;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social-btn {
  display: grid !important;
  place-items: center;
  width: 2.65rem !important;
  height: 2.65rem !important;
  min-width: 2.65rem;
  padding: 0 !important;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--white) !important;
  background: oklch(0.18 0.04 250 / 0.55);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.footer-social-btn:hover,
.footer-social-btn:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan-bright) !important;
  background: oklch(0.22 0.05 230 / 0.45);
}

.about-compact .about-card {
  max-width: 32rem;
}

.section-cta .btn-ghost {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0;
  text-transform: none;
  letter-spacing: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ——— Screen reader ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Trust band ——— */
.trust-band {
  padding: 1.75rem var(--pad-x);
  background:
    linear-gradient(180deg, oklch(0.18 0.04 250 / 0.95), oklch(0.16 0.04 250)),
    radial-gradient(ellipse at 20% 0%, oklch(0.55 0.1 220 / 0.18), transparent 55%);
  border-bottom: 1px solid var(--line);
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 72rem;
  margin-inline: auto;
}

.trust-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0.5rem;
  border-left: 2px solid oklch(0.7 0.04 85 / 0.45);
}

.trust-list strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  color: var(--cyan-bright);
  letter-spacing: -0.02em;
}

.trust-list span {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

@media (max-width: 800px) {
  .trust-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .trust-list {
    grid-template-columns: 1fr;
  }
}

/* ——— Pain points ——— */
.pains {
  padding: var(--section) var(--pad-x);
  background:
    linear-gradient(165deg, var(--navy-deep), var(--navy) 55%, oklch(0.18 0.035 250)),
    radial-gradient(circle at 90% 10%, oklch(0.55 0.08 220 / 0.12), transparent 40%);
  border-top: 1px solid var(--line);
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pain-card {
  padding: 1.35rem 1.4rem;
  background: oklch(0.2 0.04 250 / 0.55);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.pain-card:hover {
  border-color: oklch(0.7 0.04 85 / 0.45);
  transform: translateY(-3px);
}

.pain-problem {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.3;
}

.pain-answer {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pain-answer span {
  color: var(--cyan-bright);
  font-weight: 600;
}

@media (max-width: 700px) {
  .pains-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Service links ——— */
.service-link {
  display: grid;
  gap: 0.85rem;
  color: inherit;
}

.service-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--cyan-bright);
  font-size: 0.88rem;
  font-weight: 600;
}

.service-icon-wrap.lg {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
}

.services-detail-grid {
  display: grid;
  gap: 1.25rem;
  padding: 0 var(--pad-x) var(--section);
}

.service-detail-row {
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  background: oklch(0.18 0.04 250 / 0.5);
}

.service-detail-row h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-detail {
  padding: 0 var(--pad-x) var(--section);
}

.service-detail-card {
  max-width: 40rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: oklch(0.18 0.04 250 / 0.55);
}

@media (max-width: 600px) {
  .service-detail-link {
    grid-template-columns: 1fr;
  }
}

/* ——— Home avis excerpt ——— */
.avis-home,
.avis-page {
  padding: var(--section) var(--pad-x);
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}

.avis-excerpt-grid,
.avis-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avis-all-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.avis-excerpt-card {
  margin: 0;
  padding: 1.25rem;
  background: oklch(0.2 0.04 250 / 0.55);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}

.avis-excerpt-card p {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
}

.avis-excerpt-card footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.avis-excerpt-card cite {
  font-style: normal;
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 900px) {
  .avis-excerpt-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Rappel widget ——— */
.rappel {
  padding: calc(var(--section) * 0.85) var(--pad-x);
  background:
    radial-gradient(ellipse at 30% 0%, oklch(0.55 0.1 220 / 0.18), transparent 50%),
    var(--navy);
  border-top: 1px solid var(--line);
}

.rappel-card {
  max-width: 44rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, oklch(0.22 0.04 250 / 0.85), oklch(0.17 0.04 250 / 0.9)),
    linear-gradient(90deg, oklch(0.75 0.04 85 / 0.08), transparent);
}

.rappel-copy h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  margin-bottom: 0.5rem;
  color: var(--white);
}

.rappel-copy p {
  color: var(--ink-muted);
  margin-bottom: 1.35rem;
}

.rappel-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.rappel-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: oklch(0.14 0.03 250 / 0.85);
  color: var(--white);
  font: inherit;
}

.rappel-form input:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
}

.rappel-error {
  margin-top: 0.75rem;
  color: #ffb4a2;
  font-size: 0.88rem;
}

.rappel-success {
  text-align: center;
  padding: 1rem 0;
}

.rappel-success h2 {
  color: var(--cyan-bright);
  margin-bottom: 0.5rem;
}

.rappel-success p {
  color: var(--ink-muted);
}

@media (max-width: 560px) {
  .rappel-form {
    grid-template-columns: 1fr;
  }
}

/* ——— Quick contact ——— */
.quick-contact {
  padding: var(--section) var(--pad-x);
  background:
    linear-gradient(180deg, var(--navy-deep), oklch(0.15 0.04 250)),
    radial-gradient(circle at 70% 80%, oklch(0.7 0.04 85 / 0.1), transparent 45%);
  border-top: 1px solid var(--line);
  text-align: center;
}

.quick-contact-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.quick-contact h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin-bottom: 0.65rem;
}

.quick-contact p {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.quick-contact .hero-actions {
  justify-content: center;
}

/* ——— Before / after slider ——— */
.ba-slider {
  position: relative;
  width: min(920px, 100%);
  margin-inline: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-soft);
  touch-action: none;
  user-select: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before-clip {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  border-right: 2px solid var(--white);
}

.ba-before {
  width: min(920px, 100vw);
  max-width: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2.4rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--cyan);
  box-shadow: 0 4px 18px oklch(0 0 0 / 0.35);
}

.ba-handle span::before,
.ba-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
}

.ba-handle span::before {
  left: 0.45rem;
  border-width: 5px 6px 5px 0;
  border-color: transparent var(--navy) transparent transparent;
}

.ba-handle span::after {
  right: 0.45rem;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent var(--navy);
}

.ba-label {
  position: absolute;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: oklch(0.14 0.04 250 / 0.75);
  color: var(--white);
  pointer-events: none;
}

.ba-label-before {
  left: 0.85rem;
}

.ba-label-after {
  right: 0.85rem;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  margin: 0;
}

/* ——— À propos page ——— */
.apropos-page {
  padding: 0 var(--pad-x) var(--section);
  display: grid;
  gap: 2rem;
}

.apropos-hero-card {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: oklch(0.18 0.04 250 / 0.55);
}

.apropos-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.apropos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.apropos-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: oklch(0.2 0.04 250 / 0.45);
}

.apropos-card h3 {
  color: var(--cyan-bright);
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.apropos-card p {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.apropos-specialties-block h3,
.apropos-why h3,
.apropos-zone h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.25rem;
}

.about-specialties-cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.55rem !important;
}

.about-specialties-cards li {
  padding: 0.75rem 0.9rem !important;
  background: oklch(0.2 0.04 250 / 0.5);
  border: 1px solid var(--line);
  list-style: none;
}

.about-specialties-cards li::before {
  display: none !important;
}

.client-choices-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.65rem !important;
  margin-bottom: 1.25rem !important;
}

.apropos-map {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  min-height: 220px;
  background: var(--navy-soft);
}

.apropos-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.apropos-zone-lead {
  color: var(--ink-muted);
  font-weight: 300;
  margin: 0.35rem 0 1.25rem;
  max-width: 42ch;
}

.zone-orbit {
  position: relative;
  margin: 0 0 1.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 50% 48%, oklch(0.28 0.07 220 / 0.35), transparent 55%),
    linear-gradient(160deg, oklch(0.16 0.04 250 / 0.95), oklch(0.12 0.04 250 / 0.98));
  overflow: hidden;
}

.zone-orbit-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, oklch(0.45 0.1 220 / 0.18), transparent 45%);
  animation: zone-breathe 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes zone-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.zone-orbit-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
}

.zone-hub-halo {
  animation: zone-halo 3.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes zone-halo {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.zone-label {
  fill: var(--ink-muted);
  font-size: 2.4px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.zone-label.hub {
  fill: var(--cyan-bright);
  font-size: 3.1px;
  font-weight: 800;
}

.zone-orbit-caption {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.zone-maps-link {
  margin-top: 1rem;
  display: inline-flex;
}

.video-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .video-row-3 {
    grid-template-columns: 1fr;
  }
}

.home-conseils {
  padding: var(--section) var(--pad-x);
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}

.conseils-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  width: min(72rem, 100%);
  margin: 0 auto;
}

.conseil-card {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: oklch(0.18 0.04 250 / 0.55);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  overflow: hidden;
}

.conseil-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.conseil-card-link {
  display: block;
  padding: 1.35rem 1.25rem 1.4rem;
  color: inherit;
  height: 100%;
}

.conseil-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 0.4rem;
}

.conseil-meta {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.conseil-meta-lg {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}

.conseil-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  color: var(--white);
  line-height: 1.25;
}

.conseil-card p {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.5;
  font-size: 0.95rem;
}

.conseil-read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan-bright);
  transition: color 0.25s var(--ease);
}

.conseil-read-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.conseil-card:hover .conseil-read,
.conseil-card:focus-within .conseil-read {
  color: var(--cyan);
}

.conseil-card:hover .conseil-read-arrow,
.conseil-card:focus-within .conseil-read-arrow {
  transform: translateX(4px);
  color: var(--white);
}

.conseils-page {
  padding-bottom: calc(var(--section) * 0.85);
  background: var(--navy-deep);
  min-height: 60vh;
}

.conseils-page .section-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.65rem;
}

.conseils-grid-page {
  margin-top: 0.5rem;
}

.conseils-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.conseils-page-link {
  min-width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-weight: 600;
  border-radius: 0.45rem;
}

.conseils-page-link.is-active,
.conseils-page-link:hover,
.conseils-page-link:focus-visible {
  border-color: var(--cyan);
  color: var(--white);
}

.conseils-page-count {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-left: 0.5rem;
}

.conseil-article {
  width: min(44rem, 100%);
  margin: 0 auto;
  padding-bottom: calc(var(--section) * 0.9);
}

.conseil-article-head h1 {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.15;
  margin: 0;
  color: var(--white);
}

.conseil-article-intro {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 400;
  margin: 1.75rem 0 1.5rem;
}

.conseil-article-section {
  margin-bottom: 1.75rem;
}

.conseil-article-section h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  margin: 0 0 0.75rem;
  color: var(--white);
}

.conseil-article-section p {
  margin: 0 0 0.9rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.65;
  font-size: 1rem;
}

.conseil-article-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: oklch(0.18 0.04 250 / 0.65);
}

.conseil-article-cta h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  color: var(--white);
}

.conseil-article-cta > p {
  margin: 0 0 1.1rem;
  color: var(--ink-muted);
  font-weight: 300;
}

.conseil-article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.conseil-article-service {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.conseil-article-service a {
  color: var(--cyan-bright);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}

.conseil-article-service a:hover,
.conseil-article-service a:focus-visible {
  border-color: var(--cyan);
}

.conseil-article-back {
  margin: 1.75rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.conseil-article-back a {
  color: var(--cyan-bright);
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-single {
    flex-wrap: wrap;
  }

  .nav-single .nav-actions {
    margin-left: auto;
  }
}

@media (min-width: 981px) {
  .nav-single .nav-links {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .conseils-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zone-orbit-glow,
  .zone-hub-halo {
    animation: none;
  }
}

@media (max-width: 800px) {
  .apropos-hero-card {
    grid-template-columns: 1fr;
  }
  .apropos-photo {
    max-width: 200px;
  }
  .apropos-cards {
    grid-template-columns: 1fr;
  }
}

/* ——— Mentions ——— */
.mentions {
  padding-bottom: var(--section);
  max-width: 44rem;
}

.mentions h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.mentions-body h2 {
  font-size: 1.05rem;
  color: var(--cyan-bright);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.02em;
}

.mentions-body p {
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}

.mentions-body a {
  color: var(--cyan-bright);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.mentions-body a:hover,
.mentions-body a:focus-visible {
  border-color: var(--cyan);
}

.mentions-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.5;
}

.mentions-list strong {
  color: var(--white);
  font-weight: 600;
}

.mentions-doc,
.mentions-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600 !important;
}

.mentions-updated {
  margin-top: 2.5rem !important;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-credit {
  color: var(--cyan-bright) !important;
  font-weight: 600;
}

/* ——— Nav FAQ link (mobile) ——— */
@media (min-width: 981px) {
  .nav-faq-link {
    display: none;
  }
}

.nav-urgent.btn-urgent {
  padding: 0.5rem 0.75rem;
  font-size: 0.68rem;
}

@media (max-width: 1100px) {
  .nav-urgent.btn-urgent {
    font-size: 0.62rem;
    padding: 0.45rem 0.55rem;
  }
}

/* ——— Cinematic scroll approach ——— */
.cine {
  position: relative;
  height: 240vh;
  background: var(--navy-deep);
}

.cine-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.cine-layer {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
}

.cine-layer img,
.cine-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cine-far img {
  filter: blur(6px) saturate(1.05);
  transform: scale(1.12);
}

.cine-video {
  z-index: 1;
}

.cine-splash {
  z-index: 2;
  mix-blend-mode: normal;
}

.cine-splash img {
  object-position: center 40%;
}

.cine-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      oklch(0.14 0.05 250 / 0.55) 0%,
      oklch(0.18 0.06 230 / 0.15) 40%,
      oklch(0.12 0.05 250 / 0.72) 100%
    ),
    radial-gradient(
      ellipse at 50% 70%,
      oklch(0.62 0.1 220 / 0.22),
      transparent 55%
    );
}

.cine-ripple {
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 4;
  width: min(70vw, 520px);
  aspect-ratio: 1;
  margin-left: calc(min(70vw, 520px) / -2);
  margin-top: calc(min(70vw, 520px) / -2);
  border-radius: 50%;
  border: 1px solid oklch(1 0 0 / 0.35);
  box-shadow:
    0 0 0 18px oklch(0.7 0.08 220 / 0.08),
    0 0 60px oklch(0.65 0.1 220 / 0.2);
  pointer-events: none;
  background: radial-gradient(
    circle,
    oklch(0.85 0.05 220 / 0.12) 0%,
    transparent 65%
  );
}

.cine-caption {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: clamp(4.5rem, 12vh, 7rem);
  z-index: 5;
  max-width: 28rem;
  pointer-events: none;
}

.cine-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 0.55rem;
}

.cine-caption h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.55rem;
  text-shadow: 0 8px 30px oklch(0.1 0.04 250 / 0.55);
}

.cine-caption p:last-child {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 32ch;
}

.cine-progress {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 1.5rem;
  z-index: 6;
  height: 2px;
  background: oklch(1 0 0 / 0.12);
  overflow: hidden;
}

.cine-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--sand));
}

.cine-static {
  height: auto;
  padding: var(--section) var(--pad-x);
}

.cine-static-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  max-height: 70vh;
}

.cine-static-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cine-caption-static {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem var(--pad-x) 1.75rem;
  background: linear-gradient(transparent, oklch(0.12 0.05 250 / 0.92));
  max-width: none;
}

@media (max-width: 600px) {
  .cine {
    height: 200vh;
  }
  .cine-caption {
    bottom: clamp(3.5rem, 10vh, 5.5rem);
  }
}

/* ——— Intro looping logo video (Contact page) ——— */
.intro-loop {
  position: relative;
  padding: 3rem var(--pad-x) var(--section);
  background: var(--navy);
  text-align: center;
}

.intro-loop-video {
  width: min(30rem, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: #050a12;
}

@media (max-width: 700px) {
  .intro-loop-video {
    width: 100%;
    min-height: 0;
  }
}

.service-detail-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  color: inherit;
  text-decoration: none;
  padding: 1.5rem;
  transition: background 0.25s var(--ease);
}

.service-detail-link:hover,
.service-detail-link:focus-visible {
  background: oklch(0.22 0.05 230 / 0.35);
}

.service-detail-link h2 {
  color: var(--white);
}

/* ——— Services clean page ——— */
.services-clean {
  padding: 0 var(--pad-x) var(--section);
  background: var(--navy);
}

.services-clean-list {
  width: min(48rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.services-clean-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: oklch(0.18 0.04 250 / 0.45);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.services-clean-link:hover,
.services-clean-link:focus-visible {
  border-color: var(--cyan);
  background: oklch(0.2 0.05 230 / 0.5);
  transform: translateY(-2px);
}

.services-clean-copy h2 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  color: var(--white);
}

.services-clean-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.4;
}

.services-clean-go {
  color: var(--cyan-bright);
  font-size: 1.25rem;
  font-weight: 600;
}

.service-one-liner {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 42ch;
}

.service-result {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  font-weight: 300;
}

.service-result span {
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--cyan-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

/* ——— About v2 ——— */
.about-v2 {
  padding: 0 var(--pad-x) var(--section);
  background: var(--navy);
}

.about-v2-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  width: min(72rem, 100%);
  margin: 0 auto 3.5rem;
}

.about-v2-portrait {
  overflow: hidden;
  border-radius: 0.85rem;
  background: var(--navy-deep);
  aspect-ratio: 4 / 5;
  max-height: min(70vh, 560px);
  will-change: clip-path, transform;
}

.about-v2-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v2-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 600;
}

.about-v2-quote h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.15;
  color: var(--white);
}

.about-v2-quote h2 span {
  display: block;
  color: var(--cyan-bright);
}

.about-v2-quote p {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 38ch;
}

.about-v2-story {
  position: relative;
  width: min(72rem, 100%);
  margin: 0 auto 3rem;
  padding-top: 0.5rem;
}

.about-v2-story-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform-origin: left center;
  animation: about-line-draw 1.2s var(--ease) both;
}

@keyframes about-line-draw {
  from { transform: scaleX(0); opacity: 0.2; }
  to { transform: scaleX(1); opacity: 1; }
}

.about-v2-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 1.75rem;
}

.about-v2-story-grid h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--white);
}

.about-v2-story-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.55;
  font-size: 0.95rem;
}

.about-v2-trust {
  width: min(72rem, 100%);
  margin: 0 auto 3rem;
}

.about-v2-trust h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--white);
}

.about-v2-zone {
  width: min(72rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.about-v2-zone-copy h3 {
  margin: 0 0 0.65rem;
  color: var(--white);
}

.about-v2-zone-copy p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 36ch;
}

@media (max-width: 900px) {
  .about-v2-intro,
  .about-v2-zone,
  .about-v2-story-grid {
    grid-template-columns: 1fr;
  }
  .about-v2-portrait {
    max-height: none;
    aspect-ratio: 16 / 11;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-v2-story-line { animation: none; }
}

/* ——— Contact classic ——— */
.contact-classic {
  padding: 0 var(--pad-x) var(--section);
  background: var(--navy);
}

.contact-classic-grid {
  width: min(68rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: #fff;
  color: #122;
  border-radius: 1.2rem;
  box-shadow: 0 24px 60px oklch(0.15 0.04 250 / 0.35);
}

.contact-classic-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--navy-deep);
  line-height: 1.15;
}

.contact-classic-copy > p {
  margin: 0 0 1.5rem;
  color: #5a6573;
  line-height: 1.55;
  max-width: 38ch;
}

.contact-classic-list {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.contact-classic-list div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e6ecf2;
}

.contact-classic-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a8694;
  font-weight: 600;
}

.contact-classic-list dd { margin: 0; }

.contact-classic-list a {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.02rem;
  word-break: break-word;
}

.contact-classic-list a:hover,
.contact-classic-list a:focus-visible {
  color: var(--cyan-deep);
}

.contact-classic-note {
  margin: 0;
  color: #7a8694;
  font-size: 0.88rem;
}

.contact-classic-form h3 {
  margin: 0 0 0.35rem;
  color: var(--navy-deep);
  font-size: 1.25rem;
}

.contact-classic-form > p {
  margin: 0 0 1.15rem;
  color: #6a7583;
  font-size: 0.92rem;
}

.contact-classic-form .form-short {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem 1.1rem !important;
}

.contact-classic-form .form-short .field-full,
.contact-classic-form .form-short .btn-primary,
.contact-classic-form .form-wa-hint,
.contact-classic-form .form-success {
  grid-column: 1 / -1;
}

.contact-classic-form .form-short label {
  color: #3a4553;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-classic-form .form-short input,
.contact-classic-form .form-short select,
.contact-classic-form .form-short textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1.5px solid #d5dde6 !important;
  border-radius: 0 !important;
  padding: 0.55rem 0 !important;
  color: var(--navy-deep) !important;
}

.contact-classic-form .form-short .btn-primary {
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
}

@media (max-width: 860px) {
  .contact-classic-grid {
    grid-template-columns: 1fr;
    padding: 1.25rem 1.1rem 1.4rem;
  }
  .contact-classic-form .form-short {
    grid-template-columns: 1fr !important;
  }
}
