/* =========================================================================
   NUAGE ET ACIER — Renaud BOHU
   Dessinateur-Projeteur Freelance · Métallerie & BIM
   Thème SOMBRE · fond dynamique · curseur réticule type AutoCAD/ZWCAD
   Police : Inter uniquement
   ========================================================================= */

/* ---------------------------------------------------------------- TOKENS */
:root {
  --orange: #FF6B00;
  --orange-soft: #FF853A;
  --orange-deep: #E25E00;
  --steel: #4682B4;
  --steel-bright: #6FA8DA;
  --steel-deep: #2F5E86;

  --bg: #0C0E11;
  --bg-2: #11141A;       /* sections alternées, légèrement plus claire */
  --surface: #15191F;    /* cartes */
  --surface-2: #1B2027;  /* survol / entêtes */

  --text: #EEF1F4;
  --text-soft: #A7B0BA;
  --text-faint: #6B7480;

  --line: rgba(110, 160, 205, 0.14);
  --line-strong: rgba(110, 160, 205, 0.30);
  --grid-minor: rgba(110, 160, 205, 0.045);
  --grid-major: rgba(110, 160, 205, 0.085);

  --white: #FFFFFF;
  --ink: #0C0E11;

  --grid-cell: 26px;
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);

  --r: 2px; /* coins quasi-vifs, esthétique technique */

  --t-fast: 140ms cubic-bezier(.4,0,.2,1);
  --t: 240ms cubic-bezier(.4,0,.2,1);

  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 18px 40px -22px rgba(0,0,0,.8);
}

/* ---------------------------------------------------------------- RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "tnum" 1, "ss01" 1, "cv05" 1;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: rgba(255,107,0,.3); color: #fff; }

/* =========================================================================
   FOND DYNAMIQUE
   - grille blueprint fixe
   - aurores dérivantes (steel + orange) en CSS, actives partout
   - halo qui suit le curseur (piloté en JS via --mx / --my)
   ========================================================================= */
.bg-layer {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(var(--grid-minor) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-minor) 1px, transparent 1px),
    linear-gradient(var(--grid-major) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-major) 1px, transparent 1px);
  background-size:
    var(--grid-cell) var(--grid-cell),
    var(--grid-cell) var(--grid-cell),
    calc(var(--grid-cell) * 5) calc(var(--grid-cell) * 5),
    calc(var(--grid-cell) * 5) calc(var(--grid-cell) * 5);
}
.bg-aurora {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5;
  will-change: transform;
}
.bg-aurora--steel {
  width: 52vw; height: 52vw; left: -8vw; top: -12vw;
  background: radial-gradient(circle at center, rgba(70,130,180,.42), transparent 62%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.bg-aurora--orange {
  width: 44vw; height: 44vw; right: -10vw; bottom: -14vw;
  background: radial-gradient(circle at center, rgba(255,107,0,.22), transparent 60%);
  animation: drift2 32s ease-in-out infinite alternate;
}
.bg-aurora--deep {
  width: 40vw; height: 40vw; right: 22vw; top: 32vh;
  background: radial-gradient(circle at center, rgba(47,94,134,.34), transparent 64%);
  animation: drift3 38s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(14vw, 12vh) scale(1.15); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1.05); } to { transform: translate(-12vw, -10vh) scale(.92); } }
@keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(-16vw, 8vh); } }

/* halo curseur : éclaire la grille autour du pointeur (desktop) */
.bg-spot {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%),
              rgba(111,168,218,.16), transparent 70%);
}
@media (hover: hover) and (pointer: fine) {
  .bg-spot { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .bg-aurora { animation: none !important; }
}

/* ---------------------------------------------------------------- LAYOUT */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { position: relative; z-index: 1; }
main, .footer, .nav { position: relative; z-index: 1; }

/* ----------------------------------------------- TECHNICAL LABEL */
.tlabel {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-bright);
  font-feature-settings: "tnum" 1;
}
.tlabel .idx { color: var(--orange); }

/* repère d'angle (crop marks) */
.cropmark { position: absolute; width: 14px; height: 14px; pointer-events: none; z-index: 2; }
.cropmark::before, .cropmark::after { content: ""; position: absolute; background: var(--line-strong); }
.cropmark::before { width: 100%; height: 1px; top: 0; }
.cropmark::after  { width: 1px; height: 100%; left: 0; }
.cropmark.tr { right: 0; transform: scaleX(-1); }
.cropmark.bl { bottom: 0; transform: scaleY(-1); }
.cropmark.br { right: 0; bottom: 0; transform: scale(-1,-1); }

.cross { position: absolute; width: 13px; height: 13px; pointer-events: none; z-index: 2; opacity: .7; }
.cross::before, .cross::after { content: ""; position: absolute; background: var(--steel); }
.cross::before { width: 100%; height: 1px; top: 50%; transform: translateY(-50%); }
.cross::after  { height: 100%; width: 1px; left: 50%; transform: translateX(-50%); }

/* =========================================================================
   CURSEUR RÉTICULE (type AutoCAD / ZWCAD)
   ========================================================================= */
.xhair { position: fixed; inset: 0; z-index: 9000; pointer-events: none; display: none; }
.xhair__h, .xhair__v { position: absolute; background: rgba(255,107,0,.55); box-shadow: 0 0 6px rgba(255,107,0,.35); }
.xhair__h { left: 0; right: 0; height: 1px; transform: translateY(var(--cy, -100px)); }
.xhair__v { top: 0; bottom: 0; width: 1px; transform: translateX(var(--cx, -100px)); }
.xhair__box {
  position: absolute; width: 16px; height: 16px; margin: -8px 0 0 -8px;
  border: 1px solid rgba(111,168,218,.9);
  transform: translate(var(--cx, -100px), var(--cy, -100px));
  background: rgba(111,168,218,.06);
}
.xhair__coord {
  position: absolute; transform: translate(var(--cx, -100px), var(--cy, -100px));
  margin: 14px 0 0 14px; padding: 3px 7px;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--steel-bright); background: rgba(12,14,17,.82);
  border: 1px solid var(--line-strong); border-radius: var(--r);
  font-feature-settings: "tnum" 1; white-space: nowrap;
}
/* on masque le curseur système quand le réticule est actif (desktop fine pointer) */
@media (hover: hover) and (pointer: fine) {
  html.xhair-on, html.xhair-on * { cursor: none !important; }
  html.xhair-on .xhair { display: block; }
}

/* ---------------------------------------------------------------- BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t), border-color var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px -10px rgba(255,107,0,.6); }
.btn--primary:hover { background: var(--orange-soft); box-shadow: 0 10px 28px -8px rgba(255,107,0,.7); }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost { background: rgba(255,255,255,.02); color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--steel-bright); background: rgba(111,168,218,.08); }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,14,17,.72);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(110,160,205,.12);
  transition: box-shadow var(--t), background var(--t);
}
.nav.scrolled { background: rgba(12,14,17,.9); box-shadow: 0 8px 26px -16px rgba(0,0,0,.8); }
.nav__row { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark { flex-shrink: 0; height: 42px; width: auto; display: block; }
.brand__name { display: flex; flex-direction: column; line-height: 1.0; }
.brand__name b { font-weight: 800; letter-spacing: 0.07em; font-size: 1rem; display: block; }
.brand__name .ln1 { color: var(--orange); }
.brand__name .ln2 { color: var(--white); }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 8px 14px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,.72);
  border-radius: var(--r); position: relative; transition: color var(--t); white-space: nowrap;
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--white); }
.nav__links a.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--orange); }
.nav__cta { margin-left: 8px; }
.nav__cta-mobile { display: none; }
.avail-pill {
  display: inline-flex; align-items: center; gap: 8px; line-height: 1;
  padding: 6px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,.82);
}
.avail-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2BD07A;
  box-shadow: 0 0 0 0 rgba(43,208,122,.5); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,208,122,.5); }
  70% { box-shadow: 0 0 0 7px rgba(43,208,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,208,122,0); }
}
.burger { display: none; margin-left: auto; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); position: relative; }
.burger span, .burger::before, .burger::after {
  content: ""; position: absolute; left: 11px; right: 11px; height: 2px; background: var(--white);
  transition: transform var(--t), opacity var(--t-fast);
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger::before { top: 13px; }
.burger::after { bottom: 13px; }
.burger.open span { opacity: 0; }
.burger.open::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open::after { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { padding-top: clamp(48px, 9vw, 110px); padding-bottom: clamp(56px, 9vw, 120px); position: relative; }
.hero__inner { position: relative; }
.hero__kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero__kicker .rule { height: 1px; flex: 0 0 56px; background: var(--orange); }

.hero h1 {
  font-size: clamp(2.7rem, 8.2vw, 6rem);
  font-weight: 800; line-height: 0.98; letter-spacing: -0.035em;
  text-wrap: balance; margin-bottom: 8px;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .steel { color: var(--steel-bright); }

.hero__role {
  font-size: clamp(1.05rem, 2.4vw, 1.5rem); font-weight: 500; color: var(--text-soft);
  margin-top: 22px; max-width: 40ch;
}
.hero__role b { color: var(--text); font-weight: 700; }

.diff { margin-top: 38px; display: inline-flex; align-items: center; position: relative; }
.diff__line { display: flex; align-items: center; gap: 0; }
.tick { width: 1px; height: 22px; background: var(--steel-bright); flex-shrink: 0; }
.diff__bar { height: 1px; background: var(--steel-bright); flex: 1; min-width: 22px; position: relative; }
.diff__bar::before, .diff__bar::after {
  content: ""; position: absolute; top: 50%; width: 6px; height: 6px;
  border-top: 1px solid var(--steel-bright); border-right: 1px solid var(--steel-bright);
}
.diff__bar::before { left: 0; transform: translateY(-50%) rotate(-135deg); }
.diff__bar::after  { right: 0; transform: translateY(-50%) rotate(45deg); }
.diff__text { padding: 8px 16px; font-weight: 700; font-size: clamp(.95rem, 2vw, 1.15rem); color: var(--text); white-space: nowrap; }
.diff__text em { font-style: normal; color: var(--orange); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }

.hero__specs {
  margin-top: 54px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); box-shadow: var(--shadow); overflow: hidden;
}
.spec { padding: 20px 22px; position: relative; }
.spec + .spec { border-left: 1px solid var(--line); }
.spec dt { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; margin-bottom: 8px; }
.spec dd { font-size: 1.05rem; font-weight: 700; }
.spec dd .u { color: var(--text-faint); font-weight: 500; font-size: 0.85em; }

.coord { position: absolute; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--text-faint); font-weight: 600; pointer-events: none; z-index: 2; font-feature-settings: "tnum" 1; }

/* =========================================================================
   À PROPOS
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.about-media { position: relative; }
.about-photo { position: relative; border: 1px solid var(--line-strong); border-radius: var(--r); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: auto; display: block; filter: saturate(1.02) contrast(1.02); }
.about-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,14,17,0) 55%, rgba(12,14,17,.55) 100%);
}
.about-id {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: flex; flex-direction: column; line-height: 1.2;
}
.about-id__name { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; color: #fff; }
.about-id__role { font-size: 0.78rem; color: var(--steel-bright); font-weight: 600; letter-spacing: 0.02em; margin-top: 3px; }

.about-body .sec__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.about-lead { margin-top: 22px; font-size: 1.1rem; color: var(--text); font-weight: 500; }
.about-pains { margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.about-pains li { position: relative; padding-left: 26px; color: var(--text-soft); font-size: 0.98rem; }
.about-pains li::before {
  content: "\2715"; position: absolute; left: 0; top: 1px;
  color: var(--text-faint); font-size: 0.85rem; font-weight: 700;
}
.about-turn { margin-top: 28px; font-size: 1.05rem; color: var(--text); }
.about-turn b { color: var(--text); font-weight: 700; }
.about-wins { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.about-wins li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 1rem; font-weight: 500; }
.tick-ico {
  flex-shrink: 0; width: 24px; height: 24px; margin-top: 1px;
  display: grid; place-items: center; border-radius: 100px;
  background: rgba(255,107,0,.14); color: var(--orange);
}

/* =========================================================================
   SECTION SHELL
   ========================================================================= */
.sec { padding-block: clamp(56px, 9vw, 110px); position: relative; }
.sec--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.sec__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec__head .tlabel { margin-bottom: 18px; display: inline-flex; }
.sec__title { font-size: clamp(1.8rem, 4.4vw, 3.1rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.025em; text-wrap: balance; }
.sec__intro { margin-top: 16px; font-size: 1.08rem; color: var(--text-soft); max-width: 56ch; }

/* =========================================================================
   EXPERTISE
   ========================================================================= */
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); }
.exp-card { padding: clamp(26px, 3vw, 38px); position: relative; transition: background var(--t); }
.exp-card:nth-child(even) { border-left: 1px solid var(--line); }
.exp-card:nth-child(n+3) { border-top: 1px solid var(--line); }
.exp-card:hover { background: var(--surface-2); }
.exp-card__no { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; color: var(--orange); margin-bottom: 22px; }
.exp-card__icon { margin-bottom: 22px; color: var(--steel-bright); }
.exp-card h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.exp-card p { color: var(--text-soft); font-size: 0.98rem; }
.exp-card ul { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.exp-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text-soft); }
.exp-card li::before { content: ""; flex-shrink: 0; width: 14px; height: 1px; background: var(--orange); margin-top: 11px; }

/* =========================================================================
   RÉFÉRENCES — portfolio mosaïque
   ========================================================================= */
.refs-portfolio {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 178px 178px 212px;
  gap: 14px;
}
.pcard {
  position: relative; margin: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); cursor: pointer;
}
.pcard img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.22,1,.36,1), filter var(--t);
  filter: saturate(.92) brightness(.82) contrast(1.02);
}
.pcard::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(8,11,14,.86) 0%, rgba(8,11,14,.28) 42%, rgba(8,11,14,0) 70%);
  transition: opacity var(--t); opacity: .9;
}
.pcard:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1) contrast(1.03); }
.pcard:hover::after { opacity: 1; }
.pcard figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 3px;
  padding: 16px 18px;
}
.pcard__name { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: #fff; line-height: 1.15; }
.pcard__tag { font-size: 0.72rem; color: var(--steel-bright); font-weight: 600; letter-spacing: 0.05em; }
.pcard::before {
  content: ""; position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 9px; height: 9px; border-top: 1px solid rgba(255,255,255,.5); border-left: 1px solid rgba(255,255,255,.5);
}

/* placement magazine (desktop) */
.p1 { grid-column: 1 / 7;  grid-row: 1 / 3; }
.p2 { grid-column: 7 / 10; grid-row: 1 / 2; }
.p3 { grid-column: 7 / 10; grid-row: 2 / 3; }
.p7 { grid-column: 10 / 13; grid-row: 1 / 3; }
.p4 { grid-column: 1 / 5;  grid-row: 3 / 4; }
.p5 { grid-column: 5 / 9;  grid-row: 3 / 4; }
.p6 { grid-column: 9 / 13; grid-row: 3 / 4; }

.refs__note { margin-top: 22px; font-size: 0.85rem; color: var(--text-faint); display: flex; align-items: center; gap: 10px; }
.refs__note::before { content: ""; width: 18px; height: 1px; background: var(--line-strong); }

/* =========================================================================
   PRESTATIONS / TARIFS
   ========================================================================= */
.tarif { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.tarif__row { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr; align-items: center; border-bottom: 1px solid var(--line); transition: background var(--t); }
.tarif__row:last-child { border-bottom: none; }
.tarif__row--head { background: var(--surface-2); }
.tarif__row--head .tarif__c { color: var(--steel-bright); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding-block: 16px; }
.tarif__row:not(.tarif__row--head):hover { background: var(--surface-2); }
.tarif__c { padding: 18px 22px; }
.tarif__c--name { font-weight: 600; font-size: 1rem; }
.tarif__c--mode { color: var(--text-soft); font-size: 0.85rem; }
.tarif__c--price { font-weight: 700; text-align: right; font-feature-settings: "tnum" 1; }
.tarif__c--price .tjm { color: var(--steel-bright); }
.tarif__c--price .range { display: block; font-weight: 500; font-size: 0.82rem; color: var(--text-faint); margin-top: 2px; }
.tarif__label-m { display: none; }

.tarif-mentions { margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }
.tarif-mentions li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--text-soft); }
.tarif-mentions li svg { flex-shrink: 0; margin-top: 3px; color: var(--steel-bright); }
.tarif-mentions li b { color: var(--text); font-weight: 600; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-aside { position: relative; }
.contact-aside .sec__title { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.contact-info { margin-top: 32px; display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); }
.cinfo { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cinfo__ico { flex-shrink: 0; width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: var(--r); display: grid; place-items: center; color: var(--steel-bright); }
.cinfo__k { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.cinfo__v { font-weight: 600; font-size: 1rem; }
.cinfo a.cinfo__v:hover { color: var(--orange); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow); position: relative; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--text-soft); margin-bottom: 9px; }
.field label .req { color: var(--orange); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 0.98rem;
  border: 1px solid var(--line-strong); border-radius: var(--r); background: var(--bg);
  color: var(--text); transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236FA8DA' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--steel-bright); background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(111,168,218,.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.form__note { font-size: 0.78rem; color: var(--text-faint); max-width: 30ch; }
.form__status { font-size: 0.9rem; font-weight: 600; padding: 12px 16px; border-radius: var(--r); margin-bottom: 18px; display: none; }
.form__status.ok { display: block; background: rgba(43,208,122,.12); color: #5fe39c; border: 1px solid rgba(43,208,122,.3); }
.form__status.err { display: block; background: rgba(255,107,0,.1); color: var(--orange-soft); border: 1px solid rgba(255,107,0,.3); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: #090B0D; color: var(--text-soft); position: relative; z-index: 1; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: clamp(44px, 6vw, 72px); }
.footer .brand__name .ln1 { color: var(--orange); }
.footer .brand__name .ln2 { color: var(--white); }
.footer__tag { margin-top: 18px; max-width: 34ch; font-size: 0.92rem; }
.footer__tag em { font-style: normal; color: var(--orange); font-weight: 600; }
.footer__col h4 { color: var(--white); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__col p { display: block; font-size: 0.92rem; padding: 4px 0; transition: color var(--t); }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text-faint); }
.footer__bottom a:hover { color: var(--white); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* =========================================================================
   BOUTIQUE
   ========================================================================= */
.shop-hero { padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(36px, 5vw, 60px); }
.soon-banner { display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px; border: 1px solid rgba(255,107,0,.5); border-radius: 100px; color: var(--orange-soft); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: 28px; background: rgba(255,107,0,.05); }
.soon-banner .avail-dot { background: var(--orange); box-shadow: 0 0 0 0 rgba(255,107,0,.5); animation: pulseO 2.4s infinite; }
@keyframes pulseO { 70% { box-shadow: 0 0 0 7px rgba(255,107,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); } }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.product { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 28px; position: relative; }
.product--locked { background: var(--surface); }
.product__badge { position: absolute; top: 16px; right: 16px; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--text-faint); border: 1px solid var(--line-strong); border-radius: 100px; padding: 4px 10px; }
.product__thumb { aspect-ratio: 4/3; border: 1px dashed var(--line-strong); border-radius: var(--r); display: grid; place-items: center; margin-bottom: 20px; color: var(--steel-bright); background: repeating-linear-gradient(45deg, transparent, transparent 9px, rgba(110,160,205,.05) 9px, rgba(110,160,205,.05) 10px); }
.product h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.product p { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 18px; }
.product__foot { display: flex; align-items: center; justify-content: space-between; }
.product__price { font-weight: 700; font-feature-settings: "tnum" 1; }
.product__price .soon { color: var(--text-faint); font-weight: 500; font-size: 0.85rem; }
.btn--disabled { background: rgba(255,255,255,.05); color: var(--text-faint); cursor: not-allowed; pointer-events: none; box-shadow: none; }
.gumroad-slot { margin-top: 44px; border: 1px dashed var(--line-strong); border-radius: var(--r); padding: 32px; text-align: center; background: var(--surface); }
.gumroad-slot code { background: var(--bg); border: 1px solid var(--line); padding: 2px 8px; border-radius: var(--r); font-size: 0.85rem; color: var(--steel-bright); }

.notify { display: flex; gap: 10px; max-width: 460px; margin-top: 22px; flex-wrap: wrap; }
.notify input { flex: 1; min-width: 220px; padding: 13px 15px; font: inherit; border: 1px solid var(--line-strong); border-radius: var(--r); background: var(--surface); color: var(--text); }
.notify input::placeholder { color: var(--text-faint); }
.notify input:focus { outline: none; border-color: var(--steel-bright); box-shadow: 0 0 0 3px rgba(111,168,218,.18); }

/* =========================================================================
   REVEAL — contenu visible par défaut (chargement rapide, zéro section masquée)
   ========================================================================= */

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) { .nav .avail-pill { display: none; } }
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .refs-portfolio { grid-template-columns: repeat(6, 1fr); grid-template-rows: 200px 200px 200px 200px; }
  .p1 { grid-column: 1 / 4; grid-row: 1 / 3; }
  .p7 { grid-column: 4 / 7; grid-row: 1 / 3; }
  .p2 { grid-column: 1 / 4; grid-row: 3 / 4; }
  .p3 { grid-column: 4 / 7; grid-row: 3 / 4; }
  .p4 { grid-column: 1 / 3; grid-row: 4 / 5; }
  .p5 { grid-column: 3 / 5; grid-row: 4 / 5; }
  .p6 { grid-column: 5 / 7; grid-row: 4 / 5; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(12,14,17,.98); border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 14px var(--pad) 22px; box-shadow: 0 18px 30px -18px rgba(0,0,0,.7); margin: 0;
  }
  .nav__links.open a { padding: 12px 6px; font-size: 1rem; }
  .nav__links.open a.active::after { display: none; }
  .nav__links.open .nav__cta-mobile { display: inline-flex; padding: 14px 24px; justify-content: center; margin-top: 8px; }
  .burger { display: block; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card:nth-child(even) { border-left: none; }
  .exp-card + .exp-card { border-top: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { max-width: 420px; }
  .hero__specs { grid-template-columns: 1fr; }
  .spec + .spec { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .tarif-mentions { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .refs-portfolio { display: flex; flex-direction: column; }
  .pcard { height: 220px; }
  .shop-grid { grid-template-columns: 1fr; }
  .tarif__row--head { display: none; }
  .tarif__row { grid-template-columns: 1fr; gap: 0; padding: 16px 18px; }
  .tarif__c { padding: 4px 0; }
  .tarif__c--name { font-size: 1.05rem; }
  .tarif__c--price { text-align: left; }
  .tarif__c--price .range { display: inline; margin-left: 8px; }
  .tarif__label-m { display: inline-block; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; margin-right: 8px; }
}
