/* ===== ABOUT — redesign 2026 ===== */

/* Hero */
.about-hero {
  padding-top: 56px;
  padding-bottom: 0;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.about-hero__copy { display: grid; gap: 20px; max-width: 700px; }
.about-hero__copy h1 { font-size: clamp(40px, 5.6vw, 72px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; }
.about-hero__copy h1 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.about-hero__copy .lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--muted); max-width: 56ch; }
.about-hero__stats { display: flex; flex-direction: column; gap: 24px; align-items: flex-end; text-align: right; }
.about-hero__stat b { display: block; font-size: 42px; font-weight: 700; letter-spacing: -0.03em; color: var(--blue); line-height: 1; }
.about-hero__stat span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
@media (max-width: 820px) {
  .about-hero__inner { grid-template-columns: 1fr; }
  .about-hero__stats { flex-direction: row; align-items: flex-start; text-align: left; flex-wrap: wrap; gap: 20px; }
}

/* Technical marketer intro */
.about-intro { background: var(--bg); }
.about-intro__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.about-portrait { aspect-ratio: 4 / 5; border-radius: var(--r-lg); width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
@media (max-width: 880px) {
  .about-intro__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait { max-width: 420px; }
}
.about-intro__block {
  max-width: 760px;
  padding-block: clamp(48px, 6vw, 80px);
  display: grid; gap: 20px;
}
.about-intro__block p { font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.about-intro__block p strong { font-weight: 600; color: var(--ink); }
.about-intro__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
  letter-spacing: 0.02em;
  width: fit-content;
}

/* Timeline */
.about-tl { background: var(--bg); border-top: 1px solid var(--line); }
.about-tl__head { padding-block: clamp(48px, 5vw, 72px) 0; display: grid; gap: 12px; margin-bottom: 0; }
.about-tl__list { list-style: none; padding: 0; margin: 0; }

.tl-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 48px;
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.tl-item:hover { background: var(--bg-alt); }
.tl-item:first-child { border-top: 1px solid var(--line); }

.tl-item--featured {
  background: var(--ink);
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.1);
  border-radius: 0;
  padding-inline: 0;
  margin-inline: 0;
}
.tl-item--featured:hover { background: color-mix(in oklch, var(--ink) 94%, white); }

.tl-item__left {
  display: flex; flex-direction: column; gap: 14px;
  padding-left: var(--gutter);
}
.tl-item__year {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--blue);
  font-weight: 600;
}
.tl-item--featured .tl-item__year { color: color-mix(in oklch, var(--blue) 80%, white); }

/* Company logo chip */
.company-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0,0,0,0.1);
  width: fit-content;
  white-space: nowrap;
}
.chip--publicis {
  background: #009FE3; color: #fff; border-color: transparent;
}
.chip--performics {
  background: #FF4B00; color: #fff; border-color: transparent;
}
.chip--icea {
  background: #1B5E9B; color: #fff; border-color: transparent;
}
.chip--vp {
  background: var(--bg-alt); color: var(--ink); border-color: var(--line-strong);
}
.chip--mmbrown {
  background: #2C2C2C; color: #fff; border-color: transparent;
}
.chip--mocseo {
  background: var(--blue); color: #fff; border-color: transparent;
}
.chip--self {
  background: var(--bg-soft); color: var(--muted); border-color: var(--line);
}

.tl-item__right {
  padding-right: var(--gutter);
  display: grid; gap: 12px;
}
.tl-item__right h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.tl-item--featured .tl-item__right h3 { color: #fff; }
.tl-item__right p {
  font-size: 15px; line-height: 1.65;
  color: var(--muted); margin: 0;
  max-width: 64ch;
}
.tl-item--featured .tl-item__right p { color: rgba(255,255,255,0.72); }
.tl-item__bullets {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: grid; gap: 6px;
}
.tl-item__bullets li {
  font-size: 14px; color: var(--muted); line-height: 1.5;
  display: flex; gap: 10px;
}
.tl-item--featured .tl-item__bullets li { color: rgba(255,255,255,0.65); }
.tl-item__bullets li::before { content: "→"; color: var(--blue); flex-shrink: 0; font-family: var(--mono); }
.tl-item--featured .tl-item__bullets li::before { color: color-mix(in oklch, var(--blue) 80%, white); }
.tl-item--now h3::after { content: " ●"; color: var(--blue); font-size: 0.6em; vertical-align: middle; }

@media (max-width: 860px) {
  .tl-item { grid-template-columns: 1fr; gap: 16px; }
  .tl-item__left { flex-direction: row; align-items: center; flex-wrap: wrap; padding-left: var(--gutter); }
  .tl-item__right { padding-right: var(--gutter); }
}

/* Stack */
.about-stack { background: var(--bg-alt); }
.about-stack__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.about-stack__col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.about-stack__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.about-stack__col li {
  font-size: 14px; color: var(--ink-2); padding: 9px 0;
  border-bottom: 1px dashed var(--line); line-height: 1.4;
}
.about-stack__col li:last-child { border-bottom: 0; }
@media (max-width: 860px) { .about-stack__grid { grid-template-columns: 1fr; gap: 24px; } }

/* CTA */
.about-cta { background: var(--ink); color: #fff; }
.about-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-block: clamp(48px, 6vw, 80px);
}
.about-cta__copy h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; letter-spacing: -0.025em; color: #fff; max-width: 28ch; line-height: 1.15; }
.about-cta__copy h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: color-mix(in oklch, var(--blue) 80%, white); }
.about-cta__copy p { color: rgba(255,255,255,0.7); margin-top: 10px; font-size: 16px; }
