/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero */
.about-hero {
  padding: calc(var(--nav-h) + 24px) 24px 0;
  background: var(--cream-light);
}

/* Contained editorial card — image inside a rounded frame */
.about-hero-card {
  position: relative;
  height: 68vh;
  min-height: 460px;
  max-height: 700px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 12px 60px rgba(30, 24, 18, 0.14);
}

.about-hero-img {
  position: absolute;
  inset: 0;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* show face + hair */
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 5, 0.80) 0%,
    rgba(10, 8, 5, 0.25) 45%,
    transparent 75%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 52px;
}

.about-hero-text {
  padding: 0 44px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--white);
  margin-top: 16px;
}

.about-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.about-hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
}

/* Bio */
.bio-section {
  padding: 100px 0;
  background: var(--cream-light);
}

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

.bio-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.bio-portrait-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
  border-radius: 14px;
  margin-bottom: 32px;
}

.bio-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border: 1px solid var(--border);
}

.bio-portrait-placeholder span {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
}

.bio-quick-facts {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.facts-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.facts-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.facts-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.facts-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.fact-value {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  text-align: right;
}

/* Bio content */
.bio-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-top: 20px;
  margin-bottom: 36px;
}

.bio-heading em {
  font-style: italic;
  color: var(--gold);
}

.bio-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bio-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--charcoal-soft);
}

.bio-body em {
  font-style: italic;
  color: var(--charcoal);
}

/* Timeline */
.timeline-section {
  padding: 100px 0;
  background: var(--cream);
}

.timeline {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 56px 48px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  text-align: right;
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 56px;
}

.timeline-item:nth-child(even) {
  padding-right: 0;
  padding-left: 56px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.timeline-connector {
  position: absolute;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--gold);
}

.timeline-item:nth-child(odd) .timeline-connector  { right: -6px; left: auto; }
.timeline-item:nth-child(even) .timeline-connector { left: -6px; }

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}

/* Production */
.production-section {
  background: transparent;
  padding: 0 24px 80px;
}

.production-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--panel-dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(10, 8, 5, 0.22);
}

.production-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.production-content .section-label {
  color: rgba(184,147,90,0.7);
}

.production-content .section-label::before {
  background: var(--gold);
}

.production-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: var(--cream-light);
  margin-top: 8px;
}

.production-heading em {
  font-style: italic;
  color: var(--gold);
}

.production-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(245,237,224,0.55);
  max-width: 460px;
  margin-top: 8px;
}

.production-img {
  position: relative;
  overflow: hidden;
}

.production-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-img-placeholder {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.production-img-placeholder span {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .bio-grid { grid-template-columns: 260px 1fr; gap: 48px; }
  .production-content { padding: 80px 48px; }
}

@media (max-width: 768px) {
  .about-hero { padding: calc(var(--nav-h) + 12px) 12px 0; }
  .about-hero-card { height: 55vh; min-height: 360px; border-radius: 14px; }
  .about-hero-text { padding: 0 20px; }
  .about-hero-title { font-size: clamp(36px, 10vw, 64px); }
  .about-hero-content { padding-bottom: 36px; }

  .bio-grid { grid-template-columns: 1fr; }
  .bio-sidebar { position: static; }

  .timeline::before { left: 24px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: left;
    padding: 0 20px 40px 64px;
  }
  .timeline-item:nth-child(odd) .timeline-connector,
  .timeline-item:nth-child(even) .timeline-connector {
    left: 18px;
    right: auto;
  }

  .production-section { padding: 0 12px 60px; }
  .production-inner { grid-template-columns: 1fr; border-radius: 14px; }
  .production-img { min-height: 300px; }
  .production-content { padding: 60px 20px; }
}
