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

:root {
  --pink: #E8307A;
  --pink-l: #F06BA0;
  --pink-pale: #FDE8F2;
  --violet: #7C3AED;
  --violet-l: #A78BFA;
  --violet-pale: #EDE9FE;
  --coral: #FF6B6B;
  --coral-l: #FF9999;
  --mint: #00C9A7;
  --mint-l: #5EEAD4;
  --yellow: #FFD60A;
  --yellow-l: #FFE566;
  --ink: #FAFAFA;
  --ink2: #F4F4F6;
  --ink3: #EEEEF2;
  --dark: #1A1025;
  --dark2: #231532;
  --dark3: #2D1B42;
  --white: #1A1025;
  --muted: #6B7280;
  --muted2: #9CA3AF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1)
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--ink);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 149, 58, .4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left .18s, top .18s, width .3s, height .3s
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(28, 26, 23, .92);
  backdrop-filter: blur(16px);
  border-bottom: .5px solid rgba(200, 146, 42, .12)
}

.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold-l);
  text-decoration: none;
  letter-spacing: .04em
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none
}

.nav-links a {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s
}

.nav-links a:hover {
  color: var(--gold-l)
}

.nav-cta {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: .5px solid rgba(184, 149, 58, .3);
  padding: 8px 16px;
  border-radius: 1px;
  transition: background .25s, color .25s;
  text-decoration: none
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink)
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 120px 40px 56px;
  position: relative;
  overflow: hidden
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.orb1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(200, 146, 42, .1) 0%, transparent 70%)
}

.orb2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(200, 146, 42, .06) 0%, transparent 70%)
}

.gl {
  position: absolute;
  top: 0;
  bottom: 0;
  width: .5px;
  background: rgba(255, 255, 255, .03);
  pointer-events: none
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  position: relative;
  z-index: 1
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fu .8s var(--ease) .2s forwards
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.tag-txt {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold)
}

.hero-hl {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .9;
  margin-bottom: 0;
  opacity: 0;
  animation: fu .9s var(--ease) .35s forwards
}

.hero-hl .l1,
.hero-hl .l3 {
  font-size: clamp(56px, 12vw, 110px);
  display: block;
  color: var(--white)
}

.hero-hl .l2 {
  font-size: clamp(56px, 12vw, 110px);
  display: block;
  color: var(--gold-l);
  font-style: italic
}

.hero-claim {
  margin-top: 40px;
  opacity: 0;
  animation: fu .8s var(--ease) .55s forwards
}

.hero-claim p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300
}

.hero-claim strong {
  color: var(--white);
  font-weight: 400
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fu .8s var(--ease) .75s forwards
}

.hero-kpis {
  display: flex;
  border: .5px solid rgba(184, 149, 58, .2);
  border-radius: 1px
}

.hkpi {
  padding: 20px 28px;
  border-right: .5px solid rgba(184, 149, 58, .15);
  text-align: center
}

.hkpi:last-child {
  border-right: none
}

.hkv {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold-l);
  display: block;
  line-height: 1
}

.hkl {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted2);
  display: block;
  margin-top: 6px
}

.hero-acts {
  display: flex;
  gap: 12px;
  align-items: center
}

.btn-g {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 1px;
  transition: background .3s
}

.btn-g:hover {
  background: var(--gold-l)
}

.btn-gh {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border: .5px solid rgba(255, 255, 255, .1);
  border-radius: 1px;
  transition: border-color .3s, color .3s
}

.btn-gh:hover {
  border-color: rgba(184, 149, 58, .4);
  color: var(--gold-l)
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.marquee-wrap {
  border-top: .5px solid rgba(255, 255, 255, .05);
  border-bottom: .5px solid rgba(255, 255, 255, .05);
  padding: 14px 0;
  overflow: hidden;
  background: var(--ink2)
}

.marquee-track {
  display: flex;
  animation: mq 22s linear infinite;
  width: max-content
}

.marquee-track:hover {
  animation-play-state: paused
}

.mi {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 0 36px;
  white-space: nowrap;
  border-right: .5px solid rgba(255, 255, 255, .04)
}

.mi span {
  color: var(--gold);
  margin-right: 10px
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

section {
  padding: 110px 40px;
  position: relative;
  z-index: 1
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: .5px;
  background: var(--gold);
  flex-shrink: 0
}

.eyebrow span {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400
}

.sh {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 64px
}

.sh em {
  font-style: italic;
  color: var(--gold-l)
}

#profil {
  border-top: .5px solid rgba(255, 255, 255, .05)
}

.profil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.pq {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240, 237, 230, .78);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 32px
}

.psub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300
}

.psub strong {
  color: var(--white);
  font-weight: 400
}

.se {
  display: flex;
  flex-direction: column;
  border: .5px solid rgba(184, 149, 58, .15);
  border-radius: 2px;
  overflow: hidden
}

.se-row {
  display: flex;
  border-bottom: .5px solid rgba(255, 255, 255, .04)
}

.se-row:last-child {
  border-bottom: none
}

.se-cell {
  flex: 1;
  padding: 20px 22px;
  transition: background .25s
}

.se-cell:hover {
  background: rgba(184, 149, 58, .04)
}

.se-cell:first-child {
  border-right: .5px solid rgba(255, 255, 255, .04)
}

.se-t {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px
}

.se-d {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5
}

.stmt {
  padding: 80px 40px;
  background: var(--ink2);
  border-top: .5px solid rgba(255, 255, 255, .04);
  border-bottom: .5px solid rgba(255, 255, 255, .04);
  text-align: center
}

.stmt-inner {
  max-width: 800px;
  margin: 0 auto
}

.stmt-txt {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--white)
}

.stmt-txt em {
  color: var(--gold-l);
  font-style: italic
}

.stmt-sub {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .04em
}

#experiences {
  border-top: .5px solid rgba(255, 255, 255, .05)
}

.exp-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: .5px solid rgba(255, 255, 255, .04);
  padding: 52px 0
}

.exp-item:first-child {
  border-top: none
}

.exp-per {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px
}

.exp-status {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: .5px solid rgba(184, 149, 58, .35);
  padding: 4px 10px;
  border-radius: 1px
}

.exp-role {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 16px
}

.exp-arr {
  color: var(--gold);
  font-size: 20px;
  transition: transform .3s;
  opacity: 0
}

.exp-item:hover .exp-arr {
  transform: translateX(4px);
  opacity: 1
}

.exp-co {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px
}

.exp-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px
}

.exp-ul li {
  font-size: 13px;
  color: rgba(240, 237, 230, .75);
  line-height: 1.65;
  padding-left: 18px;
  position: relative
}

.exp-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: .5px;
  background: var(--gold)
}

.exp-ul li strong {
  color: var(--white);
  font-weight: 400
}

.kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.kp {
  font-size: 11px;
  color: var(--gold-l);
  background: rgba(200, 146, 42, .12);
  border: .5px solid rgba(200, 146, 42, .3);
  padding: 6px 14px;
  border-radius: 1px
}

#projets {
  border-top: .5px solid rgba(255, 255, 255, .05)
}

.pg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .04);
  border: .5px solid rgba(255, 255, 255, .04)
}

.pj {
  background: var(--ink2);
  padding: 48px 40px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: pointer
}

.pj::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease)
}

.pj:hover {
  background: var(--ink3)
}

.pj:hover::after {
  transform: scaleX(1)
}

.pn {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(200, 146, 42, .15);
  line-height: 1;
  margin-bottom: 28px;
  display: block;
  transition: color .3s
}

.pj:hover .pn {
  color: rgba(200, 146, 42, .28)
}

.pc {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px
}

.pt {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 12px
}

.pa {
  font-size: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s
}

.pj:hover .pa {
  opacity: 1;
  transform: none
}

.pd {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px
}

.ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.ptag {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted2);
  border: .5px solid rgba(255, 255, 255, .07);
  padding: 4px 10px;
  border-radius: 1px
}

#competences {
  border-top: .5px solid rgba(255, 255, 255, .05)
}

.ccols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .04);
  border: .5px solid rgba(255, 255, 255, .04);
  margin-bottom: 48px
}

.ccol {
  background: var(--ink2);
  padding: 36px 32px
}

.cct {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500
}

.cs {
  margin-bottom: 16px
}

.csh {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px
}

.csn {
  font-size: 13px;
  color: var(--white);
  font-weight: 300
}

.csp {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold)
}

.cb {
  height: 1px;
  background: rgba(255, 255, 255, .06)
}

.cf {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  width: 0;
  transition: width 1.2s var(--ease)
}

.te {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px
}

.te::before {
  content: '';
  display: block;
  width: 20px;
  height: .5px;
  background: var(--gold)
}

.te span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold)
}

.tc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.tool {
  font-size: 11px;
  color: var(--gold-l);
  border: .5px solid rgba(200, 146, 42, .3);
  padding: 8px 16px;
  border-radius: 1px;
  background: rgba(200, 146, 42, .07);
  transition: background .2s, color .2s
}

.tool:hover {
  background: rgba(200, 146, 42, .16);
  color: var(--white)
}

#formation {
  border-top: .5px solid rgba(255, 255, 255, .05)
}

.fi {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-top: .5px solid rgba(255, 255, 255, .04);
  padding: 40px 0
}

.fi:first-child {
  border-top: none
}

.fp {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 4px
}

.fd {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.25
}

.fs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px
}

.fds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fds li {
  font-size: 12px;
  color: rgba(240, 237, 230, .6);
  line-height: 1.55;
  padding-left: 14px;
  position: relative
}

.fds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: .5px;
  background: var(--gold)
}

#contact {
  border-top: .5px solid rgba(255, 255, 255, .05);
  background: var(--ink2)
}

.cg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.cp {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240, 237, 230, .7);
  margin-bottom: 40px
}

.cp strong {
  color: var(--gold-l);
  font-style: normal;
  font-weight: 400
}

.crows {
  display: flex;
  flex-direction: column
}

.crow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: .5px solid rgba(255, 255, 255, .04);
  text-decoration: none;
  color: var(--white);
  transition: color .25s
}

.crow:hover {
  color: var(--gold-l)
}

.crow:last-child {
  border-bottom: none
}

.cl {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 4px
}

.cv {
  font-size: 14px;
  font-weight: 300
}

.ca {
  color: var(--gold);
  font-size: 18px;
  transition: transform .25s
}

.crow:hover .ca {
  transform: translateX(4px)
}

.cf2 {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.fg label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted2)
}

.fg input,
.fg textarea {
  background: rgba(255, 255, 255, .03);
  border: .5px solid rgba(255, 255, 255, .1);
  border-radius: 1px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
  resize: none;
  width: 100%
}

.fg input:focus,
.fg textarea:focus {
  border-color: var(--gold)
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--muted2);
  font-size: 13px
}

.fbtn {
  align-self: flex-start;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .3s
}

.fbtn:hover {
  background: var(--gold-l)
}

footer {
  padding: 28px 40px;
  border-top: .5px solid rgba(255, 255, 255, .05);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.fc {
  font-size: 11px;
  color: var(--muted2)
}

.fc span {
  color: var(--gold)
}

.ft {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted2);
  text-decoration: none;
  transition: color .25s
}

.ft:hover {
  color: var(--gold-l)
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@media(max-width:900px) {
  #modal-box>div:nth-child(2) {
    grid-template-columns: 1fr !important
  }

  #modal-box>div:nth-child(2)>div:first-child {
    border-right: none !important;
    border-bottom: .5px solid rgba(255, 255, 255, .06)
  }

  #modal-box {
    margin: 0 !important
  }

  nav {
    padding: 14px 20px
  }

  .nav-links {
    display: none
  }

  .hero {
    padding: 90px 20px 44px;
    grid-template-rows: auto auto;
    gap: 40px
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .hero-kpis {
    flex-wrap: wrap;
    width: 100%
  }

  .hkpi {
    flex: 1;
    min-width: calc(50% - 1px);
    padding: 16px 12px
  }

  section {
    padding: 64px 20px
  }

  .stmt {
    padding: 56px 20px
  }

  .profil-grid,
  .cg {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .pg {
    grid-template-columns: 1fr
  }

  .ccols {
    grid-template-columns: 1fr
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .fi {
    grid-template-columns: 1fr;
    gap: 4px
  }

  .fp {
    padding-top: 0;
    margin-bottom: 6px
  }

  .sh {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 40px
  }

  .stmt-txt {
    font-size: clamp(20px, 5vw, 30px)
  }

  .pj {
    padding: 32px 24px
  }

  .pn {
    font-size: 44px;
    margin-bottom: 16px
  }

  .pt {
    font-size: 22px
  }

  .ccol {
    padding: 28px 22px
  }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px
  }

  .cursor,
  .cursor-ring {
    display: none
  }

  .se-row {
    flex-direction: column
  }

  .se-cell:first-child {
    border-right: none;
    border-bottom: .5px solid rgba(255, 255, 255, .04)
  }

  .hero-claim p {
    font-size: 15px
  }

  .pq {
    font-size: 18px;
    padding-left: 20px
  }

  .exp-role {
    font-size: 24px
  }

  .cp {
    font-size: 17px
  }
}

@media(max-width:480px) {
  nav {
    padding: 12px 16px
  }

  .hero {
    padding: 80px 16px 36px;
    gap: 32px
  }

  .hero-kpis {
    flex-direction: column;
    width: 100%
  }

  .hkpi {
    min-width: 100%;
    border-right: none;
    border-bottom: .5px solid rgba(200, 146, 42, .15);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left
  }

  .hkpi:last-child {
    border-bottom: none
  }

  .hkv {
    font-size: 26px
  }

  .hkl {
    margin-top: 0;
    margin-left: 8px
  }

  .hero-acts {
    flex-direction: column;
    width: 100%;
    gap: 10px
  }

  .btn-g,
  .btn-gh {
    text-align: center;
    width: 100%;
    padding: 14px 20px
  }

  section {
    padding: 52px 16px
  }

  .stmt {
    padding: 48px 16px
  }

  .sh {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 32px
  }

  .pj {
    padding: 28px 18px
  }

  .ccol {
    padding: 24px 18px
  }

  .eyebrow {
    margin-bottom: 14px
  }

  .exp-role {
    font-size: 22px
  }

  .exp-ul li {
    font-size: 13px
  }

  .kp {
    font-size: 10px;
    padding: 5px 10px
  }

  .ptag {
    font-size: 9px;
    padding: 3px 8px
  }

  .form-degree {
    font-size: 18px
  }

  .nav-logo {
    font-size: 18px
  }

  footer {
    padding: 16px
  }
}

/* ── COLOUR OVERRIDES ── */
nav {
  background: rgba(250, 250, 250, .92) !important;
  border-bottom: .5px solid rgba(124, 58, 237, .15) !important
}

.nav-logo {
  color: var(--violet) !important
}

.nav-links a {
  color: var(--muted) !important
}

.nav-links a:hover {
  color: var(--pink) !important
}

.nav-cta {
  color: var(--pink) !important;
  border-color: rgba(232, 48, 122, .35) !important
}

.nav-cta:hover {
  background: var(--pink) !important;
  color: #fff !important
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #FFF0F7 0%, #F5F0FF 40%, #F0FFFE 100%) !important
}

.orb1 {
  background: radial-gradient(circle, rgba(232, 48, 122, .18) 0%, transparent 70%) !important
}

.orb2 {
  background: radial-gradient(circle, rgba(124, 58, 237, .12) 0%, transparent 70%) !important
}

.gl {
  background: rgba(124, 58, 237, .06) !important
}

.tag-dot {
  background: var(--pink) !important
}

.tag-txt {
  color: var(--pink) !important
}

.hero-hl .l1,
.hero-hl .l3 {
  color: var(--dark) !important
}

.hero-hl .l2 {
  color: var(--pink) !important;
  font-style: italic
}

.hero-claim p {
  color: #4B5563 !important
}

.hero-claim strong {
  color: var(--dark) !important
}

.hkv {
  color: var(--violet) !important
}

.hkl {
  color: var(--muted) !important
}

.hero-kpis {
  border-color: rgba(124, 58, 237, .2) !important;
  background: #fff !important;
  border-radius: 12px !important;
  overflow: hidden
}

.hkpi {
  border-right-color: rgba(124, 58, 237, .12) !important
}

.btn-g {
  background: var(--pink) !important;
  color: #fff !important;
  border-radius: 24px !important
}

.btn-g:hover {
  background: var(--pink-l) !important
}

.btn-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--violet), var(--pink)) !important;
  color: #fff !important;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-radius: 24px !important;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-premium:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 48, 122, 0.2);
}

.btn-rect-pink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--pink) !important;
  color: #fff !important;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-radius: 1px !important;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  transition: background .25s ease;
}

.btn-rect-pink:hover {
  background: var(--pink-l) !important;
}



.btn-gh {
  color: var(--violet) !important;
  border-color: rgba(124, 58, 237, .3) !important;
  border-radius: 24px !important
}

.btn-gh:hover {
  border-color: var(--violet) !important;
  color: var(--dark) !important;
  background: var(--violet-pale) !important
}

/* MARQUEE */
.marquee-wrap {
  background: #FFF0F7 !important;
  border-top-color: rgba(232, 48, 122, .15) !important;
  border-bottom-color: rgba(232, 48, 122, .15) !important
}

.mi {
  color: var(--muted) !important;
  border-right-color: rgba(232, 48, 122, .12) !important
}

.mi span {
  color: var(--pink) !important
}

/* SECTIONS */
section {
  background: transparent
}

#profil {
  background: #FAFAFA !important;
  border-top-color: rgba(124, 58, 237, .1) !important
}

.eyebrow::before {
  background: var(--pink) !important
}

.eyebrow span {
  color: var(--pink) !important
}

.sh {
  color: var(--dark) !important
}

.sh em {
  color: var(--violet) !important
}

.sh-light {
  color: var(--coral-l) !important;
}

.sh-light em {
  color: var(--pink-l) !important;
}

.pq {
  color: #374151 !important;
  border-left-color: var(--pink) !important
}

.psub {
  color: #4B5563 !important
}

.psub strong {
  color: var(--dark) !important
}

/* SAVOIR ETRE */
.se {
  border-color: rgba(124, 58, 237, .15) !important
}

.se-row {
  border-bottom-color: rgba(124, 58, 237, .08) !important
}

.se-cell:hover {
  background: rgba(232, 48, 122, .04) !important
}

.se-cell:first-child {
  border-right-color: rgba(124, 58, 237, .08) !important
}

.se-t {
  color: var(--dark) !important
}

.se-d {
  color: var(--muted) !important
}

/* STATEMENT */
.stmt {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%) !important
}

.stmt-txt {
  color: #fff !important
}

.stmt-txt em {
  color: var(--yellow) !important
}

.stmt-sub {
  color: rgba(255, 255, 255, .5) !important
}

/* EXPERIENCES */
#experiences {
  background: #F4F4F6 !important;
  border-top-color: rgba(124, 58, 237, .1) !important
}

.exp-item {
  border-top-color: rgba(124, 58, 237, .1) !important
}

.exp-per {
  color: var(--pink) !important
}

.exp-status {
  color: var(--mint) !important;
  border-color: rgba(0, 201, 167, .35) !important
}

.exp-role {
  color: var(--dark) !important
}

.exp-co {
  color: var(--muted) !important
}

.exp-ul li {
  color: #374151 !important
}

.exp-ul li strong {
  color: var(--dark) !important
}

.exp-ul li::before {
  background: var(--pink) !important
}

.exp-arr {
  color: var(--pink) !important
}

.kp {
  color: var(--violet) !important;
  background: rgba(124, 58, 237, .08) !important;
  border-color: rgba(124, 58, 237, .2) !important
}

/* PROJETS */
#projets {
  background: #FAFAFA !important;
  border-top-color: rgba(232, 48, 122, .1) !important
}

.pg {
  background: rgba(124, 58, 237, .08) !important;
  border-color: rgba(124, 58, 237, .1) !important
}

.pj {
  background: #fff !important
}

.pj:hover {
  background: #FDF8FF !important
}

.pj::after {
  background: linear-gradient(90deg, var(--pink), var(--violet)) !important
}

.pn {
  color: rgba(232, 48, 122, .1) !important
}

.pj:hover .pn {
  color: rgba(232, 48, 122, .2) !important
}

.pc {
  color: var(--pink) !important
}

.pt {
  color: var(--dark) !important
}

.pa {
  color: var(--pink) !important
}

.pd {
  color: #4B5563 !important
}

.ptag {
  color: var(--muted) !important;
  border-color: rgba(124, 58, 237, .15) !important
}

.pj:hover .ptag {
  color: var(--violet) !important;
  border-color: rgba(124, 58, 237, .25) !important
}

/* COMPETENCES */
#competences {
  background: #F4F4F6 !important;
  border-top-color: rgba(124, 58, 237, .1) !important
}

.ccols {
  background: rgba(124, 58, 237, .06) !important;
  border-color: rgba(124, 58, 237, .1) !important
}

.ccol {
  background: #fff !important
}

.cct {
  color: var(--violet) !important
}

.csn {
  color: #374151 !important
}

.csp {
  color: var(--pink) !important
}

.cb {
  background: rgba(124, 58, 237, .08) !important
}

.cf {
  background: linear-gradient(90deg, var(--pink), var(--violet)) !important
}

.te::before {
  background: var(--pink) !important
}

.te span {
  color: var(--pink) !important
}

.tool {
  color: var(--violet) !important;
  border-color: rgba(124, 58, 237, .25) !important;
  background: rgba(124, 58, 237, .06) !important;
  border-radius: 20px !important
}

.tool:hover {
  background: var(--violet-pale) !important;
  color: var(--dark) !important
}

/* FORMATION */
#formation {
  background: #FAFAFA !important;
  border-top-color: rgba(232, 48, 122, .1) !important
}

.fi {
  border-top-color: rgba(124, 58, 237, .08) !important
}

.fp {
  color: var(--pink) !important
}

.fd {
  color: var(--dark) !important
}

.fs {
  color: var(--muted) !important
}

.fds li {
  color: #4B5563 !important
}

.fds li::before {
  background: var(--pink) !important
}

/* CONTACT */
#contact {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%) !important
}

.cp {
  color: rgba(255, 255, 255, .7) !important
}

.cp strong {
  color: var(--yellow) !important
}

.crows {
  border-color: rgba(255, 255, 255, .08) !important
}

.crow {
  color: #fff !important;
  border-bottom-color: rgba(255, 255, 255, .08) !important
}

.crow:hover {
  color: var(--pink-l) !important
}

.cl {
  color: rgba(255, 255, 255, .35) !important
}

.ca {
  color: var(--pink-l) !important
}

.fg label {
  color: rgba(255, 255, 255, .4) !important
}

.fg input,
.fg textarea {
  background: rgba(255, 255, 255, .05) !important;
  border-color: rgba(255, 255, 255, .12) !important;
  color: #fff !important
}

.fg input:focus,
.fg textarea:focus {
  border-color: var(--pink) !important
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, .3) !important
}

.fbtn {
  background: var(--pink) !important;
  color: #fff !important;
  border-radius: 24px !important
}

.fbtn:hover {
  background: var(--pink-l) !important
}

/* FOOTER */
footer {
  background: var(--dark3) !important;
  border-top-color: rgba(255, 255, 255, .06) !important
}

.fc {
  color: rgba(255, 255, 255, .35) !important
}

.fc span {
  color: var(--pink-l) !important
}

.ft {
  color: rgba(255, 255, 255, .35) !important
}

.ft:hover {
  color: var(--pink-l) !important
}

/* MODAL */
#modal-overlay {
  background: rgba(26, 16, 37, .9) !important
}

#modal-box {
  background: #fff !important;
  border-color: rgba(232, 48, 122, .2) !important
}

#modal-box>div:first-child {
  border-bottom-color: rgba(124, 58, 237, .1) !important
}

#modal-box>div:nth-child(2)>div:last-child {
  border-right-color: rgba(124, 58, 237, .1) !important;
  background: #FFF5FB !important
}

#modal-cat {
  color: var(--pink) !important
}

#modal-title {
  color: var(--dark) !important
}

#modal-date {
  color: var(--muted) !important
}

#modal-intro {
  color: #374151 !important
}

/* CURSOR */
.cursor {
  background: var(--pink) !important
}

.cursor-ring {
  border-color: rgba(232, 48, 122, .4) !important
}

/* SECTION borders */
#experiences,
#projets,
#competences,
#formation,
#contact {
  border-top: .5px solid rgba(124, 58, 237, .1) !important
}

/* NAV CTA "voir CV" */
a[href*=".pdf"] {
  border-color: rgba(124, 58, 237, .3) !important;
  color: var(--violet) !important
}

a[href*=".pdf"]:hover {
  background: var(--violet-pale) !important;
  color: var(--violet) !important
}


/* Project card text — dark on white */
.pj {
  cursor: pointer
}

.pn {
  color: rgba(26, 16, 37, .12) !important
}

.pj:hover .pn {
  color: rgba(232, 48, 122, .22) !important
}

.pc {
  color: var(--pink) !important;
  font-weight: 500
}

.pt {
  color: #1A1025 !important;
  font-weight: 500
}

.pa {
  color: var(--pink) !important
}

.pd {
  color: #374151 !important;
  font-size: 14px
}

.ptag {
  color: #4B5563 !important;
  border-color: rgba(124, 58, 237, .2) !important;
  background: rgba(124, 58, 237, .06) !important
}

.pj:hover .ptag {
  color: var(--violet) !important;
  border-color: rgba(124, 58, 237, .35) !important
}

/* --- PROJECT MODAL --- */
#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 23, 0);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(0px);
  transition: all 0.4s var(--ease);
  opacity: 0;
  pointer-events: none;
}

#modal-overlay.visible {
  background: rgba(26, 16, 37, 0.92);
  backdrop-filter: blur(12px);
  opacity: 1;
  pointer-events: auto;
}

#modal-box {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: var(--ink);
  /* Match site theme */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease);
}

#modal-overlay.visible #modal-box {
  transform: translateY(0);
  opacity: 1;
}

#modal-img-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  background: var(--pink-pale);
}

#modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  display: block;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

@media (max-width: 850px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

.ptag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border: .5px solid rgba(124, 58, 237, .15);
  background: rgba(124, 58, 237, .04);
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.modal-section-title {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
  font-weight: 500;
}

.modal-section-list {
  list-style: none;
  margin-bottom: 20px;
}

.modal-section-list li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.modal-section-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: .5px;
  background: var(--pink);
}