/* ==========================================================================
   CanadaGameVera — Cyber-Néon Timberpunk (canadagamevera.com)
   Feuille de style unique, sans outil de compilation.
   ========================================================================== */
:root {
  --bark: #120c0a;
  --slate: #1a232a;
  --mahogany: #3e2723;
  --timber: #5d4037;
  --yellow: #ffd600;
  --teal: #00e5ff;
  --bone: #f5efe6;
  --grid: rgba(255, 214, 0, 0.04);
  --grid-strong: rgba(255, 214, 0, 0.09);
  --accent: var(--yellow);
  --display: 'Bungee', Impact, sans-serif;
  --body: 'Space Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
* { margin: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bark);
  color: var(--bone);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(900px 520px at 12% -8%, rgba(255, 214, 0, 0.07), transparent 62%),
    radial-gradient(760px 480px at 88% 4%, rgba(0, 229, 255, 0.075), transparent 60%),
    radial-gradient(1100px 700px at 50% 108%, rgba(62, 39, 35, 0.55), transparent 70%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--yellow); color: var(--bark); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #0d0806; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--timber), var(--mahogany)); border: 2px solid #0d0806; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--yellow), #b39400); }

/* -- utilitaires ---------------------------------------------------------- */
.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.mono { font-family: var(--mono); }
.stencil { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 400; }
.muted { color: rgba(245, 239, 230, 0.58); }
.right { text-align: right; }
.right-push { margin-left: auto; }

.neon-yellow { color: var(--yellow); text-shadow: 0 0 5px rgba(255,214,0,.85), 0 0 20px rgba(255,214,0,.45), 0 0 48px rgba(255,214,0,.2); }
.neon-teal { color: var(--teal); text-shadow: 0 0 5px rgba(0,229,255,.85), 0 0 20px rgba(0,229,255,.45), 0 0 48px rgba(0,229,255,.2); }

.glass-timber {
  position: relative;
  background:
    linear-gradient(160deg, rgba(62,39,35,.62), rgba(18,12,10,.72)),
    linear-gradient(0deg, rgba(26,35,42,.5), rgba(26,35,42,.5));
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border: 1px solid rgba(255, 214, 0, 0.16);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,214,0,.14), inset 0 0 60px rgba(0,0,0,.45), 0 28px 60px -34px rgba(0,0,0,.95);
}
.glass-timber::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 100%);
}
.rivets::after {
  content: ''; position: absolute; inset: 8px; pointer-events: none; border-radius: inherit;
  background-image: radial-gradient(circle, rgba(255,214,0,.5) 1.4px, transparent 1.6px);
  background-position: 0 0, 100% 0, 0 100%, 100% 100%;
  background-size: 10px 10px; background-repeat: no-repeat;
}
.blueprint {
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(var(--grid-strong) 1px, transparent 1px), linear-gradient(90deg, var(--grid-strong) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
}
.scanlines { background-image: repeating-linear-gradient(0deg, rgba(0,0,0,.22) 0 1px, transparent 1px 3px); }
.hazard-tape { background: repeating-linear-gradient(-45deg, #ffd600 0 18px, #120c0a 18px 36px); }
.clip-notch { clip-path: polygon(0 14px, 14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px)); }

/* -- boutons -------------------------------------------------------------- */
.btn-hydraulic {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 12px; padding: .75rem 1.5rem; cursor: pointer;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-size: .9rem;
  transition: transform 90ms cubic-bezier(.2,.9,.3,1.2), box-shadow 90ms ease, filter 160ms ease;
}
.btn-hydraulic:active { transform: translateY(6px); }
.btn-sm { padding: .5rem 1rem; font-size: .72rem; }
.btn-primary { background: linear-gradient(180deg, #ffe14d, var(--yellow) 45%, #d9b600); color: #1a1206; border: 1px solid rgba(0,0,0,.35); box-shadow: 0 6px 0 0 #7a6600, 0 12px 26px -8px rgba(255,214,0,.55), inset 0 1px 0 rgba(255,255,255,.55); }
.btn-primary:active { box-shadow: 0 0 0 0 #7a6600, inset 0 2px 6px rgba(0,0,0,.35); }
.btn-secondary { background: linear-gradient(180deg, rgba(0,229,255,.18), rgba(0,229,255,.06)); color: var(--teal); border: 1px solid rgba(0,229,255,.45); box-shadow: 0 6px 0 0 #00505c, 0 12px 26px -10px rgba(0,229,255,.5); }
.btn-secondary:active { box-shadow: 0 0 0 0 #00505c, inset 0 2px 8px rgba(0,0,0,.5); }
.btn-ghost { background: rgba(62,39,35,.5); color: var(--bone); border: 1px solid rgba(255,214,0,.22); box-shadow: 0 6px 0 0 rgba(0,0,0,.55); }
.btn-ghost:active { box-shadow: 0 0 0 0 rgba(0,0,0,.55); }
button.btn-hydraulic { font-weight: 400; }

.chip {
  display: inline-flex; align-items: center; gap: .35rem; border-radius: 999px; border: 1px solid rgba(255,214,0,.28);
  padding: .15rem .6rem; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .14em;
  background: rgba(255,214,0,.07); color: rgba(255,229,102,.92); white-space: nowrap;
}
.chip-teal { border-color: rgba(0,229,255,.32); background: rgba(0,229,255,.08); color: var(--teal); }
.chip.is-on { background: var(--yellow); color: #1a1206; border-color: var(--yellow); }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }

.icon-btn { background: rgba(62,39,35,.55); border: 1px solid rgba(255,214,0,.22); color: var(--bone); border-radius: 10px; width: 38px; height: 38px; cursor: pointer; font-size: 1rem; }
.icon-btn:hover { border-color: var(--yellow); }
.input { background: rgba(18,12,10,.8); border: 1px solid rgba(255,214,0,.28); color: var(--bone); border-radius: 10px; padding: .7rem .9rem; font-family: var(--mono); font-size: .85rem; min-width: 0; flex: 1; }

/* -- entête --------------------------------------------------------------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(18,12,10,.82); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,214,0,.12); }
.nav-inner { display: flex; align-items: center; gap: 1.25rem; height: 70px; }
.brand { display: flex; align-items: center; gap: .5rem; font-family: var(--display); font-size: 1.15rem; text-transform: uppercase; }
.brand-mark { font-size: 1.5rem; }
.brand-tld { font-size: 9px; }
.nav-links { display: flex; gap: 1.4rem; margin-left: auto; font-size: .9rem; }
.nav-links a { padding: .35rem 0; border-bottom: 2px solid transparent; color: rgba(245,239,230,.72); }
.nav-links a:hover { color: var(--bone); }
.nav-links a.is-active { color: var(--yellow); border-color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: .6rem; margin-left: 1rem; }
.nav-burger { display: none; }
.nav-tape { height: 3px; opacity: .55; }

/* -- héros ---------------------------------------------------------------- */
.hero { padding: 4rem 0 2rem; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero-title { font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.05; margin: 1rem 0; }
.hero-sub { color: rgba(245,239,230,.72); font-size: 1.05rem; max-width: 46ch; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; border-top: 1px solid rgba(255,214,0,.14); padding-top: 1.2rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.5rem; }
.hero-stats span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(245,239,230,.5); }

.hero-board { position: relative; padding: 1.6rem; overflow: hidden; }
.board-scan { position: absolute; inset: 0; opacity: .35; pointer-events: none; }
.board-label { font-size: 11px; color: rgba(0,229,255,.7); letter-spacing: .1em; }
.board-gauge { margin: 1.2rem 0; }
.gauge-track { height: 12px; border-radius: 99px; background: rgba(0,0,0,.55); border: 1px solid rgba(255,214,0,.2); overflow: hidden; }
.gauge-track.big { height: 22px; }
.gauge-fill { height: 100%; background: linear-gradient(90deg, var(--timber), var(--accent)); box-shadow: 0 0 18px rgba(255,214,0,.5); }
.gauge-legend { display: flex; justify-content: space-between; font-size: 11px; margin-top: .5rem; }
.board-list { list-style: none; padding: 0; display: grid; gap: .55rem; font-size: 12px; }
.board-list li { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(255,214,0,.14); padding-bottom: .45rem; }
.board-beaver { position: absolute; right: -10px; bottom: -18px; font-size: 6rem; opacity: .12; }

/* -- sections ------------------------------------------------------------- */
.section { padding: 3rem 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.section-kicker { font-size: 11px; letter-spacing: .16em; color: rgba(0,229,255,.7); text-transform: uppercase; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: .3rem; }
.link-arrow { font-family: var(--mono); font-size: .8rem; color: var(--teal); }
.link-arrow:hover { text-decoration: underline; }
.page-head { margin-bottom: 2rem; }
.page-title { font-size: clamp(2rem, 4.5vw, 3rem); margin: .4rem 0; }
.page-sub { color: rgba(245,239,230,.66); max-width: 60ch; }

/* -- cartes de jeu -------------------------------------------------------- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.card { display: flex; flex-direction: column; overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-5px); border-color: var(--accent); }
.card-art { position: relative; height: 150px; display: grid; place-items: center; background-color: rgba(0,0,0,.35); border-bottom: 1px solid rgba(255,214,0,.14); }
.card-emoji { font-size: 3.4rem; filter: drop-shadow(0 0 22px var(--accent)); }
.card-diff { position: absolute; top: .7rem; right: .7rem; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; padding: .2rem .55rem; border-radius: 99px; border: 1px solid currentColor; }
.diff-1 { color: #7cb342; } .diff-2 { color: var(--yellow); } .diff-3 { color: #ff5252; }
.card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-kicker { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(0,229,255,.7); }
.card-title { font-size: 1.15rem; color: var(--accent); }
.card-tag { color: rgba(245,239,230,.66); font-size: .9rem; }
.card-cta { margin-top: auto; padding-top: .6rem; font-family: var(--mono); font-size: .78rem; color: var(--accent); }

/* -- tableaux ------------------------------------------------------------- */
.board { width: 100%; border-collapse: collapse; overflow: hidden; }
.board th, .board td { padding: .8rem 1rem; text-align: left; font-size: .9rem; }
.board th { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: rgba(245,239,230,.5); border-bottom: 1px solid rgba(255,214,0,.18); }
.board tbody tr { border-bottom: 1px solid rgba(255,214,0,.07); }
.board tbody tr:hover { background: rgba(255,214,0,.04); }
.board .right { text-align: right; }
.rank { color: rgba(245,239,230,.45); }
.empty { padding: 2.5rem; text-align: center; display: grid; gap: 1rem; justify-items: center; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.tabs { display: flex; gap: .4rem; margin-bottom: 1rem; }
.tab { background: rgba(62,39,35,.5); border: 1px solid rgba(255,214,0,.18); color: rgba(245,239,230,.7); border-radius: 999px; padding: .35rem .85rem; font-family: var(--mono); font-size: 11px; cursor: pointer; }
.tab.is-active { background: var(--yellow); color: #1a1206; border-color: var(--yellow); }
.tabs-lg .tab { padding: .5rem 1.1rem; font-size: 12px; }

/* -- page de jeu ---------------------------------------------------------- */
.crumbs { font-size: 11px; color: rgba(245,239,230,.45); margin-bottom: 1rem; display: flex; gap: .5rem; }
.crumbs a:hover { color: var(--yellow); }
.play-grid { display: grid; grid-template-columns: 1fr 330px; gap: 1.5rem; align-items: start; }
.stage { padding: 1.2rem; }
.stage-bar { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.stage-title { font-size: 1.4rem; color: var(--accent); }
.hud { display: flex; gap: 1.5rem; }
.hud div { display: flex; flex-direction: column; align-items: flex-end; }
.hud span { font-size: 9px; text-transform: uppercase; letter-spacing: .16em; color: rgba(245,239,230,.45); }
.hud b { font-size: 1.4rem; }
.canvas-wrap { position: relative; width: 100%; max-height: 68vh; margin-inline: auto; }
.canvas-wrap canvas { width: 100%; height: 100%; border-radius: 12px; background: var(--bark); touch-action: none; user-select: none; outline: none; }
.play .canvas-wrap { max-width: 100%; }
.overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(9,6,5,.78); backdrop-filter: blur(4px); border-radius: 12px; padding: 1rem; }
.overlay[hidden] { display: none; }
.overlay-card { padding: 1.8rem; text-align: center; display: grid; gap: .8rem; justify-items: center; max-width: 380px; }
.overlay-card h2 { font-size: 1.5rem; }
.hint { font-size: 10px; color: rgba(245,239,230,.45); max-width: 30ch; }
.final b { color: var(--yellow); font-size: 1.4rem; }
.save-row { display: flex; gap: .5rem; width: 100%; flex-wrap: wrap; }
.save-msg { font-size: 11px; min-height: 1.1em; }
.save-msg.ok { color: #7cb342; } .save-msg.err { color: #ff5252; }
.stage-actions { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.stage-meta { font-size: 11px; margin-left: auto; }

.side { display: grid; gap: 1rem; }
.panel { padding: 1.1rem 1.2rem; }
.panel-title { font-size: .95rem; margin-bottom: .8rem; color: var(--accent); }
.controls { list-style: none; padding: 0; display: grid; gap: .55rem; }
.controls li { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: rgba(245,239,230,.75); }
kbd { font-family: var(--mono); font-size: 10px; background: rgba(0,0,0,.5); border: 1px solid rgba(255,214,0,.3); border-radius: 6px; padding: .2rem .45rem; white-space: nowrap; min-width: 78px; text-align: center; color: var(--yellow); }
.desc { font-size: .85rem; line-height: 1.6; color: rgba(245,239,230,.7); margin-bottom: .8rem; }
.mini-board { list-style: none; padding: 0; display: grid; gap: .4rem; }
.mini-board li { display: flex; align-items: center; gap: .6rem; font-size: .82rem; border-bottom: 1px dashed rgba(255,214,0,.1); padding-bottom: .35rem; }
.mini-board .who { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.empty-row { font-size: .78rem; }
.other { list-style: none; padding: 0; display: grid; gap: .45rem; font-size: .85rem; }
.other a:hover { color: var(--yellow); }

/* -- barrage -------------------------------------------------------------- */
.dam-top { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.2rem; margin-bottom: 2.5rem; }
.dam-main { display: grid; gap: .8rem; align-content: start; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1rem; margin-top: .8rem; }
.stat-row div { display: flex; flex-direction: column; }
.stat-row b { font-size: 1.4rem; }
.stat-row span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(245,239,230,.5); }
.dam-games { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.dam-game { display: grid; gap: .55rem; transition: border-color .18s ease; }
.dam-game:hover { border-color: var(--accent); }
.dam-game p:first-child { font-size: .9rem; color: var(--accent); }
.dam-game p:last-child { font-size: 11px; }
.feed { list-style: none; padding: 1rem 1.2rem; display: grid; gap: .6rem; }
.feed li { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; font-size: .85rem; border-bottom: 1px dashed rgba(255,214,0,.1); padding-bottom: .5rem; }
.feed a { color: var(--teal); }

/* -- pages légales et contact --------------------------------------------- */
.legal-meta { font-size: 11px; color: rgba(0,229,255,.65); letter-spacing: .08em; margin-top: .9rem; }
.prose { padding: 2rem 2.2rem 2.4rem; max-width: 78ch; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-size: 1.05rem; color: var(--yellow); margin-top: 2.2rem; padding-top: 1.1rem; border-top: 1px dashed rgba(255,214,0,.16); }
.prose h2:first-of-type { margin-top: 1.6rem; }
.prose h3 { font-size: .9rem; color: var(--teal); margin-top: 1.4rem; font-weight: 500; }
.prose p, .prose li { font-size: .92rem; line-height: 1.75; color: rgba(245,239,230,.78); }
.prose ul { padding-left: 1.2rem; display: grid; gap: .5rem; }
.prose li::marker { color: var(--yellow); }
.prose b { color: var(--bone); }
.prose a { color: var(--teal); border-bottom: 1px solid rgba(0,229,255,.35); }
.prose a:hover { color: var(--yellow); border-color: var(--yellow); }
.prose .mono { font-size: .85em; color: rgba(255,229,102,.85); }
.prose .lede { font-size: 1rem; line-height: 1.7; color: rgba(245,239,230,.9); border-left: 3px solid var(--yellow); padding: .2rem 0 .2rem 1rem; }
.prose .table-scroll { overflow-x: auto; }
.prose .table-scroll .board { min-width: 520px; border: 1px solid rgba(255,214,0,.14); border-radius: 12px; }
.contact-list { list-style: none; padding: 0; display: grid; gap: .55rem; }
.contact-list li { display: flex; flex-wrap: wrap; gap: .3rem 1rem; justify-content: space-between; border-bottom: 1px dashed rgba(255,214,0,.12); padding-bottom: .45rem; }
.contact-list .mono { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(245,239,230,.5); align-self: center; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.contact-card { display: grid; gap: .5rem; align-content: start; transition: border-color .18s ease; }
.contact-card:hover { border-color: var(--yellow); }
.contact-card .panel-title { color: var(--bone); margin-bottom: 0; }
.contact-card .desc { margin-bottom: 0; }
.contact-mail { font-size: .82rem; color: var(--teal); word-break: break-all; border-bottom: 1px solid rgba(0,229,255,.35); justify-self: start; }
.contact-mail:hover { color: var(--yellow); border-color: var(--yellow); }
.contact-note { margin-top: 0; }

/* -- pied ----------------------------------------------------------------- */
.footer { margin-top: 3rem; border-top: 1px solid rgba(255,214,0,.12); background: rgba(9,6,5,.6); }
.footer-tape { height: 3px; opacity: .5; }
.footer-inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2rem; padding: 2.5rem 0 1.5rem; }
.footer-mail { margin-top: .7rem; font-size: .8rem; }
.footer-mail a { color: var(--teal); word-break: break-all; }
.footer-mail a:hover { color: var(--yellow); }
.footer-brand { font-size: 1.2rem; margin-bottom: .5rem; }
.footer-head { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: rgba(0,229,255,.7); margin-bottom: .7rem; }
.footer-list { list-style: none; padding: 0; display: grid; gap: .4rem; font-size: .85rem; color: rgba(245,239,230,.7); }
.footer-list a:hover { color: var(--yellow); }
.footer-legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1rem 0 2rem; border-top: 1px solid rgba(255,214,0,.1); font-size: .75rem; color: rgba(245,239,230,.45); }

/* -- adaptatif ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-inner, .play-grid, .dam-top { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .prose { padding: 1.6rem 1.5rem 2rem; }
}
@media (max-width: 760px) {
  .brand { font-size: 1rem; }
  .brand-mark { font-size: 1.25rem; }
  .prose { padding: 1.4rem 1.2rem 1.8rem; }
  .legal-nav { gap: .8rem; flex-direction: column; }
  .nav-links { position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(18,12,10,.97); border-bottom: 1px solid rgba(255,214,0,.15); padding: .5rem 1.25rem; display: none; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .8rem 0; border-bottom: 1px solid rgba(255,214,0,.08); }
  .nav-burger { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 2.5rem; }
  .stage { padding: .8rem; }
}

@media (max-width: 440px) {
  /* La marque est longue : on laisse tomber le suffixe .com sur très petit écran. */
  .brand-tld { display: none; }
  .brand { font-size: .92rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
