/* ========================================================
   MJ RÉNOVATION — stylesheet
   Palette tirée du logo : beige, doré, terracotta, vert sauge
   ======================================================== */

:root {
  /* Palette */
  --cream: #F5EBD8;
  --cream-soft: #FAF3E4;
  --cream-warm: #EFE1C7;
  --ink: #2B2419;
  --ink-soft: #4A3F2E;
  --ink-mute: #7A6B55;

  --gold: #C9962A;
  --gold-deep: #A87A1C;
  --gold-soft: #E0B85A;

  --terracotta: #C97648;
  --terracotta-deep: #A35A33;
  --sage: #8BA368;
  --sage-deep: #6B844B;

  --line: rgba(43, 36, 25, 0.12);
  --line-soft: rgba(43, 36, 25, 0.06);

  /* Accent (tweakable) */
  --accent: var(--gold);
  --accent-deep: var(--gold-deep);

  /* Type */
  --ff-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --ff-sans: "DM Sans", system-ui, -apple-system, sans-serif;

  /* Spacing scale (tweakable density) */
  --section-py: clamp(80px, 10vw, 140px);
  --container: 1240px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 10px;
}

[data-density="compact"] {
  --section-py: clamp(56px, 7vw, 90px);
}

[data-accent="terracotta"] {
  --accent: #C97648;
  --accent-deep: #A35A33;
}
[data-accent="sage"] {
  --accent: #8BA368;
  --accent-deep: #6B844B;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(169,130,66,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: 1;
  mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 144;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

em {
  font-style: italic;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
  color: var(--accent-deep);
}

.hide-mob { display: inline; }
@media (max-width: 720px) { .hide-mob { display: none; } }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 235, 216, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-name em { color: var(--gold-deep); }
.brand-tag {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: auto;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .brand-tag { display: none; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--ff-sans);
  cursor: pointer;
  border: none;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(169,122,28,.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost .arrow { transition: transform .25s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ===================== HERO ===================== */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 28px 0;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(139,163,104,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(139,163,104,.25); }
  50% { box-shadow: 0 0 0 7px rgba(139,163,104,.12); }
}
.hero-title {
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.98;
  margin-bottom: 28px;
}
.underline-soft {
  background-image: linear-gradient(transparent 78%, rgba(201,150,42,0.35) 78%, rgba(201,150,42,0.35) 96%, transparent 96%);
  padding: 0 4px;
}
.hero-lede {
  font-size: clamp(17px, 1.25vw, 19px);
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-proof {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof strong {
  font-family: var(--ff-serif);
  font-size: 28px;
  color: var(--accent-deep);
  font-weight: 500;
}
.hero-proof span {
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 540px;
  justify-self: end;
  width: 100%;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(43,36,25,.28);
}
.hero-card-main {
  inset: 0 20% 12% 0;
  border-radius: var(--radius-lg);
}
.hero-card-float {
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1;
  border: 8px solid var(--cream);
}
.hero-card-badge {
  left: -8%;
  bottom: 22%;
  background: var(--cream-soft);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px -12px rgba(43,36,25,.2);
  border: 1px solid var(--line);
}
.badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-deep);
}
.badge-inner strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.badge-inner span {
  font-size: 12px;
  color: var(--ink-mute);
}
.hero-photo {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url('assets/hero-bathroom.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.hero-photo::before {
  content: attr(data-label);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: rgba(43,36,25,.85);
  background: rgba(245,235,216,.92);
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.hero-photo.small {
  background-image: url('assets/hero-wc.jpg');
  background-size: cover;
  background-position: center;
}
.hero-photo-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(43,36,25,.85);
  color: var(--cream);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

/* Ribbon */
.hero-ribbon {
  margin-top: clamp(60px, 8vw, 100px);
  display: flex;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--ink);
}
.ribbon-track {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}
.ribbon-track span:nth-child(even) { color: var(--gold); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 100%; justify-self: stretch; aspect-ratio: 1; }
  .hero-proof { gap: 20px; flex-wrap: wrap; }
}

/* ===================== SECTIONS COMMON ===================== */
.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  margin-bottom: 64px;
}
.section-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}
.section-kicker.light {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-soft); }
.section-lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-lede.light { color: rgba(245,235,216,.75); }

/* ===================== SERVICES ===================== */
.services {
  padding: var(--section-py) 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform .3s, box-shadow .3s, background .3s;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(43,36,25,.25);
  background: #fff;
}
.service-card.featured {
  background: linear-gradient(165deg, var(--ink) 0%, #3A2F20 100%);
  color: var(--cream);
  border: none;
}
.service-card.featured h3,
.service-card.featured p { color: var(--cream); }
.service-card.featured .service-number { color: var(--gold-soft); }
.service-card.featured .service-icon { color: var(--gold-soft); }
.service-card.featured .service-points li::before { background: var(--gold-soft); }
.service-card.featured .service-link { color: var(--gold-soft); border-color: var(--gold-soft); }

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--ff-serif);
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.service-icon {
  color: var(--accent-deep);
  margin-bottom: 28px;
}
.service-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--ink);
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}
.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-points li {
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}
.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--accent-deep);
}
.service-link {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-deep);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent);
  transition: gap .25s;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
}

/* ===================== VISITE 360° ===================== */
.visite {
  padding: var(--section-py) 28px;
  background: linear-gradient(165deg, #231D14 0%, #342A1D 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.visite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(201,150,42,.12) 0%, transparent 50%),
              radial-gradient(ellipse at 90% 100%, rgba(139,163,104,.08) 0%, transparent 50%);
  pointer-events: none;
}
.visite-head {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  text-align: center;
  margin-bottom: 50px;
}
.visite-foot {
  max-width: var(--container);
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(245,235,216,.12);
  position: relative;
}
.visite-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.visite-meta > div {
  display: flex;
  flex-direction: column;
}
.visite-meta span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,235,216,.55);
  margin-bottom: 4px;
}
.visite-meta strong {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
}
.visite .btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.visite .btn-primary:hover { background: var(--gold-soft); }

/* ===================== TOUR (interactive) ===================== */
.tour-frame {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: grab;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
  background: #1a140a;
}
.tour-frame.grabbing { cursor: grabbing; }
.tour-scene {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(.16,.84,.3,1);
  user-select: none;
  -webkit-user-select: none;
}
.tour-scene.dragging { transition: none; }
.tour-panel {
  flex-shrink: 0;
  height: 100%;
  position: relative;
}

.tour-hotspot {
  position: absolute;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
}
.tour-hotspot .hot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.28;
  animation: hot-pulse 2.4s ease-out infinite;
}
.tour-hotspot .hot-core {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2.5px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
  transition: transform .25s;
}
.tour-hotspot:hover .hot-core { transform: scale(1.15); background: var(--gold-soft); }
@keyframes hot-pulse {
  0% { transform: scale(0.9); opacity: 0.4; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.tour-tooltip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  background: var(--cream);
  color: var(--ink);
  width: min(320px, 85vw);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  z-index: 15;
  transition: opacity .25s, transform .25s;
}
.tour-tooltip.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.tour-tooltip h4 {
  font-size: 22px;
  margin-bottom: 6px;
}
.tour-tooltip .tt-kicker {
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.tour-tooltip p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 14px;
}
.tour-tooltip .tt-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.tour-tooltip .tt-meta span { color: var(--ink-mute); }
.tour-tooltip .tt-meta strong { color: var(--accent-deep); font-family: var(--ff-serif); font-size: 16px; }
.tour-tooltip .tt-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink-mute);
  width: 28px; height: 28px;
  border-radius: 50%;
}
.tour-tooltip .tt-close:hover { background: var(--line-soft); color: var(--ink); }

/* Tour chrome */
.tour-controls {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  background: rgba(43,36,25,0.75);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 7px;
  border: 1px solid rgba(245,235,216,.15);
}
.tour-ctrl {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.tour-ctrl:hover { background: rgba(245,235,216,.15); }
.tour-ctrl.active { background: var(--gold); color: var(--ink); }

.tour-compass {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 20;
  background: rgba(43,36,25,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,235,216,.15);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tour-compass .compass-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.tour-hint {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 20;
  background: rgba(43,36,25,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,235,216,.15);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--cream);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: hint-fade 4s ease-out forwards;
  animation-delay: 2s;
}
@keyframes hint-fade {
  to { opacity: 0; transform: translateY(-6px); }
}

.tour-drag-indicator {
  position: absolute;
  bottom: 18px;
  right: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,235,216,.6);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ===================== BATHROOM PANORAMA SCENE ===================== */
/* Built from CSS gradients & layered SVG patterns — evokes a real bathroom */
.pano-scene {
  position: absolute;
  inset: 0;
  background: #2a2319;
}

/* ===================== REALISATIONS / GALLERY ===================== */
.realisations {
  padding: var(--section-py) 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--cream-warm);
  box-shadow: 0 18px 40px -24px rgba(43,36,25,.3);
  aspect-ratio: 3/4;
}
.gallery-item.tall,
.gallery-item.wide,
.gallery-item.square { grid-column: auto; aspect-ratio: 3/4; }

.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--cream);
}
.ba-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.ba-photo.contain {
  object-fit: contain;
  background: linear-gradient(135deg, #2B2419 0%, #3a2f20 100%);
}
.ba-before::after, .ba-after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 40%);
  pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 var(--reveal, 50%)); }
.ba-label {
  position: relative;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(43,36,25,.7);
  padding: 6px 12px;
  border-radius: 999px;
}
.ba-title {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--cream);
  max-width: 70%;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.ba-subtitle {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-sans);
  font-size: 12.5px;
  font-style: normal;
  letter-spacing: 0.02em;
  color: rgba(245,235,216,.85);
  line-height: 1.4;
  max-width: 90%;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal, 50%);
  width: 3px;
  background: var(--cream);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle::after {
  content: "⇆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

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

/* ===================== PROCESS ===================== */
.process {
  padding: var(--section-py) 28px;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  margin-top: var(--section-py);
  margin-bottom: 0;
}
.process .section-head { margin-bottom: 50px; }
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1100px;
  counter-reset: proc;
}
.process-grid li {
  position: relative;
  padding: 28px 22px;
  background: var(--cream-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}
.proc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  font-family: var(--ff-serif);
  font-size: 16px;
  margin-bottom: 16px;
}
.process-grid h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}
.process-grid p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

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

/* ===================== TÉMOIGNAGES ===================== */
.temoignages {
  padding: var(--section-py) 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(43,36,25,.2);
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.review-quote {
  font-family: var(--ff-serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--ff-serif);
  font-size: 18px;
}
.review-author strong {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
}
.review-author span {
  font-size: 12.5px;
  color: var(--ink-mute);
}

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

/* ===================== DEVIS ===================== */
.devis {
  padding: var(--section-py) 28px;
  background: linear-gradient(165deg, #231D14 0%, #342A1D 100%);
  color: var(--cream);
  position: relative;
}
.devis-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.devis-copy .section-head {
  margin: 0 0 40px;
  text-align: left;
  padding: 0;
}
.devis-copy .section-lede { margin: 0 0 40px; }
.devis-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.devis-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(245,235,216,.05);
  border: 1px solid rgba(245,235,216,.1);
  border-radius: var(--radius);
  transition: all .2s;
  color: var(--cream);
}
.devis-row:not(.static):hover {
  background: rgba(245,235,216,.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.devis-row svg { color: var(--gold-soft); flex-shrink: 0; }
.devis-row span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,235,216,.6);
  display: block;
  margin-bottom: 3px;
}
.devis-row strong {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
}

/* Form */
.quote-form {
  background: var(--cream);
  color: var(--ink);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.quote-form h3 {
  font-size: 26px;
  margin-bottom: 6px;
}
.quote-form .form-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 30px;
}
.form-step-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.step-dot {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  transition: background .3s;
}
.step-dot.active { background: var(--accent); }
.step-dot.done { background: var(--sage); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.form-hint {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: -4px;
  margin-bottom: 6px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.choice {
  padding: 16px;
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}
.choice:hover { border-color: var(--accent); background: #fff; }
.choice.selected {
  border-color: var(--accent);
  background: rgba(201,150,42,.08);
}
.choice strong { font-weight: 500; font-size: 14.5px; }
.choice span { font-size: 12px; color: var(--ink-mute); }

.form-field {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s;
}
.form-field:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
textarea.form-field { resize: vertical; min-height: 100px; }

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 28px;
}
.form-back {
  background: none;
  border: none;
  color: var(--ink-mute);
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  padding: 12px 0;
}
.form-back:hover { color: var(--ink); }

.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 32px;
}
.form-success h4 { font-size: 28px; margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); margin-bottom: 24px; }

@media (max-width: 900px) {
  .devis-grid { grid-template-columns: 1fr; gap: 40px; }
  .visite-meta { gap: 20px; }
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 28px 30px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245,235,216,.12);
}
.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.footer-brand .brand-logo {
  width: 60px; height: 60px;
  filter: brightness(1.1);
}
.footer-brand .brand-name {
  font-family: var(--ff-serif);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-brand .brand-name em { color: var(--gold-soft); }
.footer-brand p {
  font-size: 13.5px;
  color: rgba(245,235,216,.6);
  line-height: 1.55;
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-cols h5 {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: rgba(245,235,216,.75);
  padding: 4px 0;
  transition: color .2s;
}
.footer-cols a:hover { color: var(--gold-soft); }
.footer-base {
  max-width: var(--container);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(245,235,216,.45);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== TWEAKS PANEL ===================== */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 60px -20px rgba(43,36,25,.35);
  z-index: 100;
  font-family: var(--ff-sans);
}
.tweaks-panel h5 {
  font-family: var(--ff-serif);
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 500;
}
.tweaks-panel .tw-sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.tw-field { margin-bottom: 16px; }
.tw-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-weight: 500;
}
.tw-swatches { display: flex; gap: 8px; }
.tw-swatch {
  flex: 1;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s;
  position: relative;
}
.tw-swatch.active { border-color: var(--ink); transform: scale(0.97); }
.tw-swatch:hover { transform: scale(1.04); }
.tw-swatch[data-val="gold"] { background: #C9962A; }
.tw-swatch[data-val="terracotta"] { background: #C97648; }
.tw-swatch[data-val="sage"] { background: #8BA368; }

.tw-pills { display: flex; gap: 6px; }
.tw-pill {
  flex: 1;
  padding: 8px 10px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--cream-soft);
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  transition: all .2s;
}
.tw-pill.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
