/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #05050a;
  color: #eae7f2;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

:root {
  --violet: #a855f7;
  --cyan: #22d3ee;
  --gold: #d4af37;
  --crimson: #7a1f2b;
  --glitch-red: #ff3b30;
  --glitch-blue: #2b6bff;
  --bg: #05050a;
  --bg-soft: #0b0b14;
  --ink-dim: #a3a0b5;
  --max: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

/* ============ REVEAL ANIMATION ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============ CURSOR GLOW / NOISE ============ */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px;
  border-radius: 50%; pointer-events: none; z-index: 2;
  background: radial-gradient(circle, rgba(168,85,247,.16), rgba(34,211,238,.08) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .4s ease;
  will-change: transform;
}
@media (hover: none) { .cursor-glow { display: none; } }

.noise-overlay {
  position: fixed; inset: 0; z-index: 3; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 60;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 12px rgba(168,85,247,.6);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 48px);
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5,5,10,.72);
  backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom-color: rgba(255,255,255,.06);
}
.nav__brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.3rem; letter-spacing: .12em;
  background: linear-gradient(120deg, #fff, var(--cyan), var(--violet), #fff);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 7s linear infinite;
}
@keyframes shine { to { background-position: 300% center; } }

.nav__links { display: flex; gap: clamp(16px, 3vw, 36px); }
.nav__links a {
  font-size: .92rem; color: var(--ink-dim); position: relative; padding: 4px 0;
  transition: color .25s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: width .3s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; z-index: 51; }
.nav__toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

/* ============ HERO ============ */
.hero {
  position: relative; isolation: isolate; min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 100px 20px 40px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
  animation: float 16s ease-in-out infinite;
  pointer-events: none;
}
.hero__blob--a { width: 560px; height: 560px; top: -180px; left: -140px; background: radial-gradient(circle, var(--violet), transparent 70%); }
.hero__blob--b { width: 500px; height: 500px; bottom: -200px; right: -140px; background: radial-gradient(circle, var(--cyan), transparent 70%); animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
}

.hero__content { position: relative; z-index: 1; max-width: 820px; }
.hero__kicker {
  font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .35em;
  font-size: .78rem; color: var(--cyan); margin-bottom: 18px;
}
.hero__title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 6rem); line-height: .95; letter-spacing: -.02em;
  margin: 0 0 18px; position: relative;
}
.hero__title-inner {
  background: linear-gradient(120deg, #fff 20%, var(--cyan), var(--violet), #fff 80%);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 8s linear infinite;
  display: inline-block;
}
.hero__title::before, .hero__title::after {
  content: attr(data-glitch);
  position: absolute; inset: 0; -webkit-background-clip: text;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.5);
  opacity: 0; pointer-events: none;
}
.hero:hover .hero__title::before { animation: glitch1 2.4s infinite; }
.hero:hover .hero__title::after { animation: glitch2 2.4s infinite; }
@keyframes glitch1 {
  0%, 92%, 100% { opacity: 0; transform: translate(0); }
  93% { opacity: .5; transform: translate(-3px, 1px); clip-path: inset(10% 0 60% 0); }
  95% { opacity: .5; transform: translate(3px, -1px); clip-path: inset(60% 0 5% 0); }
  97% { opacity: 0; }
}
@keyframes glitch2 {
  0%, 90%, 100% { opacity: 0; transform: translate(0); }
  91% { opacity: .4; transform: translate(3px, -2px); clip-path: inset(30% 0 40% 0); }
  94% { opacity: .4; transform: translate(-3px, 2px); clip-path: inset(70% 0 10% 0); }
  96% { opacity: 0; }
}
.hero__tagline { font-size: clamp(.95rem, 1.7vw, 1.15rem); color: var(--ink-dim); line-height: 1.55; margin-bottom: 28px; }

.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1;
  pointer-events: none;
}
.hero__scroll span {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero__scroll p { font-family: 'JetBrains Mono', monospace; font-size: .68rem; letter-spacing: .3em; color: var(--ink-dim); text-transform: uppercase; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(34,211,238,.55); }
.btn--ghost { background: linear-gradient(120deg, var(--violet), var(--cyan)); color: #05050a; }
.btn--ghost:hover { box-shadow: 0 12px 30px -8px rgba(168,85,247,.6); }
.btn--outline { border-color: rgba(255,255,255,.22); color: #fff; }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.btn--gold { background: linear-gradient(120deg, #f4d675, var(--gold) 55%, #9c7419); color: #241705; }
.btn--gold:hover { box-shadow: 0 14px 32px -10px rgba(212,175,55,.55); }

.btn--glitch { background: linear-gradient(120deg, var(--glitch-red), var(--glitch-blue)); color: #fff; }
.btn--glitch:hover { box-shadow: 0 14px 32px -10px rgba(255,59,48,.5); }

/* ============ MINI-JEU (dans le hero, pleine largeur, visible sans scroller) ============ */
.minigame { position: relative; z-index: 5; width: 100%; padding-top: 64px; }

.minigame__frame {
  position: relative; width: 100%;
  border-radius: 16px; border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(168,85,247,.09), rgba(34,211,238,.03));
  padding: 18px; backdrop-filter: blur(6px);
  box-shadow: 0 25px 55px -28px rgba(0,0,0,.75);
}
.minigame__hud {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: .74rem; letter-spacing: .12em;
  color: var(--ink-dim); padding: 0 6px 16px;
}
.minigame__hud strong { color: var(--cyan); font-size: .9rem; }

#runnerCanvas {
  display: block; width: 100%; height: clamp(130px, 22vw, 190px); border-radius: 10px;
  background: linear-gradient(180deg, rgba(10,10,18,.9), rgba(5,5,10,.95));
  touch-action: manipulation;
}

/* Bouton cohérent avec les CTA du site : réutilise .btn / .btn--ghost */
.minigame__play {
  position: absolute; inset: 48px 0 0 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,5,10,.5); border: none; border-radius: 0 0 10px 10px; cursor: pointer;
  transition: opacity .3s ease, visibility .3s ease, background .3s ease;
  outline: none;
}
.minigame__play:hover { background: rgba(5,5,10,.32); }
.minigame__play:focus .btn { box-shadow: 0 0 0 3px rgba(34,211,238,.55); }
.minigame__play.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
  background: var(--bg-soft); overflow: hidden; padding: 18px 0;
}
.marquee__track {
  display: inline-flex; white-space: nowrap; gap: 22px;
  animation: marquee 26s linear infinite;
  font-family: 'JetBrains Mono', monospace; font-size: .82rem; letter-spacing: .2em;
  color: var(--ink-dim);
}
.marquee__track span:nth-child(2n) { color: var(--cyan); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ MANIFESTO ============ */
.manifesto { padding: clamp(80px, 14vw, 160px) 0; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .3em;
  font-size: .76rem; color: var(--violet); margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--glitch { color: var(--glitch-red); }

.manifesto__title { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 600; line-height: 1.15; max-width: 680px; margin-bottom: 26px; }
.manifesto__text { font-size: 1.08rem; color: var(--ink-dim); max-width: 640px; line-height: 1.75; margin-bottom: 64px; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar {
  padding: 30px 26px; border-radius: 18px; border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(168,85,247,.4); background: linear-gradient(160deg, rgba(168,85,247,.1), rgba(34,211,238,.02)); }
.pillar__num { font-family: 'JetBrains Mono', monospace; color: var(--cyan); font-size: .82rem; }
.pillar h3 { font-size: 1.25rem; margin: 14px 0 10px; font-weight: 600; }
.pillar p { color: var(--ink-dim); line-height: 1.6; font-size: .95rem; }

.manifesto__note {
  margin-top: 34px; padding: 18px 22px; max-width: 640px;
  border-left: 2px solid var(--cyan); color: var(--ink-dim);
  font-size: .92rem; line-height: 1.65; font-style: italic;
}

/* ============ SHOWCASE (shared) ============ */
.showcase { position: relative; padding: clamp(90px, 14vw, 160px) 0; overflow: hidden; }
.showcase__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; transform: scale(1.06); filter: saturate(1.1); }
.showcase__scrim { position: absolute; inset: 0; z-index: 0; }
.showcase__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.showcase__inner--reverse { grid-template-columns: .85fr 1.15fr; }
.showcase__inner--reverse .album { order: 1; }
.showcase__inner--reverse .showcase__text { order: 2; }

.showcase__desc { color: var(--ink-dim); line-height: 1.75; font-size: 1.02rem; max-width: 560px; margin-bottom: 26px; }
.showcase__title { font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1; margin-bottom: 22px; }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip { padding: 8px 16px; border-radius: 999px; font-size: .8rem; font-weight: 600; letter-spacing: .02em; border: 1px solid; }
.chip--gold { color: #f4d675; border-color: rgba(212,175,55,.4); background: rgba(212,175,55,.08); }
.chip--glitch { color: #ff9187; border-color: rgba(255,59,48,.35); background: rgba(255,59,48,.08); }

/* --- Charta Logica theme --- */
.showcase--charta .showcase__bg { filter: saturate(.9) brightness(.55) sepia(.15); }
.showcase--charta .showcase__scrim {
  background: linear-gradient(100deg, rgba(5,4,2,.94) 20%, rgba(20,10,4,.75) 55%, rgba(5,4,2,.9)),
              radial-gradient(circle at 80% 30%, rgba(122,31,43,.35), transparent 55%);
}
.showcase__title--charta {
  font-family: 'Cinzel Decorative', serif; font-weight: 700;
  background: linear-gradient(120deg, #f4d675, var(--gold) 45%, #fff 60%, var(--gold) 80%);
  background-size: 260% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 9s linear infinite;
  text-shadow: 0 0 60px rgba(212,175,55,.25);
}

.card-stack { position: relative; height: clamp(340px, 44vw, 480px); }
.card-stack__item {
  position: absolute; width: clamp(140px, 15vw, 190px); border-radius: 12px;
  border: 2px solid rgba(212,175,55,.5); box-shadow: 0 25px 50px -18px rgba(0,0,0,.7), 0 0 0 1px rgba(0,0,0,.4);
  transition: transform .45s cubic-bezier(.16,.84,.44,1), box-shadow .45s ease;
  animation: cardFloat 7s ease-in-out infinite;
}
.card-stack__item--1 { top: 4%; left: 8%; transform: rotate(-9deg); animation-delay: 0s; z-index: 2; }
.card-stack__item--2 { top: 0; left: 42%; transform: rotate(4deg); animation-delay: -2s; z-index: 3; }
.card-stack__item--3 { bottom: 2%; left: 0; transform: rotate(7deg); animation-delay: -4s; z-index: 1; }
.card-stack__item--4 { bottom: -2%; left: 46%; transform: rotate(-5deg); animation-delay: -5.5s; z-index: 1; }
.card-stack__item:hover {
  transform: translateY(-14px) rotate(0deg) scale(1.06) !important;
  box-shadow: 0 30px 60px -14px rgba(212,175,55,.45), 0 0 0 1px rgba(212,175,55,.6);
  z-index: 5 !important;
}
@keyframes cardFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -14px; }
}

/* --- Lia Dadaz Fire theme --- */
.showcase--music { background: #07040a; }
.showcase--music .showcase__bg--static {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,59,48,.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(43,107,255,.18), transparent 50%);
}
.showcase__title--music {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; position: relative; color: #fff;
}
.showcase__title--music::before, .showcase__title--music::after {
  content: attr(data-text); position: absolute; inset: 0; opacity: .7;
}
.showcase__title--music::before { color: var(--glitch-red); animation: titleGlitch 5s infinite; clip-path: inset(0 0 55% 0); transform: translate(-2px); }
.showcase__title--music::after { color: var(--glitch-blue); animation: titleGlitch 5s infinite reverse; clip-path: inset(55% 0 0 0); transform: translate(2px); }
@keyframes titleGlitch {
  0%, 85%, 100% { transform: translate(0,0); opacity: 0; }
  86% { transform: translate(-4px, 1px); opacity: .7; }
  88% { transform: translate(3px, -1px); opacity: .7; }
  90% { opacity: 0; }
}

.album { position: relative; max-width: 420px; }
.album__glow {
  position: absolute; inset: -30px; z-index: 0; filter: blur(50px); opacity: .6;
  background: conic-gradient(from 0deg, var(--glitch-red), var(--glitch-blue), var(--glitch-red));
  animation: spin 10s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.album__cover {
  position: relative; z-index: 1; border-radius: 14px; width: 100%;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.8);
  transition: transform .5s ease;
}
.album__cover:hover { transform: scale(1.02) rotate(-.6deg); }

.eq { position: absolute; z-index: 2; bottom: 18px; right: 18px; display: flex; align-items: flex-end; gap: 4px; height: 30px; }
.eq span { width: 4px; background: linear-gradient(to top, var(--glitch-red), var(--glitch-blue)); border-radius: 2px; animation: eq 1.1s ease-in-out infinite; }
.eq span:nth-child(1){height:40%;animation-delay:-1.1s}.eq span:nth-child(2){height:80%;animation-delay:-.9s}
.eq span:nth-child(3){height:55%;animation-delay:-.7s}.eq span:nth-child(4){height:100%;animation-delay:-.5s}
.eq span:nth-child(5){height:65%;animation-delay:-.3s}.eq span:nth-child(6){height:35%;animation-delay:-.15s}
.eq span:nth-child(7){height:75%;animation-delay:0s}
@keyframes eq { 0%,100%{ transform: scaleY(.4);} 50%{ transform: scaleY(1);} }

/* ============ CV ============ */
.cv { padding: clamp(90px, 14vw, 160px) 0; }
.cv__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 70px); align-items: start; }

.cv__title {
  font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 700; margin-bottom: 8px;
  background: linear-gradient(120deg, #fff 20%, var(--cyan), var(--violet), #fff 80%);
  background-size: 300% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 8s linear infinite;
}
.cv__role { color: var(--ink-dim); font-size: 1.05rem; margin-bottom: 22px; }
.cv__desc { color: var(--ink-dim); line-height: 1.75; max-width: 520px; margin-bottom: 26px; }
.cv__desc a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

.chip--cv { color: #cdb8fb; border-color: rgba(168,85,247,.4); background: rgba(168,85,247,.08); }

.cv__langs {
  font-family: 'JetBrains Mono', monospace; font-size: .8rem; letter-spacing: .04em;
  color: var(--ink-dim); margin: 22px 0 28px;
}

.cv__links { display: flex; flex-wrap: wrap; gap: 12px; }
.cv__links .btn { padding: 12px 22px; font-size: .88rem; }

.cv__timeline { border-left: 2px solid rgba(168,85,247,.35); display: flex; flex-direction: column; gap: 28px; padding-left: 30px; }
.cv__job { position: relative; }
.cv__job::before {
  content: ''; position: absolute; left: -35px; top: 5px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 4px rgba(34,211,238,.15);
}
.cv__job-period {
  display: block; font-family: 'JetBrains Mono', monospace; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px;
}
.cv__job h3 { font-size: 1.05rem; font-weight: 600; margin: 0 0 4px; }
.cv__job p { color: var(--ink-dim); font-size: .9rem; line-height: 1.55; }
.cv__job--formation { padding-top: 22px; border-top: 1px dashed rgba(255,255,255,.14); }
.cv__job--formation::before { background: var(--violet); box-shadow: 0 0 0 4px rgba(168,85,247,.15); }

/* ============ CONTACT ============ */
.contact { padding: clamp(90px, 16vw, 180px) 0; text-align: center; position: relative; }
.contact__title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; margin-bottom: 30px; }
.contact__email {
  display: inline-block; font-size: clamp(1.3rem, 4vw, 2rem); font-weight: 600;
  background: linear-gradient(120deg, #fff, var(--cyan), var(--violet), #fff);
  background-size: 300% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 7s linear infinite; margin-bottom: 30px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 6px;
}
.contact__socials { display: flex; justify-content: center; gap: 26px; margin-top: 30px; }
.contact__socials a { color: var(--ink-dim); font-size: .95rem; transition: color .25s ease; }
.contact__socials a:hover { color: #fff; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0; }
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: var(--ink-dim); }
.footer__inner a:hover { color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .showcase__inner, .showcase__inner--reverse { grid-template-columns: 1fr; }
  .showcase__inner--reverse .album { order: 1; }
  .showcase__inner--reverse .showcase__text { order: 2; }
  .card-stack { margin-top: 20px; }
  .pillars { grid-template-columns: 1fr; }
  .cv__inner { grid-template-columns: 1fr; }
  .cv__timeline { margin-top: 10px; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 0 0 0 30%; z-index: 49;
    background: rgba(5,5,10,.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 26px; font-size: 1.2rem;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.16,.84,.44,1);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
