/* ================================================
   JACQUES-ARMAND MONNY — Portfolio
   Style : Noir & Violet · New gen · Éditorial
   ================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:             #07070f;
  --surface:        #0d0d1a;
  --text:           #ecedf8;
  --muted:          #6a6880;
  --accent:         #8b78ff;
  --accent-dim:     rgba(139, 120, 255, 0.10);
  --accent-border:  rgba(139, 120, 255, 0.28);
  --border:         #18182e;
  --serif:          'Cormorant Garamond', Georgia, serif;
  --sans:           'Inter', system-ui, -apple-system, sans-serif;
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; cursor: none; }


/* ================================================
   GRAIN
   ================================================ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  animation: grainMove 0.8s steps(2) infinite;
}

@keyframes grainMove {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 3%); }
  50%  { transform: translate(3%, -1%); }
  75%  { transform: translate(-1%, -3%); }
  100% { transform: translate(2%, 1%); }
}


/* ================================================
   CURSEUR
   ================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  margin: -19px 0 0 -19px;
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              border-color 0.35s,
              background 0.35s;
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  margin: -2px 0 0 -2px;
  transition: opacity 0.3s;
}

.cursor--link {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--accent);
  background: var(--accent-dim);
}

.cursor--view {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border-color: var(--accent);
  background: rgba(139, 120, 255, 0.07);
}

@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
  body, a { cursor: auto; }
}


/* ================================================
   UTILITAIRES
   ================================================ */
.section-label {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--text);
}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }


/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 1.6rem 5vw;
  transition: background 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(7, 7, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  transition: opacity 0.3s;
}
.nav__logo:hover { opacity: 0.7; }

.nav__logo-letters {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--accent);
  line-height: 1;
}

.nav__logo-sub {
  font-size: 0.54rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.8rem;
}

.nav__links a {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }


/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 60%, rgba(100, 80, 220, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(139, 120, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 80% 75%, rgba(80, 60, 180, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Nom principal — bold sans-serif XL */
.hero__name {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  animation: fadeUp 0.8s 0.2s both;
}

.hero__name-line { display: block; }

/* Tagline — bold, légèrement plus petit */
.hero__tagline {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s 0.35s both;
}

.hero__tagline-amp {
  color: var(--accent);
}

/* Description */
.hero__sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.5s both;
}

/* Double CTA */
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.8s 0.65s both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--accent-border);
  color: var(--accent);
  border-radius: 6px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.hero__cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.hero__cta--filled {
  background: var(--accent);
  border-color: var(--accent);
  color: #07070f;
  font-weight: 600;
}
.hero__cta--filled:hover {
  background: #a090ff;
  border-color: #a090ff;
  color: #07070f;
}

/* Email badge */
.hero__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s 0.78s both;
  transition: color 0.3s;
}
.hero__email:hover { color: var(--text); }
.hero__email svg { color: var(--accent); flex-shrink: 0; }

/* Stats */
.hero__stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3.5rem;
  animation: fadeUp 0.8s 0.9s both;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero__stat-icon {
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.hero__stat-value {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(139, 120, 255, 0.22);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) skewY(2deg); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ================================================
   PROJETS
   ================================================ */
.projets {
  padding: 9rem 5vw;
  border-top: 1px solid var(--border);
}

.projets__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.projets__header {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
}

/* Grille 3 colonnes égales */
.projets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---- Carte projet ---- */
.projet {
  display: block;
  color: var(--text);
}

.projet__media {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
}

.projet__media img {
  transition: transform 0.9s var(--ease);
  object-fit: contain;
  object-position: top center;
  padding: 0 6%;
}

.projet:not(.projet--soon):hover .projet__media img {
  transform: scale(1.04);
}

.projet__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7, 7, 15, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}
.projet:not(.projet--soon):hover .projet__overlay { opacity: 1; }

/* App icon card (ex: Khronos) */
.projet__media--app {
  aspect-ratio: 4/3;
  background: #0d0d1e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projet__media--app img {
  object-fit: contain;
  object-position: center;
  width: 38%;
  height: 38%;
  padding: 0;
  transition: transform 0.9s var(--ease);
  border-radius: 22%;
}

.projet:hover .projet__media--app img {
  transform: scale(1.08);
}

/* Logo card (ex: Esterel) */
.projet__media--logo {
  aspect-ratio: 4/3;
  background: #f5f2ec;
}

.projet__media--logo img {
  object-fit: contain;
  object-position: center;
  padding: 8%;
  transition: transform 0.9s var(--ease);
}

.projet:hover .projet__media--logo img {
  transform: scale(1.04);
}

/* Placeholder */
.projet__media--placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.projet__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--muted);
  line-height: 1.2;
  text-align: center;
  transition: color 0.4s;
}
.projet:hover .projet__placeholder-inner { color: var(--accent); }

/* Bientôt */
.projet__media--soon {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
}

.projet__soon-inner { text-align: center; }

.projet__soon-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--border);
  line-height: 1.3;
}

/* Méta */
.projet__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--border);
  gap: 2rem;
  transition: border-color 0.4s;
}
.projet:not(.projet--soon):hover .projet__meta {
  border-color: var(--accent-border);
}

.projet__meta-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 80px;
}

.projet__num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.4s;
}
.projet:not(.projet--soon):hover .projet__num { color: var(--accent-border); }
.projet__num--dim { opacity: 0.5; }

.projet__tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.projet__tag--dim { color: var(--muted); }

.projet__meta-right { flex: 1; }

.projet__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.7rem;
  transition: color 0.35s;
}
.projet__title em {
  font-style: italic;
  color: var(--accent);
}
.projet__title--dim { color: var(--muted); }

.projet__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1rem;
}

.projet__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s, transform 0.4s;
}
.projet:hover .projet__cta {
  opacity: 1;
  transform: none;
}

/* Grille secondaire */
.projets__grid-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}


/* ================================================
   EXPÉRIENCES
   ================================================ */
.xp {
  padding: 9rem 5vw;
  border-top: 1px solid var(--border);
}

.xp__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.xp__header { margin-bottom: 4rem; }

.xp__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.xp__item {
  display: grid;
  grid-template-columns: 180px 32px 1fr;
  gap: 0 1.5rem;
  padding-bottom: 3.5rem;
  position: relative;
}

/* Ligne verticale de timeline */
.xp__item-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.xp__item-line::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: -3.5rem;
  width: 1px;
  background: var(--border);
  left: 50%;
  transform: translateX(-50%);
}

.xp__item:last-child .xp__item-line::before { display: none; }

.xp__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  outline: 1px solid var(--accent-border);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.xp__item-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 2px;
  text-align: right;
}

.xp__date {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.xp__location {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.xp__item-right { padding-bottom: 0.5rem; }

.xp__item-head {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.xp__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.xp__company {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.xp__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.xp__bullets li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}

.xp__bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-border);
  font-size: 0.7rem;
}

.xp__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.xp__tags span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 2px;
}


/* ================================================
   FORMATION
   ================================================ */
.formation {
  padding: 9rem 5vw;
  border-top: 1px solid var(--border);
}

.formation__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.formation__header { margin-bottom: 4rem; }

.formation__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.formation__card {
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.35s;
}
.formation__card:hover { border-color: var(--accent-border); }

.formation__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.formation__year {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.formation__badge {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.formation__badge--done {
  background: rgba(90, 158, 110, 0.1);
  color: #5a9e6e;
  border-color: rgba(90, 158, 110, 0.3);
}

.formation__degree {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.formation__spec {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.formation__school {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- Compétences ---- */
.skills { padding-top: 1rem; }

.skills__groups {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.skills__group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.skills__group:last-child { border-bottom: none; }

.skills__group-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.3rem;
}

.skills__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skills__tags span {
  font-size: 0.72rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 3px;
  transition: border-color 0.3s, color 0.3s;
}
.skills__tags span:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}


/* ================================================
   CONTACT
   ================================================ */
.contact {
  padding: 11rem 5vw;
  border-top: 1px solid var(--border);
}

.contact__inner {
  max-width: 960px;
  margin: 0 auto;
}

.contact__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.contact__avail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a9e6e;
}
.contact__avail::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #5a9e6e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.contact__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 4rem;
  letter-spacing: -0.01em;
}
.contact__title em {
  font-style: italic;
  color: var(--accent);
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  transition: color 0.35s, border-color 0.35s, gap 0.35s;
}
.contact__email:hover {
  color: var(--text);
  border-color: var(--accent-border);
  gap: 2rem;
}

.contact__arrow {
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.contact__email:hover .contact__arrow {
  transform: translateX(6px);
}


/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 2rem 5vw;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer__name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer__watermark {
  position: absolute;
  right: -1vw;
  bottom: -0.5em;
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
  .projets__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 2rem; }
}

@media (max-width: 640px) {
  .nav__links { gap: 1.2rem; }
  .nav__logo-sub { display: none; }

  .xp__item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.6rem;
  }
  .xp__item-left { text-align: left; flex-direction: row; gap: 0.8rem; align-items: center; }
  .xp__item-line { display: none; }

  .formation__grid { grid-template-columns: 1fr; }

  .skills__group { grid-template-columns: 1fr; gap: 0.6rem; }

  .projets__grid { grid-template-columns: 1fr; }

  .hero__name { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .hero__tagline { font-size: clamp(1.3rem, 6vw, 2rem); }
  .hero__actions { gap: 0.7rem; }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }

  .contact__title { font-size: clamp(2.8rem, 12vw, 4rem); }

  .footer__inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .footer__watermark { display: none; }
}
