/* ==========================================================
   Dilama Labs — feuille de style commune (multi-pages)
   sombre & tech · violet foncé + or · glassmorphism
   ========================================================== */

:root {
  --bg: #0d0916;
  --bg-alt: #130d20;
  --surface: #181125;
  --surface-2: #1e1533;
  --border: #2c2142;
  --border-soft: #241a38;
  --text: #ece8f7;
  --text-muted: #a99fc4;

  --violet: #a855f7;
  --violet-2: #c874ff;
  --violet-deep: #7c3aed;
  --gold: #f5b13d;
  --gold-2: #ffcb6b;

  --violet-glow: rgba(168, 85, 247, 0.28);
  --gold-glow: rgba(245, 177, 61, 0.22);

  --glass-bg: rgba(26, 18, 46, 0.45);
  --glass-bg-strong: rgba(20, 13, 34, 0.66);
  --glass-border: rgba(168, 133, 247, 0.20);

  --radius: 16px;
  --font-head: 'Space Mono', 'Courier New', monospace;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.accent { color: var(--violet); }
.accent-gold { color: var(--gold); }
.mono { font-family: var(--font-head); }

/* ---- Fond : aurores animées ---- */
.aurora { position: fixed; inset: 0; z-index: -3; overflow: hidden; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.aurora .a1 { width: 520px; height: 520px; background: radial-gradient(circle, var(--violet) 0%, transparent 70%); top: -140px; left: -100px; animation: drift1 18s ease-in-out infinite; }
.aurora .a2 { width: 460px; height: 460px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); top: 20%; right: -160px; opacity: 0.24; animation: drift2 22s ease-in-out infinite; }
.aurora .a3 { width: 600px; height: 600px; background: radial-gradient(circle, var(--violet-deep) 0%, transparent 70%); bottom: -220px; left: 30%; animation: drift3 26s ease-in-out infinite; }
@keyframes drift1 { 50% { transform: translate(80px, 60px) scale(1.1); } }
@keyframes drift2 { 50% { transform: translate(-70px, 90px) scale(1.15); } }
@keyframes drift3 { 50% { transform: translate(50px, -70px) scale(1.05); } }

/* ---- Halo souris (réduit) ---- */
.cursor-glow {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(220px circle at var(--gx, 50%) var(--gy, 30%), var(--violet-glow), transparent 60%);
  transition: background 0.05s linear;
}

/* ---- Grain ---- */
.grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---- Verre ---- */
.glass { background: var(--glass-bg); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border: 1px solid var(--glass-border); }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--glass-bg-strong); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--glass-border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.logo-mark { color: var(--violet); }
.logo-img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 0.94rem; }
.nav-links a { color: var(--text-muted); transition: color 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--violet); }
.nav-cta { font-family: var(--font-head); background: linear-gradient(135deg, var(--violet), var(--violet-2)); color: #fff !important; padding: 9px 18px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; }
.nav-cta:hover { box-shadow: 0 6px 20px var(--violet-glow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); display: block; }

/* ---- Boutons ---- */
.btn { display: inline-block; font-family: var(--font-head); padding: 14px 26px; border-radius: 12px; font-weight: 700; font-size: 0.9rem; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--violet), var(--violet-2)); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px var(--violet-glow); }
.btn-ghost { border-color: var(--glass-border); color: var(--text); background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Hero ---- */
.hero { padding: 96px 24px 84px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); color: var(--gold); font-size: 0.82rem; letter-spacing: 0.04em; padding: 6px 14px; border-radius: 999px; margin-bottom: 24px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }
.hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 22px; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--border-soft); }
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--violet); }
.hero-stats > div:nth-child(2) .stat-num { color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* Navigateur en verre (visuel hero, rassurant) */
.browser { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(124, 58, 237, 0.22); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--glass-border); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.browser-bar i:nth-child(1) { background: #ff6b6b; }
.browser-bar i:nth-child(2) { background: var(--gold); }
.browser-bar i:nth-child(3) { background: var(--violet); }
.browser-url { flex: 1; margin-left: 8px; font-family: var(--font-head); font-size: 0.72rem; color: var(--text-muted); background: rgba(0,0,0,0.25); border-radius: 7px; padding: 5px 12px; }
.browser-body { padding: 22px; }
.mock-hero { text-align: center; padding: 20px 14px 26px; border-radius: 12px; background: radial-gradient(circle at 30% 10%, rgba(168,85,247,0.28), transparent 60%), var(--bg-alt); border: 1px solid var(--border-soft); }
.mock-pill { display: inline-block; font-family: var(--font-head); font-size: 0.6rem; color: var(--gold); border: 1px solid var(--border); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }
.mock-title { height: 12px; width: 72%; margin: 0 auto 9px; border-radius: 6px; background: linear-gradient(90deg, var(--violet), var(--violet-2)); }
.mock-title.short { width: 48%; }
.mock-line { height: 7px; width: 84%; margin: 0 auto 7px; border-radius: 5px; background: var(--border); }
.mock-line.s { width: 66%; }
.mock-btn { display: inline-block; margin-top: 12px; font-family: var(--font-head); font-size: 0.62rem; color: #fff; background: linear-gradient(135deg, var(--violet), var(--violet-2)); border-radius: 8px; padding: 7px 14px; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.mock-card { height: 46px; border-radius: 9px; background: var(--glass-bg); border: 1px solid var(--glass-border); }

/* ---- Sections ---- */
.section { padding: 90px 24px; }
.section-title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.tag { font-family: var(--font-head); font-size: 0.8rem; color: var(--gold); border: 1px solid var(--border); border-radius: 8px; padding: 3px 9px; }
.section-intro { color: var(--text-muted); max-width: 640px; margin-bottom: 48px; }
.page-head { padding: 70px 24px 10px; }
.page-head h1 { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 12px; }
.page-head p { color: var(--text-muted); max-width: 640px; }

/* ---- Carte en verre ---- */
.card { position: relative; background: var(--glass-bg); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border: 1px solid var(--glass-border); border-radius: var(--radius); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-5px); border-color: var(--violet); box-shadow: 0 14px 40px rgba(124, 58, 237, 0.20); }

/* ---- Bento "Mes missions" ---- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.bento-card { padding: 30px 26px; display: flex; flex-direction: column; }
.bento-3 { grid-column: span 2; }
.bento-5 { grid-column: span 3; }
.bento-visual { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 120px; margin-bottom: 6px; }
.bento-visual.row { justify-content: flex-start; }
.bento-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--violet-2); margin-bottom: 8px; }
.bento-card p { color: var(--text-muted); font-size: 0.9rem; }
.bento-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.mini-frame { border: 1px solid var(--glass-border); border-radius: 12px; padding: 10px; background: rgba(0,0,0,0.2); }
.mini-frame .dots { display: flex; gap: 4px; margin-bottom: 8px; }
.mini-frame .dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--border); display: inline-block; }
.icon-circle { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.steps { display: flex; flex-direction: column; gap: 12px; }
.step { display: flex; align-items: center; gap: 12px; }
.step .lbl { font-family: var(--font-head); font-size: 0.72rem; color: var(--text); border: 1px solid var(--glass-border); border-radius: 8px; padding: 5px 10px; background: var(--glass-bg); }
.step .pt { width: 12px; height: 12px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 10px var(--violet-glow); }

/* ---- Portfolio ---- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.portfolio-card { overflow: hidden; }
.portfolio-thumb { height: 168px; position: relative; overflow: hidden; background: radial-gradient(circle at 25% 20%, rgba(168,85,247,0.4), transparent 55%), radial-gradient(circle at 80% 85%, rgba(245,177,61,0.3), transparent 55%), var(--bg-alt); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--glass-border); }
.portfolio-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.portfolio-thumb-label { font-family: var(--font-head); color: var(--text); font-size: 0.95rem; opacity: 0.9; }
.portfolio-body { padding: 24px; }
.portfolio-body--center { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; height: 100%; min-height: 192px; }
.portfolio-card--next { border-style: dashed; border-color: var(--border); }
.portfolio-body h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.2rem; }
.portfolio-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.portfolio-tags span { font-family: var(--font-head); font-size: 0.72rem; color: var(--text-muted); border: 1px solid var(--border); border-radius: 7px; padding: 3px 8px; }
.portfolio-link { color: var(--violet); font-weight: 600; font-size: 0.9rem; }
.portfolio-link:hover { color: var(--gold); }

/* ---- Réalisations larges (mockup multi-appareils) ---- */
.realisations-list { display: flex; flex-direction: column; gap: 32px; }
.realisation { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center; padding: 40px 40px; }
.realisation-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.realisation-badges span { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 0.72rem; color: var(--text-muted); border: 1px solid var(--border); background: var(--glass-bg); border-radius: 999px; padding: 5px 12px; }
.realisation-info h3 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.realisation-info h3::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.realisation-desc { color: var(--text-muted); margin-bottom: 20px; }
.objectif-box { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; }
.objectif-box h4 { font-family: var(--font-head); font-size: 0.9rem; color: var(--violet-2); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.objectif-box p { color: var(--text-muted); font-size: 0.9rem; }
.realisation-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.realisation-tags span { font-family: var(--font-head); font-size: 0.72rem; color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 5px 11px; background: var(--glass-bg); }

/* Mockup multi-appareils */
.showcase { position: relative; width: 100%; max-width: 540px; margin: 0 auto; aspect-ratio: 4 / 3.1; }
.device { position: absolute; background: #0a0a12; border: 1px solid #201a30; overflow: hidden; box-shadow: 0 24px 55px rgba(0,0,0,0.55); }
.device img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.dev-desktop { width: 90%; aspect-ratio: 16 / 10; top: 2%; left: 50%; transform: translateX(-50%); border-radius: 12px; padding: 9px 9px 16px; }
.dev-desktop::after { content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%); width: 26%; height: 4px; border-radius: 3px; background: #201a30; }
.dev-desktop .screen { width: 100%; height: 100%; border-radius: 5px; overflow: hidden; }
.dev-tablet { width: 33%; aspect-ratio: 3 / 4; bottom: 0; left: 0; border-radius: 14px; padding: 7px; transform: rotate(-5deg); }
.dev-tablet .screen { width: 100%; height: 100%; border-radius: 8px; overflow: hidden; }
.dev-phone { width: 19%; aspect-ratio: 9 / 19; bottom: 3%; right: 2%; border-radius: 20px; padding: 5px; transform: rotate(5deg); }
.dev-phone .screen { width: 100%; height: 100%; border-radius: 15px; overflow: hidden; }

/* ---- Services ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card { padding: 28px; }
.service-card:hover { border-color: var(--gold); box-shadow: 0 14px 40px var(--gold-glow); }
.service-icon { font-family: var(--font-head); color: var(--gold); font-size: 1rem; border: 1px solid var(--border); border-radius: 9px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.soon { font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); border-radius: 999px; padding: 2px 8px; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---- Tarifs ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.price-card { padding: 32px 28px; display: flex; flex-direction: column; }
.price-card--featured { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet), 0 16px 40px var(--violet-glow); }
.price-badge { position: absolute; top: -13px; left: 28px; font-family: var(--font-head); background: var(--gold); color: #1a1200; font-size: 0.68rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; letter-spacing: 0.02em; }
.price-card h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 10px; }
.price { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; margin-bottom: 20px; }
.price small { display: block; font-family: var(--font-body); font-size: 0.72rem; color: var(--text-muted); font-weight: 400; margin-top: 2px; }
.price-card ul { margin-bottom: 28px; flex-grow: 1; }
.price-card li { color: var(--text-muted); font-size: 0.9rem; padding: 6px 0 6px 22px; position: relative; }
.price-card li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-family: var(--font-head); }
.price-card .btn { text-align: center; }
.pricing-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 32px; text-align: center; }
.subtag { color: var(--gold); }

/* ---- À propos + Contact ---- */
.about-contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.about p { color: var(--text-muted); margin-bottom: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-family: var(--font-head); font-size: 0.8rem; color: var(--text-muted); }
.form-row input, .form-row textarea { background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 11px; padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px var(--violet-glow); }
.contact-form .btn { align-self: flex-start; border: none; }
.contact-direct { margin-top: 20px; color: var(--text-muted); font-size: 0.9rem; }
.contact-direct a { color: var(--violet); }
.contact-direct a:hover { color: var(--gold); }

/* ---- Section "Qui je suis" ---- */
.story { position: relative; }
.story-card { padding: 48px 44px; }
.story h2 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 8px; }
.story .lead { color: var(--text); font-size: 1.1rem; margin-bottom: 26px; }
.story-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 10px; }
.story-cols h3 { font-family: var(--font-head); font-size: 1rem; color: var(--gold); margin-bottom: 8px; }
.story-cols p { color: var(--text-muted); font-size: 0.92rem; }

/* ---- Page légale (prose) ---- */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }
.legal h2 { font-family: var(--font-head); font-size: 1.15rem; color: var(--violet-2); margin: 34px 0 10px; }
.legal h2:first-of-type { margin-top: 12px; }
.legal p, .legal li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal .fill { color: var(--gold); background: rgba(245,177,61,0.08); border: 1px dashed rgba(245,177,61,0.4); border-radius: 6px; padding: 1px 7px; font-family: var(--font-head); font-size: 0.85rem; }
.legal .updated { color: var(--text-muted); font-size: 0.82rem; font-style: italic; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--border-soft); padding: 40px 0 32px; margin-top: 40px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 22px; color: var(--text-muted); font-size: 0.85rem; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col .logo-mark { font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border-soft); }
.back-top:hover { color: var(--gold); }

/* ---- Bannière cookies ---- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; display: none; }
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: space-between; padding: 20px 24px; border-radius: 16px; }
.cookie-text { flex: 1 1 380px; }
.cookie-text h4 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 6px; }
.cookie-text p { color: var(--text-muted); font-size: 0.88rem; }
.cookie-text a { color: var(--violet); }
.cookie-text a:hover { color: var(--gold); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 20px; font-size: 0.82rem; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .bento-3 { grid-column: span 3; }
  .bento-5 { grid-column: span 3; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: 2; }
  .story-cols { grid-template-columns: 1fr; gap: 18px; }
  .realisation { grid-template-columns: 1fr; gap: 32px; padding: 30px 24px; }
  .realisation-visual { order: -1; }
}
@media (max-width: 860px) { .about-contact { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .bento { grid-template-columns: 1fr; }
  .bento-3, .bento-5 { grid-column: span 1; }
  .bento-inline { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; top: 74px; left: 0; right: 0; background: var(--glass-bg-strong); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); flex-direction: column; align-items: flex-start; padding: 20px 24px 28px; gap: 18px; display: none; }
  .nav-links.open { display: flex; }
  .hero { padding: 70px 24px 56px; }
  .hero-stats { gap: 28px; }
  .section { padding: 62px 24px; }
  .story-card { padding: 34px 24px; }
  .cookie-actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) { .aurora span, .eyebrow .dot { animation: none; } }

/* ==========================================================
   Révélations au scroll (remplace framer-motion, version statique)
   Un élément .reveal démarre invisible et légèrement décalé,
   puis apparaît quand il entre dans l'écran (classe .is-visible
   ajoutée par script.js). Le décalage en cascade se règle avec
   l'attribut style="transition-delay:.1s" directement dans le HTML.
   ========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
