/* ============================================================
   richarDesign v2 — Richard Choi portfolio
   Editorial motion design · Nokora (100–300) · video backgrounds
   ============================================================ */

:root {
  --bg: #101014;
  --bg-panel: #17181d;
  --line: rgba(255, 255, 255, .1);
  --text: #f2f2f4;
  --muted: #a2a6b0;
  --accent: #7ee0a3;
  --radius: 16px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22, .8, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nokora', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 1.1s var(--ease);
}

::selection { background: var(--accent); color: #101014; }

img, video { max-width: 100%; }

/* ---------- page transition curtain ---------- */
#curtain {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0b0b0e;
  pointer-events: none;
  opacity: 0;
  transition: opacity .55s var(--ease);
}
body.is-leaving #curtain { opacity: 1; pointer-events: all; }
body.is-entering #curtain { opacity: 1; }

/* ---------- layout ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 860px; }

/* ---------- nav ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  mix-blend-mode: normal;
  background: linear-gradient(rgba(10,10,13,.55), transparent);
}
nav .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}
.logo em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--text);
  opacity: .75;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: lowercase;
  font-style: italic;
  transition: opacity .3s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
@media (max-width: 760px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .72rem; letter-spacing: .1em; }
}

/* ---------- display typography ---------- */
.kicker {
  font-size: .74rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 26px;
}
.display {
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: .01em;
}
.display em {
  font-style: italic;
  text-transform: lowercase;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0;
}
.display .thin { font-weight: 100; }
.display em.reg {
  font-size: .3em;
  vertical-align: top;
  line-height: 1;
  position: relative;
  top: .16em;
  letter-spacing: 0;
}

/* scattered word (WORK / HELLO style) */
.scatter { display: block; }
.scatter span {
  display: inline-block;
  will-change: transform;
}

/* ---------- hero (all pages) ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  overflow: hidden;
}
.hero .bg-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero .bg-media video,
.hero .bg-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.9);
}
.hero .bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,16,.55) 0%, rgba(12,12,16,.25) 40%, rgba(12,12,16,.88) 100%);
}
.hero h1 {
  font-size: clamp(3rem, 10vw, 8.6rem);
}
.hero .sub {
  margin-top: 34px;
  max-width: 60ch;
  color: var(--text);
  opacity: .85;
  font-size: 1.06rem;
  font-weight: 300;
}
.hero-meta {
  display: flex;
  gap: 52px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 100;
  line-height: 1.15;
}
.hero-meta div span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
}
.scroll-cue {
  position: absolute;
  right: 34px;
  bottom: 34px;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* project hero variant */
.p-tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 30px;
  font-weight: 300;
}
.p-num {
  position: absolute;
  top: calc(var(--nav-h) + 2vh);
  right: 4vw;
  font-size: clamp(7rem, 20vw, 15rem);
  font-weight: 100;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.22);
  pointer-events: none;
  user-select: none;
}
.p-meta {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 46px;
}
.p-meta div span {
  display: block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
}
.p-meta div strong { font-weight: 300; font-size: .98rem; }

/* ---------- sections ---------- */
section { padding: 110px 0; position: relative; }
.sec-label {
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 30px;
}
.sec-title {
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1.12;
  max-width: 24ch;
}
.sec-title em {
  font-style: italic;
  text-transform: lowercase;
  font-weight: 300;
  color: var(--accent);
}

.prose { color: #cdd0d6; font-weight: 300; }
.prose p + p { margin-top: 20px; }
.prose strong { color: var(--text); font-weight: 400; }

/* ---------- section background video ---------- */
.section-bg {
  position: absolute;
  inset: 0;
  overflow: clip;
  z-index: 0;
}
.section-bg video {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(246,246,248,.82), rgba(246,246,248,.72) 50%, rgba(246,246,248,.86));
}
section > .container { position: relative; z-index: 1; }

/* light variant — dark text over bright video */
.work-light { color: #1a1b20; }
.work-light .prose { color: #3c3f46; }
.work-light .prose strong { color: #101014; }
.work-light .work-row { color: #1a1b20; border-color: rgba(0,0,0,.16); }
.work-light .work-row .info p.desc { color: #565a63; }
.work-light .work-row .info .idx,
.work-light .work-row .info .tagline { color: color-mix(in srgb, var(--card-accent, #444) 50%, #000); }
.work-light .work-row .info .cta {
  color: #1a1b20;
  border-bottom-color: color-mix(in srgb, var(--card-accent, #444) 50%, #000);
}
.work-light ::selection { background: #1a1b20; color: #fff; }
.work-light .sec-label { color: #6a6e76; }
.work-light .sec-title { color: #16171b; }
.work-light .sec-title em { color: #2f9e63; }
.work-light .focus-list li { color: #23252b; }
.work-light .awards-list li { color: #3c3f46; border-color: rgba(0,0,0,.14); }
.work-light .awards-list li b { color: #16171b; }
.work-light .awards-list a { color: #2f9e63; }
.work-light .stat { border-top-color: rgba(0,0,0,.16); }
.work-light .stat strong { color: #2f9e63; }
.work-light .stat span { color: #6a6e76; }

/* light hero — dark text over bright video */
.hero-light .bg-media::after {
  background: linear-gradient(180deg,
    rgba(246,246,248,.45) 0%,
    rgba(246,246,248,.12) 42%,
    rgba(230,230,234,.35) 68%,
    rgba(230,230,234,.85) 86%,
    #e6e6ea 97%);
}
.hero-light .kicker { color: #5a5e66; }
.hero-light h1 { color: #16171b; }
.hero-light .display em { color: #2f9e63; }
.hero-light .sub { color: #3c3f46; opacity: 1; }
.hero-light .hero-meta div strong { color: #16171b; }
.hero-light .hero-meta div span { color: #5a5e66; }
.hero-light .scroll-cue { color: #5a5e66; }

/* nav flips dark while a light section is in view */
body.nav-dark nav { background: linear-gradient(rgba(246,246,248,.6), transparent); }
body.nav-dark nav .logo,
body.nav-dark nav .nav-links a { color: #1a1b20; transition: color .5s var(--ease); }
nav .logo, nav .nav-links a { transition: color .5s var(--ease); }

/* ---------- work list (home) ---------- */
.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
}
.work-row:first-of-type { border-top: 1px solid var(--line); }
.work-row .media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0c0c10;
}
.work-row .media img, .work-row .media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.work-row:hover .media img, .work-row:hover .media video { transform: scale(1.045); }
.work-row:nth-child(even) .media { order: 2; }
.work-row .info .idx {
  font-style: italic;
  font-size: 1rem;
  color: var(--card-accent, var(--accent));
  font-weight: 300;
}
.work-row .info h3 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 10px 0 6px;
}
.work-row .info .tagline {
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent));
  font-weight: 300;
}
.work-row .info p.desc {
  margin-top: 18px;
  color: var(--muted);
  max-width: 46ch;
}
.work-row .info .cta {
  display: inline-block;
  margin-top: 24px;
  font-style: italic;
  color: var(--text);
  border-bottom: 1px solid var(--card-accent, var(--accent));
  padding-bottom: 3px;
  font-size: .95rem;
  transition: letter-spacing .4s var(--ease);
}
.work-row:hover .info .cta { letter-spacing: .06em; }
@media (max-width: 860px) {
  .work-row { grid-template-columns: 1fr; gap: 26px; padding: 60px 0; }
  .work-row:nth-child(even) .media { order: 0; }
}

/* ---------- galleries & figures ---------- */
figure.shot {
  margin: 40px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c10;
}
figure.shot img, figure.shot video { width: 100%; display: block; }
figure.shot img { cursor: zoom-in; }
figure.shot figcaption {
  padding: 13px 20px;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .06em;
  font-style: italic;
  border-top: 1px solid var(--line);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
  margin: 40px 0;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
  background: #0c0c10;
  cursor: zoom-in;
  transition: transform .5s var(--ease), opacity .5s;
}
.gallery img:hover { transform: translateY(-4px); opacity: .92; }

/* ---------- floating collage (uncropped images, parallax drift) ---------- */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px 26px;
  margin: 64px 0 40px;
  align-items: start;
}
.collage figure.float { margin: 0; }
.collage figure.float img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: zoom-in;
  box-shadow: 0 26px 60px -30px rgba(0,0,0,.55);
  transition: opacity .4s;
}
.collage figure.float img:hover { opacity: .93; }
.collage figure.float figcaption {
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 12px;
  letter-spacing: .04em;
}
.collage figure.float:nth-child(6n+1) { grid-column: 1 / 6; }
.collage figure.float:nth-child(6n+2) { grid-column: 7 / 13; margin-top: 110px; }
.collage figure.float:nth-child(6n+3) { grid-column: 2 / 8; margin-top: 40px; }
.collage figure.float:nth-child(6n+4) { grid-column: 9 / 13; margin-top: 130px; }
.collage figure.float:nth-child(6n+5) { grid-column: 3 / 9; margin-top: 70px; }
.collage figure.float:nth-child(6n+6) { grid-column: 8 / 13; margin-top: 40px; }
@media (max-width: 760px) {
  .collage { display: block; }
  .collage figure.float { margin: 30px 0 !important; }
}
/* compact collage — keeps low-res images small while still floating */
.collage.compact figure.float img,
.collage.compact figure.float video { max-width: 300px; }
@media (max-width: 760px) {
  .collage.compact figure.float img,
  .collage.compact figure.float video { max-width: 100%; }
}
/* floating videos inside a collage (autoplay R&D clips) */
.collage figure.float video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0c0c10;
  box-shadow: 0 26px 60px -30px rgba(0,0,0,.55);
}

/* big standalone film frame */
figure.film {
  margin: 44px 0 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c10;
}
figure.film video { width: 100%; display: block; }
figure.film .embed { border: 0; border-radius: 0; }
figure.film figcaption {
  padding: 15px 22px;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .06em;
  font-style: italic;
  border-top: 1px solid var(--line);
}

/* captioned image grid (titles under each thumbnail) */
.grid-cap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin: 40px 0;
}
.grid-cap figure { margin: 0; }
.grid-cap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
  background: #0c0c10;
  cursor: zoom-in;
  transition: transform .5s var(--ease), opacity .5s;
}
.grid-cap img:hover { transform: translateY(-4px); opacity: .92; }
.grid-cap figcaption {
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 11px;
  letter-spacing: .04em;
  line-height: 1.45;
}

/* large uncropped feature image with caption */
figure.feature { margin: 44px 0 0; }
figure.feature img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0c0c10;
  cursor: zoom-in;
  box-shadow: 0 26px 60px -30px rgba(0,0,0,.55);
}
figure.feature figcaption {
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 14px;
  letter-spacing: .05em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px;
  margin-top: 44px;
}
.video-grid .vwrap h4 {
  font-weight: 300;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 13px;
  font-style: italic;
}
.embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c10;
}
.embed iframe, .embed video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- stats ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  margin: 52px 0 0;
}
.stat {
  border-top: 1px solid var(--line);
  padding: 22px 4px 0;
}
.stat strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 100;
  color: var(--accent);
  line-height: 1.1;
}
.stat span {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 300;
}

/* ---------- focus list ---------- */
.focus-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 860px) { .focus-split { grid-template-columns: 1fr; gap: 40px; } }
.focus-list { list-style: none; margin-top: 10px; }
.focus-list li {
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 300;
  padding: 10px 0;
  color: var(--text);
  opacity: .9;
}

/* ---------- awards ---------- */
.awards-list { list-style: none; margin-top: 8px; }
.awards-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #cdd0d6;
  font-size: .95rem;
  font-weight: 300;
}
.awards-list li b { color: var(--text); font-weight: 400; }
.awards-list a { color: var(--accent); }

/* ---------- press wall ---------- */
.press-wall { columns: 3; column-gap: 18px; margin-top: 44px; }
.press-wall img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
  display: block;
  background: #0c0c10;
  break-inside: avoid;
  cursor: zoom-in;
  transition: opacity .4s;
}
.press-wall img:hover { opacity: .9; }
@media (max-width: 900px) { .press-wall { columns: 2; } }
@media (max-width: 560px) { .press-wall { columns: 1; } }

/* ---------- next project ---------- */
.next-proj {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 96px 20px;
  color: var(--text);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.next-proj span {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
}
.next-proj strong {
  display: block;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 100;
  text-transform: uppercase;
  margin-top: 12px;
  transition: letter-spacing .5s var(--ease);
}
.next-proj strong em { font-style: italic; color: var(--accent); text-transform: lowercase; font-weight: 300; }
.next-proj:hover strong { letter-spacing: .05em; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 110px 0 70px;
  text-align: center;
}
footer .thanks {
  font-size: clamp(3rem, 11vw, 8rem);
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1;
}
footer .thanks em { font-style: italic; text-transform: lowercase; font-weight: 300; color: var(--accent); }
footer p.invite {
  margin: 30px auto 0;
  max-width: 52ch;
  color: var(--muted);
  font-weight: 300;
}
footer .f-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
footer .f-links a {
  color: var(--accent);
  text-decoration: none;
  font-style: italic;
  font-size: 1.02rem;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
footer .f-links a:hover { border-color: var(--accent); }
footer .fine {
  margin-top: 70px;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 300;
}

/* ---------- lightbox ---------- */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 8, 11, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  transform: scale(.96);
  transition: transform .4s var(--ease);
}
#lightbox.open img { transform: scale(1); }
#lightbox .lb-caption {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  font-style: italic;
  padding: 0 20px;
}
#lightbox button {
  position: absolute;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: #fff;
  width: 52px; height: 52px;
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color .3s, background .3s;
  font-family: inherit;
}
#lightbox button:hover { border-color: #fff; background: rgba(255,255,255,.08); }
#lightbox .lb-close { top: 26px; right: 26px; }
#lightbox .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
#lightbox .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  #lightbox .lb-prev { left: 10px; }
  #lightbox .lb-next { right: 10px; }
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scatter span { transform: none !important; }
  #curtain { transition: none; }
}

/* ============================================================
   v3 additions — About page, community gallery, press index
   ============================================================ */

/* ---------- portrait split (about) ---------- */
.about-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; gap: 40px; } }
.portrait-frame {
  position: sticky;
  top: calc(var(--nav-h) + 30px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.6);
  background: #0c0c10;
}
.portrait-frame img { width: 100%; display: block; cursor: zoom-in; }
.portrait-frame figcaption {
  padding: 13px 20px;
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--line);
}
@media (max-width: 860px) { .portrait-frame { position: static; } }

/* ---------- career timeline ---------- */
.timeline { list-style: none; margin-top: 54px; position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--line);
}
.timeline li { position: relative; padding: 0 0 44px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -32px; top: 10px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(126,224,163,.14);
}
.timeline .t-year {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: .04em;
}
.timeline h3 {
  font-weight: 100;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.15;
  margin: 6px 0 8px;
}
.timeline p { color: var(--muted); max-width: 62ch; }
.timeline p b, .timeline p strong { color: var(--text); font-weight: 400; }

/* ---------- award count band ---------- */
.award-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  margin: 50px 0 10px;
}
.award-band .a-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  background: rgba(255,255,255,.02);
}
.award-band .a-cell strong {
  display: block;
  font-size: 3rem;
  font-weight: 100;
  color: var(--accent);
  line-height: 1.05;
}
.award-band .a-cell span {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
}

/* ---------- pull-quote band ---------- */
.quote-band {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 100;
  line-height: 1.35;
  max-width: 30ch;
}
.quote-band em { font-style: italic; font-weight: 300; color: var(--accent); }

/* ---------- press index ---------- */
.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin: 40px 0 8px;
  align-items: baseline;
}
.press-logos span {
  font-weight: 100;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .82;
  white-space: nowrap;
}
.press-index { list-style: none; margin-top: 44px; }
.press-index li { border-top: 1px solid var(--line); }
.press-index li:last-child { border-bottom: 1px solid var(--line); }
.press-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  text-decoration: none;
  color: var(--text);
  transition: background .3s;
}
.press-item:hover { background: rgba(255,255,255,.025); }
.press-item .p-thumb {
  width: 150px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0c0c10;
  display: block;
}
.press-item .p-thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
  font-size: 1.5rem;
  color: var(--muted);
  letter-spacing: .05em;
}
.press-item .p-outlet {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 300;
}
.press-item h4 {
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.4;
  margin: 7px 0 5px;
}
.press-item .p-date { font-size: .8rem; color: var(--muted); font-style: italic; }
.press-item .p-arrow {
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
  transition: color .3s, transform .4s var(--ease);
}
.press-item:hover .p-arrow { color: var(--accent); transform: translateX(5px); }
@media (max-width: 640px) {
  .press-item { grid-template-columns: 96px 1fr; }
  .press-item .p-thumb { width: 96px; }
  .press-item .p-arrow { display: none; }
}

/* ---------- civic roles ---------- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
  margin-top: 50px;
}
.role-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: rgba(255,255,255,.02);
}
.role-card .r-num {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
  font-size: .95rem;
}
.role-card h4 {
  font-weight: 300;
  font-size: 1.08rem;
  margin: 10px 0 8px;
  line-height: 1.4;
}
.role-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* press item link overlay — thumb stays clickable for zoom */
.press-index li { position: relative; }
.press-link { position: absolute; inset: 0; z-index: 1; }
.press-item { position: relative; }
.press-item .p-thumb { position: relative; z-index: 2; }

/* ---------- work header with side video ---------- */
.work-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 64px;
}
.work-head .head-video { margin: 0; }
.work-head .head-video video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 26px 60px -30px rgba(0,0,0,.35);
}
.work-head .head-video figcaption {
  font-size: .78rem;
  color: #6a6e76;
  font-style: italic;
  margin-top: 10px;
}
@media (max-width: 860px) { .work-head { grid-template-columns: 1fr; } }
