/* Hybride — Immersive (haut) + Editorial (contenu) + Footer blanc */

/* ── Variables immersives ── */
:root {
  --imm-dark: #0d0d0d;
  --imm-light: #f5f3f0;
  --imm-accent: #c9a87c;
  --imm-accent-hover: #b39274;
  --imm-white: #ffffff;
  --imm-muted: rgba(255, 255, 255, 0.65);
  --imm-font-display: "Playfair Display", Georgia, serif;
  --imm-font-body: "Montserrat", system-ui, sans-serif;

  /* ── Variables éditoriales ── */
  --ed-cream: #f7f4ef;
  --ed-ink: #1c1814;
  --ed-terra: #a65d3f;
  --ed-terra-light: #d4a574;
  --ed-muted: #6b635a;
  --ed-white: #ffffff;
  --ed-font-display: "Cormorant Garamond", Georgia, serif;
  --ed-font-body: "Work Sans", system-ui, sans-serif;

  /* ── Footer blanc ── */
  --ft-bg: #ffffff;
  --ft-text: #333333;
  --ft-muted: #666666;
  --ft-border: #e8e4df;
  --ft-accent: #a65d3f;

  --header-h: 76px;
  --ease: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}
body {
  font-family: var(--imm-font-body);
  background: var(--imm-dark);
  color: var(--imm-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition),
    opacity var(--transition);
}
ul {
  list-style: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header dual-mode ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition:
    background var(--ease),
    box-shadow var(--ease),
    color var(--ease);
}
.header--immersive {
  color: var(--imm-white);
  background: rgba(13, 13, 13, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header--immersive.is-scrolled {
  background: rgba(13, 13, 13, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.header--editorial {
  color: var(--ed-ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 24, 20, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo__icon {
  flex-shrink: 0;
}
.logo__mark {
  width: 52px;
  height: 52px;
  display: block;
}
.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  text-align: justify;
  text-align-last: justify;
}
.header--editorial .logo__name {
  font-family: var(--ed-font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.logo__tagline {
  font-size: 0.55rem;
  opacity: 0.65;
  letter-spacing: 0.04em;
  display: block;
  text-align: justify;
  text-align-last: justify;
}
.header--editorial .logo__tagline {
  font-family: var(--ed-font-body);
  font-size: 0.6rem;
  color: var(--ed-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.nav__list a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header--immersive .nav__list a {
  opacity: 1;
  font-family: var(--ed-font-body);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.header--immersive .nav__list a:hover {
  color: var(--ed-terra-light);
}
.header--immersive .logo__name,
.header--immersive .logo__tagline {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.header--editorial .nav__list a {
  color: var(--ed-muted);
  font-family: var(--ed-font-body);
  opacity: 1;
}
.header--editorial .nav__list a:hover {
  color: var(--ed-terra);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--ed-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background var(--ease),
    color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}
.btn--primary-imm {
  background: var(--ed-terra);
  color: var(--ed-white);
}
.btn--primary-imm:hover {
  background: #8f4f35;
  transform: translateY(-1px);
}
.btn--outline-imm {
  background: transparent;
  color: var(--imm-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}
.btn--outline-imm:hover {
  border-color: var(--imm-white);
  background: rgba(255, 255, 255, 0.08);
}
.btn--primary-ed {
  background: var(--ed-terra);
  color: var(--ed-white);
  box-shadow: 0 4px 16px rgba(166, 93, 63, 0.25);
}
.btn--primary-ed:hover {
  background: #8f4f35;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(166, 93, 63, 0.3);
}
.btn--ghost-ed {
  background: var(--ed-white);
  color: var(--ed-ink);
  border: 1px solid var(--ft-border);
  border-radius: 999px;
}
.btn--ghost-ed:hover {
  border-color: var(--ed-terra);
  color: var(--ed-terra);
}
.btn--line-ed {
  background: transparent;
  border-bottom: 2px solid var(--ed-ink);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: var(--ed-font-body);
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}
.btn--line-ed:hover {
  color: var(--ed-terra);
  border-color: var(--ed-terra);
}
.btn--line-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  padding: 0.15rem 0 0.5rem;
  font-family: var(--ed-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--imm-light);
  cursor: pointer;
  transition:
    color var(--ease),
    border-color var(--ease);
}
.btn--line-hero:hover {
  color: var(--ed-terra-light);
}
.btn--line-hero span {
  font-weight: 400;
}
.btn--line-on-light {
  color: var(--ed-ink);
}
.btn--line-on-light:hover {
  color: var(--ed-terra);
}
.btn--nav-cta {
  padding: 0.65rem 1.35rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}
.header--immersive .btn--nav-cta {
  background: var(--ed-terra);
  color: var(--ed-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.header--immersive .btn--nav-cta:hover {
  background: #8f4f35;
  transform: translateY(-1px);
}
.header--editorial .btn--nav-cta {
  background: var(--ed-terra);
  color: var(--ed-white);
  box-shadow: 0 4px 14px rgba(166, 93, 63, 0.22);
}
.header--editorial .btn--nav-cta:hover {
  background: #8f4f35;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   ZONE IMMERSIVE (galerie-immersive)
   ══════════════════════════════════════ */
.zone-immersive {
  background: var(--imm-dark);
  color: var(--imm-light);
  font-family: var(--ed-font-body);
}

/* Typo éditoriale sur fond sombre (alignée FAQ) */
.zone-immersive .ed-eyebrow,
.zone-immersive .ed-eyebrow--section {
  color: var(--ed-terra-light);
}
.zone-immersive .ed-title,
.zone-immersive .ed-title--section {
  color: var(--imm-light);
  font-weight: 400;
}
.zone-immersive .ed-lead,
.zone-immersive .ed-intro {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--ed-font-body);
}
.zone-immersive .ed-lead {
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.zone-immersive .hero .ed-eyebrow {
  color: var(--ed-terra-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.zone-immersive .hero .ed-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 760px;
}
.zone-immersive .hero .ed-title em {
  font-style: italic;
  color: var(--ed-terra-light);
}
.zone-immersive .hero .ed-lead {
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  text-align: justify;
}
.zone-immersive .ed-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.zone-immersive .imm-section .ed-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.no-motion .hero__media img {
  animation: none;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.55) 38%,
    rgba(13, 13, 13, 0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 6rem;
}
.hero__editorial {
  max-width: 760px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.hero__badge {
  display: inline-block;
  font-family: var(--ed-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ed-terra-light);
  border: 1px solid rgba(201, 169, 140, 0.45);
  padding: 0.4rem 0.75rem;
  margin-bottom: 1.25rem;
}
.hero__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ed-font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero__features svg {
  color: var(--ed-terra-light);
  flex-shrink: 0;
}
.hero__bubble {
  position: absolute;
  right: 1.5rem;
  bottom: 6rem;
  z-index: 3;
  display: none;
  width: min(100% - 3rem, 17.5rem);
  padding: 1.5rem 1.625rem 1.375rem;
  background: rgba(13, 13, 13, 0.92);
  color: var(--imm-light);
  text-decoration: none;
  border-radius: 4px;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease);
}
.hero__bubble:hover {
  transform: translateY(-3px);
  background: rgba(13, 13, 13, 1);
}
.hero__bubble-title {
  display: block;
  font-family: var(--ed-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.hero__bubble-text {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.875rem;
}
.hero__bubble-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ed-terra-light);
  letter-spacing: 0.02em;
}
.hero__bubble:hover .hero__bubble-link {
  color: #fff;
}

.imm-section {
  padding: 5rem 0;
}
.imm-section .ed-title--section {
  margin-bottom: 1.25rem;
}
#services.imm-section {
  padding-bottom: 3rem;
}

.services__scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.service-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-tile:hover img {
  transform: scale(1.1);
}
.service-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.service-tile__overlay h3 {
  font-family: var(--ed-font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.service-tile__overlay p {
  font-size: 0.75rem;
  opacity: 0.7;
  font-family: var(--ed-font-body);
}

/* Séparateur vague sombre → blanc */
.zone-divider {
  background: var(--imm-dark);
  line-height: 0;
}
.zone-divider__wave {
  display: block;
  width: 100%;
  height: clamp(32px, 4vw, 56px);
}

/* Zone claire — fond blanc uni */
.zone-light {
  background: var(--ed-white);
  color: var(--ed-ink);
  font-family: var(--ed-font-body);
  border-bottom: 1px solid var(--ft-border);
}
.light-section {
  padding: 2.5rem 0 5rem;
}
.zone-light .ed-eyebrow,
.zone-light .ed-eyebrow--section {
  color: var(--ed-terra);
}
.zone-light .ed-title--section {
  color: var(--ed-ink);
}
.zone-light .ed-intro {
  color: var(--ed-muted);
}
.zone-light .ed-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  max-width: 760px;
}
.zone-light .ed-intro--hint {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ed-muted);
  opacity: 0.85;
}

.before-after__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.before-after__slider {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(28, 24, 20, 0.12);
  user-select: none;
}
.before-after__img {
  position: absolute;
  inset: 0;
}
.before-after__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after__img--after {
  clip-path: inset(0 0 0 50%);
}
.before-after__label {
  position: absolute;
  top: 1rem;
  z-index: 6;
  padding: 0.35rem 0.75rem;
  font-family: var(--ed-font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ed-ink);
  color: var(--ed-white);
  pointer-events: none;
}
.before-after__label--before {
  left: 1rem;
}
.before-after__label--after {
  right: 1rem;
}
.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}
.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--ed-white);
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.before-after__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(28, 24, 20, 0.7);
  border: 2px solid var(--ed-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.before-after__knob::before,
.before-after__knob::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}
.before-after__knob::before {
  border-width: 5px 7px 5px 0;
  border-right-color: var(--ed-white);
}
.before-after__knob::after {
  border-width: 5px 0 5px 7px;
  border-left-color: var(--ed-white);
}

/* ══════════════════════════════════════
   ZONE ÉDITORIALE (texte riche)
   ══════════════════════════════════════ */
.zone-editorial {
  background: var(--ed-white);
  color: var(--ed-ink);
  font-family: var(--ed-font-body);
}
.zone-editorial .section {
  padding: 5rem 0;
}

.ed-intro-band {
  padding: 0;
  border-bottom: 1px solid var(--ft-border);
  overflow: hidden;
}
.ed-intro-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 78vh, 820px);
}
.ed-intro-band__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  padding-left: clamp(1.5rem, 8vw, 8rem);
  max-width: 720px;
}
.ed-intro-band__text .ed-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: 1.5rem;
}
.ed-intro-band__text .ed-lead {
  max-width: 480px;
  margin-bottom: 2rem;
}
.ed-intro-band__media {
  margin: 0;
  position: relative;
  min-height: 280px;
}
.ed-intro-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: clamp(280px, 78vh, 820px);
}
.ed-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ed-terra);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.ed-title {
  font-family: var(--ed-font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.ed-title em {
  font-style: italic;
  color: var(--ed-terra);
}
.ed-lead {
  font-size: 1.05rem;
  color: var(--ed-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.popular-searches__links a {
  color: var(--ed-muted);
  transition: color var(--transition);
}
.popular-searches__links a:hover {
  color: var(--ed-terra);
}

.ed-eyebrow--section {
  margin-bottom: 0.75rem;
}
.ed-title--section {
  font-family: var(--ed-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.ed-title--light {
  color: var(--ed-white);
}
.ed-intro {
  font-size: 0.95rem;
  color: var(--ed-muted);
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 1.5rem;
}
.ed-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__header--3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.section__header__col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.section__header__col .ed-intro {
  width: 100%;
  margin-bottom: 0;
}
.section__header__cta {
  align-self: flex-end;
}
@media (min-width: 992px) {
  .section__header--3col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
  }
}

/* Services texte (grille originale) */
.services-detail {
  background: var(--ed-white);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 576px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  padding: 1.75rem;
  border: 1px solid var(--ft-border);
  background: var(--ed-cream);
  transition: border-color var(--transition);
}
.service-card:hover {
  border-color: var(--ed-terra-light);
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--ed-terra);
  margin-bottom: 1rem;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.service-card__title {
  font-family: var(--ed-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-card__desc {
  font-size: 0.85rem;
  color: var(--ed-muted);
  line-height: 1.65;
}

/* Process */
.process {
  background: var(--ed-ink);
  color: var(--ed-cream);
}
.process__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .process__header {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
  position: relative;
}
@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .process__steps::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
  }
}
.process__step {
  position: relative;
  z-index: 1;
}
.process__num {
  display: block;
  font-family: var(--ed-font-display);
  font-size: 1.5rem;
  color: var(--ed-terra-light);
  margin-bottom: 0.5rem;
}
.process__step h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.process__step p {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.55;
}

/* Réalisations */
.realisations {
  background: var(--ed-white);
}
.realisations__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .realisations__inner {
    grid-template-columns: 0.45fr 0.55fr;
  }
}
.realisations__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .realisations__gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.realisations__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.realisations__img-wrap {
  position: absolute;
  inset: -12% 0;
  overflow: hidden;
}
.realisations__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.realisations__item:hover .realisations__img-wrap img {
  transform: scale(1.06);
}
.realisations__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ed-white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity var(--transition);
}
.realisations__item:hover figcaption {
  opacity: 1;
}

/* Trust */
.trust {
  background: var(--ed-cream);
  padding: 4rem 0;
  border-top: 1px solid var(--ft-border);
  border-bottom: 1px solid var(--ft-border);
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust__item {
  text-align: center;
}
.trust__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--ed-terra);
}
.trust__icon svg {
  width: 100%;
  height: 100%;
}
.trust__item h3 {
  font-family: var(--ed-font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.trust__item p {
  font-size: 0.82rem;
  color: var(--ed-muted);
  line-height: 1.55;
}

/* About */
.zone-editorial .about {
  padding: clamp(5.5rem, 12vw, 8.5rem) 0;
}
.about {
  background: var(--ed-white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: start;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 0.42fr 0.58fr;
    gap: clamp(3rem, 8vw, 6rem);
  }
}
.about__heading {
  padding-right: clamp(0, 4vw, 2rem);
}
.about .ed-eyebrow--section {
  margin-bottom: 1.25rem;
}
.about__title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: 0;
  line-height: 1.08;
  max-width: 11em;
}
.about__title em {
  font-style: italic;
  color: var(--ed-terra);
}
.about__content {
  padding-top: clamp(0, 2vw, 0.5rem);
}
.about__content p {
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ed-muted);
  text-align: justify;
  text-indent: 1.5em;
}
.about__content p:last-child {
  margin-bottom: 0;
}

/* Blog */
.blog {
  background: var(--ed-cream);
}
.blog__header,
.blog-list__header {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.blog__title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.blog__title em {
  font-style: italic;
  color: var(--ed-terra);
}
.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-card {
  background: var(--ed-white);
  padding: 1.75rem;
  border: 1px solid var(--ft-border);
  transition: border-color var(--transition);
}
.blog-card:hover {
  border-color: var(--ed-terra);
}
.blog-card h3 {
  font-family: var(--ed-font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.blog-card h3 a:hover {
  color: var(--ed-terra);
}
.blog-card p {
  font-size: 0.82rem;
  color: var(--ed-muted);
  line-height: 1.6;
}
.blog__intro {
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--ed-muted);
  line-height: 1.75;
  text-align: center;
  text-indent: 0;
}
.blog__more {
  margin-top: 2rem;
  text-align: center;
}

/* Services SEO blocks */
.services__grid--seo {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services__grid--seo {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-block {
  background: var(--ed-white);
  border: 1px solid var(--ft-border);
  padding: 2rem;
  transition: border-color var(--transition);
}
.service-block:hover {
  border-color: var(--ed-terra);
}
.service-block__title {
  font-family: var(--ed-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ed-ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-block__desc {
  font-size: 0.9rem;
  color: var(--ed-muted);
  line-height: 1.7;
}

/* Pages blog */
body.page-blog {
  background: var(--ed-cream);
  color: var(--ed-ink);
}
.page-blog__main {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 4rem;
  min-height: 60vh;
}
.blog-breadcrumb {
  font-size: 0.8rem;
  color: var(--ed-muted);
  margin-bottom: 2rem;
}
.blog-breadcrumb a:hover {
  color: var(--ed-terra);
}
.blog-breadcrumb span {
  margin: 0 0.5rem;
}
.blog-article {
  max-width: 720px;
  margin: 0 auto;
}
.blog-article__meta {
  font-size: 0.8rem;
  color: var(--ed-muted);
  margin-bottom: 1.5rem;
}
.blog-article__title {
  font-family: var(--ed-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ed-ink);
}
.blog-article__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ed-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ft-border);
  text-align: justify;
  text-indent: 1.5em;
}
.blog-article__content h2 {
  font-family: var(--ed-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--ed-ink);
}
.blog-article__content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ed-muted);
  margin-bottom: 1rem;
  text-align: justify;
  text-indent: 1.5em;
}
.blog-article__content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.blog-article__content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ed-muted);
  margin-bottom: 0.35rem;
  text-align: justify;
}
.blog-article__cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--ed-white);
  border: 1px solid var(--ft-border);
  text-align: center;
}
.blog-article__cta p {
  margin-bottom: 1rem;
  color: var(--ed-muted);
}
.blog-list__header {
  margin-bottom: 3rem;
}
.blog-list__header .ed-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.blog-list__header .ed-title em {
  font-style: italic;
  color: var(--ed-terra);
}
.blog-list__header p {
  color: var(--ed-muted);
  line-height: 1.7;
  text-align: center;
  text-indent: 0;
}
.blog-about {
  max-width: 1080px;
  margin: 0 auto 4rem;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--ed-white);
  border: 1px solid var(--ft-border);
}
.blog-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 768px) {
  .blog-about__grid {
    grid-template-columns: 0.4fr 0.6fr;
    gap: clamp(2.5rem, 6vw, 4.5rem);
  }
}
.blog-about .ed-eyebrow--section {
  margin-bottom: 1.25rem;
}
.blog-about__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 1.75rem;
  max-width: 11em;
}
.blog-about__title em {
  font-style: italic;
  color: var(--ed-terra);
}
.blog-about__media {
  margin: 0;
  overflow: hidden;
}
.blog-about__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.blog-about__content {
  padding-top: clamp(0, 2vw, 0.25rem);
}
.blog-about__content p {
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ed-muted);
  text-align: justify;
  text-indent: 1.5em;
}
.blog-about__content p:last-of-type {
  margin-bottom: 1.75rem;
}
.blog-about__content .btn {
  margin-top: 0.25rem;
}
.blog-article__byline {
  font-size: 0.82rem;
  color: var(--ed-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ft-border);
}
.blog-list__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .blog-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-list-card {
  background: var(--ed-white);
  border: 1px solid var(--ft-border);
  padding: 1.75rem;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-list-card:hover {
  border-color: var(--ed-terra);
}
.blog-list-card h2 {
  font-family: var(--ed-font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
.blog-list-card h2 a:hover {
  color: var(--ed-terra);
}
.blog-list-card p {
  font-size: 0.85rem;
  color: var(--ed-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
  text-indent: 1.5em;
}
.blog-list-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ed-terra);
}
.blog-related {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--ft-border);
}
.blog-related h2 {
  font-family: var(--ed-font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.blog-related ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-related a {
  font-size: 0.9rem;
  color: var(--ed-terra);
}
.blog-related a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq {
  background: var(--ed-white);
}
.faq__list {
  margin-top: 2rem;
  max-width: 800px;
}
.faq__item {
  border-bottom: 1px solid var(--ft-border);
}
.faq__item summary {
  padding: 1.25rem 2rem 1.25rem 0;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--ed-font-body);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--ed-terra);
  font-weight: 400;
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item p {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--ed-muted);
  line-height: 1.7;
}

/* Contact éditorial */
.contact-ed {
  background: var(--ed-ink);
  color: var(--ed-cream);
  padding: 5rem 0;
}
.contact-ed__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .contact-ed__grid {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 4rem;
  }
}
.contact-ed__text {
  color: rgba(247, 244, 239, 0.8);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}
.contact-ed__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-ed__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--ed-cream);
  transition:
    border-color var(--transition),
    color var(--transition);
}
.contact-ed__social-link:hover {
  border-color: var(--ed-terra-light);
  color: var(--ed-terra-light);
}
.contact-ed__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-ed__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.contact-ed__form-row--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .contact-ed__form-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-ed__form-row--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-ed .form-field input,
.contact-ed .form-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--ed-font-body);
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ed-cream);
}
.contact-ed .form-field input::placeholder,
.contact-ed .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-field--message .form-field__composer {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.form-field--message textarea {
  min-height: 9.5rem;
  resize: vertical;
  position: relative;
  z-index: 1;
  background: transparent;
  border-color: transparent;
}
.form-field--message textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
.form-field__tips-in {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 0.875rem 1rem;
  font-family: var(--ed-font-body);
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  border: 1px solid transparent;
}
.form-field__tips-in span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.form-field--message.is-typing .form-field__tips-in {
  opacity: 0;
}
.form-field__tips-out {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}
.form-field--files {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.form-field__file-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.form-field__file-add {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ed-cream);
  font-family: var(--ed-font-body);
  font-size: 0.85rem;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.form-field__file-add:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}
.form-field__file-hint {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
}
.form-field__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-field__file-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field__file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-field__file-list li.is-error {
  color: #ef9a9a;
  border-color: rgba(244, 67, 54, 0.35);
}
.form-field__file-name {
  min-width: 0;
  word-break: break-word;
}
.form-field__file-remove {
  appearance: none;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--ed-font-body);
  font-size: 0.72rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.form-field__file-remove:hover {
  border-color: rgba(239, 154, 154, 0.7);
  color: #ef9a9a;
  background: rgba(244, 67, 54, 0.12);
}
.form-field--consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.form-field--consent input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--ed-terra-light);
  cursor: pointer;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-message {
  padding: 0.75rem;
  font-size: 0.85rem;
  border-radius: 4px;
}
.form-message--ok {
  background: rgba(76, 175, 80, 0.2);
  color: #a5d6a7;
}
.form-message--err {
  background: rgba(244, 67, 54, 0.2);
  color: #ef9a9a;
}
.btn--submit {
  align-self: flex-end;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   FOOTER BLANC (contenu original)
   ══════════════════════════════════════ */
.footer--light {
  background: var(--ft-bg);
  color: var(--ft-text);
  border-top: 1px solid var(--ft-border);
}
.footer--light .footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  .footer--light .footer__inner {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}
.footer--light .logo {
  color: var(--ft-text);
}
.footer--light .logo__name {
  font-family: var(--ed-font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.footer--light .logo__tagline {
  color: var(--ft-muted);
  font-size: 0.6rem;
}
.footer--light .logo__icon {
  color: var(--ft-text);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 576px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    justify-content: end;
  }
}
.footer--light .footer__col h4 {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ft-text);
  margin-bottom: 1rem;
}
.footer--light .footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer--light .footer__col a {
  font-size: 0.8125rem;
  color: var(--ft-muted);
}
.footer--light .footer__col a:hover {
  color: var(--ft-accent);
}
.footer--light .footer__bottom {
  border-top: 1px solid var(--ft-border);
  padding: 1.25rem 0;
}
.footer--light .footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: var(--ft-muted);
}
.footer__siret {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.625rem;
  opacity: 0.75;
  letter-spacing: 0.01em;
}
@media (min-width: 576px) {
  .footer--light .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Utilitaires */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.no-motion .reveal {
  opacity: 1;
  transform: none;
}
.section--hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .hero__features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
  }
  .hero__bubble {
    display: block;
    right: 2.5rem;
    bottom: 3rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--ease);
  }
  .header--immersive .nav {
    background: var(--imm-dark);
  }
  .header--editorial .nav {
    background: var(--ed-cream);
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  body.nav-open {
    overflow: hidden;
  }
  .ed-intro-band__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ed-intro-band__media {
    order: -1;
  }
  .ed-intro-band__media img {
    min-height: 45vh;
  }
  .ed-intro-band__text {
    max-width: none;
    padding: 3rem 1.5rem 4rem;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 1.25rem;
  }
  .logo {
    gap: 0.6rem;
  }
  .logo__mark {
    width: 44px;
    height: 44px;
  }
  .logo__name {
    font-size: 0.62rem;
    letter-spacing: 0.055em;
  }
  .logo__tagline {
    font-size: 0.5rem;
  }
  .zone-immersive .hero .ed-title {
    font-size: 2.2rem;
    line-height: 1.08;
    max-width: 22rem;
  }
  .zone-immersive .hero .ed-lead {
    max-width: 21rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
  }
  .hero__content {
    padding-bottom: 5rem;
  }
  .hero__media img {
    object-position: 58% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
