/* ARAXO — design system */
:root {
  --navy: #1F3D34;
  --navy-2: #2F5749;
  --beige: #C56E4E;
  --beige-soft: #EADFD6;
  --cream: #F2EFEA;
  --cream-2: #EBE6DF;
  --ink: #2E2E2E;
  --ink-soft: #5a5a5a;
  --line: rgba(31, 61, 52, 0.10);
  --line-light: rgba(31, 61, 52, 0.06);
  --shadow-sm: 0 1px 2px rgba(31, 61, 52,.06), 0 4px 14px -8px rgba(31, 61, 52,.10);
  --shadow-md: 0 6px 28px -10px rgba(31, 61, 52,.18), 0 2px 6px rgba(31, 61, 52,.05);
  --shadow-lg: 0 20px 60px -20px rgba(31, 61, 52,.28);
  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Type */
.font-display { font-family: 'Montserrat', sans-serif; }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--beige);
}
.eyebrow.on-dark { color: var(--beige); }
.eyebrow.on-dark::before { background: var(--beige); }

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.04; letter-spacing: -0.02em; font-weight: 500; }
h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.1; font-weight: 500; }
h3 { font-size: clamp(20px, 1.8vw, 24px); line-height: 1.3; font-weight: 600; }
h4 { font-size: 16px; line-height: 1.3; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 28px;
  border-radius: 2px;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--beige); color: var(--navy); }
.btn-beige { background: var(--beige); color: var(--navy); }
.btn-beige:hover { background: var(--navy); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(248,246,242,.4); }
.btn-ghost-light:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 22px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled { background: var(--cream); padding: 12px 0; box-shadow: 0 1px 0 var(--line); }
.site-header.transparent { background: linear-gradient(180deg, rgba(248,246,242,.96), rgba(248,246,242,.6) 75%, transparent); }
.site-header.transparent .nav-link { color: var(--navy); }
.site-header.transparent .logo-text { color: var(--navy); }
.site-header.transparent .logo-mark .stroke { stroke: var(--navy); }
.site-header.transparent .logo-mark .accent { stroke: var(--beige); }

.brand { display: flex; align-items: center; gap: 14px; flex: none; }
.brand-img img {
  width: 152px;
  height: auto;
  display: block;
  transition: width .35s ease;
}
.site-header.is-scrolled .brand-img img { width: 118px; }
@media (max-width: 540px) {
  .brand-img img { width: 128px; }
  .site-header.is-scrolled .brand-img img { width: 104px; }
}
.logo-mark { width: 44px; height: 44px; }
.logo-mark .stroke { stroke: var(--navy); stroke-width: 5; fill: none; transition: stroke .3s ease; }
.logo-mark .accent { stroke: var(--beige); stroke-width: 5; fill: none; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 500; letter-spacing: 0.32em; color: var(--navy); font-size: 17px; transition: color .3s ease; }
.logo-text small { display: block; font-size: 9px; letter-spacing: 0.4em; color: var(--beige); font-weight: 600; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 26px; flex-wrap: nowrap; }
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--beige);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.tel-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.header-btn {
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.menu-toggle { display: none; }

@media (max-width: 1240px) {
  .header-cta .tel-link { display: none; }
}
@media (max-width: 1080px) {
  .main-nav { gap: 20px; }
  .nav-link { font-size: 11.5px; letter-spacing: 0.12em; }
}
@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
}

/* Hero — split layout : contenu cream à gauche, 3 photos en diagonale à droite */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow: hidden;
}
.hero-left {
  position: relative;
  z-index: 2;
  padding: 160px clamp(28px, 5vw, 80px) 200px clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-left::after {
  /* diagonal cream edge bleeding into the photo column */
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: -50px;
  width: 100px;
  background: var(--cream);
  transform: skewX(-10deg);
  transform-origin: top right;
  z-index: 1;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-slice {
  position: absolute;
  top: -2px; bottom: -2px; left: -2px; right: -2px;
  background-size: cover;
  background-position: center;
}
.hero-slice-1 { clip-path: polygon(0 0, 42% 0, 26% 100%, 0 100%); }
.hero-slice-2 { clip-path: polygon(43% 0, 74% 0, 58% 100%, 27% 100%); }
.hero-slice-3 { clip-path: polygon(75% 0, 100% 0, 100% 100%, 59% 100%); }
.hero-slice::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 61, 52,0) 50%, rgba(31, 61, 52,.55) 100%);
}
.hero-slice .tag {
  position: absolute;
  bottom: 110px;
  left: 28px;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 12px;
  background: rgba(31, 61, 52,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-content h1 { color: var(--navy); max-width: 14ch; }
.hero-content h1 em { font-style: normal; color: var(--beige); font-weight: 500; }
.hero-sub {
  font-size: 17px; line-height: 1.6;
  max-width: 44ch;
  margin: 28px 0 36px;
  color: var(--ink-soft);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-monogram {
  position: absolute;
  left: -160px; top: 50%;
  transform: translateY(-50%);
  width: 640px; height: 640px;
  opacity: 0.05 !important;
  z-index: 0;
  pointer-events: none;
}
.hero-monogram path { stroke: var(--navy) !important; stroke-width: 6 !important; fill: none !important; }

.hero-meta {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream);
}
.hero-meta .v {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex; align-items: center; gap: 12px;
  text-shadow: 0 1px 8px rgba(31, 61, 52,.5);
}
.hero-meta .v::before {
  content: '';
  width: 1px; height: 48px;
  background: rgba(248,246,242,.7);
}

.hero-stats {
  grid-column: 1 / -1;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  z-index: 3;
  align-self: end;
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stats .stat {
  padding: 36px clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(216,195,165,.18);
  display: flex; flex-direction: column; gap: 8px;
}
.hero-stats .stat:last-child { border-right: 0; }
.hero-stats .stat .num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 300;
  color: var(--beige);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stats .stat .lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,246,242,.7);
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 130px 24px 50px; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 60vh; }
  .hero-slice-1 { clip-path: polygon(0 0, 100% 0, 100% 33%, 0 50%); }
  .hero-slice-2 { clip-path: polygon(0 51%, 100% 34%, 100% 66%, 0 80%); }
  .hero-slice-3 { clip-path: polygon(0 81%, 100% 67%, 100% 100%, 0 100%); }
  .hero-slice .tag { bottom: auto; top: 16px; left: 16px; }
  .hero-monogram { display: none; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat:nth-child(2) { border-right: 0; }
  .hero-stats .stat:nth-child(1), .hero-stats .stat:nth-child(2) { border-bottom: 1px solid rgba(216,195,165,.18); }
  .hero-meta { display: none; }
}
@media (max-width: 540px) {
  .hero-stats .stat .num { font-size: 28px; }
}

/* Sections */
section { position: relative; }
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-beige { background: var(--beige-soft); }
.section-cream2 { background: var(--cream-2); }

.section-header { display: flex; flex-direction: column; gap: 18px; max-width: 720px; margin-bottom: 64px; }
.section-header.centered { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }
.section-header .lead { font-size: 18px; color: var(--ink-soft); line-height: 1.6; }
.section-navy .section-header h2 { color: var(--cream); }
.section-navy .section-header .lead { color: rgba(248,246,242,.75); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-imgs {
  position: relative;
  aspect-ratio: 4/5;
}
.about-imgs .a {
  position: absolute;
  inset: 0 30% 30% 0;
  background-image: url('https://images.unsplash.com/photo-1581858726788-75bc0f6a952d?auto=format&fit=crop&w=900&q=80');
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-md);
}
.about-imgs .b {
  position: absolute;
  inset: 35% 0 0 35%;
  background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=900&q=80');
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-imgs .badge {
  position: absolute;
  left: -20px; bottom: 25%;
  background: var(--beige);
  color: var(--navy);
  padding: 22px 24px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.about-imgs .badge .big {
  font-size: 40px; font-weight: 300; line-height: 1; display: block;
}
.about-imgs .badge .lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 6px; display: block;
}
.about-body p { margin-bottom: 20px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.about-body p.first { color: var(--ink); font-size: 19px; line-height: 1.6; }
.about-sig {
  margin-top: 32px;
  display: flex; align-items: center; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about-sig .name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: var(--navy); }
.about-sig .role { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.service-card {
  background: var(--cream);
  padding: 44px 32px 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: background .3s ease;
  cursor: pointer;
}
.service-card:hover { background: var(--navy); color: var(--cream); }
.service-card:hover h3 { color: var(--cream); }
.service-card:hover .svc-desc { color: rgba(248,246,242,.7); }
.service-card:hover .svc-icon .stroke { stroke: var(--beige); }
.service-card:hover .svc-link { color: var(--beige); }
.service-card:hover .svc-num { color: rgba(216,195,165,.3); }
.svc-icon { width: 56px; height: 56px; transition: all .3s ease; }
.svc-icon .stroke { stroke: var(--navy); stroke-width: 1.6; fill: none; transition: stroke .3s ease; }
.svc-num {
  position: absolute; top: 32px; right: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  color: rgba(31, 61, 52,.18);
  transition: color .3s;
}
.service-card h3 { transition: color .3s; }
.svc-desc { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); transition: color .3s; }
.svc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--ink-soft); }
.svc-list li { display: flex; gap: 10px; align-items: center; }
.svc-list li::before { content: ''; width: 5px; height: 5px; background: var(--beige); border-radius: 50%; flex: none; }
.svc-link {
  margin-top: auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s;
  padding-top: 12px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* Réalisations */
.proj-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.proj-filter {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  transition: all .2s;
  border-radius: 999px;
}
.proj-filter:hover { border-color: var(--navy); }
.proj-filter.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.proj-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  transition: transform .4s ease;
}
.proj-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.proj-card:hover .img { transform: scale(1.05); }
.proj-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 61, 52,0) 40%, rgba(31, 61, 52,.85) 100%);
}
.proj-card .meta {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  z-index: 2; color: var(--cream);
}
.proj-card .tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--beige); font-weight: 600;
}
.proj-card .ttl { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 19px; margin-top: 6px; }
.proj-card .place { font-size: 12px; color: rgba(248,246,242,.7); margin-top: 4px; }
.proj-ba-badge {
  position: absolute; top: 16px; right: 16px;
  z-index: 2;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  padding: 6px 10px;
  text-transform: uppercase;
}
.p-tall { grid-column: span 4; aspect-ratio: 3/4; }
.p-wide { grid-column: span 8; aspect-ratio: 16/9; }
.p-sq { grid-column: span 4; aspect-ratio: 1/1; }
.p-md { grid-column: span 6; aspect-ratio: 4/3; }
@media (max-width: 860px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .p-tall, .p-wide, .p-sq, .p-md { grid-column: span 1; aspect-ratio: 4/3; }
}

/* Before/After modal */
.ba-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(31, 61, 52,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  animation: fade .3s ease;
}
@keyframes fade { from { opacity: 0; } }
.ba-inner { width: 100%; max-width: 1100px; }
.ba-head { display: flex; justify-content: space-between; align-items: end; color: var(--cream); margin-bottom: 20px; }
.ba-head .t { font-family: 'Montserrat', sans-serif; font-size: 26px; }
.ba-head .s { font-size: 13px; color: rgba(248,246,242,.7); margin-top: 4px; }
.ba-close { color: var(--cream); font-size: 22px; padding: 10px; }
.ba-stage {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  user-select: none;
}
.ba-stage .ba-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-stage .ba-clip { position: absolute; inset: 0; overflow: hidden; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: var(--beige);
  cursor: ew-resize;
  z-index: 3;
}
.ba-handle .knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--beige); color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.ba-label {
  position: absolute; top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; font-weight: 700;
  padding: 6px 12px;
  background: rgba(31, 61, 52,.7);
  color: var(--cream);
}
.ba-label.l { left: 16px; }
.ba-label.r { right: 16px; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.value-card {
  padding: 40px 28px;
  background: var(--navy-2);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.value-card .icon { width: 52px; height: 52px; color: var(--beige); }
.value-card .icon svg { width: 100%; height: 100%; }
.value-card h3 { color: var(--cream); font-size: 18px; }
.value-card p { color: rgba(248,246,242,.7); font-size: 14.5px; line-height: 1.6; }
.value-card .num {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; color: rgba(216,195,165,.4);
}
@media (max-width: 860px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

/* Testimonials */
.testi-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.testi-card {
  background: var(--cream);
  padding: 56px 56px 48px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.testi-card .quote-mark {
  position: absolute; top: -28px; left: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 120px; font-weight: 600; line-height: 1;
  color: var(--beige);
}
.testi-text {
  font-size: 21px; line-height: 1.55;
  color: var(--ink); font-style: italic;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  min-height: 180px;
}
.testi-foot { display: flex; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid var(--line); margin-top: 28px; }
.testi-foot .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--beige);
}
.testi-foot .who { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: var(--navy); }
.testi-foot .where { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.testi-stars { color: var(--beige); letter-spacing: 2px; font-size: 14px; margin-top: 4px; }

.testi-side h2 { margin-bottom: 24px; }
.testi-controls { display: flex; align-items: center; gap: 20px; margin-top: 36px; }
.testi-arrow {
  width: 56px; height: 56px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: all .25s;
}
.testi-arrow:hover { background: var(--navy); color: var(--cream); }
.testi-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.testi-counter .cur { font-size: 24px; color: var(--navy); font-weight: 500; }
.testi-dots { display: flex; gap: 6px; margin-top: 20px; }
.testi-dot { width: 24px; height: 2px; background: rgba(31, 61, 52,.2); transition: background .3s; }
.testi-dot.active { background: var(--navy); }
@media (max-width: 860px) {
  .testi-stage { grid-template-columns: 1fr; }
  .testi-card { padding: 40px 28px 32px; }
  .testi-text { font-size: 18px; }
}

/* Zone d'intervention */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.zone-map {
  background: var(--cream);
  padding: 32px;
  position: relative;
  aspect-ratio: 4/3;
}
.zone-map svg { width: 100%; height: 100%; }
.zone-cities {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 32px;
}
.zone-city {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.zone-city .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--beige); flex: none; }
.zone-city.hq .dot { background: var(--navy); width: 8px; height: 8px; }
.zone-city.hq { font-weight: 600; color: var(--navy); }
@media (max-width: 860px) { .zone-grid { grid-template-columns: 1fr; } }

/* Devis form */
.devis-wrap {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(56px, 8vw, 88px) clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.devis-intro h2 { color: var(--cream); margin-bottom: 20px; }
.devis-intro p { color: rgba(248,246,242,.75); font-size: 17px; line-height: 1.6; margin-bottom: 32px; }
.devis-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.devis-perks li { display: flex; gap: 12px; align-items: center; font-size: 14.5px; color: rgba(248,246,242,.85); }
.devis-perks svg { color: var(--beige); flex: none; }

.devis-form { background: var(--cream); color: var(--ink); padding: 40px; }
.devis-steps { display: flex; gap: 6px; margin-bottom: 32px; }
.devis-step-pill {
  flex: 1; height: 3px; background: rgba(31, 61, 52,.12);
  position: relative;
  transition: background .3s;
}
.devis-step-pill.done, .devis-step-pill.active { background: var(--navy); }
.devis-step-pill.active::after {
  content: ''; position: absolute; left: 100%; top: -1px; bottom: -1px;
  background: linear-gradient(90deg, var(--navy), transparent); width: 20px;
}
.devis-stepnum {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; color: var(--ink-soft);
  margin-bottom: 8px; text-transform: uppercase;
}
.devis-form h3 { margin-bottom: 24px; font-size: 22px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.16em;
  font-weight: 600; color: var(--navy);
  text-transform: uppercase;
}
.field input, .field textarea, .field select {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  border: 1px solid var(--line);
  background: var(--cream-2);
  padding: 14px 16px;
  color: var(--ink);
  transition: border .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy); background: white;
}
.field textarea { resize: vertical; min-height: 120px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.opt-card {
  border: 1.5px solid var(--line);
  padding: 18px 16px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  transition: all .2s;
  background: var(--cream-2);
}
.opt-card:hover { border-color: var(--navy); }
.opt-card.selected { border-color: var(--navy); background: white; }
.opt-card .opt-ic { width: 32px; height: 32px; flex: none; color: var(--navy); }
.opt-card .opt-t { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: var(--navy); }
.opt-card .opt-s { font-size: 12px; color: var(--ink-soft); }
.opt-check { margin-left: auto; width: 18px; height: 18px; border: 1.5px solid var(--line); border-radius: 50%; }
.opt-card.selected .opt-check { border-color: var(--navy); background: var(--navy); }

.devis-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 16px; }
.devis-back {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; letter-spacing: 0.16em; font-weight: 600; text-transform: uppercase;
  color: var(--ink-soft);
}
.devis-back:hover { color: var(--navy); }
.devis-success {
  text-align: center; padding: 20px 0 0;
}
.devis-success .ic {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--beige); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.devis-success h3 { margin-bottom: 12px; }
.devis-success p { color: var(--ink-soft); }
@media (max-width: 860px) {
  .devis-wrap { grid-template-columns: 1fr; padding: 40px 24px; }
  .devis-form { padding: 28px 22px; }
  .field-grid, .opt-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 26px 0;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 500;
  color: var(--navy);
}
.faq-q .plus {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
  transition: all .25s;
}
.faq-item.open .faq-q .plus { background: var(--navy); color: var(--cream); border-color: var(--navy); transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 0 28px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; max-width: 72ch; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(248,246,242,.7); padding: 80px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .logo-mark .stroke { stroke: var(--cream); }
.footer-brand .logo-text { color: var(--cream); }
.footer-brand .brand-img img { height: 80px; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; line-height: 1.6; max-width: 38ch; }
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--beige); font-weight: 600; margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14.5px; transition: color .2s; }
.footer-col li a:hover { color: var(--beige); }
.footer-col .row { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.footer-col .row svg { flex: none; color: var(--beige); margin-top: 2px; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(216,195,165,.18);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--beige); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* CTA banner */
.cta-banner {
  background: var(--beige);
  padding: 70px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-banner h2 { font-weight: 400; max-width: 22ch; }
.cta-banner h2 em { font-style: italic; }

/* Animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* Quote pull */
.pull-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  color: var(--navy);
  max-width: 24ch;
}
.pull-quote em { font-style: italic; color: var(--beige); font-weight: 400; }

/* Subpage hero */
.subhero {
  padding: 180px var(--pad-x) 100px;
  background: var(--navy);
  color: var(--cream);
}
.subhero h1 { color: var(--cream); font-size: clamp(36px, 4.4vw, 60px); max-width: 18ch; }
.subhero .crumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; color: var(--beige);
  text-transform: uppercase; margin-bottom: 20px;
  display: flex; gap: 10px; align-items: center;
}
.subhero .crumb a:hover { color: var(--cream); }

/* ====================================================== */
/* HOME — Design AS1 (refonte 2026-05-26)                  */
/* ====================================================== */

/* Bouton outline (CTA hero) */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }

/* ---------- HERO ---------- */
.home-hero {
  background: var(--cream);
  padding: clamp(150px, 18vh, 220px) 0 clamp(80px, 12vh, 160px);
  overflow: hidden;
  position: relative;
  min-height: clamp(680px, 92vh, 980px);
  display: flex;
  align-items: center;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(248,246,242,0.95) 0%, rgba(248,246,242,0.75) 30%, rgba(248,246,242,0.25) 55%, rgba(248,246,242,0) 75%);
  pointer-events: none;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.home-hero-left {
  max-width: 560px;
  position: relative;
}
.home-hero-left .eyebrow { margin-bottom: 28px; }
.home-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(54px, 7.8vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 38px;
  text-transform: none;
}
.home-hero-title span { display: block; }
.home-hero-title .accent {
  color: var(--navy);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.home-hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 40px;
}
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Badge rotatif — en haut à droite du hero, format sticker */
.circle-badge {
  position: absolute;
  top: clamp(88px, 10vh, 110px);
  right: clamp(12px, 2.5vw, 32px);
  left: auto;
  width: 108px;
  height: 108px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.circle-badge .circle-badge-center { width: 40px; height: 40px; }
.circle-badge .circle-badge-center svg { width: 22px; height: 22px; }
.circle-badge-text text { font-size: 10px; letter-spacing: 0.18em; }
.circle-badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: badge-rotate 22s linear infinite;
}
.circle-badge-text text {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  fill: var(--navy);
  text-transform: uppercase;
}
.circle-badge-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  position: relative;
}
@keyframes badge-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---- Badge décennale (remplace l'ancien disque tournant) ---- */
.decennale-badge {
  flex-direction: column;
  gap: 3px;
  background: var(--navy);
  color: var(--cream);
}
.decennale-badge svg { width: 30px; height: 30px; color: var(--beige); }
.decennale-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
}
.decennale-badge-ring {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 2px solid var(--beige);
  animation: ringPulse 2.6s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .decennale-badge-ring, .trust-card.is-reviews, .trust-card.is-reviews::after { animation: none; }
}

@media (max-width: 920px) {
  .home-hero { min-height: clamp(560px, 70vh, 760px); }
  .home-hero-bg img { object-position: 70% center; }
  .home-hero-left { max-width: 460px; }
  .circle-badge { right: 16px; top: auto; bottom: 32px; transform: none; width: 110px; height: 110px; }
  .circle-badge-center { width: 50px; height: 50px; }
}
@media (max-width: 640px) {
  .home-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248,246,242,0.85) 0%, rgba(248,246,242,0.45) 55%, rgba(248,246,242,0) 90%);
  }
  .circle-badge { width: 96px; height: 96px; bottom: 24px; right: 16px; }
}
@media (max-width: 560px) {
  .home-hero-title { font-size: clamp(42px, 12vw, 62px); }
}

/* ---------- TROIS PÔLES (navy) ---------- */
.home-poles {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(70px, 9vw, 110px) 0;
}
.home-poles-head { max-width: 760px; }
.home-poles-head h2 {
  color: var(--cream);
  font-size: clamp(32px, 4vw, 50px);
  margin-top: 16px;
}
.home-poles-head h2 em {
  color: var(--beige);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
}

.home-poles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pole-card {
  display: block;
  background: var(--navy-2);
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(216,195,165,.14);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.pole-card:hover {
  transform: translateY(-6px);
  border-color: var(--beige);
  background: #28503F;
}
.pole-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.pole-body {
  padding: 28px 28px 28px;
  position: relative;
}
.pole-num {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--beige);
  padding: 6px 12px;
  border: 1px solid rgba(216,195,165,.4);
  margin-bottom: 22px;
}
.pole-body h3 {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 14px;
}
.pole-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.pole-tags li {
  font-size: 13px;
  color: rgba(248,246,242,.7);
  position: relative;
}
.pole-tags li + li::before {
  content: '·';
  position: absolute;
  left: -10px;
  color: var(--beige);
}
.pole-plus {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(216,195,165,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  transition: background .25s ease, color .25s ease;
}
.pole-card:hover .pole-plus { background: var(--beige); color: var(--navy); }

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

/* ---------- 4 ÉTAPES + G BÉTON ---------- */
.home-steps {
  background: var(--cream);
  padding: clamp(70px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.home-steps-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.home-steps-body h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 16px 0 48px;
}
.home-steps-body h2 em {
  color: var(--beige);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 56px;
  right: 56px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 4px, transparent 4px 10px);
}
.step-item { position: relative; z-index: 1; }
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-icon svg { width: 26px; height: 26px; }
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--beige);
  font-weight: 700;
  margin-bottom: 6px;
}
.step-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}
.step-item p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.home-steps-g {
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.g-concrete {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(180px, 22vw, 320px);
  line-height: 0.85;
  background: linear-gradient(135deg, #DFE7E1 0%, #9FB3A5 40%, #6C8B7A 80%, #2F5749 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 18px 24px rgba(31, 61, 52,.18));
  user-select: none;
}

@media (max-width: 980px) {
  .home-steps-grid { grid-template-columns: 1fr; }
  .home-steps-g { max-width: 240px; margin: 0 auto; order: -1; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .steps-row::before { display: none; }
}
@media (max-width: 540px) {
  .steps-row { grid-template-columns: 1fr; }
}

/* ---------- HOME CTA ---------- */
.home-cta {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(70px, 9vw, 110px) 0;
}
.home-cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.home-cta-body h2 {
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 20px;
  margin-bottom: 36px;
}
.home-cta-body h2 em {
  color: var(--beige);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
}
.home-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.home-cta-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3.2;
  width: 100%;
  overflow: hidden;
}
.home-cta-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.home-cta-arch {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 70%;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

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

/* ---------- BANDEAU 4 GARANTIES ---------- */
.home-guarantees {
  background: var(--cream);
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.guarantees-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.guarantees-row .trust-card { flex: none; }
.guarantees-row .guarantees-grid { flex: 1; min-width: 260px; }
@media (max-width: 780px) {
  .guarantees-row { flex-direction: column; align-items: stretch; }
  .guarantees-row .trust-card { justify-content: center; }
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.guarantee-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.guarantee-icon svg { width: 22px; height: 22px; }
.guarantee-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.35;
}

@media (max-width: 920px) {
  .guarantees-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 540px) {
  .guarantees-grid { grid-template-columns: 1fr; }
}

/* ---------- Bandeau confiance héro : décennale + offre -5% ---------- */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-trust-row-col {
  flex-direction: column;
  align-items: flex-start;
}
.hero-trust-row-col .trust-card,
.hero-trust-row-col .offer-card {
  width: 100%;
  max-width: 340px;
}

/* ---- Carte décennale : autorité, anneau qui pulse doucement ---- */
.trust-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  border-radius: 12px;
  padding: 12px 22px 12px 14px;
  box-shadow: 0 14px 30px -16px rgba(31,61,52,.55);
}
.trust-card-ring {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
  color: var(--cream);
}
.trust-card-ring::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--beige);
  animation: ringPulse 2.6s ease-out infinite;
}
.trust-card-ring svg { width: 22px; height: 22px; position: relative; z-index: 1; }
@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 1; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { opacity: 0; }
}
.trust-card-txt { font-family: 'Montserrat', sans-serif; color: var(--cream); line-height: 1.25; }
.trust-card-txt b { display: block; font-size: 15px; letter-spacing: 0.01em; }
.trust-card-txt span { display: block; font-size: 11.5px; color: rgba(242,239,234,.65); font-weight: 500; }

/* ---- Carte offre -5% : promo, brillance qui balaie en boucle ---- */
.offer-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--beige) 0%, #b95f3f 100%);
  border-radius: 12px;
  padding: 10px 24px 10px 10px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 14px 34px -14px rgba(197,110,78,.65);
  animation: floaty 5s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.offer-card:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -14px rgba(197,110,78,.75); }
.offer-card::after {
  content: '';
  position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  animation: offerShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes offerShine {
  0% { left: -60%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
.offer-card-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--navy);
  flex: none;
  background: var(--cream);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.offer-card-txt { font-family: 'Montserrat', sans-serif; color: var(--navy); line-height: 1.25; position: relative; z-index: 1; }
.offer-card-txt b { display: block; font-size: 14.5px; letter-spacing: 0.01em; }
.offer-card-txt u { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em; text-decoration-color: rgba(31,61,52,.45); text-underline-offset: 3px; margin-top: 2px; }

/* ---- Carte avis Google : étoiles qui scintillent en décalé ---- */
.trust-card.is-reviews {
  cursor: pointer;
  position: relative;
  transition: transform .2s;
  animation: reviewPop 4.5s ease-in-out infinite;
  transform-origin: center left;
}
.trust-card.is-reviews:hover { transform: translateY(-2px) scale(1.02); }
.trust-card.is-reviews .trust-card-ring::before { border-color: var(--beige); animation: none; opacity: .5; }
.trust-card.is-reviews::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(197,110,78,.4), transparent 70%);
  opacity: 0;
  pointer-events: none;
  animation: reviewFlash 4.5s ease-in-out infinite;
}
@keyframes reviewPop {
  0%, 82%, 100% { transform: scale(1) rotate(0); }
  86% { transform: scale(1.07) rotate(-1.5deg); }
  90% { transform: scale(1.03) rotate(1.5deg); }
  94% { transform: scale(1.05) rotate(-1deg); }
  98% { transform: scale(1) rotate(0); }
}
@keyframes reviewFlash {
  0%, 80%, 100% { opacity: 0; transform: scale(0.9); }
  86% { opacity: 1; transform: scale(1.25); }
  95% { opacity: 0; transform: scale(1.1); }
}
.trust-stars { display: block; font-size: 12px; letter-spacing: 2px; color: var(--beige); }
.trust-stars span { display: inline-block; animation: twinkle 2.2s ease-in-out infinite; }
.trust-stars span:nth-child(1) { animation-delay: 0s; }
.trust-stars span:nth-child(2) { animation-delay: .15s; }
.trust-stars span:nth-child(3) { animation-delay: .3s; }
.trust-stars span:nth-child(4) { animation-delay: .45s; }
.trust-stars span:nth-child(5) { animation-delay: .6s; }
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.8); }
}

@media (prefers-reduced-motion: reduce) {
  .offer-card, .offer-card::after, .trust-card-ring::before, .trust-stars span { animation: none; }
}

/* ---------- Modale info générique (offre -5%, etc.) ---------- */
.info-modal-box {
  background: var(--cream);
  border-radius: 4px;
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}
.info-modal-box h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  font-size: 24px;
  margin: 0 0 20px;
  padding-right: 30px;
}
.info-modal-box p { color: var(--ink-soft); line-height: 1.7; margin: 0 0 14px; font-size: 15px; }
.info-modal-box .ba-close { position: absolute; top: 14px; right: 14px; color: var(--navy); }

/* ====================================================== */
/* SIMULATEUR NETTOYAGE HAUTE PRESSION                     */
/* ====================================================== */
.home-simu {
  background: var(--cream);
  padding: clamp(70px, 9vw, 110px) 0;
  position: relative;
}
.simu-head { max-width: 760px; }
.simu-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-top: 14px;
  margin-bottom: 18px;
}
.simu-head h2 em {
  color: var(--beige);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
}
.simu-head .lead { font-size: 17px; color: var(--ink-soft); line-height: 1.6; max-width: 60ch; }

.simu-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  margin-top: 56px;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.simu-form { padding: 40px 44px; background: var(--cream); }
.simu-result { padding: 40px 44px; background: var(--navy); color: var(--cream); display: flex; flex-direction: column; }
.simu-result-inner { flex: none; }

.simu-step { margin-bottom: 34px; }
.simu-step:last-child { margin-bottom: 0; }
.simu-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--beige);
  font-weight: 700;
  margin-bottom: 8px;
}
.simu-step h3 {
  font-size: 17px;
  margin-bottom: 16px;
  font-weight: 600;
}

.simu-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.simu-opt {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 14px;
  text-align: left;
  cursor: pointer;
  transition: all .2s ease;
  border-radius: 0;
  font-family: inherit;
}
.simu-opt:hover { border-color: var(--navy); }
.simu-opt.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.simu-opt-t {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 4px;
  line-height: 1.2;
}
.simu-opt-s {
  font-size: 11.5px;
  opacity: 0.7;
  line-height: 1.3;
}

.simu-surface { display: flex; align-items: center; gap: 18px; }
.simu-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
}
.simu-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.simu-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 50%;
  cursor: grab;
  border: 0;
}
.simu-surface-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: #fff;
  min-width: 110px;
}
.simu-surface-display input {
  width: 64px;
  border: 0;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
}
.simu-surface-display input::-webkit-outer-spin-button,
.simu-surface-display input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.simu-surface-display span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.simu-result .eyebrow.on-dark { color: var(--beige); }
.simu-result-big {
  color: var(--cream);
  font-size: clamp(28px, 3vw, 38px);
  margin: 12px 0 16px;
}
.simu-result-range {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 14px 0 6px;
}
.simu-result-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--beige);
  letter-spacing: -0.01em;
  line-height: 1;
}
.simu-result-sep {
  color: rgba(248,246,242,.4);
  font-size: 32px;
  font-weight: 300;
}
.simu-result-meta {
  font-size: 13px;
  color: rgba(248,246,242,.65);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.simu-disclaimer {
  font-size: 12px;
  color: rgba(248,246,242,.55);
  line-height: 1.5;
  margin: 16px 0 24px;
  padding: 12px 14px;
  background: rgba(216,195,165,.08);
  border-left: 2px solid var(--beige);
}

.simu-lead {
  border-top: 1px solid rgba(216,195,165,.18);
  padding-top: 26px;
}
.simu-lead h4 {
  color: var(--cream);
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.simu-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.simu-field { display: flex; flex-direction: column; }
.simu-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--beige);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.simu-field input[type="text"],
.simu-field input[type="tel"],
.simu-field input:not([type]) {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(216,195,165,.25);
  color: var(--cream);
  padding: 11px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.simu-field input:focus { border-color: var(--beige); }
.simu-field input::placeholder { color: rgba(248,246,242,.4); }
.simu-file-input {
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(216,195,165,.4);
  color: rgba(248,246,242,.7);
  padding: 10px 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
}
.simu-file-input::file-selector-button {
  background: var(--beige);
  color: var(--navy);
  border: 0;
  padding: 6px 12px;
  margin-right: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.simu-photo-previews {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.simu-photo-prev {
  width: 72px;
  height: 72px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  border: 1px solid rgba(216,195,165,.3);
}

.simu-submit { width: 100%; margin-top: 8px; justify-content: center; }
.simu-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.simu-rgpd {
  font-size: 11px;
  color: rgba(248,246,242,.5);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}
.simu-err {
  background: rgba(220, 80, 80, .15);
  border: 1px solid rgba(220, 80, 80, .4);
  color: #ffb4b4;
  padding: 10px 14px;
  font-size: 13px;
  margin: 12px 0;
}

.simu-success {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
}
.simu-success-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.simu-success h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.simu-success p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.simu-success .simu-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 24px;
  font-style: italic;
}

@media (max-width: 980px) {
  .simu-wrap { grid-template-columns: 1fr; }
  .simu-form, .simu-result { padding: 32px 28px; }
}
@media (max-width: 540px) {
  .simu-options { grid-template-columns: 1fr; }
  .simu-field-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Polish 15/06/2026 — formes arrondies (douceur "par moment")
   + sécurité d'espacement des titres.
   Bloc ajouté en fin de fichier pour rester facile à relire/annuler.
   ============================================================ */

/* Rayons un peu plus généreux que les tokens d'origine */
:root{
  --r-soft: 10px;   /* champs, petites boîtes  */
  --r-card: 20px;   /* cartes & panneaux       */
  --r-media: 18px;  /* images encadrées        */
  --r-pill: 999px;  /* boutons & badges        */
}

/* — Cartes — */
.service-card,
.value-card,
.testi-card,
.pole-card,
.real-card,
.info-card,
.step-card,
.opt-card,
.simu-opt,
.home-steps-g{ border-radius: var(--r-card); }

/* Les cartes qui contiennent une image doivent masquer le débord
   pour que l'image hérite des coins arrondis. */
.pole-card,
.real-card{ overflow: hidden; }

/* — Images / médias encadrés — */
.home-cta-img-wrap,
.zone-map,
.media,
.img-wrap,
figure{ border-radius: var(--r-media); overflow: hidden; }

/* — Boutons : galets arrondis (accent doux et accueillant) — */
.btn{ border-radius: var(--r-pill); }

/* — Champs de formulaire — */
.field input,
.field textarea,
.field select{ border-radius: var(--r-soft); }

/* — Panneaux encadrés (contenus dans un container, pas pleine largeur) — */
.devis-wrap,
.simu-wrap{ border-radius: var(--r-card); overflow: hidden; }
/* les moitiés internes sont déjà détourées par le wrap arrondi */
.devis-form,
.simu-form,
.simu-result{ border-radius: 0; }

/* — Badges / pastilles encadrés — */
.pole-num,
.devis-step-pill{ border-radius: var(--r-pill); }

/* ---------- Sécurité anti-chevauchement des titres ---------- */
h2{ line-height: 1.18; }
h1 em, h2 em{ line-height: 1.04; }
.section-header{ gap: 22px; }

/* === Crédit Aelvon === */
.credit-aelvon-row{width:100%;align-self:stretch;box-sizing:border-box;padding:14px 0 20px;text-align:center;line-height:1}
.credit-aelvon{display:inline-flex;align-items:center;gap:.5em;color:inherit;text-decoration:none;font-size:12px;letter-spacing:.02em;opacity:.6;transition:opacity .2s ease;white-space:nowrap}
.credit-aelvon:hover{opacity:1}
.credit-aelvon img{height:19px;width:auto;display:block}
