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

/* ---- HERO ---- */
#about-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.1) 0%,
    rgba(10,10,10,0.4) 50%,
    rgba(10,10,10,0.9) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.about-hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}

.about-hero-title span {
  font-family: var(--font-brand);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.05;
  display: block;
}

@media (max-width: 768px) {
  .about-hero-content { padding: 0 24px 48px; }
}

/* ---- INTRO ---- */
#about-intro {
  padding: 96px 40px;
  background: var(--light-bg);
  border-bottom: 1px solid #E0DDD7;
}

.about-intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.big-stat {
  font-family: var(--font-brand);
  font-size: 96px;
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* animations.css sets .count-num to 52px globally — override for the big about-page stat */
.big-stat .count-num {
  font-size: inherit;
  font-weight: inherit;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark-dim);
  display: block;
  margin-top: 8px;
}

.intro-pull {
  font-family: var(--font-brand);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.intro-body {
  font-size: 14px;
  color: var(--text-dark-dim);
  line-height: 1.85;
}

@media (max-width: 768px) {
  #about-intro { padding: 64px 24px; }
  .about-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .big-stat { font-size: 72px; }
}

/* ---- TIMELINE ---- */
#timeline {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.timeline-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Center line */
.timeline-inner::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--divider);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 72px;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-blade), transform 0.7s var(--ease-blade);
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Dot on the line */
.tl-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
}

/* Left items */
.tl-left {
  flex-direction: row;
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
}

.tl-left .tl-year {
  order: -1;
  text-align: right;
}

.tl-left .tl-content {
  text-align: right;
}

/* Right items */
.tl-right {
  flex-direction: row;
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

.tl-year {
  font-family: var(--font-brand);
  font-size: 48px;
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.tl-content {
  flex: 1;
}

.tl-headline {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tl-body {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.7;
}

.tl-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-top: 16px;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.tl-img:hover { filter: brightness(1); }

/* ---- FEATURED TIMELINE ITEM (FIF) ---- */
.tl-featured {
  width: calc(100% + 80px);
  margin-left: -40px;
  padding: 0 !important;
  margin-bottom: 72px;
}

.tl-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border: 1px solid var(--divider);
  overflow: hidden;
}

.tl-featured-left {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--surface);
  border-right: 1px solid var(--divider);
}

.tl-year-big {
  font-family: var(--font-brand);
  font-size: 80px;
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
  letter-spacing: -0.02em;
}

.tl-featured-headline {
  font-family: var(--font-brand);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.tl-featured-sub {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.7;
  max-width: 320px;
}

.tl-featured-right {
  position: relative;
  overflow: hidden;
}

.tl-featured-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08);
}

.tl-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.4), transparent);
}

@media (max-width: 900px) {
  #timeline { padding: 64px 24px; }

  .timeline-inner::before { display: none; }

  .tl-dot { display: none; }

  .tl-left,
  .tl-right {
    flex-direction: column;
    padding: 0;
    border-left: 2px solid var(--ember);
    padding-left: 24px;
    margin-bottom: 48px;
  }

  .tl-left .tl-year,
  .tl-left .tl-content {
    text-align: left;
  }

  .tl-year { font-size: 36px; margin-bottom: 8px; }

  .tl-featured {
    width: 100%;
    margin-left: 0;
  }

  .tl-featured-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tl-featured-right { height: 300px; }

  .tl-featured-left { padding: 40px 24px; }
}

/* ---- PRESS / MAGAZINE ---- */
#press-section {
  padding: 96px 40px;
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.press-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.press-header {
  margin-bottom: 56px;
}

.press-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.magazine-fan {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--divider) transparent;
}

.mag-card {
  flex-shrink: 0;
  width: 220px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-blade), box-shadow 0.4s ease;
}

.mag-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s ease, transform 0.5s var(--ease-blade);
}

.mag-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.mag-card:hover img {
  filter: brightness(1);
}

@media (max-width: 768px) {
  #press-section { padding: 64px 24px; }
  .mag-card { width: 160px; }
}

/* ---- CLOSING CTA ---- */
#about-cta {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
}

.about-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.1);
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
}

.about-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.about-cta-years {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
}

/* Magazine lightbox */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.96);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}

.lb-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.lb-close {
  position: absolute;
  top: 24px; right: 28px;
  color: var(--steel-dim);
  padding: 8px;
  transition: color 0.2s ease;
  z-index: 10;
}

.lb-close:hover { color: var(--white); }

#mag-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#mag-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

#mag-lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}
