/* ==========================================================================
   DYNAFOND — Feuille de style moderne
   Fonderie d'aluminium sous pression — Étrepagny (27)
   Palette de marque : orange #ef6a01 + anthracite, ambiance industrielle.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --orange:        #ef6a01;
  --orange-600:    #d35e00;
  --orange-soft:   #fff3e9;
  --ink:           #18181a;
  --charcoal:      #26262a;
  --charcoal-2:    #34343a;
  --steel:         #6b7280;
  --steel-light:   #9aa1ab;
  --line:          #e6e8ec;
  --mist:          #f4f5f7;
  --mist-2:        #eceef1;
  --white:         #ffffff;

  --radius:        16px;
  --radius-sm:     10px;
  --radius-lg:     24px;
  --shadow-sm:     0 1px 2px rgba(16,18,22,.06), 0 1px 3px rgba(16,18,22,.05);
  --shadow:        0 6px 18px rgba(16,18,22,.08), 0 2px 6px rgba(16,18,22,.04);
  --shadow-lg:     0 20px 50px rgba(16,18,22,.14);

  --container:     1200px;
  --font-head:     'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease:          cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 600; letter-spacing: -.02em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--charcoal); color: #e9eaee; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: var(--ink); }
.section--ink .section-title { color: #fff; }
.lead { font-size: 1.075rem; color: var(--steel); max-width: 60ch; }
.section--ink .lead { color: #b9bcc4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  transition: all .25s var(--ease); cursor: pointer; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(239,106,1,.28); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(239,106,1,.36); }
.btn-outline { border-color: rgba(255,255,255,.25); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 46px; width: auto; border-radius: 6px; }
.brand .brand-tag { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-tag b { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .02em; color: var(--ink); }
.brand .brand-tag span { font-size: .72rem; color: var(--steel); letter-spacing: .03em; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-size: .92rem; font-weight: 500; color: var(--charcoal);
  padding: 9px 14px; border-radius: 8px; transition: all .2s var(--ease); position: relative;
}
.nav-menu a:hover { color: var(--orange); background: var(--orange-soft); }
.nav-menu a.active { color: var(--orange); }
.nav-menu a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--orange); border-radius: 2px;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; gap: 6px; align-items: center; }
.lang a { display: inline-flex; opacity: .55; transition: opacity .2s, transform .2s; }
.lang a:hover { opacity: 1; transform: translateY(-1px); }
.lang a.is-current { opacity: 1; }
.lang img { height: 16px; width: 24px; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow-sm); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .25s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ==========================================================================
   HERO (accueil)
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(239,106,1,.16), transparent 60%),
    linear-gradient(160deg, #1c1c20 0%, #2a2a30 55%, #232327 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; padding: 86px 0 92px; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); line-height: 1.06; color: #fff; }
.hero h1 .hl { color: var(--orange); }
.hero p.hero-sub { margin-top: 22px; font-size: 1.12rem; color: #c7cad1; max-width: 52ch; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 40px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { font-family: var(--font-head); font-size: 1.7rem; color: #fff; }
.hero-meta span { font-size: .82rem; color: #9498a1; text-transform: uppercase; letter-spacing: .08em; }

.hero-media { position: relative; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster {
  position: absolute; inset: 0; cursor: pointer; border: 0; padding: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center; display: grid; place-items: center;
}
.video-poster::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,15,18,.5), rgba(15,15,18,.15)); }
.video-poster .play {
  position: relative; z-index: 2; width: 78px; height: 78px; border-radius: 50%;
  background: var(--orange); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(239,106,1,.5);
  transition: transform .25s var(--ease);
}
.video-poster:hover .play { transform: scale(1.08); }
.video-poster .play svg { width: 28px; height: 28px; margin-left: 4px; fill: #fff; }
.video-caption { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-size: .85rem; font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,.6); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,.06); }
.trustbar .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-block: 22px; }
.trustbar span { color: #8b8f98; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-head); }
.trustbar ul { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.trustbar ul li { color: #cfd2d8; font-weight: 600; font-family: var(--font-head); display: flex; align-items: center; gap: 9px; }
.trustbar ul li svg { width: 18px; height: 18px; stroke: var(--orange); }

/* ==========================================================================
   PAGE HERO (intérieures)
   ========================================================================== */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(160deg, #1c1c20, #2c2c32);
}
.page-hero .bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .28; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,24,.92), rgba(20,20,24,.55)); }
.page-hero .container { position: relative; z-index: 2; padding-block: 64px 60px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #b9bcc4; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; }
.page-hero p { margin-top: 12px; color: #c7cad1; max-width: 58ch; }

/* ==========================================================================
   CARTES / GRILLES
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card .ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--orange-soft); color: var(--orange); margin-bottom: 18px;
}
.service-card .ico svg { width: 28px; height: 28px; stroke: var(--orange); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--steel); font-size: .96rem; }
.service-card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--orange); font-weight: 600; font-size: .9rem; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.service-card:hover .more svg { transform: translateX(4px); }

/* ---------- Présentation accueil ---------- */
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.intro-copy p { margin-bottom: 16px; color: #3f4148; }
.intro-copy p strong { color: var(--ink); font-weight: 700; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.intro-media .map-chip {
  position: absolute; bottom: -22px; right: -16px; background: #fff; padding: 12px;
  border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--line); max-width: 190px;
}
.intro-media .map-chip img { border-radius: 8px; box-shadow: none; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.stat b { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--orange); display: block; }
.stat span { color: var(--steel); font-size: .9rem; margin-top: 4px; display: block; }

/* ---------- Badges / certifications ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: center; }
.badges img { height: 96px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.08)); transition: transform .25s; }
.badges img:hover { transform: translateY(-3px); }
.badges--sm img { height: 64px; }

/* ---------- Clients ---------- */
.client-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.client-grid li {
  display: grid; place-items: center; padding: 30px 22px; min-height: 130px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.client-grid img { max-height: 56px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .68; transition: all .3s var(--ease); }
.client-grid li:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }

/* ==========================================================================
   GALERIES + LIGHTBOX
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; position: relative; background: var(--mist-2); }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a::after {
  content: ""; position: absolute; inset: 0; background: rgba(24,24,26,.0); transition: background .3s;
}
.gallery a:hover::after { background: rgba(239,106,1,.14); }

.lightbox {
  position: fixed; inset: 0; z-index: 1000; background: rgba(15,15,18,.92);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.1); border: 0; color: #fff; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lightbox .lb-close { top: 22px; right: 24px; width: 46px; height: 46px; font-size: 1.5rem; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 1.8rem; }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox button:hover { background: var(--orange); }

/* ==========================================================================
   MOYENS DE PRODUCTION — capacités
   ========================================================================== */
.capability { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: 30px; }
.capability:nth-child(even) .cap-media { order: 2; }
.cap-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cap-head .num { font-family: var(--font-head); font-weight: 700; color: var(--orange); font-size: 1rem; background: var(--orange-soft); width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; }
.cap-head h3 { font-size: 1.5rem; }
.cap-list li { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); color: #3f4148; }
.cap-list li svg { width: 20px; height: 20px; stroke: var(--orange); flex: none; margin-top: 2px; }
.cap-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cap-media img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-sm); width: 100%; }
.cap-media img:first-child:nth-last-child(1) { grid-column: span 2; }

/* ==========================================================================
   ALLIAGES — tableau
   ========================================================================== */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: #3f4148; padding: 6px 0; }
.feature-list li svg { width: 20px; height: 20px; stroke: var(--orange); flex: none; margin-top: 3px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
table.data { width: 100%; border-collapse: collapse; min-width: 640px; }
table.data th, table.data td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .94rem; }
table.data thead th { background: var(--charcoal); color: #fff; font-family: var(--font-head); font-weight: 600; letter-spacing: .01em; }
table.data thead th:first-child { border-top-left-radius: 0; }
table.data tbody th { font-weight: 700; color: var(--ink); background: var(--mist); white-space: nowrap; }
table.data tbody tr:hover td { background: var(--orange-soft); }
table.data td { color: #44464d; }
table.data .btn-mini { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 600; font-size: .85rem; border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; transition: all .2s; }
table.data .btn-mini:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* composition modal */
.compo-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.compo-table th, .compo-table td { padding: 9px 14px; border-bottom: 1px solid var(--line); font-size: .9rem; text-align: center; }
.compo-table th { background: var(--mist); font-family: var(--font-head); }
.compo-table td:first-child, .compo-table th:first-child { text-align: left; font-weight: 600; }

.modal { position: fixed; inset: 0; z-index: 1000; background: rgba(15,15,18,.7); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-card { background: #fff; border-radius: var(--radius); max-width: 460px; width: 100%; padding: 30px; box-shadow: var(--shadow-lg); max-height: 88vh; overflow: auto; }
.modal-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.modal-card .sub { color: var(--steel); font-size: .9rem; margin-bottom: 14px; }
.modal-card .x { float: right; border: 0; background: var(--mist); width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem; color: var(--steel); }
.modal-card .x:hover { background: var(--orange); color: #fff; }

/* ==========================================================================
   SAVOIR-FAIRE
   ========================================================================== */
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list li svg { width: 22px; height: 22px; flex: none; stroke: #fff; background: var(--orange); border-radius: 50%; padding: 4px; margin-top: 2px; }
.check-list li span strong { color: var(--ink); }

.pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pill { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; font-weight: 500; transition: all .25s var(--ease); }
.pill:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pill svg { width: 20px; height: 20px; stroke: var(--orange); flex: none; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ==========================================================================
   ACTUALITÉS — timeline
   ========================================================================== */
.timeline { position: relative; max-width: 860px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--orange), var(--line)); }
.t-item { position: relative; padding-left: 64px; padding-bottom: 38px; }
.t-item::before {
  content: ""; position: absolute; left: 14px; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 4px solid var(--orange); box-shadow: 0 0 0 4px var(--orange-soft);
}
.t-item .when { font-family: var(--font-head); font-weight: 600; color: var(--orange); font-size: .9rem; letter-spacing: .02em; }
.t-item .t-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-top: 8px; box-shadow: var(--shadow-sm); }
.t-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.t-item p { color: #44464d; font-size: .96rem; margin-bottom: 8px; }
.t-item p:last-child { margin-bottom: 0; }
.t-item .t-media { margin-top: 14px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.t-item .t-media img { width: 100%; }
.t-item.is-featured .t-card { border-color: var(--orange); background: linear-gradient(180deg, var(--orange-soft), #fff); }
.t-item a.ext { color: var(--orange); font-weight: 600; word-break: break-word; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.info-card { background: var(--charcoal); color: #e9eaee; border-radius: var(--radius-lg); padding: 36px; }
.info-card h2 { color: #fff; font-size: 1.5rem; margin-bottom: 22px; }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); align-items: flex-start; }
.info-row .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(239,106,1,.16); display: grid; place-items: center; }
.info-row .ic svg { width: 20px; height: 20px; stroke: var(--orange); }
.info-row .lbl { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: #8b8f98; }
.info-row .val { font-weight: 600; color: #fff; font-size: 1.02rem; }
.info-row .val a:hover { color: var(--orange); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--charcoal); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; background: var(--mist); transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--steel); margin-bottom: 18px; }
.consent input { margin-top: 3px; accent-color: var(--orange); width: 16px; height: 16px; flex: none; }
.form-note { font-size: .76rem; color: var(--steel-light); margin-top: 14px; line-height: 1.55; }
.form-success { display: none; background: #ecf7ee; border: 1px solid #b6e0bf; color: #1c7a34; padding: 14px 18px; border-radius: 12px; font-size: .92rem; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* legal */
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); max-width: 860px; }
.legal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.legal-meta div { background: var(--mist); border-radius: 12px; padding: 14px 18px; }
.legal-meta .lbl { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--steel); }
.legal-meta .val { font-weight: 600; color: var(--ink); }
.legal-card p { color: #44464d; }

/* download / financial sidebar pieces */
.doc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.doc-card { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; transition: all .25s var(--ease); }
.doc-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.doc-card .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--orange-soft); display: grid; place-items: center; }
.doc-card .ic svg { width: 22px; height: 22px; stroke: var(--orange); }
.doc-card b { font-family: var(--font-head); }
.doc-card span { display: block; font-size: .82rem; color: var(--steel); }

.year-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.year-chips a { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; font-family: var(--font-head); font-size: .9rem; transition: all .2s; background: #fff; }
.year-chips a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: #b9bcc4; padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 50px; border-radius: 8px; background: #fff; padding: 6px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; color: #8b8f98; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: .92rem; color: #a4a8b1; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; stroke: var(--orange); flex: none; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 24px 0; font-size: .85rem; color: #71757e; }
.footer-bottom a:hover { color: var(--orange); }
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(239,106,1,.4); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 90; border: 0; }
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); background: var(--orange-600); }
.to-top svg { width: 22px; height: 22px; stroke: #fff; }

/* ==========================================================================
   ANIMATIONS au scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 880px) {
  .nav-menu, .nav-right .lang { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 14px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-menu.open a { padding: 13px 16px; border-radius: 10px; }
  .nav-menu.open a.active::after { display: none; }
  .intro-grid, .split, .contact-grid, .capability, .capability:nth-child(even) .cap-media { grid-template-columns: 1fr; order: 0 !important; }
  .intro-media { max-width: 460px; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .field-row, .feature-list, .pill-grid, .legal-meta, .doc-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 18px; }
  .cap-media { grid-template-columns: 1fr 1fr; }
  .container { padding-inline: 18px; }
}
