/* ─── RESET & ROOT ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b2a;
  --navy2:  #1b2d42;
  --gold:   #c9a84c;
  --gold2:  #e8c97e;
  --cream:  #f7f4ee;
  --white:  #ffffff;
  --gray:   #6b7280;
  --light:  #f0ede6;
  --red:    #be123c;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--gold); letter-spacing: .5px;
  text-decoration: none;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: .85rem; font-weight: 500; letter-spacing: .5px; text-transform: uppercase;
  transition: color .25s;
}
.nav-links a:hover,
.nav-links a.current { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: .45rem 1.2rem; border-radius: 4px;
  font-size: .8rem; font-weight: 600; text-decoration: none;
  letter-spacing: .5px; text-transform: uppercase;
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1e3a5f 100%);
  display: flex; align-items: center;
  padding: 80px 10% 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold2); padding: .35rem .9rem; border-radius: 20px;
  font-size: .75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 1rem;
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  line-height: 1.75; max-width: 480px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: .8rem 2rem; border-radius: 5px;
  text-decoration: none; font-weight: 600; font-size: .9rem;
  letter-spacing: .5px; transition: all .25s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.35); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.35); color: var(--white);
  padding: .8rem 2rem; border-radius: 5px;
  text-decoration: none; font-weight: 500; font-size: .9rem;
  transition: all .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 16px; padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.hero-avatar-wrap { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.hero-avatar {
  width: 200px; height: 200px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700; color: var(--navy);
  border: 4px solid rgba(201,168,76,.7);
  box-shadow: 0 0 0 10px rgba(201,168,76,.15), 0 20px 60px rgba(0,0,0,.4);
  overflow: hidden;
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--white); text-align: center; margin-bottom: .3rem;
}
.hero-card-role { font-size: .85rem; color: var(--gold); text-align: center; margin-bottom: 1.5rem; letter-spacing: .5px; }
.hero-card-info { display: flex; flex-direction: column; gap: .75rem; }
.info-row {
  display: flex; align-items: center; gap: .75rem;
  font-size: .85rem; color: rgba(255,255,255,.7);
}
.info-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.hero-card-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25);
  color: var(--gold2); padding: .25rem .7rem; border-radius: 20px;
  font-size: .75rem; font-weight: 500;
}

/* ─── SECTIONS ────────────────────────────────────── */
section { padding: 90px 10%; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--navy); margin-bottom: 1rem;
}
.section-desc { font-size: 1rem; color: var(--gray); max-width: 560px; line-height: 1.75; }

/* ─── ABOUT ───────────────────────────────────────── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.about-img-wrap { position: relative; }
.about-img-box {
  aspect-ratio: 3/4; border-radius: 16px;
  overflow: hidden; position: relative;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-box-placeholder {
  aspect-ratio: 3/4; border-radius: 16px;
  background: linear-gradient(145deg, var(--navy) 0%, #1e3a5f 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  overflow: hidden; position: relative;
}
.about-img-box-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M20 0l20 20-20 20L0 20z'/%3E%3C/g%3E%3C/svg%3E");
}
.about-img-initials { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: var(--gold); z-index: 1; }
.about-img-name { font-size: .9rem; color: rgba(255,255,255,.6); z-index: 1; letter-spacing: 2px; text-transform: uppercase; }
.about-float {
  position: absolute; bottom: -1rem; right: -1.5rem;
  background: var(--gold); color: var(--navy);
  padding: 1rem 1.25rem; border-radius: 12px;
  box-shadow: 0 8px 25px rgba(201,168,76,.4); text-align: center;
}
.about-float-val { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }
.about-float-txt { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1.25rem; }
.about-pompier {
  background: linear-gradient(135deg, #1a0a0a, #44101a);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--red);
  display: flex; align-items: flex-start; gap: 1rem; margin-top: 1.5rem;
}
.about-pompier-icon { font-size: 1.8rem; flex-shrink: 0; }
.about-pompier h4 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: .3rem; }
.about-pompier p { color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.5; margin: 0; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.value-card {
  background: var(--cream); border-radius: 10px; padding: 1.25rem;
  border-left: 3px solid var(--gold);
}
.value-card h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.value-card p { font-size: .8rem; color: var(--gray); line-height: 1.5; }

/* ─── PHOTO MOMENTS ───────────────────────────────── */
#moments { background: var(--navy); }
#moments .section-title { color: var(--white); }
#moments .section-desc { color: rgba(255,255,255,.55); }
.moments-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.moment-card {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: default;
  transition: transform .3s, box-shadow .3s;
}
.moment-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.moment-photo {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}
.moment-logo-wrap {
  aspect-ratio: 4/3;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.moment-logo-wrap img { max-width: 80%; max-height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.moment-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.92) 0%, rgba(13,27,42,.1) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.moment-logo-wrap + .moment-overlay {
  background: linear-gradient(to top, rgba(13,27,42,.85) 0%, rgba(13,27,42,.05) 55%);
}
.moment-period {
  font-size: .7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .4rem;
}
.moment-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .3rem; }
.moment-sub { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.4; }

/* ─── PARCOURS ────────────────────────────────────── */
#parcours { background: var(--cream); }
.parcours-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3.5rem; }
.parcours-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 8px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
}
.tl-item { padding-left: 48px; position: relative; margin-bottom: 2rem; }
.tl-dot {
  position: absolute; left: 7px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--gold); z-index: 1;
}
.tl-dot.active { background: var(--gold); }
.tl-period { font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.tl-title { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: .15rem; }
.tl-org { font-size: .82rem; color: var(--gray); margin-bottom: .5rem; font-style: italic; }
.tl-desc { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ─── EXPÉRIENCES ─────────────────────────────────── */
#experiences { background: var(--white); }
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.exp-card {
  border: 1px solid #e5e0d5; border-radius: 14px;
  padding: 2rem; background: var(--white);
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.exp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(to right, var(--gold), var(--gold2));
  opacity: 0; transition: opacity .3s;
}
.exp-card:hover { box-shadow: 0 12px 40px rgba(13,27,42,.1); transform: translateY(-4px); border-color: rgba(201,168,76,.3); }
.exp-card:hover::before { opacity: 1; }
.exp-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.exp-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0; overflow: hidden;
}
.exp-icon img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.exp-badge {
  background: rgba(201,168,76,.12); color: var(--gold);
  padding: .2rem .7rem; border-radius: 20px;
  font-size: .7rem; font-weight: 600; letter-spacing: .5px;
}
.exp-badge.red { background: rgba(190,18,60,.1); color: var(--red); }
.exp-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.exp-company { font-size: .85rem; color: var(--gold); font-weight: 500; margin-bottom: .35rem; }
.exp-period { font-size: .78rem; color: var(--gray); margin-bottom: .75rem; }
.exp-desc { font-size: .85rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.exp-bullets { list-style: none; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.exp-bullets li { font-size: .82rem; color: var(--gray); line-height: 1.5; padding-left: 1.1rem; position: relative; }
.exp-bullets li::before { content: '▸'; color: var(--gold); position: absolute; left: 0; font-size: .7rem; top: 2px; }
.exp-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.exp-tag {
  background: var(--cream); color: var(--navy);
  padding: .2rem .6rem; border-radius: 4px;
  font-size: .72rem; font-weight: 500;
}
.exp-card-photo {
  display: block;
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 150px;
  object-fit: cover;
  object-position: center top;
}
.exp-card-logo-banner {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 90px;
  background: linear-gradient(135deg, #f5f2eb 0%, #ede7d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e5e0d5;
}
.exp-card-logo-banner img {
  max-height: 50px;
  max-width: 55%;
  object-fit: contain;
}
.exp-award {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3);
  padding: .4rem .8rem; border-radius: 6px; margin-bottom: .8rem;
  font-size: .78rem; color: var(--gold); font-weight: 600;
}

/* ─── COMPÉTENCES ─────────────────────────────────── */
#competences { background: var(--cream); }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.skill-block {
  background: var(--white); border-radius: 14px;
  padding: 2rem; border: 1px solid #e5e0d5;
  transition: box-shadow .3s;
}
.skill-block:hover { box-shadow: 0 8px 30px rgba(13,27,42,.08); }
.skill-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.skill-icon.gold { background: rgba(201,168,76,.15); }
.skill-icon.navy { background: rgba(13,27,42,.1); }
.skill-icon.blue { background: rgba(37,99,235,.1); }
.skill-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 1.25rem; }
.skill-bar-wrap { margin-bottom: .9rem; }
.skill-bar-label { display: flex; justify-content: space-between; font-size: .8rem; color: var(--gray); margin-bottom: .35rem; }
.skill-bar { height: 6px; background: #e5e0d5; border-radius: 3px; overflow: hidden; }
.skill-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold2));
  width: 0; transition: width 1.2s ease;
}
.skill-bar-fill.animated { width: var(--w, 0%); }
.skill-tags-list { display: flex; flex-direction: column; gap: .5rem; }
.skill-tag-row { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--gray); }
.skill-tag-row::before { content: '▸'; color: var(--gold); font-size: .7rem; }
.cert-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.2);
  color: #1d4ed8; padding: .4rem .9rem; border-radius: 6px;
  font-size: .8rem; font-weight: 600; margin-top: 1rem;
}
.lang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.lang-card {
  background: var(--white); border-radius: 10px; padding: 1.25rem;
  border: 1px solid #e5e0d5; text-align: center;
}
.lang-flag { font-size: 1.8rem; margin-bottom: .5rem; display: flex; justify-content: center; }
.lang-flag svg { width: 52px; height: 35px; border-radius: 4px; display: block; box-shadow: 0 1px 6px rgba(0,0,0,.18); }
.lang-name { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.lang-level {
  font-size: .75rem; color: var(--gray);
  background: var(--cream); padding: .2rem .6rem;
  border-radius: 20px; display: inline-block;
}

/* ─── ENGAGEMENTS ─────────────────────────────────── */
#engagements { background: var(--white); }
.eng-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.eng-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid #e5e0d5; background: var(--white);
  transition: box-shadow .3s, transform .3s;
}
.eng-card:hover { box-shadow: 0 14px 45px rgba(13,27,42,.12); transform: translateY(-5px); }
.eng-thumb {
  height: 160px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.eng-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eng-thumb.e1 { background: linear-gradient(135deg, #44101a, #be123c); }
.eng-thumb.e2 { background: linear-gradient(135deg, #0d1b2a, #1e3a5f); }
.eng-thumb.e3 { background: linear-gradient(135deg, #14532d, #16a34a); }
.eng-body { padding: 1.5rem; }
.eng-tag { font-size: .7rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.eng-title { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.eng-desc { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ─── VISION ──────────────────────────────────────── */
#vision {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative; overflow: hidden;
}
#vision::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23c9a84c' stroke-opacity='0.06' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
}
.vision-inner { position: relative; z-index: 1; }
.vision-inner .section-title { color: var(--white); }
.vision-inner .section-desc { color: rgba(255,255,255,.6); max-width: 700px; }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.vision-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.2);
  border-radius: 14px; padding: 2rem; backdrop-filter: blur(4px);
  transition: background .3s, transform .3s;
}
.vision-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.vision-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: rgba(201,168,76,.2);
  line-height: 1; margin-bottom: 1rem;
}
.vision-card h3 { font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: .75rem; }
.vision-card p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.vision-quote {
  margin-top: 3rem; padding: 2rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,.07); border-radius: 0 10px 10px 0;
}
.vision-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--white); line-height: 1.7; margin-bottom: .75rem;
}
.vision-quote cite { font-size: .8rem; color: var(--gold); letter-spacing: .5px; }

/* ─── CONTACT ─────────────────────────────────────── */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 2rem; font-size: .95rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border-radius: 10px; padding: 1rem 1.25rem;
  border: 1px solid #e5e0d5; text-decoration: none; color: inherit;
  transition: box-shadow .25s, transform .25s;
}
.contact-item:hover { box-shadow: 0 6px 20px rgba(13,27,42,.08); transform: translateX(4px); }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-label { font-weight: 600; color: var(--navy); font-size: .85rem; }
.contact-item-val { color: var(--gray); font-size: .8rem; }

/* ─── FEEDBACK FORM ───────────────────────────────── */
.feedback-card {
  background: var(--white); border-radius: 16px;
  padding: 2.5rem; border: 1px solid #e5e0d5;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem;
}
.feedback-intro { font-size: .88rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.75rem; }

.profile-section { margin-bottom: 1.5rem; }
.profile-label {
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .8px; color: var(--navy); margin-bottom: .75rem; display: block;
}
.profile-toggle { display: flex; gap: .75rem; }
.profile-btn {
  flex: 1; padding: .75rem 1rem;
  border: 2px solid #e5e0d5; border-radius: 10px;
  background: var(--cream); color: var(--gray);
  font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.profile-btn:hover { border-color: var(--gold); color: var(--navy); }
.profile-btn.active {
  border-color: var(--gold); background: rgba(201,168,76,.1);
  color: var(--navy); font-weight: 600;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .78rem; font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; gap: .4rem;
}
.form-group label .optional {
  font-weight: 400; color: var(--gray); text-transform: none; letter-spacing: 0; font-size: .75rem;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid #e5e0d5; border-radius: 8px;
  padding: .7rem 1rem; font-size: .9rem; font-family: 'Inter', sans-serif;
  background: var(--cream); color: var(--navy);
  transition: border-color .25s, box-shadow .25s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.form-group textarea { resize: vertical; min-height: 90px; }

.consent-group { margin: 1.25rem 0; }
.consent-label {
  display: flex; align-items: flex-start; gap: .75rem;
  cursor: pointer; padding: 1rem 1.25rem;
  border: 2px solid #e5e0d5; border-radius: 10px;
  background: var(--cream); transition: border-color .2s, background .2s;
}
.consent-label:hover { border-color: var(--gold); }
.consent-label input[type="checkbox"] { display: none; }
.consent-check {
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid #c9c2b4; background: var(--white);
  flex-shrink: 0; position: relative; margin-top: 1px;
  transition: all .2s;
}
.consent-label input[type="checkbox"]:checked ~ .consent-check {
  background: var(--gold); border-color: var(--gold);
}
.consent-label input[type="checkbox"]:checked ~ .consent-check::after {
  content: ''; position: absolute;
  left: 5px; top: 2px;
  width: 8px; height: 13px;
  border: 2px solid var(--navy);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.consent-label input[type="checkbox"]:checked ~ * { color: var(--navy); }
.consent-text { font-size: .88rem; color: var(--gray); line-height: 1.5; }
.consent-text strong { color: var(--navy); font-weight: 600; }
.consent-label:has(input:checked) { border-color: var(--gold); background: rgba(201,168,76,.06); }

.consent-error {
  font-size: .8rem; color: var(--red); margin-top: .4rem;
  display: none;
}
.consent-error.show { display: block; }

.form-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; padding: .9rem; border-radius: 8px;
  font-size: .95rem; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; letter-spacing: .5px;
  transition: background .25s, transform .2s;
  margin-top: .5rem;
}
.form-submit:hover { background: var(--gold2); transform: translateY(-2px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.feedback-success {
  display: none; text-align: center; padding: 3rem 2rem;
}
.feedback-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: .75rem;
}
.success-desc { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--navy); color: rgba(255,255,255,.5);
  padding: 2rem 10%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  font-size: .82rem; border-top: 1px solid rgba(201,168,76,.15);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); }
.footer-copy { font-size: .7rem; color: rgba(255,255,255,.3); margin-top: .2rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: .78rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.footer-cv-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--gold); color: var(--navy);
  padding: .38rem .85rem; border-radius: 4px;
  font-size: .72rem; font-weight: 700; text-decoration: none;
  letter-spacing: .4px; text-transform: uppercase;
  transition: background .2s;
}
.footer-cv-btn:hover { background: var(--gold2); }
.footer-cv-btn svg { width: 12px; height: 12px; stroke: var(--navy); stroke-width: 2.5; }
.footer-icon-link {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3); color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .2s, border-color .2s;
}
.footer-icon-link:hover { color: var(--gold); border-color: rgba(201,168,76,.7); }
.footer-icon-link svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.75; }

/* ─── LUCIDE ICONS ────────────────────────────────────── */
.info-icon svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.75; }
.exp-icon svg { width: 26px; height: 26px; stroke: var(--gold2); stroke-width: 1.75; }
.skill-icon svg { width: 26px; height: 26px; stroke-width: 1.75; }
.skill-icon.gold svg { stroke: var(--gold); }
.skill-icon.navy svg { stroke: var(--navy); }
.skill-icon.blue svg { stroke: #2563eb; }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.75; }
.about-pompier-icon svg { width: 30px; height: 30px; stroke: #f87171; stroke-width: 1.75; }
.profile-btn svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; }
.cert-badge svg { width: 16px; height: 16px; stroke: #1d4ed8; stroke-width: 2; vertical-align: middle; }
a.cert-badge { text-decoration: none; transition: background .2s, box-shadow .2s; }
a.cert-badge:hover { background: rgba(37,99,235,.15); box-shadow: 0 2px 10px rgba(37,99,235,.2); }

.exp-reco-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .85rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .2px;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(201,168,76,.3); border-radius: 20px;
  padding: .28rem .85rem;
  background: rgba(201,168,76,.07);
  transition: background .2s, border-color .2s;
}
.exp-reco-btn:hover { background: rgba(201,168,76,.18); border-color: var(--gold); }
.exp-reco-btn svg { width: 13px; height: 13px; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; }
.success-icon svg { width: 56px; height: 56px; stroke: #16a34a; stroke-width: 1.5; }
.parcours-col-title svg { width: 18px; height: 18px; stroke: var(--navy); stroke-width: 1.75; vertical-align: middle; margin-right: .4rem; }


/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── HAMBURGER ───────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: .75rem;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .parcours-cols, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .exp-grid, .skills-grid, .eng-grid, .vision-grid, .moments-grid { grid-template-columns: 1fr; }
  .lang-grid { grid-template-columns: repeat(3, 1fr); }
  nav { padding: 0 5%; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(13,27,42,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem 5% 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,.2);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .75rem 0;
    font-size: .88rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links li:last-child a { border-bottom: none; }
  section { padding: 60px 5%; }
  .hero { padding: 80px 5% 50px; }
  .about-float { bottom: .5rem; right: .5rem; }
  .profile-toggle { flex-direction: column; }
  footer { flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ─── UNIFIED VERTICAL TIMELINE ───────────────────── */
.tl-unified {
  position: relative;
  margin-top: 3.5rem;
  max-width: 100%;
}
.tl-unified::before {
  content: ''; position: absolute; left: 15px; top: 8px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
}
.tl-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold); padding: .2rem .65rem; border-radius: 20px;
  font-size: .68rem; font-weight: 600; letter-spacing: .3px; margin-top: .55rem;
}
.tl-badge.red { background: rgba(190,18,60,.08); border-color: rgba(190,18,60,.25); color: var(--red); }

/* Nested sub-items (stages under BTS) */
.tl-sub-list {
  margin-top: 1rem; margin-left: .25rem;
  padding-left: 1.25rem;
  border-left: 1.5px solid rgba(201,168,76,.25);
  display: flex; flex-direction: column; gap: .65rem;
}
.tl-sub-item {
  position: relative;
  background: var(--cream); border-radius: 8px;
  padding: .85rem 1rem; border: 1px solid #e5e0d5;
}
.tl-sub-item::before {
  content: ''; position: absolute;
  left: -1.25rem; top: 1.1rem;
  width: .75rem; height: 1.5px;
  background: rgba(201,168,76,.35);
}
.tl-photo {
  width: 130px;
  height: 80px;
  object-fit: cover;
  object-position: center top;
  border-radius: 7px;
  border: 1px solid rgba(229,224,213,.9);
  box-shadow: 0 2px 10px rgba(13,27,42,.09);
  display: block;
}
.tl-sub-logo {
  float: right;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e5e0d5;
  padding: 4px;
  margin: 0 0 .25rem .75rem;
}
.tl-sub-item::after {
  content: '';
  display: table;
  clear: both;
}
.tl-sub-period {
  font-size: .65rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--gold); margin-bottom: .2rem;
}
.tl-sub-title { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .1rem; }
.tl-sub-org { font-size: .78rem; color: var(--gray); font-style: italic; margin-bottom: .3rem; }
.tl-sub-desc { font-size: .78rem; color: var(--gray); line-height: 1.55; }

/* ─── INNER PAGES: NAV OFFSET ────────────────────── */
#parcours,
#contact,
#recommandations { padding-top: 110px; }

/* ─── PAGE: CONTACT – EXTRAS ─────────────────────── */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.shake { animation: shake .35s ease; }

.contact-profile {
  display: flex; align-items: center; gap: 1rem;
  background: var(--navy); border-radius: 14px;
  padding: 1.25rem 1.5rem; margin-bottom: 2rem;
  border: 1px solid rgba(201,168,76,.2);
}
.contact-profile-img {
  width: 60px; height: 60px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--gold);
}
.contact-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.contact-profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--white);
}
.contact-profile-role { font-size: .78rem; color: var(--gold); margin-top: .15rem; }

.contact-cv-btn { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.75rem; }
.contact-cv-btn svg { width: 16px; height: 16px; stroke: var(--navy); stroke-width: 2.5; }

/* ─── PAGE: RECOMMANDATIONS ──────────────────────── */
#recommandations { background: var(--cream); }

.reco-hero {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.reco-hero .section-desc {
  color: var(--gray);
  font-size: .97rem;
  line-height: 1.7;
  margin-top: .75rem;
}

.reco-section { margin-bottom: 3rem; }
.reco-section-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.reco-section-label {
  font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.reco-section-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,.5), rgba(201,168,76,.05));
}

.reco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.reco-card {
  background: var(--white); border: 1px solid #e8e3da;
  border-radius: 16px; padding: 1.75rem 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.reco-card:hover { box-shadow: 0 8px 32px rgba(10,27,60,.08); transform: translateY(-2px); }
.reco-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2, #b8932a));
  border-radius: 16px 16px 0 0; opacity: 0; transition: opacity .25s;
}
.reco-card:hover::before { opacity: 1; }

.reco-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-style: italic; color: var(--gold);
  opacity: .25; line-height: 1; position: absolute;
  top: .5rem; right: 1.5rem; user-select: none; pointer-events: none;
}

.reco-person { display: flex; align-items: center; gap: 1rem; }
.reco-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2.5px solid var(--gold); background: var(--cream);
}
.reco-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.reco-avatar-initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--navy); background: var(--cream);
}

.reco-info { flex: 1; min-width: 0; }
.reco-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.25; }
.reco-role { font-size: .8rem; color: var(--gray); margin-top: .2rem; line-height: 1.4; }
.reco-company { font-size: .78rem; font-weight: 600; color: var(--gold); margin-top: .1rem; }
.reco-source-badge {
  display: inline-block; font-size: .65rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--navy);
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  border-radius: 20px; padding: .2rem .6rem; margin-top: .4rem;
}

.reco-text { font-size: .9rem; line-height: 1.75; color: #3a3a3a; font-style: italic; position: relative; z-index: 1; }

.reco-loading { text-align: center; padding: 3rem; color: var(--gray); font-size: .95rem; }
.reco-error {
  text-align: center; padding: 2rem; color: #c0392b; font-size: .9rem;
  background: #fdf0ef; border-radius: 12px; border: 1px solid #f5c6c2;
}

@media (max-width: 700px) {
  .reco-grid { grid-template-columns: 1fr; }
  .reco-card { padding: 1.4rem; }
}

/* ─── PAGE: PARCOURS – UPGRADES ──────────────────── */
#experiences { background: #fafaf8; }
#competences { background: var(--white); }

.tl-unified::before {
  left: 11px; width: 1.5px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,168,76,.3) 70%, rgba(201,168,76,.05) 100%);
}

.tl-unified .tl-item {
  padding-left: 38px; margin-bottom: 1.25rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
}

.tl-unified .tl-dot {
  left: 4px; top: 1.4rem; width: 15px; height: 15px;
  border: 2px solid var(--gold); background: var(--cream);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12); z-index: 2;
}
.tl-unified .tl-dot.active {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.2), 0 0 0 6px rgba(201,168,76,.07);
}

.tl-card {
  background: var(--white); border: 1px solid #e8e3da;
  border-left: 2.5px solid var(--gold); border-radius: 0 12px 12px 0;
  padding: 1.35rem 1.5rem 1.3rem; position: relative; overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease; flex: 1; min-width: 0;
}
.tl-card:hover { box-shadow: 6px 8px 32px rgba(13,27,42,.1); transform: translateX(4px); }

.tl-year-deco {
  position: absolute; right: 1rem; top: .4rem;
  font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 700;
  color: rgba(201,168,76,.08); line-height: 1; letter-spacing: -2px;
  pointer-events: none; user-select: none; z-index: 0;
}
.tl-card > *:not(.tl-year-deco) { position: relative; z-index: 1; }

.tl-unified .tl-period { font-size: .66rem; letter-spacing: 1.3px; margin-bottom: .22rem; }
.tl-unified .tl-title { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 600; margin-bottom: .2rem; }
.tl-unified .tl-org { font-size: .77rem; margin-bottom: .8rem; display: flex; align-items: center; gap: .4rem; }
.tl-unified .tl-org::before { content: ''; display: inline-block; width: 14px; height: 1px; background: rgba(201,168,76,.4); flex-shrink: 0; }

.tl-item-photo {
  width: 275px; height: 200px; object-fit: cover; object-position: center top;
  border-radius: 10px; flex-shrink: 0; align-self: flex-start;
  border: 1px solid rgba(201,168,76,.2); box-shadow: 0 4px 18px rgba(13,27,42,.13); display: block;
}

@media (max-width: 900px) {
  .tl-item-photo { width: 155px; height: 100px; }
  .tl-sub-photo  { width: 110px; height: 72px; }
}
@media (max-width: 600px) {
  .tl-unified .tl-item { flex-direction: column; }
  .tl-item-photo { width: 100%; height: 160px; }
  .tl-content-row { flex-direction: column; }
  .tl-content-row .tl-photo { width: 100%; height: 110px; }
  .tl-year-deco { font-size: 3rem; }
}

.tl-unified .tl-sub-list { margin-top: .9rem; }
.tl-unified .tl-sub-item {
  background: #f8f6f1; border: 1px solid rgba(229,224,213,.9);
  border-radius: 7px; padding: .8rem .95rem; transition: border-color .2s, background .2s;
}
.tl-unified .tl-sub-item:hover { border-color: rgba(201,168,76,.35); background: #faf8f4; }
.tl-unified .tl-badge { margin-top: .65rem; }

.tl-org-logo {
  height: 22px; max-height: 22px; width: auto; max-width: 80px;
  object-fit: contain; vertical-align: middle; margin-right: .4rem;
  display: inline-block; flex-shrink: 0;
  border: none !important; box-shadow: none !important;
  background: transparent; padding: 0; mix-blend-mode: multiply;
}
.tl-unified .tl-org.tl-org--has-logo::before { display: none; }
.tl-card.tl-card--compact { padding-top: .85rem; padding-bottom: .85rem; }

.tl-sub-item--with-photo { display: flex; gap: 1rem; align-items: flex-start; }
.tl-sub-item--with-photo .tl-sub-content { flex: 1; }
.tl-sub-photo {
  width: 210px; height: 105px; object-fit: cover; object-position: center;
  border-radius: 8px; flex-shrink: 0; align-self: flex-start;
  border: 1px solid rgba(201,168,76,.15); box-shadow: 0 2px 10px rgba(13,27,42,.1);
}

.exp-company-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--navy); letter-spacing: .2px; line-height: 1.2;
}
.exp-card::before { opacity: 0.18; }
.exp-card:hover::before { opacity: 1; height: 3px; }
.exp-card:hover { box-shadow: 0 16px 48px rgba(13,27,42,.12); transform: translateY(-5px); }
.exp-title { font-family: 'Playfair Display', serif; font-size: 1.04rem; }
.exp-award svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 2; vertical-align: middle; margin-right: .3rem; }

.skill-title { font-family: 'Playfair Display', serif; font-size: .95rem; }
.skill-bar { height: 5px; }
.skill-bar-fill { background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 65%, rgba(232,201,126,.35) 100%); }
.skill-block:hover { box-shadow: 0 10px 34px rgba(13,27,42,.1); transform: translateY(-3px); }

.lang-card { transition: box-shadow .3s, transform .3s; }
.lang-card:hover { box-shadow: 0 6px 20px rgba(13,27,42,.08); transform: translateY(-2px); }
