/* ============================================================
   Studio Dahu — Landing Craft one-pager
   Palette & typo issues de brand.json
   ============================================================ */

:root {
  --primary: #0f172a;
  --primary-d: #0a0f1a;
  --accent: #0a0f1a;
  --accent-d: #000000;
  --accent-soft: rgba(10, 15, 26, 0.08);
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --line: #e6e1d8;
  --white: #ffffff;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 60px rgba(10, 15, 26, 0.16);
  --shadow-sm: 0 8px 26px rgba(10, 15, 26, 0.09);
  --maxw: 1180px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.02em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--accent);
}
.section-primary h2 em { color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--maxw), 92%); margin-inline: auto; }

/* Eyebrow avec liseret */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent);
}
.eyebrow.light { color: rgba(255,255,255,0.75); }
.eyebrow.light::before { background: rgba(255,255,255,0.55); }

.sec-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.sec-head p { color: var(--ink-soft); margin-top: 18px; font-size: 1.08rem; }

.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }
.section-primary { background: var(--primary); color: #e8e6e3; }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.96rem;
  padding: 15px 28px; border-radius: 999px; cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 12px 28px rgba(10,15,26,.28); }
.btn-accent:hover { background: var(--accent-d); transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-d); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline-dark:hover { background: var(--bg-soft); border-color: var(--ink-soft); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }

/* Top bar */
.topbar { background: var(--primary-d); color: #94a3b8; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.topbar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 0; padding: 10px 0; }
.topbar-inner span { display: inline-flex; align-items: center; gap: 8px; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.12); }
.topbar-inner span:last-child { border-right: none; }
.topbar-inner svg { width: 14px; height: 14px; color: var(--white); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.nav-logo { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; letter-spacing: -0.03em; color: var(--primary); }
.nav-logo em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.03em; transition: color .15s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta-mobile { display: none; width: 100%; margin-top: 8px; justify-content: center; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 14px 10px; }
.burger span { width: 26px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero typographique + image colonne */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04), transparent 45%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 100px; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1.04; max-width: 16ch; }
.hero h1 em { color: rgba(255,255,255,0.92); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: #cbd5e1; margin: 26px 0 36px; max-width: 52ch; font-weight: 300; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 38px; margin-top: 48px; flex-wrap: wrap; }
.hero-proof .p { border-left: 2px solid rgba(255,255,255,0.45); padding-left: 16px; }
.hero-proof .p b { display: block; font-family: var(--font-display); font-size: 2rem; color: #fff; line-height: 1; }
.hero-proof .p span { font-size: 0.78rem; color: #94a3b8; letter-spacing: 0.06em; text-transform: uppercase; }

.hero-visual { position: relative; height: 100%; min-height: 420px; max-height: 78vh; border-radius: var(--radius) 0 0 var(--radius); overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(15,23,42,0.55) 60%, transparent 100%);
  transform: translateY(-101%);
  pointer-events: none;
}
.js-ready .hero-veil { transform: translateY(0); transition: none; }
.js-ready.is-loaded .hero-veil { transform: translateY(-101%); transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1); }

.hero-ridge {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  display: grid; place-items: center; padding: 10%;
}
.hero-ridge svg { width: 100%; height: auto; overflow: visible; }
.hero-ridge path {
  fill: none; stroke: rgba(255,255,255,0.7); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1200; stroke-dashoffset: 0;
}
.js-ready .hero-ridge path { stroke-dashoffset: 1200; }
.js-ready.is-loaded .hero-ridge path { animation: ridge-draw 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; animation-delay: 0.25s; }
@keyframes ridge-draw { to { stroke-dashoffset: 0; } }

.hero-line { opacity: 1; }
.js-ready .hero-line { opacity: 0; transform: translateY(24px); }
.js-ready.is-loaded .hero-line { animation: hero-line-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.js-ready.is-loaded .hero-line:nth-child(1) { animation-delay: 0.6s; }
.js-ready.is-loaded .hero-line:nth-child(2) { animation-delay: 0.75s; }
.js-ready.is-loaded .hero-line:nth-child(3) { animation-delay: 0.9s; }
.js-ready.is-loaded .hero-line:nth-child(4) { animation-delay: 1.05s; }
@keyframes hero-line-in { to { opacity: 1; transform: translateY(0); } }

/* Trust / badges */
.trust { background: var(--bg); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; padding: 26px 0; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.02em;
}
.trust-badge svg { width: 16px; height: 16px; color: var(--accent); }
.trust-client { font-family: var(--font-display); font-size: 1rem; color: var(--muted); padding: 8px 14px; }

/* Pain points */
.pain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pain-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.pain-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pain-item .ico { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 18px; }
.pain-item .ico svg { width: 26px; height: 26px; color: var(--accent); }
.pain-item h4 { font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; }
.pain-item p { font-size: 0.96rem; color: var(--ink-soft); }

/* Services BENTO */
.bento { position: relative; overflow: hidden; background: var(--bg); }
.bento-inner { position: relative; z-index: 1; }
.bento-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 15rem; gap: 1.25rem;
}
.bento-cell {
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  background: var(--bg-soft); border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.bento-cell:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bento-cell--hero { grid-column: span 3; grid-row: span 2; background: var(--primary); color: #fff; border-color: transparent; }
.bento-cell--wide { grid-column: span 3; }
.bento-cell--accent { background: var(--accent); color: #fff; border-color: transparent; }
.bento-cell--photo { grid-column: span 3; padding: 0; min-height: 15rem; }
.bento-cell--photo img { width: 100%; height: 100%; object-fit: cover; }
.bento-cell--photo .photo-cap {
  position: absolute; left: 0; bottom: 0; width: 100%; padding: 1.35rem 1.25rem 1.1rem;
  background: linear-gradient(0deg, rgba(10,15,26,0.96) 0%, rgba(10,15,26,0.78) 55%, transparent 100%);
  color: #fff; font-size: 0.9rem;
}
.bento-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: var(--radius-sm); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); }
.bento-icon svg { width: 1.35rem; height: 1.35rem; }
.bento-cell:not(.bento-cell--hero):not(.bento-cell--accent) .bento-icon { background: var(--accent-soft); border-color: transparent; }
.bento-cell:not(.bento-cell--hero):not(.bento-cell--accent) .bento-icon svg { color: var(--accent); }
.bento-cell__title { margin: 0; font-size: 1.2rem; font-weight: 700; line-height: 1.25; color: inherit; }
.bento-cell--hero .bento-cell__title { font-size: 1.6rem; }
.bento-cell__text { margin: 0.75rem 0 0; font-size: 0.98rem; line-height: 1.55; color: inherit; opacity: 0.85; }
.bento-stat { margin: auto 0 0; font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 500; line-height: 1; color: #fff; }
.bento-stat-cap { margin: 0.5rem 0 0; font-size: 0.85rem; color: rgba(255,255,255,0.75); letter-spacing: 0.08em; text-transform: uppercase; }

/* À propos */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text ul { list-style: none; margin: 28px 0 34px; display: grid; gap: 14px; }
.about-text li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 0.98rem; }
.about-text li svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.about-collage { position: relative; min-height: 520px; }
.about-img-a { position: absolute; left: 0; top: 0; width: 72%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-img-b { position: absolute; right: 0; bottom: 0; width: 55%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1/1; border: 6px solid var(--bg); }
.about-collage img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute; left: 24px; bottom: 24px; z-index: 3;
  background: var(--accent); color: #fff; padding: 18px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow);
}
.about-stat b { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; display: block; line-height: 1; }
.about-stat span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

/* Parallax citation */
.parallax {
  position: relative; padding: 140px 0;
  background-color: var(--primary); background-size: cover; background-position: center; background-attachment: fixed;
  color: #fff; text-align: center;
}
.parallax::after {
  content: ""; position: absolute; inset: 0; background: rgba(10,15,26,0.72); z-index: 0;
}
.parallax-inner { position: relative; z-index: 1; width: min(var(--maxw), 92%); margin-inline: auto; }
.parallax blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.4rem); max-width: 24ch; margin: 0 auto; line-height: 1.32; }
.parallax blockquote em { color: #fff; }
.parallax cite { display: block; margin-top: 22px; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.parallax .stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 22px; color: #fff; }
.parallax .stars svg { width: 22px; height: 22px; fill: currentColor; }

/* Méthode */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; grid-auto-rows: 1fr; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; position: relative; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step .n { font-family: var(--font-display); font-style: italic; font-size: 3.2rem; color: var(--accent); opacity: 0.18; line-height: 1; margin-bottom: 6px; }
.step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { font-size: 0.96rem; color: var(--ink-soft); }

/* Pricing */
.pricing { background: var(--bg-soft); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; grid-auto-rows: 1fr; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); text-align: left; position: relative; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--accent); transform: scale(1.02); box-shadow: var(--shadow); }
.ribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff; padding: 6px 14px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; border-radius: 999px;
}
.price-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.price-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; }
.price-strike { display: block; text-decoration: line-through; color: var(--muted); font-size: 1.05rem; margin-bottom: 4px; }
.price { display: block; font-family: var(--font-display); font-size: 2.8rem; font-weight: 500; color: var(--primary); line-height: 1; }
.price-note { display: block; font-size: 0.82rem; color: var(--accent); margin-top: 10px; font-weight: 700; }
.price-features { list-style: none; margin: 22px 0 0; display: grid; gap: 10px; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.price-features li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* Testimonials / preuve */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.proof-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); }
.proof-card.feature { grid-column: span 2; display: flex; flex-direction: column; gap: 22px; }
.proof-card .stars { display: flex; gap: 5px; color: var(--primary); }
.proof-card .stars svg { width: 20px; height: 20px; fill: currentColor; }
.proof-quote { font-family: var(--font-display); font-style: italic; font-size: 1.45rem; line-height: 1.35; margin: 0; }
.proof-author { display: flex; gap: 12px; align-items: center; }
.proof-avatar { width: 48px; height: 48px; border-radius: 999px; background: var(--accent-soft); display: grid; place-items: center; font-family: var(--font-display); font-weight: 500; color: var(--accent); }
.proof-author cite { font-style: normal; font-weight: 700; color: var(--ink); }
.proof-author span { font-size: 0.85rem; color: var(--muted); }
.proof-stat { text-align: center; }
.proof-stat b { font-family: var(--font-display); font-size: 3rem; font-weight: 500; color: var(--primary); line-height: 1; display: block; }
.proof-stat span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 10px; }

/* Projets */
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.project-list { list-style: none; display: grid; gap: 20px; margin-top: 28px; }
.project-item { border-left: 3px solid var(--accent); padding-left: 18px; }
.project-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.project-item p { font-size: 0.94rem; color: var(--ink-soft); }
.project-shot { max-width: 340px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--bg-soft); padding: 14px; }
.project-shot img { width: 100%; max-height: 520px; object-fit: cover; object-position: top; border-radius: var(--radius-sm); }
.project-caption { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform .25s; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq .a { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.97rem; }

/* Contact + CTA */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.96rem; background: var(--bg); transition: border-color .15s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); }
.form textarea { min-height: 120px; resize: vertical; }
.form label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form .field { margin-bottom: 18px; }
.form-success { display: none; background: var(--accent-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--ink-soft); font-size: 0.95rem; }
.form-success.visible { display: block; }

.contact-info { display: grid; gap: 18px; }
.contact-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact-card .ico { width: 44px; height: 44px; border-radius: 999px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 14px; }
.contact-card .ico svg { width: 22px; height: 22px; color: var(--accent); }
.contact-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p { font-size: 0.95rem; color: var(--ink-soft); }
.contact-card a { font-weight: 700; color: var(--primary); }

/* Footer */
.footer { background: var(--primary-d); color: #94a3b8; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--font-display); font-size: 1.6rem; color: #fff; margin-bottom: 12px; }
.footer-brand em { font-style: italic; color: rgba(255,255,255,0.75); }
.footer p { font-size: 0.95rem; line-height: 1.6; }
.footer h5 { color: #fff; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer a { display: block; padding: 6px 0; font-size: 0.92rem; color: #94a3b8; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); }
.footer-socials a:hover { background: rgba(255,255,255,0.1); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding-top: 24px; font-size: 0.8rem; color: #64748b; }

/* Reveal au scroll */
.reveal { opacity: 1; transform: translateY(0); }
.js-ready .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.js-ready .reveal.in { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-ready .reveal, .js-ready .hero-line, .js-ready .hero-veil, .js-ready .hero-ridge path { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Desktop grid fixes */
@media (min-width: 981px) {
  .bento-cell--tall { grid-row: span 2; }
}

/* Responsive */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-visual { border-radius: 0; max-height: 50vh; order: -1; width: 100%; }
  .hero-content { padding: 60px 0 70px; text-align: center; width: 100%; }
  .hero h1 { max-width: none; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-proof { justify-content: center; }
  .about-grid, .contact-grid, .projects-grid { grid-template-columns: 1fr; }
  .about-collage { min-height: 420px; }
  .project-shot { margin: 0; }
  .bento-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 14rem; }
  .bento-cell--hero { grid-column: span 4; grid-row: span 2; }
  .bento-cell--wide, .bento-cell--photo { grid-column: span 2; }
  .pain, .steps, .proof-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .parallax { background-attachment: scroll; }
}

@media (max-width: 768px) {
  .trust-inner { display: grid; grid-template-columns: 1fr; gap: 12px; justify-items: center; }
  .trust-client {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line);
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.02em;
  }
}

@media (max-width: 640px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); flex-direction: column; gap: 0; padding: 0 6%; max-height: 0; overflow: hidden; transition: max-height .35s; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--line); }
  .nav-links.open { max-height: 420px; padding: 12px 6%; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .nav-cta-mobile { display: inline-flex; }
  #apropos { padding-top: 110px; }
  .bento-grid, .pain, .steps, .proof-grid, .pricing-grid { grid-template-columns: 1fr; }
  .bento-cell, .bento-cell--hero, .bento-cell--wide, .bento-cell--photo { grid-column: span 1; grid-row: span 1; min-height: 12rem; }
  .proof-card.feature { grid-column: span 1; }
  .price-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-proof { gap: 22px; }
  .form-row2 { grid-template-columns: 1fr; }
  .parallax { padding: 100px 0; background-position: center left; }
}
