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

/* ---------- Page hero (sub-hero, shorter than home) ---------- */
.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-content {
  max-width: 900px;
  position: relative;
  z-index: 10;
}
.page-hero .tagline-strip {
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-steel);
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.page-hero .tagline-strip::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--red);
}

/* ---------- WHO WE ARE (split) ---------- */
.who-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}
.who-media { position: relative; }
.who-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: grayscale(10%) contrast(1.05);
}
.who-media .frame-deco {
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 1px solid var(--red-dim);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ---------- PROCESS TIMELINE ---------- */
.process-timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grey-line);
}
.process-line-fill {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--red), var(--red-hot));
  box-shadow: 0 0 12px var(--red-glow);
  transition: height 1.2s var(--ease-out);
}
.process-step {
  position: relative;
  padding-left: 76px;
  padding-bottom: var(--space-lg);
}
.process-step:last-child { padding-bottom: 0; }
.process-num {
  position: absolute;
  left: 0; top: -4px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--black-card);
  border: 1px solid var(--grey-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--grey-steel);
  z-index: 2;
  transition: color var(--dur-med) ease, border-color var(--dur-med) ease, box-shadow var(--dur-med) ease;
}
.process-step.is-active .process-num {
  color: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}
.process-step h3 { margin-bottom: 0.5em; }
.process-step p { max-width: 520px; }

/* ---------- VIDEO SHOWCASE MASONRY ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: var(--space-sm);
}
.showcase-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--grey-line);
  display: flex;
  align-items: flex-end;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) ease;
}
.showcase-item video{
  
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.showcase-item img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.showcase-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

.showcase-label{
  position: relative;
  z-index: 3;
}

.showcase-item .play-icon{
  z-index: 4;
}
.showcase-item:nth-child(1) { grid-row: span 2; grid-column: span 4; }
.showcase-item:nth-child(5) {
  grid-row: span 1;
  grid-column: span 1;
}
.showcase-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(229,9,20,0.18), rgba(10,10,10,0.92));
  transition: opacity var(--dur-med) ease;
}
.showcase-item:hover { transform: scale(1.02); border-color: var(--red-dim); z-index: 2; }
.showcase-label {
  position: relative;
  z-index: 2;
  padding: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.showcase-item .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.7);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(229,9,20,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out);
  z-index: 3;
}
.showcase-item:hover .play-icon { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.showcase-item .play-icon svg { width: 16px; height: 16px; fill: var(--white); }

@media (max-width: 900px) {
 .showcase-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: 220px;
}}
.showcase-item:nth-child(1){
  grid-column: span 1;
}

/* ---------- MISSION STATEMENT BANNER ---------- */
.mission-banner {
  position: relative;
  padding: var(--space-2xl) 0;
  text-align: center;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(229,9,20,0.15), transparent 70%);
  overflow: hidden;
}
.mission-banner h2 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1;
}
.mission-banner p {
  max-width: 560px;
  margin: var(--space-sm) auto 0;
}

/* ---------- YOUR WORK CALLOUT (placeholder marker) ---------- */
.your-work-note {
  border: 1px dashed var(--red-dim);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(229,9,20,0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: var(--space-md);
}
.your-work-note svg { width: 20px; height: 20px; stroke: var(--red); flex-shrink: 0; margin-top: 2px; }
.your-work-note p { font-size: 0.85rem; margin: 0; color: var(--grey-soft); }
.your-work-note strong { color: var(--white); }

@media (max-width: 900px) {
  .who-split { grid-template-columns: 1fr; }
}
