/* ============================================
   TalentProfileChef — pixel-perfect refonte
   Inspired by Mathieu Rane visual reference
   ============================================ */

.tpc * { margin: 0; padding: 0; box-sizing: border-box; }
.tpc {
  --gold-1: #C4A559;
  --gold-2: #D4BC7A;
  --gold-3: #D4A832;
  --gold-4: #E5D4A0;
  --gold-5: #F8E27A;
  --gold-grad: linear-gradient(135deg, #C4A559 0%, #D4A832 22%, #EDCA50 42%, #F8E27A 60%, #D4A832 80%, #C4A559 100%);
  --beige-bg: #FFFFFF;
  --beige-soft: #FFFFFF;
  --beige-card: #FFFFFF;
  --beige-page: #FFFFFF;
  --ink: #1F1B14;
  --ink-2: #3A332A;
  --t1: #2C2620;
  --t2: #6B6055;
  --t3: #9A8E80;
  --t4: #BFB4A4;
  --bd: #E8E0CE;
  --bd2: #F0E9D7;
  --bd-soft: #EFE9DA;
  --green: #2D9B5E;
  --green-bg: #E7F6ED;
  --green-bd: #B7E0C5;
  --red: #E84B4B;
  --red-bg: #FDECEC;
  --red-bd: #F5BFBF;
  --purple: #7B5EA7;

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--beige-page);
  color: var(--t1);
  min-height: 100vh;
}

/* ===== TOP NAVBAR ===== */
.tpc-nav {
  background: #fff;
  border-bottom: 1px solid var(--bd2);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.tpc-nav-l { display: flex; align-items: center; gap: 36px; }
.tpc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.tpc-logo-icon { width: 30px; height: 30px; }
.tpc-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tpc-logo-text::after {
  content: ".";
  color: var(--gold-2);
}
.tpc-nav-links { display: flex; gap: 28px; align-items: center; }
.tpc-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  cursor: pointer;
  transition: color .15s;
  background: none;
  border: none;
  font-family: inherit;
}
.tpc-nav-link:hover { color: var(--ink); }
.tpc-nav-link.active { color: var(--gold-1); font-weight: 600; }

.tpc-nav-r { display: flex; align-items: center; gap: 14px; }
.tpc-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
}
.tpc-lang-toggle {
  width: 30px; height: 16px;
  background: var(--gold-2);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
}
.tpc-lang-toggle::after {
  content: '';
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left .2s;
}
.tpc-account-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
}
.tpc-account-btn:hover { background: #000; }

/* ===== COVER BANNER ===== */
.tpc-cover {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}
.tpc-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

/* ===== MAIN WRAPPER ===== */
.tpc-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== HEADER PROFIL ===== */
.tpc-header {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bd2);
  padding: 24px 32px;
  margin-top: -56px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.tpc-header-l {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tpc-avatar {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--beige-card), var(--beige-soft));
}
.tpc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tpc-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 5px;
}
.tpc-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--t2);
  margin-bottom: 4px;
}
.tpc-loc {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.tpc-flag { font-size: 13px; }
.tpc-avail-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-bd);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
}
.tpc-avail-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: tpcblink 2s ease infinite;
}
@keyframes tpcblink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.tpc-header-r {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tpc-video-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-grad);
  border: none;
  border-radius: 999px;
  padding: 5px 14px 5px 5px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(184,145,42,0.22);
  transition: all .2s;
}
.tpc-video-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(184,145,42,0.32); }
.tpc-video-thumb {
  width: 30px; height: 30px;
  border-radius: 8px;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.tpc-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.tpc-play-tri {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  z-index: 2;
}
.tpc-video-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.tpc-video-t1 { font-size: 12px; font-weight: 700; color: #fff; }
.tpc-video-t2 { font-size: 9px; color: rgba(255,255,255,0.85); font-weight: 500; }
.tpc-video-arrow {
  background: rgba(0,0,0,0.18);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px;
}

.tpc-contact-btn {
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}
.tpc-contact-btn:hover { background: #000; transform: translateY(-1px); }

/* ===== LAYOUT 2 COL ===== */
.tpc-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  margin-top: 24px;
  padding-bottom: 40px;
  align-items: start;
}
.tpc-main { min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.tpc-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }

/* ===== CARDS génériques ===== */
.tpc-card {
  background: #fff;
  border: 1px solid var(--bd2);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
.tpc-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-1);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.tpc-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-2);
  margin-top: 4px;
}

/* ===== ABOUT ===== */
.tpc-about-text {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--t2);
}
.tpc-about-text p + p { margin-top: 10px; }

/* ===== EXPERIENCE ===== */
.tpc-exp-item {
  background: var(--beige-page);
  border: 1px solid var(--bd2);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
  position: relative;
}
.tpc-exp-item.current {
  background: var(--beige-card);
  border-color: var(--bd);
}
.tpc-exp-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.tpc-exp-logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--bd);
  background: #fff;
}
.tpc-exp-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tpc-exp-info { flex: 1; min-width: 0; }
.tpc-exp-role {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.tpc-exp-est {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: var(--t2);
  margin-bottom: 4px;
}
.tpc-exp-est strong { font-weight: 700; color: var(--gold-1); font-style: normal; font-family: 'Inter',sans-serif; }
.tpc-exp-meta {
  font-size: 10.5px;
  color: var(--t3);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.tpc-exp-tag-row {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.tpc-tag-pill {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 9px;
  border-radius: 100px;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-bd);
  text-transform: uppercase;
  white-space: nowrap;
}
.tpc-tag-pill.gold {
  background: linear-gradient(135deg, #FFF5D6, #FFE9A0);
  color: var(--gold-1);
  border-color: rgba(212,168,50,0.4);
}
.tpc-tag-pill.amber {
  background: #FFF1E0;
  color: #B5651A;
  border-color: #F5D9B0;
}
.tpc-tag-pill.dark {
  background: var(--ink);
  color: var(--gold-4);
  border-color: var(--ink);
}
.tpc-tag-pill.outline {
  background: #fff;
  color: var(--t2);
  border-color: var(--bd);
}
.tpc-tag-arrow {
  font-size: 10px;
  color: var(--t3);
  cursor: pointer;
  padding: 0 4px;
}

.tpc-exp-status {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.tpc-exp-status.current {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-bd);
}
.tpc-exp-status.past {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid var(--red-bd);
}
.tpc-exp-desc {
  font-size: 11.5px;
  color: var(--t2);
  line-height: 1.6;
  margin-top: 8px;
}
.tpc-exp-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--beige-page);
  border: 1px solid var(--bd2);
  border-radius: 10px;
  padding: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  margin-top: 4px;
}
.tpc-exp-toggle:hover { color: var(--gold-1); border-color: var(--gold-3); }

/* ===== EDUCATION ===== */
.tpc-edu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--bd2);
}
.tpc-edu-item:last-child { border-bottom: none; padding-bottom: 0; }
.tpc-edu-item:first-child { padding-top: 0; }
.tpc-edu-ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFF5D6, #FFE9A0);
  border: 1px solid rgba(212,168,50,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--gold-1);
}
.tpc-edu-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.tpc-edu-deg {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 11.5px;
  color: var(--t2);
}

/* ===== SIGNATURE DISHES (grid 2x2 avec overlays) ===== */
.tpc-sig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 320px;
}
.tpc-sig-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
}
.tpc-sig-card.tall {
  grid-row: span 2;
}
.tpc-sig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.tpc-sig-card:hover img { transform: scale(1.04); }
.tpc-sig-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.tpc-sig-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.tpc-sig-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tpc-sig-tag {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--beige-card);
  border: 1px solid var(--bd2);
  color: var(--t2);
  text-transform: uppercase;
}

/* ===== COLLECTIONS (accordéons) ===== */
.tpc-col-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.tpc-col-card {
  background: var(--beige-page);
  border: 1px solid var(--bd2);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 110px;
}
.tpc-col-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}
.tpc-col-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.85) 100%);
}
.tpc-col-card-content {
  position: absolute;
  inset: 0;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tpc-col-icon {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--t2);
  z-index: 2;
}
.tpc-col-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.tpc-col-count {
  font-size: 10px;
  color: var(--t2);
}

/* Active collection block */
.tpc-col-active-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-1);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tpc-col-active-title small {
  font-size: 10px;
  color: var(--t3);
  font-weight: 500;
  font-style: normal;
  font-family: 'Inter', sans-serif;
}
.tpc-col-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.tpc-col-photo {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}
.tpc-col-photo:hover { transform: scale(1.04); }
.tpc-col-photo-cap {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 10px;
  color: var(--t2);
  text-align: center;
  margin-top: 4px;
}
.tpc-col-photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.tpc-col-photo-cell { display: flex; flex-direction: column; }

/* ===== RÉFÉRENCES ===== */
.tpc-ref-item {
  padding: 16px 0;
  border-bottom: 1px dashed var(--bd2);
}
.tpc-ref-item:last-child { border-bottom: none; padding-bottom: 0; }
.tpc-ref-item:first-of-type { padding-top: 0; }
.tpc-ref-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.tpc-ref-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink-2);
  color: var(--gold-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.tpc-ref-info { flex: 1; min-width: 0; }
.tpc-ref-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.tpc-ref-role {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 11px;
  color: var(--t2);
}
.tpc-ref-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.tpc-ref-status.verified {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-bd);
}
.tpc-ref-status.approved {
  background: #F0F0F0;
  color: var(--t1);
  border: 1px solid var(--bd);
}
.tpc-ref-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 10px;
}
.tpc-ref-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.tpc-ref-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--beige-page);
  border: 1px solid var(--bd2);
  color: var(--t2);
  text-transform: uppercase;
}
.tpc-ref-readmore {
  font-size: 10.5px;
  color: var(--gold-1);
  font-weight: 600;
  cursor: pointer;
  text-align: right;
  display: block;
}
.tpc-ref-readmore:hover { text-decoration: underline; }

/* ===== SIDEBAR ===== */
.tpc-side-card {
  background: #fff;
  border: 1px solid var(--bd2);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
.tpc-side-card.insight {
  background: var(--beige-card);
  border-color: var(--bd);
}
.tpc-side-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-1);
  margin-bottom: 10px;
}
.tpc-side-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--gold-2);
  margin-top: 3px;
}
.tpc-side-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 11.5px;
  color: var(--t2);
  line-height: 1.65;
}
.tpc-side-text strong { color: var(--ink); font-weight: 700; }

.tpc-goal-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.tpc-goal-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 100px;
  background: var(--gold-grad);
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tpc-goal-tag.dark,
.tpc-goal-tag.outline {
  background: #ffffff;
  color: var(--gold-3, #9A7A28);
  border: 1px solid rgba(184, 145, 42, 0.28);
  box-shadow: 0 1px 2px rgba(122, 94, 30, 0.05);
}

.tpc-side-cta {
  display: block;
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all .2s;
}
.tpc-side-cta:hover { background: #000; }

.tpc-side-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.tpc-side-action {
  flex: 1;
  background: #fff;
  border: 1px solid var(--bd);
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--t2);
  padding: 9px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .15s;
}
.tpc-side-action:hover { border-color: var(--gold-2); color: var(--gold-1); }

.tpc-side-active {
  font-size: 10px;
  color: var(--gold-1);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.tpc-side-active-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.tpc-permits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.tpc-permit {
  font-size: 9.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--beige-page);
  border: 1px solid var(--bd2);
  color: var(--t2);
  white-space: nowrap;
}

.tpc-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.tpc-lang-pill {
  font-size: 9.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--beige-page);
  border: 1px solid var(--bd2);
  color: var(--t2);
  display: inline-flex;
  gap: 4px;
}
.tpc-lang-pill small { color: var(--t3); font-weight: 500; }

/* ===== BOTTOM BAND ===== */
.tpc-bottom-band {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  padding: 10px 28px;
  text-align: center;
  border-radius: 999px;
  margin: 24px auto 50px;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 3px 12px rgba(184,145,42,0.25);
}
.tpc-bottom-band-wrap { display: flex; justify-content: center; }
.tpc-bottom-band:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(184,145,42,0.35); }
.tpc-bottom-band-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .tpc-grid { grid-template-columns: 1fr; }
  .tpc-side { position: static; }
  .tpc-sig-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .tpc-sig-card.tall { grid-row: auto; }
  .tpc-sig-card { height: 200px; }
  .tpc-col-row { grid-template-columns: 1fr 1fr; }
  .tpc-col-photos, .tpc-col-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .tpc-nav-links { display: none; }
}
@media (max-width: 600px) {
  .tpc-wrap { padding: 0 16px; }
  .tpc-header { padding: 16px; flex-direction: column; align-items: flex-start; margin-top: -40px; }
  .tpc-header-r { width: 100%; flex-direction: column; align-items: stretch; }
  .tpc-cover { height: 180px; }
  .tpc-name { font-size: 22px; }
  .tpc-section-title { font-size: 16px; }
  .tpc-col-row { grid-template-columns: 1fr; }
}

/* ===== Léa Aurigny — Price pill in header ===== */
.tpc-price-pill { display:inline-flex; align-items:center; gap:5px; margin-left:12px; padding:7px 18px; border-radius:10px; background:linear-gradient(135deg,#C4A559 0%,#D4BC7A 40%,#E5D4A0 70%,#EFE2B8 100%); color:#0a0a0a; font-size:15px; font-weight:800; letter-spacing:.2px; box-shadow:0 1px 0 rgba(255,255,255,.6) inset, 0 4px 14px rgba(150,120,62,.28); }
.tpc-price-pill small { font-size:12px; font-weight:700; color:rgba(0,0,0,.6); margin-left:3px; }

/* ===== Missions & Achievements ===== */
.tpc-mission-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:6px; }
.tpc-mission-card { position:relative; background:linear-gradient(135deg,#fff 0%,#faf9f7 50%,#f5f2ed 100%); border:1px solid rgba(200,195,180,.5); border-radius:14px; padding:20px 18px 16px; box-shadow:0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04), inset 0 1px 0 rgba(255,255,255,.9); transition:transform .25s, box-shadow .25s; overflow:hidden; }
.tpc-mission-card:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(0,0,0,.08); }
.tpc-mission-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#9E7E3F,#D4BC7A,#E5D4A0,#D4BC7A,#9E7E3F); }
.tpc-mission-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.tpc-mission-badge { font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:1.2px; padding:4px 10px; border-radius:7px; }
.tpc-mission-badge.t1 { background:#f0e8d8; color:#9E7E3F; }
.tpc-mission-badge.t2 { background:#f0e0ec; color:#8c5a7a; }
.tpc-mission-badge.t3 { background:#e8f0e4; color:#5a8c4a; }
.tpc-mission-badge.t4 { background:#f0e4e0; color:#8c5a4a; }
.tpc-mission-duration { font-size:11px; font-weight:600; color:#7a8594; }
.tpc-mission-est { font-family:'Playfair Display',serif; font-size:17px; font-weight:700; color:#0a0a0a; margin-bottom:2px; }
.tpc-mission-loc { font-size:12px; color:rgba(0,0,0,.4); margin-bottom:10px; }
.tpc-mission-desc { font-size:13px; line-height:1.6; color:#0a0a0a; margin-bottom:12px; }
.tpc-mission-result { padding-top:10px; border-top:1px solid rgba(0,0,0,.06); font-size:12px; font-weight:700; color:#9E7E3F; }

/* ===== Signature Gallery ===== */
.tpc-gallery { position:relative; border-radius:14px; overflow:hidden; height:340px; background:#1a1510; margin-bottom:20px; }
.tpc-gallery-track { display:flex; height:100%; transition:transform .5s cubic-bezier(.4,0,.2,1); }
.tpc-gallery-slide { min-width:100%; height:100%; background-size:cover; background-position:center; position:relative; }
.tpc-gallery-overlay { position:absolute; bottom:0; left:0; right:0; padding:36px 32px 26px; background:linear-gradient(transparent, rgba(0,0,0,.75)); }
.tpc-gallery-title { font-family:'Playfair Display',serif; font-style:italic; font-size:22px; color:#fff; font-weight:600; }
.tpc-gallery-sub { font-size:12px; color:rgba(255,255,255,.65); margin-top:4px; }
.tpc-gallery-arrow { position:absolute; top:50%; transform:translateY(-50%); width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.18); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.22); color:#fff; font-size:20px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.tpc-gallery-arrow:hover { background:rgba(255,255,255,.32); }
.tpc-gallery-arrow.left { left:14px; } .tpc-gallery-arrow.right { right:14px; }
.tpc-gallery-dots { position:absolute; bottom:14px; right:32px; display:flex; gap:7px; }
.tpc-gallery-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.32); border:none; cursor:pointer; transition:all .3s; padding:0; }
.tpc-gallery-dot.active { background:#E5D4A0; width:22px; border-radius:4px; }
.tpc-gallery-collections-label { font-family:'Playfair Display',serif; font-size:15px; font-weight:600; color:#0a0a0a; margin:6px 0 12px; }
.tpc-gallery-collections-label em { font-style:italic; background:linear-gradient(135deg,#C4A559,#EDCA50,#C4A559); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.tpc-gallery-collections { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.tpc-gallery-col { background:linear-gradient(135deg,#fff,#faf9f7,#f5f2ed); border:1px solid rgba(200,195,180,.4); border-radius:12px; padding:10px; cursor:pointer; transition:transform .2s, box-shadow .2s; }
.tpc-gallery-col:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.06); }
.tpc-gallery-col-thumb { aspect-ratio:16/9; background-size:cover; background-position:center; border-radius:8px; margin-bottom:8px; }
.tpc-gallery-col-bottom { display:flex; justify-content:space-between; align-items:center; }
.tpc-gallery-col-name { font-size:12px; font-weight:600; color:#0a0a0a; }
.tpc-gallery-col-count { font-size:10px; font-weight:700; background:rgba(158,126,63,.1); color:#9E7E3F; padding:2px 7px; border-radius:5px; }

/* ===== Modalities ===== */
.tpc-modalities { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.tpc-modality { position:relative; background:linear-gradient(135deg,#fff,#faf9f7,#f5f2ed); border:1px solid rgba(200,195,180,.5); border-radius:14px; padding:22px 16px 18px; text-align:center; box-shadow:0 1px 3px rgba(0,0,0,.04); transition:transform .2s; overflow:hidden; }
.tpc-modality:hover { transform:translateY(-3px); }
.tpc-modality::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#9E7E3F,#D4BC7A,#E5D4A0,#D4BC7A,#9E7E3F); }
.tpc-modality-icon { width:44px; height:44px; margin:0 auto 12px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; }
.tpc-modality-icon.geo { background:rgba(90,140,90,.1); }
.tpc-modality-icon.dur { background:rgba(90,107,140,.1); }
.tpc-modality-icon.fmt { background:rgba(107,91,140,.1); }
.tpc-modality-icon.pri { background:rgba(158,126,63,.12); }
.tpc-modality-icon.lng { background:rgba(140,90,74,.1); }
.tpc-modality-icon.dsp { background:rgba(90,107,140,.1); }
.tpc-modality-label { font-size:9px; font-weight:700; text-transform:uppercase; letter-spacing:1.4px; color:#8494a7; margin-bottom:6px; }
.tpc-modality-value { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:#0a0a0a; line-height:1.4; }
.tpc-modality-value.highlight { background:linear-gradient(135deg,#C4A559,#EDCA50,#C4A559); -webkit-background-clip:text; -webkit-text-fill-color:transparent; font-size:17px; }

/* ===== References — photo avatars ===== */
.tpc-ref-av-img { padding:0 !important; overflow:hidden; background:none !important; }
.tpc-ref-av-img img { width:100%; height:100%; object-fit:cover; border-radius:50%; display:block; }

@media (max-width:768px) {
  .tpc-mission-grid, .tpc-modalities, .tpc-gallery-collections { grid-template-columns:1fr 1fr; }
  .tpc-gallery { height:240px; }
}

/* About as testimonial-style quote */
.tpc-about-quote { position: relative; padding: 6px 28px 6px 28px; }
.tpc-about-quote p { font-style: italic; color: #4a4a4a; line-height: 1.7; }
.tpc-quote-mark {
  position: absolute;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  line-height: 1;
  color: #D4BC7A;
  opacity: .65;
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}
.tpc-quote-open { top: -8px; left: -6px; }
.tpc-quote-close { bottom: -28px; right: -2px; }

/* ===== Posts carousel ===== */
.tpc-posts-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: var(--gold-grad);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}
.tpc-posts { margin-top: 4px; }
.tpc-posts-viewport {
  position: relative;
  overflow: hidden;
  padding: 4px 2px;
}
.tpc-posts-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.tpc-post {
  flex: 0 0 calc(50% - 7px);
  background: #fff;
  border: 1px solid #e9e2d2;
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: 0 2px 10px rgba(40, 30, 10, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tpc-post-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tpc-post-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.tpc-post-meta { flex: 1; min-width: 0; }
.tpc-post-name {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}
.tpc-post-date {
  font-size: 12px;
  color: #9a9182;
  margin-top: 1px;
}
.tpc-post-more {
  background: none;
  border: 0;
  color: #9a9182;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.tpc-post-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0;
}
.tpc-post-tag {
  color: var(--gold-1);
  font-weight: 600;
}
.tpc-post-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f3eee2;
}
.tpc-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tpc-posts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e9e2d2;
  background: #fff;
  color: #5a5040;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(40, 30, 10, 0.12);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.tpc-posts-arrow:hover {
  color: var(--gold-1);
  border-color: var(--gold-3);
  transform: translateY(-50%) scale(1.05);
}
.tpc-posts-arrow.prev { left: -8px; }
.tpc-posts-arrow.next { right: -8px; }
.tpc-posts-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.tpc-posts-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9d2c2;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tpc-posts-dot.active {
  background: var(--gold-2);
  width: 22px;
  border-radius: 4px;
}
@media (max-width: 720px) {
  .tpc-post { flex: 0 0 100%; }
}

/* ===== Post clickable + Modal ===== */
.tpc-post-clickable { cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.tpc-post-clickable:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(40, 30, 10, 0.10);
  border-color: var(--gold-3);
}
.tpc-post-clickable:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 2px;
}

.tpc-post-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: tpcFade 0.22s ease;
}
@keyframes tpcFade { from { opacity: 0; } to { opacity: 1; } }
.tpc-post-modal-inner {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 1080px;
  max-height: 92vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: tpcZoom 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes tpcZoom { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.tpc-post-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.18s ease;
}
.tpc-post-modal-close:hover { background: #fff; transform: rotate(90deg); }
.tpc-post-modal-img {
  background: #1a1a1a;
  position: relative;
  min-height: 320px;
  max-height: 92vh;
}
.tpc-post-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tpc-post-modal-body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}
.tpc-post-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0e9d8;
}
.tpc-post-av.lg { width: 46px; height: 46px; font-size: 14px; }
.tpc-post-name.lg { font-size: 16px; }
.tpc-post-modal-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0;
  font-family: 'Inter', sans-serif;
}
.tpc-post-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tpc-post-modal-tags .tpc-post-tag {
  background: #fbf6e8;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
}
.tpc-post-modal-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 9px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-grad);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(184, 145, 42, 0.3);
  transition: all 0.18s ease;
}
.tpc-post-modal-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 145, 42, 0.4);
}
@media (max-width: 820px) {
  .tpc-post-modal-inner {
    grid-template-columns: 1fr;
    max-height: 96vh;
  }
  .tpc-post-modal-img { max-height: 50vh; min-height: 220px; }
  .tpc-post-modal-body { padding: 22px; }
}

/* ===== VIDEO PITCH MODAL ===== */
.tpc-video-modal {
  position: fixed; inset: 0;
  background: rgba(15, 12, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 20px;
  animation: tpcFade 0.22s ease-out;
}
.tpc-video-modal-close {
  position: absolute; top: 22px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.tpc-video-modal-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }

.tpc-video-modal-inner {
  width: min(520px, 100%);
  max-height: calc(100vh - 64px);
  background: linear-gradient(180deg, #1a1614 0%, #211a16 100%);
  border: 1px solid rgba(184,145,42,0.28);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: tpcZoom 0.28s cubic-bezier(0.2,0.9,0.3,1);
}
.tpc-video-modal-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #000;
  flex-shrink: 0;
}
.tpc-video-modal-poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.tpc-video-modal-poster::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.tpc-video-modal-play {
  position: relative; z-index: 2;
  width: 86px; height: 86px; border-radius: 50%;
  background: linear-gradient(135deg, #C4A559 0%, #D4A832 35%, #EDCA50 70%, #F8E27A 100%);
  border: 3px solid rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(184,145,42,0.55), 0 0 0 8px rgba(255,255,255,0.06);
  transition: transform 0.2s;
}
.tpc-video-modal-play:hover { transform: scale(1.08); }
.tpc-video-modal-play-tri {
  width: 0; height: 0;
  border-left: 22px solid #1a1614;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.tpc-video-modal-meta {
  padding: 26px 32px 28px;
  color: #f5efe2;
  border-top: 1px solid rgba(184,145,42,0.18);
  background: linear-gradient(180deg, rgba(184,145,42,0.04), transparent 60%);
}
.tpc-video-modal-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: #EDCA50; margin-bottom: 8px;
}
.tpc-video-modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.tpc-video-modal-sub {
  font-size: 14px; line-height: 1.55; color: rgba(245,239,226,0.78);
  font-style: italic; margin-bottom: 14px;
}
.tpc-video-modal-footer {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 11.5px; color: rgba(245,239,226,0.55); font-weight: 500;
}
.tpc-video-modal-dot { color: rgba(184,145,42,0.5); }

@media (max-width: 720px) {
  .tpc-video-modal { padding: 16px 12px; }
  .tpc-video-modal-inner { border-radius: 16px; }
  .tpc-video-modal-meta { padding: 20px; }
  .tpc-video-modal-title { font-size: 20px; }
  .tpc-video-modal-play { width: 68px; height: 68px; }
  .tpc-video-modal-play-tri { border-left-width: 18px; border-top-width: 11px; border-bottom-width: 11px; }
  .tpc-video-modal-close { top: 12px; right: 12px; }
}

/* ── VideoPitchModal — faux player overlay (reusable) ── */
.vpm-frame { position: relative; overflow: hidden; }
.vpm-ambient {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(184,145,42,.45), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(56,32,12,.6), transparent 60%),
    linear-gradient(135deg, #1a1410 0%, #2a1f17 50%, #14110d 100%);
  animation: vpmPan 14s ease-in-out infinite alternate;
}
@keyframes vpmPan {
  0%   { transform: scale(1) translate(0,0); filter: hue-rotate(0deg); }
  100% { transform: scale(1.08) translate(-2%, 1%); filter: hue-rotate(8deg); }
}
.vpm-badge {
  position: absolute; top: 16px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(0,0,0,.55);
  color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}
.vpm-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff4d4d; animation: vpmPulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,77,77,.7);
}
@keyframes vpmPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.vpm-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(135deg, #C4A559 0%, #D4A832 35%, #EDCA50 70%, #F8E27A 100%);
  border: 3px solid rgba(255,255,255,.85);
  cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(184,145,42,.55), 0 0 0 8px rgba(255,255,255,.06);
  transition: transform .2s, box-shadow .2s;
}
.vpm-play:hover { transform: translate(-50%,-50%) scale(1.06); }
.vpm-tri { width: 0; height: 0;
  border-left: 20px solid #1a1614;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 5px;
}
.vpm-pause { display: flex; gap: 6px; }
.vpm-pause span {
  display: block; width: 6px; height: 24px; border-radius: 2px;
  background: #1a1614;
}

.vpm-subtitle {
  position: absolute; left: 50%; bottom: 60px;
  transform: translateX(-50%);
  max-width: 78%;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(0,0,0,.62);
  color: #fff; font-size: 13px; line-height: 1.45; text-align: center;
  font-style: italic;
  z-index: 2;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.08);
}

.vpm-controls {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 18px 14px;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.65) 100%);
  z-index: 3;
}
.vpm-time {
  color: #fff; font-size: 11px; font-weight: 600; font-variant-numeric: tabular-nums;
  min-width: 32px;
}
.vpm-progress {
  flex: 1; height: 4px; border-radius: 100px;
  background: rgba(255,255,255,.18); overflow: hidden;
}
.vpm-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #C4A559 0%, #EDCA50 100%);
  transition: width .1s linear;
  box-shadow: 0 0 6px rgba(237,202,80,.55);
}
