:root {
  --paper: #ffffff;
  --newsprint: #e8e8e8;
  --ink: #000000;
  --muted: #8a8a8a;
  --pewter: #bfbfbf;
  --red: #000000;

  --font: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --page: min(1200px, calc(100vw - 40px));
  --gutter: clamp(18px, 3.2vw, 42px);
  --section-gap: clamp(80px, 8vw, 142px);
  --pill: 500px;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.31;
  letter-spacing: -0.004em;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.hero,
.section {
  width: var(--page);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: end;
  padding: clamp(80px, 10vw, 130px) 0 clamp(38px, 6vw, 76px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(28px, 7vw, 90px);
  width: 100%;
  align-items: end;
}

.kicker,
.section-kicker,
.feature-category,
.feature-meta,
.feature-action,
.cv-time,
.award-year {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.015em;
  font-weight: 400;
  text-transform: uppercase;
}

.kicker {
  max-width: 420px;
  margin: 0 0 18px;
  color: var(--ink);
}

h1,
h2,
p { margin-top: 0; }

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(72px, 10vw, 178px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 400;
}

.hero-note {
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.hero-note p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.33;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.text-link {
  display: inline-flex;
  margin-top: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.section {
  padding: 0 0 var(--section-gap);
}

.work-section {
 padding-top: var(--section-gap);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  margin-bottom: 40px;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--ink);
}

.section-heading h2,
.profile-layout h2,
.awards-layout h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.048em;
  font-weight: 400;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
}

.category-chip,
.button {
  appearance: none;
  border: 1px solid var(--muted);
  border-radius: var(--pill);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.005em;
  font-weight: 400;
}

.category-chip {
  min-height: 38px;
  padding: 10px 15px 11px;
}

.category-chip.is-active {
  background: var(--ink);
  color: var(--paper);
}

.feature-list {
  margin-top:00px;
}

.feature-item {
  border-bottom: 1px solid var(--pewter);
  transition: opacity 180ms ease;
}

.feature-item.is-hidden {
  display: none;
}

.feature-toggle {
  display: grid;
  grid-template-columns: minmax(220px, 25%) minmax(0, 1fr) 72px;
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  width: 100%;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.feature-toggle:focus-visible,
.category-chip:focus-visible,
.button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.feature-media {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  background: var(--newsprint);
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}

.feature-media > * { display: none; }


.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 4px 0;
}

.feature-category {
  width: fit-content;
  margin-bottom: 15px;
  padding: 6px 11px 7px;
  border: 1px solid var(--ink);
  border-radius: var(--pill);
  color: var(--ink);
}

.feature-meta {
  margin-bottom: 5px;
  color: var(--muted);
}

.feature-title {
  display: block;
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(43px, 6vw, 40px);
  line-height: 0.93;
  font-weight: 400;
  letter-spacing: -1.1px;
}

.feature-summary {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 400;
  color:gray;
}

.feature-action {
  align-self: center;
  justify-self: end;
  color: var(--muted);
}

.feature-toggle[aria-expanded="true"] .feature-action { color: var(--ink); }
.feature-toggle[aria-expanded="true"] .feature-action::after { content: "ed"; }

.feature-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 340ms ease, opacity 220ms ease;
}

.feature-panel.is-open { opacity: 1; }

.panel-inner {
  display: grid;
  grid-template-columns: minmax(220px, 25%) minmax(0, 1fr) 72px;
  gap: clamp(18px, 3vw, 36px);
  padding: 0 0 36px;
}

.panel-inner p {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  font-size: clamp(25px, 3vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.004em;
  font-weight: 400;
  color: var(--ink)
}

.panel-inner dl {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0 0;
}

.panel-inner dt {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.015em;
  font-weight: 400;
  text-transform: uppercase;
}

.panel-inner dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted);
}

/* Abstract image placeholders */
.ui-window,
.ui-list i,
.poster-title,
.poster-image,
.poster-lines i,
.briefing-sheet,
.briefing-aside i,
.topic-grid i { position: absolute; }

.media-listlove { background: #f3f3f3; }
.ui-window {
  left: 20px;
  top: 20px;
  right: 20px;
  height: 34px;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.ui-window i {
  display: block;
  float: left;
  width: 6px;
  height: 6px;
  margin: 13px 0 0 9px;
  border-radius: 50%;
  background: var(--ink);
}
.ui-list {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
}
.ui-list i {
  position: static;
  display: block;
  height: 18px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--pewter);
}

.media-correctiv { background: #dedede; }
.poster-title {
  left: 18px;
  top: 18px;
  width: 64%;
  height: 36px;
  background: var(--ink);
}
.poster-image {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 58%;
  background: linear-gradient(135deg, #0a0a0a, #858585 52%, #d8d8d8);
}
.poster-lines {
  position: absolute;
  right: 18px;
  top: 70px;
  width: 54px;
  display: grid;
  gap: 7px;
}
.poster-lines i {
  position: static;
  height: 2px;
  background: var(--ink);
}

.media-table,
.media-topixs { background: #f4f4f4; }
.briefing-sheet {
  left: 22px;
  top: 22px;
  width: 55%;
  bottom: 22px;
  border: 1px solid var(--ink);
  background: var(--paper);
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}
.briefing-sheet i { display: block; height: 8px; background: var(--ink); opacity: .3; }
.briefing-sheet i:first-child { height: 20px; opacity: 1; }
.briefing-aside {
  position: absolute;
  right: 22px;
  top: 22px;
  bottom: 22px;
  width: 30%;
  display: grid;
  gap: 10px;
}
.briefing-aside i { position: static; border: 1px solid var(--pewter); background: var(--newsprint); }
.topic-grid {
  position: absolute;
  inset: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.topic-grid i { position: static; border: 1px solid var(--ink); background: var(--paper); }
.topic-grid i:nth-child(2) { background: var(--pewter); }

.profile-section {
  padding-top: var(--section-gap);
  border-top: 0;
}

.profile-layout,
.awards-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  padding-top: 0px;}

.profile-text {
  font-size: 19px;
  line-height: 1.31;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.profile-text p { margin: 0 0 19px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
}

.cv-block {
  margin-top: clamp(38px, 6vw, 72px);
  border-top: 1px solid var(--ink);
}

.cv-row,
.award-row {
  display: grid;
  align-items: baseline;
  border-bottom: 1px solid var(--pewter);
}

.cv-row {
  grid-template-columns: 160px minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0 17px;
}

.cv-time,
.award-year {
  color: var(--muted);
}

.cv-role,
.cv-place,
.award-title,
.award-project {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.004em;
  font-weight: 400;
}

.cv-role,
.award-title {
  font-weight: 500;
}

.education-block {
  margin-top: clamp(28px, 5vw, 56px);
}

.education-block h3 {
  margin: 0;
  padding: 0 0 13px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.015em;
  font-weight: 400;
  text-transform: uppercase;
}

.awards-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--section-gap) 0 clamp(80px, 8vw, 120px);
  background: var(--newsprint);
}

.awards-layout {
  width: var(--page);
  margin: 0 auto;
}

.award-row {
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0 15px;
}

.award-project {
  grid-column: 2;
  color: #5d5d5d;
  font-size: 16px;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-heading,
  .profile-layout,
  .awards-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .category-filter { justify-content: flex-start; }

  .feature-toggle,
  .panel-inner {
    grid-template-columns: minmax(0, 1fr) 62px;
  }

  .feature-media {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .feature-copy { grid-column: 1; }
  .feature-action { grid-column: 2; grid-row: 2; }
  .panel-inner p,
  .panel-inner dl { grid-column: 1; }

  .cv-row {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .cv-place {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root { --page: min(95vw - 28px, 1200px); --gutter: 14px; }

  body { font-size: 16px; }

.category-filter {
  gap: 5px;
}

.panel-inner dd {
  font-size:14px;
}

  .hero {
    min-height: 100vh;
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(64px, 15vw, 112px);
    line-height: 1;
  }

  .hero-note p,
  .profile-text,
  .feature-summary {
    font-size: 17px;
    line-height: 1.45;
  }

  .section-heading h2,
  .profile-layout h2,
  .awards-layout h2 {
    font-size: clamp(42px, 10vw, 66px);
    line-height: .96;
  }

  .category-chip {
    min-height: 34px;
    padding: 7px 10px 8px;
    font-size: 13px;
  }

.feature-toggle {
  grid-template-columns: 85px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 0;
}

  .feature-media,
  .is-featured .feature-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 85px;
    height: 85px;
  }

  .feature-copy {
    grid-column: 2;
    grid-row: 1;
  }

.feature-action {
  display: none;
}

  .feature-title {
    font-size: clamp(18px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing:0px;
  }

  .feature-summary {
    font-size: 14px;
    line-height: 1.4;
  }

  .feature-category {
    margin-bottom: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
  }
  .feature-category,
  .feature-meta,
  .section-kicker,
  .kicker,
  .cv-time,
  .award-year {
    font-size: 12px;
    letter-spacing: .05em;
  }

  .panel-inner { grid-template-columns: 1fr; gap: clamp(13px, 3vw, 36px)}
  .panel-inner p { font-size: 17px; line-height: 26px }
  .panel-inner dl { grid-template-columns: 1fr; }

  .cv-row,
  .award-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0 15px;
  }

  .cv-place,
  .award-project {
    grid-column: 1;
    color: var(--muted);
    font-size: 15px;
  }
}


.section-heading.work-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.section-heading.work-heading h2 {
  margin: 0;
}

.section-heading.work-heading .category-filter {
  width: 100%;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-links .text-link {
  display: inline-flex;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  background: var(--rule-soft);
}

.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.category-filter-sticky {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--ink);
}