/* =============================================
   WONDER CHROME STUDIO — EXPERIENCE
   ============================================= */

.exp-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.exp-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(122,98,64,0.09) 0%, transparent 65%);
}

.exp-hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  color: var(--ivory);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.3s forwards;
}

.exp-hero__sub {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  max-width: 480px;
  margin: 1.5rem auto 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.5s forwards;
}

/* Timeline experience */
.exp-timeline {
  padding: var(--spacing-xl) 0;
  background: var(--espresso);
}

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

.exp-stage {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
  transition: background 0.3s;
}

.exp-stage:last-child {
  border-bottom: none;
}

.exp-stage:hover {
  background: rgba(184,150,90,0.02);
}

.exp-stage__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(184,150,90,0.15);
  line-height: 1;
  text-align: right;
  padding-top: 0.2rem;
}

.exp-stage__content {}

.exp-stage__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.exp-stage__subtitle {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.exp-stage__text {
  font-size: 0.875rem;
  color: var(--ivory-dim);
  line-height: 1.85;
  max-width: 380px;
}

.exp-stage__visual .img-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
}

/* Experience overview banner */
.exp-banner {
  padding: var(--spacing-lg) 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.exp-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.exp-banner__item {
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border-light);
}

.exp-banner__item:last-child {
  border-right: none;
}

.exp-banner__value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.exp-banner__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-family: var(--font-sans);
  font-weight: 300;
}

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