/* ============================================================================
   FELDOR — Site vitrine  ·  site.css
   ========================================================================== */

/* ============================================== HEADER (v3 — double barre B2B) */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
/* Bandeau d'annonce présent : le header fixe descend sous la bannière (base.css). */
html.has-announce .header { top: var(--announce-h); }

/* — Barre utilitaire fine — */
.topbar {
  background: rgba(10, 7, 3, .42);
  border-bottom: 1px solid rgba(201, 163, 93, .16);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  overflow: hidden; max-height: 46px;
  transition: max-height .45s var(--ease), opacity .35s, border-color .4s;
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 42px; }
.topbar__left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.topbar__item, .topbar__loc, .topbar__pro {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
  color: rgba(247, 242, 233, .82); transition: color .3s; white-space: nowrap;
}
.topbar__item svg, .topbar__loc svg, .topbar__pro svg { width: 14px; height: 14px; color: var(--gold-soft); flex: 0 0 auto; }
.topbar__loc { color: rgba(247, 242, 233, .58); overflow: hidden; text-overflow: ellipsis; }
.topbar__phone:hover, .topbar__pro:hover { color: #fff; }
.topbar__pro { font-weight: 700; letter-spacing: .04em; }
.topbar__pro svg { width: 13px; height: 13px; transition: transform .3s; }
.topbar__pro:hover svg { transform: translateX(3px); }

/* — Barre principale — */
.header__bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 18px; transition: padding .4s var(--ease); }
.header__brand { color: var(--cream); z-index: 2; }
.nav { display: flex; align-items: center; gap: 10px; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  position: relative; padding: 9px 15px; font-size: 14px; font-weight: 600;
  color: rgba(247, 242, 233, .86); border-radius: 999px; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 1.5px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__idx, .nav__mobile { display: none; }     /* visibles uniquement dans le tiroir mobile */
.nav__cta { margin-left: 6px; }
.nav__cta .btn { padding: 12px 22px; font-size: 13.5px; }

/* — Menu déroulant Produits (desktop) — */
.nav__has-drop { position: relative; display: inline-flex; }
.nav__has-drop > .nav__drop-trigger { display: inline-flex; align-items: center; }
.nav__caret { width: 12px; height: 12px; margin-left: 4px; opacity: .65; transition: transform .3s var(--ease); }
.nav__has-drop:hover .nav__caret, .nav__has-drop:focus-within .nav__caret { transform: rotate(180deg); opacity: 1; }
/* pont invisible pour ne pas perdre le survol entre le lien et le panneau */
.nav__has-drop::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav__drop {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 262px; padding: 10px; border-radius: 16px; z-index: 60;
  background: rgba(249, 245, 237, .98); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--line-strong); box-shadow: 0 24px 60px -22px rgba(47,36,24,.42), 0 1px 0 rgba(255,255,255,.5) inset;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .26s var(--ease), transform .26s var(--ease);
}
.nav__has-drop:hover .nav__drop, .nav__has-drop:focus-within .nav__drop {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__drop a {
  display: block; padding: 11px 15px; border-radius: 10px; font-size: 14px; font-weight: 600;
  color: var(--ink-soft) !important; transition: background .2s, color .2s, padding-left .2s;
}
.nav__drop a::after { display: none !important; }
.nav__drop a:hover { background: var(--cream-2); color: var(--espresso) !important; padding-left: 19px; }
.nav__drop .nav__drop-all { margin-top: 5px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--wood-deep) !important; font-weight: 700; }

/* — Burger — */
.burger { display: none; width: 44px; height: 44px; z-index: 2; border-radius: 12px; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s, background .3s; }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span { background: var(--cream) !important; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* — État condensé : la barre utilitaire se replie, le reste passe en crème — */
.header.condensed {
  background: rgba(247, 242, 233, .85);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(216, 201, 176, .6), 0 14px 40px -28px rgba(47, 36, 24, .5);
}
.header.condensed .topbar { max-height: 0; opacity: 0; border-color: transparent; }
.header.condensed .header__bar { padding-block: 11px; }
.header.condensed .brand__name { color: var(--espresso); }
.header.condensed .nav__links a { color: var(--ink-soft); }
.header.condensed .nav__links a:hover { color: var(--espresso); }
.header.condensed .burger span { background: var(--espresso); }

/* — Menu mobile ouvert : marque + X lisibles sur le tiroir sombre — */
body.nav-open .header { background: transparent; box-shadow: none; }
body.nav-open .header.condensed { backdrop-filter: none; -webkit-backdrop-filter: none; }
body.nav-open .header .brand__name { color: var(--cream); }
body.nav-open .topbar { max-height: 0; opacity: 0; border-color: transparent; }

/* — Pages claires (configurateur…) : header lisible dès le haut, sans héro sombre — */
body.page-light .header {
  background: rgba(247, 242, 233, .9);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(216, 201, 176, .6), 0 14px 40px -28px rgba(47, 36, 24, .5);
}
body.page-light .header .brand__name { color: var(--espresso); }
body.page-light .header .nav__links a { color: var(--ink-soft); }
body.page-light .header .nav__links a:hover { color: var(--espresso); }
body.page-light .header .burger span { background: var(--espresso); }
body.page-light.nav-open .header .brand__name { color: var(--cream); }

/* ============================================================= HERO PHOTO */
.hero-photo { position: relative; transform-style: preserve-3d; }
.hero-photo__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--night-line); }
.hero-photo__img img { width: 100%; display: block; }
.hero-photo [data-shine] { position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none; }
.spec-tag { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px;
  border-radius: 13px; font-size: 13px; font-weight: 700; color: var(--ink); background: var(--paper);
  box-shadow: var(--shadow-lg); white-space: nowrap; transform: translateZ(55px); }
.spec-tag .dotg { width: 9px; height: 9px; border-radius: 50%; background: var(--grad-gold); box-shadow: 0 0 10px rgba(201,163,93,.8); }
.spec-tag b { font-family: var(--serif); font-weight: 600; color: var(--wood-deep); font-size: 15px; }
.spec-tag--1 { top: 7%; left: -6%; }
.spec-tag--2 { bottom: 16%; right: -6%; }
.spec-tag--3 { bottom: -3%; left: 12%; }

/* ====================================================== EXPLAIN / SCHÉMA */
.explain__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.diagram { position: relative; padding: 18px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--paper), var(--cream-2)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.diagram svg { width: 100%; height: auto; display: block; }
.explain__points { display: grid; gap: 16px; margin-top: 28px; }
.explain__point { display: flex; gap: 15px; align-items: flex-start; }
.explain__point .n { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font-weight: 800; font-size: 14px; color: #241809; background: var(--grad-gold); box-shadow: 0 8px 18px -8px rgba(201,163,93,.6); }
.explain__point h4 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.explain__point p { font-size: 14.5px; color: var(--ink-soft); }

/* ====================================================== PRODUITS (photos) */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.product-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.product-card__img { aspect-ratio: 4/3; overflow: hidden; background: #0c0804; position: relative; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__tag { position: absolute; top: 13px; left: 13px; font-size: 10.5px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #241809; background: var(--grad-gold); padding: 5px 11px; border-radius: 999px; box-shadow: 0 8px 18px -8px rgba(0,0,0,.5); }
.product-card__body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.product-card__body h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin-bottom: 8px; }
.product-card__body p { font-size: 14px; color: var(--ink-soft); }
.specs { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.specs span { font-size: 11.5px; font-weight: 600; color: var(--wood-deep); padding: 5px 11px; border-radius: 999px;
  background: rgba(201,163,93,.1); box-shadow: inset 0 0 0 1px rgba(201,163,93,.22); }

/* ====================================================== SAVOIR-FAIRE media */
.media-collage { position: relative; padding-bottom: 30px; padding-right: 26px; }
.media-collage__main { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--night-line); box-shadow: var(--shadow-lg); }
.media-collage__main img { width: 100%; display: block; }
.media-collage__sub { position: absolute; bottom: 0; right: 0; width: 50%; border-radius: 16px; overflow: hidden;
  border: 4px solid var(--night); box-shadow: var(--shadow-lg); }
.media-collage__sub img { width: 100%; display: block; }
.media-collage__badge { position: absolute; top: 18px; left: -16px; padding: 12px 18px; border-radius: 14px;
  background: var(--grad-gold); color: #241809; box-shadow: var(--shadow-lg); }
.media-collage__badge b { display: block; font-family: var(--serif); font-size: 22px; line-height: 1; }
.media-collage__badge span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* ====================================================== CONTACT photo */
.contact-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--night-line); margin-bottom: 24px; box-shadow: var(--shadow); }
.contact-photo img { width: 100%; display: block; }

/* ====================================================== ENTREPRISE (photo + atouts) */
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 5 / 4; }
.media-frame__badge {
  position: absolute; left: 18px; bottom: 18px; padding: 12px 18px; border-radius: 14px;
  background: var(--grad-gold); color: #241809; box-shadow: var(--shadow-lg);
}
.media-frame__badge b { display: block; font-family: var(--serif); font-size: 26px; line-height: 1; }
.media-frame__badge span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.about-points {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(34px, 4vw, 52px); border-top: 1px solid var(--line);
}
.about-points li { display: flex; flex-direction: column; }
.about-points .ico {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: var(--wood-deep);
  background: linear-gradient(160deg, var(--paper), var(--cream-2)); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.about-points .ico svg { width: 23px; height: 23px; }
.about-points h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.about-points p { font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 980px) {
  .explain__grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .header__phone { display: none; }
}
@media (max-width: 600px) {
  .products { grid-template-columns: 1fr; }
  .spec-tag { font-size: 12px; padding: 9px 13px; }
  .spec-tag--1 { left: 0; } .spec-tag--2 { right: 0; }
  .media-collage { padding-right: 0; }
  .media-collage__sub { position: relative; width: 70%; margin: -24px auto 0; }
}

/* ---------------------------------------------------------------- Wordmark */
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.wordmark .dot { color: var(--wood); }
.wordmark--sm { font-size: 20px; }
.wordmark sub {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--ink-faint);
  margin-left: .9em;
  bottom: 0;
}

/* Header & nav : voir le bloc « HEADER (v3 — double barre B2B) » en haut du fichier. */

/* ===================================================================== HERO */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--night-2);
  color: var(--cream);
  overflow: hidden;
  padding: 116px 0 92px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__bg { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,6,3,.95) 0%, rgba(9,6,3,.78) 36%, rgba(9,6,3,.34) 70%, rgba(9,6,3,.10) 100%),
    linear-gradient(0deg, rgba(9,6,3,.92) 0%, rgba(9,6,3,.30) 36%, transparent 62%),
    linear-gradient(180deg, rgba(9,6,3,.70) 0%, transparent 24%);
}
.hero__dust { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero__inner {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; gap: 38px;
  width: min(var(--maxw), 100% - 48px); margin-inline: auto;
}
.hero__copy { max-width: 860px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 16px; border-radius: 999px;
  background: rgba(201,163,93,.10); border: 1px solid var(--night-line);
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--gold-soft);
  margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero__badge b { background: var(--grad-gold); color: #1c1409; padding: 4px 11px; border-radius: 999px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 {
  font-size: clamp(37px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -.015em;
  text-wrap: balance;
  margin-bottom: 22px;
  text-shadow: 0 2px 32px rgba(0,0,0,.5);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__lead { font-size: clamp(16px, 1.45vw, 19px); line-height: 1.62; text-wrap: pretty; color: rgba(247,242,233,.82); max-width: 600px; margin-bottom: 34px; text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.hero__lead strong { color: var(--gold-soft); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__stats { display: flex; gap: 44px; flex-wrap: wrap; border-top: 1px solid rgba(201,163,93,.20); padding-top: 22px; }
.hero__stats .m b { display: block; font-family: var(--serif); font-size: 32px; color: var(--gold-soft); line-height: 1; }
.hero__stats .m span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,242,233,.55); }

/* Châssis flottant (mockup CSS) */
.hero__art { position: relative; perspective: 1400px; }
.frame-card {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(58,44,29,.55), rgba(18,13,7,.65));
  border: 1px solid var(--night-line);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.04);
  padding: 22px; backdrop-filter: blur(6px);
  transform-style: preserve-3d;
}
.frame-card img { border-radius: 14px; width: 100%; box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.frame-card [data-shine] { position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none; }
.frame-card__tag {
  position: absolute; bottom: -18px; right: 22px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-radius: 14px;
  background: var(--paper); color: var(--ink);
  box-shadow: var(--shadow); font-size: 13px; font-weight: 700;
  transform: translateZ(60px);
}
.frame-card__tag b { font-family: var(--serif); font-size: 22px; color: var(--wood-deep); font-weight: 600; }
.frame-card__chip {
  position: absolute; top: -16px; left: 22px;
  padding: 9px 16px; border-radius: 12px;
  background: var(--grad-gold); color: #241809;
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  box-shadow: 0 14px 30px -12px rgba(201,163,93,.7);
  transform: translateZ(40px);
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: rgba(247,242,233,.5);
}
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold-soft), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-bright); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { top: -50%; } 100% { top: 100%; } }

/* ================================================================= MARQUEE */
.marquee {
  background: var(--espresso); color: var(--cream);
  padding: 22px 0; overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(201,163,93,.18);
}
.marquee__track { display: inline-flex; gap: 56px; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--serif); font-size: 26px; font-weight: 500; display: inline-flex; align-items: center; gap: 56px; color: rgba(247,242,233,.62); }
.marquee__track span::after { content: "✦"; color: var(--gold); font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================== LOGICIEL */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.device {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-strong); background: var(--paper);
  box-shadow: var(--shadow-lg);
}
.device__bar { display: flex; align-items: center; gap: 7px; padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--cream); }
.device__bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); display: block; }
.device__bar i:nth-child(1) { background: #e0a899; }
.device__bar i:nth-child(2) { background: #e6cd9a; }
.device__bar i:nth-child(3) { background: #b7cca6; }
.device__bar span { margin-left: 10px; font-size: 11.5px; color: var(--ink-faint); font-weight: 600; letter-spacing: .04em; }
.device img { width: 100%; }
.device__badge {
  position: absolute; bottom: 22px; left: -26px;
  padding: 14px 20px; border-radius: 16px; background: var(--espresso); color: var(--cream);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
}
.device__badge b { font-family: var(--serif); font-size: 26px; color: var(--gold-soft); font-weight: 600; }
.device__badge span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,242,233,.6); }

.feature-list { margin-top: 30px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .ico {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: var(--wood-deep);
  background: linear-gradient(160deg, var(--paper), var(--cream-2));
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.feature-list .ico svg { width: 22px; height: 22px; }
.feature-list h4 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.feature-list p { font-size: 14.5px; color: var(--ink-soft); }

/* =============================================================== FEATURES */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 58px;
}
.feature-card {
  position: relative; display: flex; flex-direction: column;
  padding: 40px 34px 32px; border-radius: var(--radius);
  background: linear-gradient(168deg, var(--paper) 0%, var(--cream) 100%);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .45s;
}
/* glow that follows the cursor */
.feature-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
  background: radial-gradient(440px circle at var(--mx,50%) var(--my,0%), rgba(201,163,93,.12), transparent 56%);
  opacity: 0; transition: opacity .45s;
}
/* hairline accent that draws across the top on hover */
.feature-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease);
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card .ico {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 24px; color: var(--walnut);
  background: radial-gradient(circle at 50% 32%, rgba(226,199,137,.20), rgba(201,163,93,.05));
  border: 1px solid rgba(201,163,93,.30);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s,
              box-shadow .5s var(--ease), transform .55s var(--ease);
}
.feature-card:hover .ico {
  background: var(--grad-gold); color: #2a1d10; border-color: transparent;
  box-shadow: 0 16px 34px -14px rgba(201,163,93,.7);
  transform: translateY(-2px);
}
.feature-card .ico svg { width: 25px; height: 25px; }
.feature-card h3 {
  font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1.12;
  letter-spacing: -.01em; margin-bottom: 11px;
}
.feature-card p { font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); }
.feature-card .fc-tag {
  margin-top: auto; padding-top: 18px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--wood-deep);
}
.feature-card .fc-tag::before {
  content: ""; display: block; width: 26px; height: 1px; margin-bottom: 14px;
  background: var(--line-strong); transition: width .55s var(--ease), background .45s;
}
.feature-card:hover .fc-tag { color: var(--wood-deep); }
.feature-card:hover .fc-tag::before { width: 44px; background: var(--gold); }

/* ================================================================ PROCESS */
.process { background: var(--grad-night); color: var(--cream); }
.process .eyebrow { color: var(--gold-soft); }
.process .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.process h2, .process .display { color: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.step {
  position: relative; padding: 30px 24px; border-radius: var(--radius);
  background: rgba(255,255,255,.025); border: 1px solid var(--night-line);
  transition: transform .5s var(--ease), background .4s;
}
.step:hover { transform: translateY(-6px); background: rgba(201,163,93,.06); }
.step__n {
  font-family: var(--serif); font-size: 52px; line-height: 1; font-weight: 500;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 18px; margin: 14px 0 8px; }
.step p { font-size: 14px; color: rgba(247,242,233,.62); }
.step::after {
  content: ""; position: absolute; top: 46px; right: -12px; width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step:last-child::after { display: none; }

/* ================================================================ GALLERY */
.gallery {
  display: grid; gap: 18px; margin-top: 56px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); cursor: pointer;
  background: var(--cream-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; inset: auto 0 0 0; padding: 40px 22px 18px;
  background: linear-gradient(transparent, rgba(26,19,11,.88));
  color: var(--cream); transform: translateY(8px); opacity: 0; transition: .45s var(--ease);
}
.gallery-item:hover .cap { transform: none; opacity: 1; }
.gallery-item .cap b { font-family: var(--serif); font-size: 19px; font-weight: 600; display: block; }
.gallery-item .cap span { font-size: 12px; color: rgba(247,242,233,.66); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

/* ================================================================== STATS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; }
.stat b {
  font-family: var(--serif); font-weight: 500; line-height: 1;
  font-size: clamp(40px, 5vw, 66px); display: block;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { display: block; margin-top: 12px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.stat + .stat { border-left: 1px solid var(--line); }

/* ==================================================================== CTA */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--grad-night); color: var(--cream);
  padding: clamp(50px, 7vw, 96px); text-align: center;
  border: 1px solid var(--night-line);
}
.cta__glow { position: absolute; width: 70%; height: 70%; top: -30%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,163,93,.4), transparent 65%); filter: blur(50px); }
.cta__inner { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; }
.cta h2 { font-size: clamp(34px, 4.6vw, 64px); margin-bottom: 18px; }
.cta p { color: rgba(247,242,233,.72); font-size: 17px; margin-bottom: 34px; }
.cta__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================= FOOTER */
.footer { background: var(--espresso-2); color: rgba(247,242,233,.7); padding: 80px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 50px; border-bottom: 1px solid rgba(201,163,93,.14); }
.footer__brand .wordmark { color: var(--cream); font-size: 24px; }
.footer__brand p { margin-top: 18px; max-width: 320px; font-size: 14.5px; line-height: 1.7; }
.footer__col h5 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; transition: color .25s, transform .25s; }
.footer__col a:hover { color: var(--cream); transform: translateX(3px); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px 28px; padding-top: 28px; font-size: 13px; color: rgba(247,242,233,.62); flex-wrap: wrap; }
.footer__copy { flex: 1 1 auto; }
.footer__legal { display: flex; align-items: center; gap: 6px 18px; flex-wrap: wrap; }
.footer__legal a, .footer__legal button {
  font-size: 13px; color: rgba(247,242,233,.6); transition: color .25s; padding: 0; letter-spacing: .01em;
}
.footer__legal a:hover, .footer__legal button:hover { color: var(--gold-soft); }
.footer__credit { color: rgba(247,242,233,.62); white-space: nowrap; }
.footer__credit a { color: rgba(247,242,233,.7); font-weight: 600; transition: color .25s; }
.footer__credit a:hover { color: var(--gold-soft); }
.footer__secure { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; letter-spacing: .04em; color: rgba(247,242,233,.55); transition: color .25s; white-space: nowrap; }
.footer__secure svg { width: 13px; height: 13px; color: var(--sauge, #6f8a5f); }
.footer__secure b { color: rgba(247,242,233,.78); font-weight: 700; letter-spacing: .06em; }
.footer__secure:hover { color: var(--gold-soft); }
@media (max-width: 760px) {
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__copy { flex-basis: 100%; text-align: center; }
  /* Cibles tactiles plus généreuses en pied de page sur mobile */
  .footer__col a { padding-top: 11px; padding-bottom: 11px; }
  .footer__legal a, .footer__legal button { padding-top: 10px; padding-bottom: 10px; }
}

/* =================================================== HERO — EMBLÈME PARECLOSE */
.emblem { position: relative; width: min(480px, 88vw); aspect-ratio: 1; margin-inline: auto; display: grid; place-items: center; transform-style: preserve-3d; }
.emblem__glow { position: absolute; inset: -8%; border-radius: 50%; background: radial-gradient(circle, rgba(201,163,93,.4), transparent 62%); filter: blur(36px); }
.emblem__plate {
  position: absolute; inset: 4%; border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, #b89163 0 7px, #a07c4d 7px 9px, #946f42 9px 11px),
    radial-gradient(circle at 38% 32%, #c9a35d, #6d4f33 70%);
  box-shadow:
    inset 0 0 0 2px rgba(247,242,233,.12),
    inset 0 14px 40px rgba(0,0,0,.45),
    inset 0 -10px 30px rgba(0,0,0,.4),
    0 50px 90px -30px rgba(0,0,0,.7);
}
.emblem__bevel { position: absolute; inset: 22%; border-radius: 50%;
  background: linear-gradient(145deg, #e2c789, #9c734a 60%, #5e4630);
  box-shadow: inset 0 6px 16px rgba(0,0,0,.4), inset 0 -4px 10px rgba(255,255,255,.12), 0 10px 30px -8px rgba(0,0,0,.6); }
.emblem__core { position: absolute; inset: 30%; border-radius: 50%; overflow: hidden;
  background: linear-gradient(145deg, #dfeaee 0%, #aec6cd 45%, #7d9aa3 100%);
  box-shadow: inset 0 0 0 6px rgba(94,70,48,.5), inset 0 10px 30px rgba(0,0,0,.25); }
.emblem__core::after { content: ""; position: absolute; top: -30%; left: -10%; width: 80%; height: 160%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%); transform: rotate(8deg); }
.emblem__tag {
  position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px; border-radius: 13px; font-size: 13px; font-weight: 700; color: var(--ink);
  background: var(--paper); box-shadow: var(--shadow-lg); transform: translateZ(60px); white-space: nowrap;
}
.emblem__tag .dotg { width: 9px; height: 9px; border-radius: 50%; background: var(--grad-gold); box-shadow: 0 0 10px rgba(201,163,93,.8); }
.emblem__tag b { font-family: var(--serif); font-weight: 600; color: var(--wood-deep); font-size: 15px; }
.emblem__tag--1 { top: 6%; left: -6%; }
.emblem__tag--2 { bottom: 14%; right: -8%; }
.emblem__tag--3 { bottom: -2%; left: 12%; }

/* =================================================== PRODUITS — specs */
.feature-card .specs { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.feature-card .specs span {
  font-size: 11.5px; font-weight: 600; color: var(--wood-deep);
  padding: 5px 11px; border-radius: 999px; background: rgba(201,163,93,.1);
  box-shadow: inset 0 0 0 1px rgba(201,163,93,.22);
}
.feature-card .tagline { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--wood-deep); }

/* =================================================== MARCHÉS / APPLICATIONS */
.markets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.market {
  position: relative; padding: 26px 22px; border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.03); border: 1px solid var(--night-line);
  transition: transform .5s var(--ease), background .4s;
}
.market:hover { transform: translateY(-5px); background: rgba(201,163,93,.06); }
.market .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--gold-soft);
  background: rgba(201,163,93,.1); box-shadow: inset 0 0 0 1px var(--night-line); margin-bottom: 16px; }
.market .ico svg { width: 23px; height: 23px; }
.market h4 { font-size: 16px; color: var(--cream); margin-bottom: 5px; }
.market p { font-size: 13px; color: rgba(247,242,233,.6); }

/* =================================================== ESSENCES / MATIÈRES */
.essences { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 200px)); justify-content: center; gap: 16px; margin-top: 48px; }
.essence { text-align: center; }
.essence .chip {
  aspect-ratio: 1; border-radius: var(--radius); margin-bottom: 14px; position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(94,70,48,.18), var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.essence:hover .chip { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow); }
.essence .chip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,255,255,.22), transparent 50%); }
.essence b { display: block; font-family: var(--serif); font-size: 19px; font-weight: 600; }
.essence span { font-size: 12px; color: var(--ink-faint); }

/* =================================================== CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.contact-info .line { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--night-line); }
.contact-info .line:last-child { border-bottom: none; }
.contact-info .ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  color: var(--gold-soft); background: rgba(201,163,93,.1); box-shadow: inset 0 0 0 1px var(--night-line); }
.contact-info .ico svg { width: 22px; height: 22px; }
.contact-info .k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,242,233,.5); }
.contact-info .v { font-size: 17px; color: var(--cream); font-weight: 600; margin-top: 2px; }
.contact-info .v a { transition: color .2s; }
.contact-info .v a:hover { color: var(--gold-bright); }
.contact-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--night-line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-lg);
}
.contact-card h3 { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--cream); margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: rgba(247,242,233,.62); margin-bottom: 22px; }
.contact-card .field label { display: block; font-size: 12px; font-weight: 700; color: rgba(247,242,233,.7); margin-bottom: 7px; }
.contact-card .field { margin-bottom: 14px; }
.contact-card input, .contact-card textarea {
  width: 100%; border: 1.5px solid var(--night-line); background: rgba(0,0,0,.25); border-radius: 11px;
  padding: 13px 15px; font-size: 14.5px; color: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.contact-card input::placeholder, .contact-card textarea::placeholder { color: rgba(247,242,233,.6); }
.contact-card input:focus, .contact-card textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,163,93,.14); }
.contact-card textarea { resize: vertical; min-height: 110px; }

/* ============================================================== RESPONSIVE */
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .hero__inner { gap: 40px; }
  .markets { grid-template-columns: repeat(2, 1fr); }
  .essences { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }

  /* Le menu déroulant devient un simple lien vers la page récap dans le tiroir */
  .nav__has-drop { display: block; width: 100%; }
  .nav__drop, .nav__caret { display: none !important; }

  /* ---- Tiroir mobile : panneau plein écran éditorial sombre ---- */
  .nav[data-nav] {
    position: fixed; inset: 0; z-index: 1;
    display: flex; flex-direction: column; justify-content: center; gap: 0;
    padding: 104px 28px max(34px, env(safe-area-inset-bottom));
    background:
      radial-gradient(135% 80% at 90% 0%, rgba(201,163,93,.16), transparent 50%),
      radial-gradient(130% 95% at 45% 120%, #241a0f 0%, #140e07 52%, #0a0603 100%);
    opacity: 0; pointer-events: none; transition: opacity .45s var(--ease);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .nav[data-nav].open { opacity: 1; pointer-events: auto; }

  .nav[data-nav].open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    width: 100%; max-width: 440px; margin: 0 auto;
  }
  .nav[data-nav].open .nav__links a {
    display: flex; align-items: baseline; gap: 18px;
    font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1; color: var(--cream); padding: 20px 4px; border-radius: 0;
    border-bottom: 1px solid rgba(201, 163, 93, .16);
  }
  .nav[data-nav].open .nav__links a::after { display: none; }
  .nav[data-nav].open .nav__links a:hover,
  .nav[data-nav].open .nav__links a:active { color: var(--gold-soft); }
  .nav[data-nav].open .nav__idx {
    display: inline-block; min-width: 26px; transform: translateY(-2px);
    font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .08em; color: var(--gold);
  }

  .nav[data-nav].open .nav__cta { display: block; width: 100%; max-width: 440px; margin: 30px auto 0; }
  .nav[data-nav].open .nav__cta .btn { width: 100%; padding: 17px 30px; font-size: 15px; }

  .nav__mobile {
    width: 100%; max-width: 440px; margin: 24px auto 0;
    display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center;
  }
  .nav__tel { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--gold-soft); }
  .nav__tel svg { width: 19px; height: 19px; color: var(--gold); }
  .nav__addr { font-size: 12.5px; letter-spacing: .02em; color: rgba(247, 242, 233, .5); }
  .nav__prolink {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
    padding: 9px 18px; border-radius: 999px; font-size: 12px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft);
    border: 1px solid rgba(201, 163, 93, .32); transition: background .3s, color .3s;
  }
  .nav__prolink svg { width: 13px; height: 13px; transition: transform .3s; }
  .nav__prolink:hover, .nav__prolink:active { background: rgba(201, 163, 93, .12); color: var(--gold-bright); }
  .nav__prolink:hover svg { transform: translateX(3px); }

  /* entrée en cascade des éléments du tiroir */
  .nav[data-nav] .nav__links a,
  .nav[data-nav] .nav__cta,
  .nav[data-nav] .nav__mobile {
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .nav[data-nav].open .nav__links a,
  .nav[data-nav].open .nav__cta,
  .nav[data-nav].open .nav__mobile { opacity: 1; transform: none; }
  .nav[data-nav].open .nav__links a:nth-child(1) { transition-delay: .08s; }
  .nav[data-nav].open .nav__links a:nth-child(2) { transition-delay: .13s; }
  .nav[data-nav].open .nav__links a:nth-child(3) { transition-delay: .18s; }
  .nav[data-nav].open .nav__links a:nth-child(4) { transition-delay: .23s; }
  .nav[data-nav].open .nav__links a:nth-child(5) { transition-delay: .28s; }
  .nav[data-nav].open .nav__cta { transition-delay: .34s; }
  .nav[data-nav].open .nav__mobile { transition-delay: .40s; }

  .topbar__loc { display: none; }
  .topbar__in { height: 38px; }
  .hero__inner { gap: 30px; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .device__badge { left: 16px; }

  .contact-grid { grid-template-columns: 1fr; }
  .emblem { width: min(420px, 80vw); }
  .emblem__tag { font-size: 12px; padding: 9px 13px; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.big, .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }

  /* Rythme vertical resserré dès qu'on rétrécit la fenêtre desktop */
  .section { padding: clamp(58px, 8vw, 104px) 0; }
  .features-grid, .products { margin-top: 40px; }
  .steps, .markets, .essences { margin-top: 40px; }
  .feature-list { margin-top: 24px; }
}
@media (max-width: 600px) {
  .features-grid, .steps, .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--line); }
  .hero { padding: 104px 0 72px; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero__stats { gap: 24px; padding-top: 18px; }
  .hero__stats .m b { font-size: 26px; }
  .marquee__track span { font-size: 20px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.big, .gallery-item.wide { grid-column: span 1; }
  .footer__top { grid-template-columns: 1fr; gap: 0; padding-bottom: 24px; }
  .footer__brand { margin-bottom: 26px; }
  /* --- Colonnes repliables (accordéon), fermées par défaut --- */
  .footer__col { border-top: 1px solid rgba(201,163,93,.14); }
  .footer__acc-head[role="button"] {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-bottom: 0 !important; padding: 16px 2px; cursor: pointer;
    -webkit-user-select: none; user-select: none;
  }
  .footer__acc-head[role="button"]::after {
    content: ""; flex: none; width: 8px; height: 8px; margin-right: 4px;
    border-right: 2px solid var(--gold-soft); border-bottom: 2px solid var(--gold-soft);
    transform: translateY(-2px) rotate(45deg); transition: transform .3s ease;
  }
  .footer__col.is-open .footer__acc-head[role="button"]::after { transform: translateY(2px) rotate(-135deg); }
  .footer__acc-head[role="button"]:focus-visible {
    outline: 2px solid var(--gold-soft); outline-offset: 3px; border-radius: 4px;
  }
  .footer__acc-panel { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
  .footer__col.is-open .footer__acc-panel { max-height: 340px; }
  .footer__acc-panel a:last-child { margin-bottom: 8px; }
  .scroll-cue { display: none; }
  .markets { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; gap: 18px; }
  .essences { grid-template-columns: repeat(2, 1fr); }
  .emblem__tag--1 { left: 0; }
  .emblem__tag--2 { right: 0; }

  /* Encore plus compact sous 600px + gouttière un peu plus généreuse en contenu */
  .section { padding: 52px 0; }
  .features-grid, .products, .steps, .markets, .essences { margin-top: 30px; }
  .section-head .lead { font-size: 15.5px; }
  .container, .hero__inner, .container-wide { width: min(var(--maxw), 100% - 40px); }
}
@media (max-width: 400px) {
  .section { padding: 46px 0; }
  .container, .hero__inner, .container-wide { width: min(var(--maxw), 100% - 32px); }
}

/* Tiroir mobile sur écrans peu hauts : on compacte pour éviter tout débordement */
@media (max-width: 920px) and (max-height: 700px) {
  .nav[data-nav] { justify-content: flex-start; padding-top: 92px; }
  .nav[data-nav].open .nav__links a { font-size: 24px; padding: 14px 4px; }
  .nav[data-nav].open .nav__cta { margin-top: 20px; }
  .nav__mobile { margin-top: 16px; }
  .nav__tel { font-size: 22px; }
}
