/* =============================================================
   WHITE MASTERING — Feuille de style principale
   Palette monochrome / dark, esthétique studio haut de gamme
   ============================================================= */

/* ---------- Variables ---------- */
:root {
  --bg:        #0a0a0c;
  --bg-2:      #101013;
  --bg-3:      #16161a;
  --surface:   #17171c;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);
  --text:      #eaeaed;
  --muted:     #9a9aa4;
  --muted-2:   #6d6d76;
  --white:     #ffffff;
  --accent:    #c7ccd4;   /* argent froid */
  --accent-2:  #8fa7bd;   /* bleu acier discret (tech / Atmos) */

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif:"Cormorant Garamond", Georgia, "Times New Roman", serif;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 4px;
  --header-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }

/* Barre de défilement toujours visible (ne disparaît pas) */
html { scrollbar-width: auto; scrollbar-color: #3a3a42 #0d0d10; }
::-webkit-scrollbar { width: 13px; height: 13px; }
::-webkit-scrollbar-track { background: #0d0d10; }
::-webkit-scrollbar-thumb { background: #33333c; border-radius: 8px; border: 3px solid #0d0d10; }
::-webkit-scrollbar-thumb:hover { background: #4a4a55; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
h1,h2,h3,h4 { font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--white); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 10vw, 130px); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.section-title .serif { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: 0; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 62ch; }
p + p { margin-top: 1.1em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { width: 34px; height: 44px; object-fit: cover; border: 1px solid var(--line-2); }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-size: .98rem; letter-spacing: .16em; font-weight: 600; color: var(--white); }
.brand-name span { font-size: .58rem; letter-spacing: .34em; color: var(--muted); text-transform: uppercase; margin-top: 5px; }

/* ---------- Navigation ---------- */
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav a.navlink,
.nav .navlink {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 18px;
  font-size: .86rem; letter-spacing: .04em; color: var(--muted);
  font-weight: 500; cursor: pointer; white-space: nowrap;
}
@media (max-width: 1120px) and (min-width: 861px) {
  .nav a.navlink, .nav .navlink { padding: 14px 13px; font-size: .82rem; }
  .header-inner { gap: 12px; }
}
.nav a.navlink:hover, .nav .navlink:hover,
.nav li:hover > .navlink,
.nav .navlink.active { color: var(--white); }
.nav .navlink .caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .3s var(--ease); opacity: .7; }
.nav li:hover .caret { transform: rotate(225deg) translateY(-1px); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 232px; background: rgba(18,18,22,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
}
.nav li:hover > .dropdown, .dropdown:hover { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: 3px;
  font-size: .82rem; color: var(--muted); letter-spacing: .02em;
}
.dropdown a small { display: block; font-size: .68rem; color: var(--muted-2); letter-spacing: .08em; margin-top: 2px; }
.dropdown a:hover { background: var(--bg-3); color: var(--white); }

.header-cta {
  border: 1px solid var(--line-2); padding: 10px 20px; border-radius: 100px;
  font-size: .78rem; letter-spacing: .08em; color: var(--white); font-weight: 500;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.header-cta:hover { background: var(--white); color: #0a0a0c; border-color: var(--white); }

/* Burger */
.burger { display: none; width: 44px; height: 44px; position: relative; background: none; border: 0; cursor: pointer; }
.burger span { position: absolute; left: 10px; right: 10px; height: 1.6px; background: var(--white); transition: transform .35s var(--ease), opacity .2s var(--ease); }
.burger span:nth-child(1){ top: 15px; } .burger span:nth-child(2){ top: 21px; } .burger span:nth-child(3){ top: 27px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-size: .84rem; font-weight: 500; letter-spacing: .06em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 15px; height: 15px; }
.btn--primary { background: var(--white); color: #0a0a0c; }
.btn--primary:hover { transform: translateY(-2px); background: #e6e6e9; }
.btn--ghost { border-color: var(--line-2); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.05); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.arrow-link { display: inline-flex; align-items: center; gap: 9px; font-size: .84rem; letter-spacing: .06em; color: var(--white); font-weight: 500; }
.arrow-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }
.arrow-link:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.2) 35%, rgba(10,10,12,.82) 82%, var(--bg) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(10,10,12,.6), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(60px, 12vh, 130px); padding-top: calc(var(--header-h) + 40px); }
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: .98; letter-spacing: -.02em; max-width: 16ch;
}
.hero h1 .serif { display: block; font-family: var(--font-serif); font-style: italic; font-weight: 500; letter-spacing: 0; color: var(--accent); }
.hero p { margin-top: 26px; max-width: 52ch; color: #c9c9d0; font-size: clamp(1rem,2.2vw,1.18rem); }
.hero .btn-row { margin-top: 38px; }

/* Page hero (interior pages) */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(60px,11vw,120px)); padding-bottom: clamp(40px,7vw,80px); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.page-hero__bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,.7), var(--bg) 92%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); margin-bottom: 18px; }
.breadcrumb { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); }
.split__media.portrait img { aspect-ratio: 3/4; }
.split__body h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); margin-bottom: 20px; }
.split__body p { color: var(--muted); }
.split__body .btn-row, .split__body .arrow-link { margin-top: 28px; }

/* ---------- Cards (rooms) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--bg-2); transition: transform .45s var(--ease), border-color .45s var(--ease);
  min-height: 420px;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card__img { position: absolute; inset: 0; z-index: 0; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), opacity .5s; opacity: .62; }
.card:hover .card__img img { transform: scale(1.06); opacity: .78; }
.card::after { content:""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,12,.15) 0%, rgba(10,10,12,.55) 55%, rgba(10,10,12,.94) 100%); }
.card__body { position: relative; z-index: 2; margin-top: auto; padding: 28px; }
.card__tag { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 12px; }
.card__body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.card__body p { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.card__body .arrow-link { font-size: .8rem; }
.card__link { position: absolute; inset: 0; z-index: 3; }

/* ---------- Feature list / specs ---------- */
.specs { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec { background: var(--bg-2); padding: 30px 26px; }
.spec b { display: block; font-size: 2rem; color: var(--white); font-weight: 600; letter-spacing: -.02em; margin-bottom: 6px; }
.spec span { font-size: .8rem; letter-spacing: .04em; color: var(--muted); }

.equip { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 14px; }
.equip li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); }
.equip li .dot { flex-shrink: 0; width: 7px; height: 7px; margin-top: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(143,167,189,.12); }
.equip li b { color: var(--white); font-weight: 600; font-size: .95rem; }
.equip li p { color: var(--muted); font-size: .84rem; margin-top: 2px; }

/* ---------- Gallery ---------- */
.gallery { columns: 3 260px; column-gap: 16px; }
.gallery figure { break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); cursor: zoom-in; }
.gallery img { width: 100%; transition: transform .8s var(--ease), opacity .4s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px; font-size: .74rem; letter-spacing: .04em; color: #d7d7dc; background: linear-gradient(transparent, rgba(0,0,0,.8)); opacity: 0; transition: opacity .35s; }
.gallery figure:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(6,6,8,.94); display: flex; align-items: center; justify-content: center; padding: 4vw; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 90vh; width: auto; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 22px; right: 26px; width: 44px; height: 44px; border: 1px solid var(--line-2); background: none; border-radius: 50%; color: #fff; font-size: 1.3rem; cursor: pointer; transition: background .3s; }
.lightbox__close:hover { background: rgba(255,255,255,.1); }

/* ---------- Blind test / audio note ---------- */
.callout { border: 1px solid var(--line); border-left: 2px solid var(--accent-2); border-radius: var(--radius); padding: clamp(24px,4vw,40px); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.callout h3 { font-size: 1.3rem; margin-bottom: 12px; }
.callout p { color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { font-size: .74rem; letter-spacing: .05em; color: var(--accent); border: 1px solid var(--line-2); border-radius: 100px; padding: 6px 14px; }

/* ---------- Partners strip ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px,5vw,64px); }
.partners img { height: 46px; width: auto; object-fit: contain; opacity: .62; filter: grayscale(1) brightness(1.6); transition: opacity .3s, filter .3s; }
.partners a:hover img, .partners img:hover { opacity: 1; filter: grayscale(0) brightness(1); }
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.badges img { height: 96px; width: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; padding: 6px; }

/* ---------- Prose (article pages) ---------- */
.prose { max-width: 720px; }
.prose p { color: #bcbcc4; font-size: 1.06rem; margin-bottom: 1.25em; }
.prose h2 { font-size: clamp(1.5rem,3.2vw,2.1rem); margin: 1.6em 0 .6em; }
.prose h3 { font-size: 1.25rem; margin: 1.4em 0 .5em; color: var(--white); }
.prose strong { color: var(--white); font-weight: 600; }
.prose ul.bullets { margin: 1em 0 1.4em; }
.prose ul.bullets li { position: relative; padding-left: 22px; margin-bottom: .55em; color: #bcbcc4; }
.prose ul.bullets li::before { content:""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }

/* Compare grid (analog vs ITB) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare .col { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3.5vw,36px); background: var(--bg-2); }
.compare h3 { font-size: 1.4rem; margin-bottom: 6px; }
.compare .sub { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 18px; }
.compare .plus li, .compare .minus li { position: relative; padding-left: 26px; margin-bottom: .6em; font-size: .92rem; color: var(--muted); }
.compare .plus li::before { content:"+"; position: absolute; left: 4px; color: #7fbf9a; font-weight: 700; }
.compare .minus li::before { content:"–"; position: absolute; left: 4px; color: #c98b8b; font-weight: 700; }
.compare h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin: 18px 0 8px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.cta-band__bg::after { content:""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 50%, rgba(10,10,12,.5), var(--bg)); }
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem,5vw,3.4rem); margin-bottom: 18px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,64px); align-items: start; }
.contact-methods { display: grid; gap: 14px; margin-top: 30px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); transition: border-color .3s, transform .3s; }
.contact-method:hover { border-color: var(--line-2); transform: translateX(4px); }
.contact-method .ico { flex-shrink: 0; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 50%; }
.contact-method .ico svg { width: 18px; height: 18px; color: var(--accent); }
.contact-method b { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; font-weight: 500; }
.contact-method span { color: var(--white); font-size: 1rem; }

form.wm-form { display: grid; gap: 16px; }
.field label { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 14px 16px; color: var(--white); font-family: inherit; font-size: .95rem; transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 140px; resize: vertical; }

/* ---------- Tarifs ---------- */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); padding: clamp(28px, 3.5vw, 40px);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.price-card--featured { border-color: var(--accent-2); background: linear-gradient(180deg, rgba(143,167,189,.07), var(--bg-2) 60%); position: relative; }
.price-card--featured::before {
  content: "Immersif"; position: absolute; top: 18px; right: 18px;
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-2);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 5px 12px;
}
.price-card__tag { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent-2); }
.price-card__head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 12px 0 12px; }
.price-card__head p { color: var(--muted); font-size: .92rem; }
.price { display: flex; align-items: baseline; gap: 10px; margin: 26px 0 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.price b { font-size: clamp(2.4rem, 6vw, 3.2rem); font-weight: 600; letter-spacing: -.03em; color: var(--white); line-height: 1; }
.price span { font-size: .9rem; color: var(--muted); }
.price-features { margin-bottom: 30px; display: grid; gap: 13px; }
.price-features li { position: relative; padding-left: 26px; color: #c3c3cb; font-size: .94rem; }
.price-features .dot { position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(143,167,189,.12); }
.price-features strong { color: var(--white); }
.price-card .btn { margin-top: auto; justify-content: center; }
.pricing-note { max-width: 780px; margin: 44px auto 0; text-align: center; }
.pricing-note p { color: var(--muted); font-size: .95rem; }
.pricing-note .small { font-size: .84rem; color: var(--muted-2); margin-top: 12px; }

/* Notes « pas ouvert au public » */
.public-note { margin-top: 22px; padding: 16px 18px; border-left: 2px solid var(--accent-2); background: var(--bg-2); border-radius: var(--radius); font-size: .86rem; color: var(--muted); }
.footer-note { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted-2); max-width: 70ch; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(50px,7vw,80px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 34ch; }
.footer-col h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; font-weight: 500; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .78rem; color: var(--muted-2); }
.social { display: flex; gap: 12px; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: color .3s, border-color .3s; }
.social a:hover { color: var(--white); border-color: var(--line-2); }
.social svg { width: 17px; height: 17px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s 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: 940px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .compare { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .burger { display: block; }
  .header-cta { display: none; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: auto;
    height: calc(100svh - var(--header-h)); z-index: 999;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0a0a0c;
    padding: 14px var(--pad) 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .45s var(--ease);
  }
  body.menu-open .nav { transform: none; }
  body.menu-open { overflow: hidden; }
  .nav > li { border-bottom: 1px solid var(--line); }
  .nav a.navlink, .nav .navlink { padding: 18px 4px; font-size: 1.02rem; width: 100%; }
  .nav .caret { display: none; }
  .dropdown, .nav li:hover > .dropdown, .dropdown:hover { display: none; }
  .header-mobile-cta { display: block; margin-top: 20px; border-bottom: 0 !important; }
}
@media (min-width: 861px) { .header-mobile-cta { display: none; } }
@media (max-width: 560px) {
  .hero { min-height: 92svh; }
  .badges img { height: 76px; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery { columns: 2 150px; }
  .pricing { grid-template-columns: 1fr; }
}

/* Smartphone en mode paysage (hauteur réduite) : on évite un hero qui déborde */
@media (max-width: 960px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero__inner { padding-top: calc(var(--header-h) + 26px); padding-bottom: 46px; }
  .hero h1 { font-size: clamp(1.9rem, 5.5vw, 3rem); }
  .hero p { margin-top: 16px; }
  .hero .btn-row { margin-top: 24px; }
  .page-hero { padding-top: calc(var(--header-h) + 40px); }
}

/* Confort tactile : cibles de clic d'au moins ~44px sur écrans tactiles */
@media (hover: none) {
  .arrow-link, .footer-col a, .contact-method, .dropdown a { min-height: 40px; }
}
