/* ============================================================
   ABOUT PAGE — Style Apple ultra-minimaliste
   ============================================================ */

.artist-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.artist-hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  pointer-events: none;
  z-index: 0;
}
.artist-hero-grid > div { border-right: 1px solid rgba(44,59,26,0.05); }

/* ── Photo ── */
.artist-photo-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 60px 80px;
  z-index: 1;
}

.artist-photo-frame {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 190px 190px 24px 24px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: 0 0 0 1px rgba(44,59,26,0.07), 0 40px 80px rgba(44,59,26,0.13);
  animation: photoReveal 1.4s cubic-bezier(0.16,1,0.3,1) 0.2s both;
  flex-shrink: 0;
}

@keyframes photoReveal {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.06) saturate(0.82);
  transition: transform 7s ease, filter 0.8s;
}

/* Zoom IMAGE seulement, le cadre arche reste intact */
.artist-photo-frame:hover .artist-photo {
  transform: scale(1.05);
  filter: contrast(1.02) saturate(1);
}

.artist-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(44,59,26,0.28), transparent);
  pointer-events: none;
  z-index: 1;
}

.photo-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.photo-placeholder {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; background: var(--cream-dark);
  color: var(--text-muted); font-size: 14px; text-align: center;
}
.photo-placeholder-icon { font-size: 40px; }

.artist-badge {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(237,234,222,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(44,59,26,0.1);
  padding: 9px 18px; border-radius: 100px;
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--green); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  animation: badgeUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.2s both;
}
@keyframes badgeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.badge-dot {
  width: 7px; height: 7px;
  background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.2);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(74,222,128,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0.08); }
}

.artist-photo-deco {
  position: absolute; bottom: -20px; left: 16px;
  width: 90px; height: 90px;
  border: 1px solid rgba(44,59,26,0.07); border-radius: 50%;
  animation: decoSpin 28s linear infinite; z-index: 0;
}
.artist-photo-deco::before {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid rgba(44,59,26,0.04); border-radius: 50%;
}
@keyframes decoSpin { to { transform: rotate(360deg); } }

/* ── Texte ── */
.artist-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px 60px 40px;
  z-index: 1;
}

.artist-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}
.eyebrow-line { display: block; width: 28px; height: 1px; background: var(--green-muted); }

.artist-name {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 400; line-height: 1.0;
  color: var(--green); margin-bottom: 32px;
  display: flex; flex-direction: column;
}
.name-line {
  display: block;
  clip-path: inset(0 0 100% 0);
  animation: clipReveal 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.name-line:nth-child(1) { animation-delay: 0.35s; }
.name-line:nth-child(2) { animation-delay: 0.52s; }
.name-line.italic { font-style: italic; }
@keyframes clipReveal { to { clip-path: inset(0 0 0% 0); } }

.artist-tagline-wrap {
  display: flex; align-items: center; gap: 2px;
  margin-bottom: 24px; min-height: 36px;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.85s forwards;
}
.artist-tagline {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 23px);
  font-style: italic; color: var(--green-light); font-weight: 400;
}
.typewriter-cursor {
  font-size: 22px; color: var(--green-light);
  animation: blink 1s step-end infinite;
  margin-left: 1px;
}
@keyframes blink { 50% { opacity: 0; } }

.artist-bio-wrap {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 1.05s forwards;
}
.artist-bio {
  font-size: 15px; line-height: 1.9;
  color: var(--text-muted); max-width: 440px;
  padding-left: 18px;
  border-left: 2px solid rgba(44,59,26,0.14);
}

.artist-inline-stats {
  display: flex; align-items: center;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 1.2s forwards;
}
.ist-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 32px;
}
.ist-item:first-child { padding-left: 0; }
.ist-num {
  font-family: var(--font-serif);
  font-size: 38px; font-weight: 400;
  color: var(--green); line-height: 1;
}
.ist-label {
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 5px;
}
.ist-sep { width: 1px; height: 36px; background: rgba(44,59,26,0.12); }

.artist-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 1.35s forwards;
}

/* ── Marquee ── */
.marquee-strip {
  border-top: 1px solid rgba(44,59,26,0.1);
  border-bottom: 1px solid rgba(44,59,26,0.1);
  background: var(--green); padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track span {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237,234,222,0.65); white-space: nowrap; padding: 0 18px;
}
.marquee-track .sep { color: rgba(237,234,222,0.2); padding: 0 2px; }

/* ── Skills — style Apple minimaliste ── */
.skills-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px 80px;
}
.skills-left {
  padding-right: 80px;
  border-right: 1px solid rgba(44,59,26,0.08);
  display: flex; flex-direction: column; justify-content: center;
}
.skills-big-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400; color: var(--green); line-height: 1.05;
  margin-bottom: 24px;
}
.skills-big-title em { font-style: italic; }
.skills-intro {
  font-size: 15px; color: var(--text-muted); line-height: 1.8; max-width: 360px;
}

.skills-right {
  padding-left: 80px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Ligne de compétence — ultra minimaliste */
.skill-line {
  display: flex; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(44,59,26,0.07);
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16,1,0.3,1),
    transform 0.7s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden; cursor: default;
}
.skill-line:first-child { border-top: 1px solid rgba(44,59,26,0.07); }
.skill-line.visible { opacity: 1; transform: translateX(0); }

.skill-num {
  font-family: var(--font-serif);
  font-size: 11px; color: rgba(44,59,26,0.22);
  letter-spacing: 0.05em; width: 36px; flex-shrink: 0;
}
.skill-name {
  font-size: 17px; color: var(--green);
  flex: 1; font-weight: 400;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.skill-arrow {
  opacity: 0; transform: translateX(-10px);
  font-size: 13px; color: var(--green-light);
  transition: opacity 0.28s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.skill-line:hover .skill-name { transform: translateX(5px); }
.skill-line:hover .skill-arrow { opacity: 1; transform: translateX(0); }

/* Scan lumineux au hover */
.skill-line::before {
  content: '';
  position: absolute; top: 0; bottom: 0;
  left: -100%; width: 60%;
  background: linear-gradient(90deg, transparent, rgba(44,59,26,0.04), transparent);
  transition: left 0.55s ease;
}
.skill-line:hover::before { left: 150%; }

/* ── Outils ── */
.tools-section {
  padding: 80px 80px;
  border-top: 1px solid rgba(44,59,26,0.08);
}
.tools-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 40px;
}
.tools-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-pill {
  font-size: 13px; padding: 9px 22px; border-radius: 100px;
  border: 1px solid rgba(44,59,26,0.15); color: var(--text-muted);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1); cursor: default;
}
.tool-pill:hover {
  background: var(--green); color: var(--cream); border-color: var(--green);
  transform: translateY(-3px); box-shadow: 0 8px 20px rgba(44,59,26,0.18);
}

/* ── Responsive About ── */
@media (max-width: 1100px) {
  .artist-hero { grid-template-columns: 1fr; }
  .artist-photo-col {
    padding: calc(var(--nav-h) + 40px) 40px 0;
    justify-content: center;
  }
  .artist-photo-frame { width: 300px; height: 380px; border-radius: 150px 150px 20px 20px; }
  .artist-text-col  { padding: 48px 40px 60px; }
  .skills-section   { grid-template-columns: 1fr; padding: 80px 40px; }
  .skills-left  { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(44,59,26,0.08); padding-bottom: 48px; margin-bottom: 48px; }
  .skills-right { padding-left: 0; }
  .tools-section { padding: 60px 40px; }
}

@media (max-width: 768px) {
  /* Photo */
  .artist-photo-col { padding: calc(var(--nav-h) + 24px) 20px 0; }
  .artist-photo-frame {
    width: 200px;
    height: 260px;
    border-radius: 100px 100px 16px 16px;
  }

  /* Text col */
  .artist-text-col { padding: 32px 20px 48px; }
  .artist-name     { font-size: clamp(36px, 10vw, 60px); }
  .artist-role     { font-size: 13px; }
  .artist-bio      { font-size: 14px; line-height: 1.8; }
  .artist-ctas     { flex-direction: column; gap: 12px; }
  .artist-ctas .btn-primary,
  .artist-ctas .btn-outline { width: 100%; justify-content: center; }

  /* Stats bar */
  .ist-item  { padding: 0 16px; }
  .ist-num   { font-size: 28px; }
  .ist-label { font-size: 10px; }

  /* Skills / Tools */
  .skills-section { padding: 48px 20px; }
  .tools-section  { padding: 48px 20px; }
  .skill-item     { padding: 16px 0; }
  .skill-name     { font-size: 16px; }
  .tools-grid     { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tool-card      { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .artist-photo-frame { width: 160px; height: 210px; }
  .ist-bar { flex-wrap: wrap; gap: 0; }
  .ist-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(44,59,26,0.08); padding: 20px 16px; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
}
