:root {
  --black: #10100f;
  --ink: #1d1c1a;
  --paper: #f4f1eb;
  --white: #fffdfa;
  --line: #cbc5ba;
  --red: #b9363f;
  --green: #315b50;
  --yellow: #e0b44e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3,
p,
span,
a {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: 92px;
  line-height: 0.9;
}

h2 {
  max-width: 920px;
  font-size: 54px;
  line-height: 1.02;
}

h3 {
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

.shell,
.nav,
.hero__layout {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 88svh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 253, 250, 0.18);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.brand__name {
  font-weight: 800;
}

.brand__note {
  color: rgba(255, 253, 250, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav__links a {
  color: rgba(255, 253, 250, 0.76);
}

.nav__links a:hover {
  color: var(--white);
}

.hero__layout {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 52px 0 70px;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.kicker,
.section-index {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.kicker {
  margin-bottom: 26px;
}

.hero__statement {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(255, 253, 250, 0.77);
  font-size: 21px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 800;
}

.button--primary {
  background: var(--red);
  color: var(--white);
}

.button--quiet {
  border-color: rgba(255, 253, 250, 0.28);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--black);
}

.hero__portrait {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 250, 0.2);
  border-radius: 6px;
  background: #2a2421;
}

.hero__portrait > img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.04);
}

.hero__portrait--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-color: rgba(255, 253, 250, 0.16);
  background: #191918;
}

.hero__portrait--placeholder::before,
.hero__portrait--placeholder::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.hero__portrait--placeholder::before {
  top: 0;
  bottom: 0;
  left: 25%;
  width: 1px;
}

.hero__portrait--placeholder::after {
  right: 0;
  bottom: 22%;
  left: 0;
  height: 1px;
}

.hero__portrait--placeholder span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 156px;
  line-height: 1;
}

.hero__portrait--placeholder small {
  position: relative;
  z-index: 1;
  color: rgba(255, 253, 250, 0.46);
  font-size: 12px;
  text-transform: uppercase;
}

.manifesto,
.current-projects,
.media,
.topics,
.formats,
.boundaries,
.personal-work,
.contact {
  padding: 96px 0;
}

.manifesto {
  background: var(--paper);
}

.current-projects {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.current-projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.current-projects article {
  min-height: 280px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
}

.current-projects article:last-child {
  background: var(--green);
  color: var(--white);
}

.current-projects article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.current-projects article:last-child > span,
.current-projects article:last-child p {
  color: rgba(255, 253, 250, 0.7);
}

.current-projects article p {
  max-width: 510px;
  color: #5d574f;
  font-size: 17px;
}

.current-projects article a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.manifesto__layout,
.boundaries__layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 46px;
}

.manifesto__body {
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 42px;
  color: #4d4943;
  font-size: 18px;
}

.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.fact:first-child {
  border-left: 1px solid var(--line);
}

.fact strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.fact span {
  color: #666057;
  font-size: 14px;
}

.fact--accent {
  background: var(--green);
  color: var(--white);
}

.fact--accent span {
  color: rgba(255, 253, 250, 0.72);
}

.media {
  background: var(--black);
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 56px;
}

.section-heading--row {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 46px;
}

.media__list {
  border-top: 1px solid rgba(255, 253, 250, 0.2);
}

.media-item {
  min-height: 104px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 40px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 253, 250, 0.2);
}

.media-item:hover {
  background: #1b1b19;
}

.media-item__year {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.media-item strong,
.media-item small {
  display: block;
}

.media-item strong {
  font-size: 21px;
}

.media-item small {
  margin-top: 4px;
  color: rgba(255, 253, 250, 0.56);
  font-size: 14px;
}

.media-item__arrow {
  font-size: 22px;
  text-align: right;
}

.name-bridge {
  max-width: 660px;
  margin-top: 32px;
  color: rgba(255, 253, 250, 0.55);
  font-size: 13px;
}

.topics {
  background: var(--paper);
}

.topics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topics article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topics article:nth-child(2),
.topics article:nth-child(6) {
  background: var(--white);
}

.topics article:nth-child(3) {
  background: var(--red);
  color: var(--white);
}

.topics article span {
  color: #777066;
  font-size: 12px;
  font-weight: 800;
}

.topics article:nth-child(3) span {
  color: rgba(255, 253, 250, 0.7);
}

.formats {
  background: var(--yellow);
}

.formats__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
}

.formats .section-index {
  color: var(--black);
  margin-bottom: 22px;
}

.formats__list {
  border-top: 1px solid rgba(16, 16, 15, 0.35);
}

.formats__list div {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.35);
}

.formats__list span {
  color: rgba(16, 16, 15, 0.62);
  font-size: 14px;
  text-align: right;
}

.boundaries {
  background: var(--white);
}

.boundaries p:not(.section-index) {
  max-width: 790px;
  margin-top: 30px;
  color: #575149;
  font-size: 19px;
}

.personal-work {
  background: var(--paper);
}

.personal-work__layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 46px;
}

.personal-work__copy {
  max-width: 900px;
}

.personal-work__copy p {
  max-width: 790px;
  margin-top: 28px;
  color: #575149;
  font-size: 19px;
}

.personal-work__copy .button {
  margin-top: 34px;
}

.contact {
  background: var(--green);
  color: var(--white);
}

.contact .section-index {
  color: var(--yellow);
  margin-bottom: 22px;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: end;
}

.contact__action p {
  max-width: 430px;
  color: rgba(255, 253, 250, 0.72);
  font-size: 17px;
}

.contact__action .button {
  margin-top: 28px;
}

.footer {
  border-top: 1px solid rgba(255, 253, 250, 0.16);
  background: var(--black);
  color: rgba(255, 253, 250, 0.58);
  font-size: 12px;
}

.footer__layout {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 44px;
  }

  .hero__layout {
    grid-template-columns: 1fr 340px;
  }

  .hero__portrait {
    min-height: 510px;
  }

  .hero__portrait > img {
    min-height: 510px;
  }

  .facts__grid,
  .topics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 740px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .shell,
  .nav,
  .hero__layout {
    width: min(100% - 28px, 1220px);
  }

  .nav {
    min-height: 66px;
  }

  .brand__note,
  .nav__links a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 0 28px;
  }

  .hero__statement {
    font-size: 18px;
  }

  .hero__portrait {
    min-height: 300px;
  }

  .hero__portrait > img {
    min-height: 300px;
  }

  .hero__portrait--placeholder span {
    font-size: 108px;
  }

  .manifesto,
    .current-projects,
  .media,
  .topics,
    .formats,
    .boundaries,
    .personal-work,
    .contact {
    padding: 68px 0;
  }

  .manifesto__layout,
    .boundaries__layout,
    .personal-work__layout,
    .section-heading--row,
  .formats__layout,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .manifesto__body {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    font-size: 17px;
  }

  .facts__grid,
  .topics__grid,
  .current-projects__grid {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:first-child,
  .fact:nth-child(3) {
    min-height: 140px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .media-item {
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .topics article {
    min-height: 170px;
  }

  .formats__list div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .formats__list span {
    text-align: left;
  }

  .footer__layout {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
