@font-face {
  font-family: "Samoylova";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/font_anna/samoylova w eng.ttf") format("truetype");
}

@font-face {
  font-family: "Anna Arial";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/font_base/Arial.ttf") format("truetype");
}

@font-face {
  font-family: "Anna Georgia";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/font_base/Georgia.ttf") format("truetype");
}

body {
  --ids__background-RGB: 219, 219, 219;
  --ids__surface-RGB: 205, 205, 205;
  --ids__text-RGB: 54, 54, 54;
  --ids__link-RGB: 54, 54, 54;
  --ids__hover-RGB: 190, 75, 119;
}

body {
  min-height: 100vh;
  font-family: "Anna Arial", Arial, sans-serif;
}

@media screen and (width >= 768px) and (width < 900px) {
  html {
    font-size: 18px;
  }
}

@media screen and (width >= 900px) and (width < 1100px) {
  html {
    font-size: 16px;
  }
}

.home {
  display: grid;
  grid-template-columns: clamp(18em, 42vw, 34em) minmax(0, 1fr);
  min-height: 100vh;
}

.home__photo {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: rgb(var(--ids__surface-RGB));
}

@media screen and (width >= 1800px) {
  .home__photo {
    width: clamp(18em, 42vw, 34em);
    height: min(100vh, 42.5em);
  }
}

.home__photo img {
  width: 108%;
  height: 108%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: translate(-4%, -4%);
}

.home__content {
  min-height: 100vh;
}

.home__inner {
  min-height: 100vh;
  max-width: 44em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--ids__density) * 1em);
}

.home__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8em;
  padding: 0;
}

.home__nav {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
}

.home__lang {
  display: flex;
  align-items: baseline;
  gap: 0.62em;
  white-space: nowrap;
}

.home__lang--mobile {
  display: none;
}

.home__lang a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.2em 0.05em 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.home__lang a.active {
  color: rgb(var(--ids__text-RGB));
  text-decoration: none;
  cursor: default;
}

.home__lang a.active::after {
  content: "";
  position: absolute;
  top: -0.05em;
  right: -0.3em;
  bottom: -0.05em;
  left: -0.3em;
  z-index: -1;
  border: 1px solid rgba(var(--ids__text-RGB), 0.5);
  border-radius: 0.2em;
}

.home__logo {
  font-family: "Samoylova", Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.home__brand {
  display: grid;
  gap: 0.42em;
}

.home__brand-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9em;
}

.home__header a {
  color: rgb(var(--ids__text-RGB));
  text-decoration-color: rgba(var(--ids__text-RGB), 0.18);
}

.home__header-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32em 0.75em;
  max-width: 18em;
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.72em;
  line-height: 1.15;
}

.ids .home__header-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  color: rgba(var(--ids__text-RGB), 0.48);
  text-decoration-color: rgba(var(--ids__text-RGB), 0.12);
}

.ids .home__header-contacts a:hover {
  color: rgb(var(--ids__hover-RGB));
  text-decoration-color: rgba(var(--ids__hover-RGB), 0.32);
}

.home__contact-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-page {
  display: grid;
  grid-template-columns: clamp(18em, 42vw, 34em) minmax(0, 1fr);
  min-height: 100vh;
}

.event-page__media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: rgb(var(--ids__surface-RGB));
}

@media screen and (width >= 1800px) {
  .event-page__media {
    width: clamp(18em, 42vw, 34em);
    height: min(100vh, 42.5em);
  }
}

.event-page__media img {
  width: 108%;
  height: 108%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: translate(-4%, -4%);
}

.event-page__content {
  min-height: 100vh;
  padding: calc(var(--ids__density) * 1em);
}

.event-page__content > .home__header {
  padding-bottom: calc(var(--ids__density) * 0.9em);
  border-bottom: 1px solid rgba(var(--ids__text-RGB), 0.22);
}

.event-page__nav {
  display: flex;
  gap: 0.8em;
}

.event-page__article {
  max-width: 34em;
  padding: calc(var(--ids__density) * 2em) 0 calc(var(--ids__density) * 1.4em);
}

.event-page__block {
  padding: calc(var(--ids__density) * 1.1em) 0 calc(var(--ids__density) * 1.25em);
}

.event-page__block + .event-page__block {
  padding-top: calc(var(--ids__density) * 0.65em);
}

.event-page__block--intro {
  padding-top: calc(var(--ids__density) * 1.35em);
}

.event-page__article h1 {
  max-width: 9em;
  margin: 0 0 0.55em;
  font-family: "Anna Georgia", Georgia, serif;
  font-size: clamp(2.4rem, 5.2vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: rgb(var(--ids__text-RGB));
}

.event-page__meta {
  display: grid;
  border-top: 1px solid rgba(var(--ids__text-RGB), 0.16);
  margin: calc(var(--ids__density) * 1.05em) 0 0;
}

.event-page__meta div {
  display: grid;
  grid-template-columns: 6em minmax(0, 1fr);
  gap: 1em;
  padding: 0.45em 0;
  border-bottom: 1px solid rgba(var(--ids__text-RGB), 0.16);
}

.event-page__meta dt,
.event-page__meta dd {
  margin: 0;
}

.event-page__meta dt {
  color: rgba(var(--ids__text-RGB), 0.5);
}

.event-page__meta a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: rgba(var(--ids__text-RGB), 0.22);
  text-underline-offset: 0.12em;
  transition:
    color 0.25s ease,
    text-decoration-color 0.25s ease;
}

.event-page__meta a:hover {
  color: rgb(var(--ids__hover-RGB));
  text-decoration-color: rgba(var(--ids__hover-RGB), 0.65);
}

.event-page__lead {
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.26em;
  line-height: 1.18;
}

.event-page__lead p {
  margin: 0;
}

.event-page__text p {
  margin: 0 0 0.9em;
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.08em;
  line-height: 1.28;
}

.event-page__text > * + * {
  margin-top: calc(var(--ids__density) * 1em);
}

.event-page__text h2,
.event-page__text h3,
.event-page__text h4,
.event-page__text h5,
.event-page__text h6 {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
  color: rgb(var(--ids__text-RGB));
}

.event-page__text h2 {
  margin-top: calc(var(--ids__density) * 1.25em);
  margin-bottom: 0.45em;
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.72em;
  line-height: 1.02;
}

.event-page__text h3 {
  margin-top: calc(var(--ids__density) * 1em);
  margin-bottom: 0.42em;
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.28em;
  line-height: 1.1;
}

.event-page__text h4,
.event-page__text h5,
.event-page__text h6 {
  margin-top: calc(var(--ids__density) * 0.95em);
  margin-bottom: 0.35em;
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.88em;
  line-height: 1.18;
  color: rgba(var(--ids__text-RGB), 0.58);
}

.event-page__text > h2:first-child,
.event-page__text > h3:first-child,
.event-page__text > h4:first-child {
  margin-top: 0;
}

.event-page__text blockquote {
  margin: calc(var(--ids__density) * 1em) 0;
  padding-left: 1em;
  border-left: 1px solid rgba(var(--ids__text-RGB), 0.28);
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.08em;
  line-height: 1.28;
  color: rgba(var(--ids__text-RGB), 0.72);
}

.event-page__text blockquote p {
  margin: 0;
  font: inherit;
  color: inherit;
}

.event-page__text blockquote footer,
.event-page__text blockquote figcaption {
  margin-top: 0.55em;
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.72em;
  line-height: 1.24;
  color: rgba(var(--ids__text-RGB), 0.52);
}

.event-page__text hr {
  height: 1px;
  margin: calc(var(--ids__density) * 1.45em) 0;
  border: 0;
  background: rgba(var(--ids__text-RGB), 0.18);
}

.event-page__text ul,
.event-page__text ol {
  margin: 0 0 0.9em 1.2em;
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.08em;
  line-height: 1.28;
}

.event-block {
  margin: calc(var(--ids__density) * 1.1em) 0;
}

.event-block img,
.event-block__video iframe,
.event-block__video video {
  width: 100%;
  display: block;
  background: rgb(var(--ids__surface-RGB));
}

.event-block figcaption {
  max-width: 34em;
  margin-top: 0.45em;
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.78em;
  line-height: 1.24;
  color: rgba(var(--ids__text-RGB), 0.52);
}

.event-block__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55em;
}

.event-block__video {
  aspect-ratio: 16 / 9;
}

.event-block__video iframe,
.event-block__video video {
  height: 100%;
}

.event-page__gallery {
  display: grid;
  gap: 0.65em;
  margin-top: 0;
}

.event-page__gallery figure {
  margin: 0;
}

.event-page__gallery img {
  width: 100%;
  display: block;
}

.home__scroll-layout {
  display: grid;
  grid-template-columns: minmax(0, 34em) minmax(5.8em, 1fr);
  align-items: start;
  gap: calc(var(--ids__density) * 1.35em);
  padding: calc(var(--ids__density) * 2em) 0;
}

.home__feed {
  padding: 0;
}

.section-index {
  position: sticky;
  top: calc(var(--ids__density) * 1em);
  display: grid;
  gap: 0.28em;
  padding: 0 0 0 0.75em;
  border-left: 1px solid rgba(var(--ids__text-RGB), 0.16);
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.68em;
  line-height: 1.12;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.45em);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.section-index.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ids .section-index__link {
  position: relative;
  width: fit-content;
  color: rgba(var(--ids__text-RGB), 0.42);
  text-decoration: none;
  transition: color 0.28s ease;
}

.section-index__link::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: -0.78em;
  width: 0.36em;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.ids .section-index__link:hover,
.ids .section-index__link.is-active {
  color: rgb(var(--ids__hover-RGB));
}

.section-index__link.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.home__block {
  padding: calc(var(--ids__density) * 1.1em) 0 calc(var(--ids__density) * 1.25em);
  border-top: 1px solid rgba(var(--ids__text-RGB), 0.22);
}

.home__block:last-child {
  border-bottom: 1px solid rgba(var(--ids__text-RGB), 0.22);
}

.home__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.7em;
  padding: 0.16em 0.62em 0.18em;
  border: 1px solid rgba(var(--ids__text-RGB), 0.36);
  border-radius: 999px;
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
  margin-bottom: 1em;
  color: rgba(var(--ids__text-RGB), 0.58);
}

.home__block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8em;
  margin-bottom: 1em;
}

.home__block-head .home__eyebrow {
  margin-bottom: 0;
}

.ids .home__download {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  min-height: 1.7em;
  padding: 0.22em 0.62em 0.24em 0.72em;
  border: 1px solid rgba(var(--ids__text-RGB), 0.42);
  border-radius: 0.2em;
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.82em;
  line-height: 1;
  color: rgb(var(--ids__text-RGB));
  text-decoration: none;
  white-space: nowrap;
  background: rgba(var(--ids__background-RGB), 0.45);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.home__download-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ids .home__download:hover {
  color: rgb(var(--ids__hover-RGB));
  border-color: rgba(var(--ids__hover-RGB), 0.65);
  background: rgba(var(--ids__hover-RGB), 0.08);
  transition:
    color 0s ease,
    border-color 0s ease,
    background-color 0s ease;
}

.home__block p:not(.home__eyebrow) {
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.18em;
  line-height: 1.28;
}

.home__bio {
  font-size: 1.35em;
  line-height: 1.22;
}

.home__footer {
  font-family: "Anna Georgia", Georgia, serif;
  max-width: 28em;
}

.home__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em 0.8em;
}

.home__contact {
  color: rgb(var(--ids__text-RGB));
  text-decoration-color: rgba(var(--ids__text-RGB), 0.18);
}

.ids .home__footer .home__credit {
  display: inline-block;
  margin-top: calc(var(--ids__density) * 1.2em);
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.72em;
  line-height: 1.15;
  color: rgba(var(--ids__text-RGB), 0.28);
  text-decoration-color: rgba(var(--ids__text-RGB), 0.06);
}

.ids .home__footer .home__credit:hover {
  color: rgb(var(--ids__hover-RGB));
  text-decoration-color: rgba(var(--ids__hover-RGB), 0.32);
}

.works__variant {
  margin-top: calc(var(--ids__density) * 1.1em);
}

.works__variant + .works__variant {
  margin-top: calc(var(--ids__density) * 1.6em);
}

.works__grid {
  display: grid;
  gap: 0.45em;
}

.works__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ids .work-card {
  display: flex;
  min-height: 7.4em;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.55em;
  border: 1px solid rgba(var(--ids__text-RGB), 0.22);
  color: rgb(var(--ids__text-RGB));
  text-decoration: none;
  text-decoration-line: none;
  border-bottom: 1px solid rgba(var(--ids__text-RGB), 0.22);
  background: rgba(var(--ids__background-RGB), 0.35);
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease;
}

.ids .work-card:hover {
  color: rgb(var(--ids__hover-RGB));
  border-color: rgba(var(--ids__hover-RGB), 0.65);
  border-bottom-color: rgba(var(--ids__hover-RGB), 0.65);
  text-decoration-line: none;
  background: rgba(var(--ids__hover-RGB), 0.06);
  transition:
    border-color 0s ease,
    color 0s ease,
    background-color 0s ease;
}

.work-card__meta,
.work-card__description {
  display: block;
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.72em;
  line-height: 1.35;
  color: rgba(var(--ids__text-RGB), 0.55);
}

.work-card:hover .work-card__meta,
.work-card:hover .work-card__description {
  color: rgba(var(--ids__hover-RGB), 0.75);
}

.work-card__title {
  display: block;
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.12em;
  line-height: 1.22;
}

.ids .work-card--image {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  justify-content: flex-start;
}

.work-card--image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.work-card--image:hover img {
  transform: scale(1.035);
  filter: brightness(110%) contrast(96%) saturate(96%);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card__body {
  display: block;
}

.work-card--image .work-card__body {
  padding-right: 0.55em;
  padding-bottom: 0.55em;
  padding-left: 0.55em;
}

.work-card--image .work-card__title {
  padding-top: 0.55em;
  padding-bottom: 0.42em;
}

.cv {
  font-family: "Anna Arial", Arial, sans-serif;
  --cv-left-column: 6.25em;
  --cv-column-gap: 1.25em;
}

.cv__intro-wrap {
  display: grid;
  grid-template-columns: var(--cv-left-column) minmax(0, 1fr);
  align-items: flex-start;
  gap: var(--cv-column-gap);
  margin-top: calc(var(--ids__density) * 1.1em);
  margin-bottom: calc(var(--ids__density) * 1.45em);
}

.cv__avatar {
  width: var(--cv-left-column);
  aspect-ratio: 1;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 26%;
  clip-path: superellipse(0.72);
}

@supports not (clip-path: superellipse(0.72)) {
  .cv__avatar {
    border-radius: 28%;
  }
}

.cv__intro {
  display: grid;
  gap: 0.25em;
  font-family: "Anna Georgia", Georgia, serif;
  font-size: 1.14em;
  line-height: 1.22;
  color: rgb(var(--ids__text-RGB));
}

.cv__name {
  margin-bottom: 0.35em;
  color: rgb(var(--ids__text-RGB));
}

.cv__detail {
  color: rgba(var(--ids__text-RGB), 0.62);
}

.cv__section {
  margin-top: calc(var(--ids__density) * 1.45em);
}

.ids .cv__heading {
  margin: 0;
  padding: 0 0 0.45em;
  font-family: "Anna Arial", Arial, sans-serif;
  font-size: 0.82em;
  font-weight: 400;
  line-height: 1.18;
  color: rgba(var(--ids__text-RGB), 0.5);
  text-transform: none;
}

.cv__rows {
  border-top: 1px solid rgba(var(--ids__text-RGB), 0.18);
}

.cv__row {
  display: grid;
  grid-template-columns: var(--cv-left-column) minmax(0, 1fr);
  gap: var(--cv-column-gap);
  padding: 0.48em 0;
  border-bottom: 1px solid rgba(var(--ids__text-RGB), 0.18);
  font-size: 0.88em;
  line-height: 1.24;
}

.cv__year {
  color: rgba(var(--ids__text-RGB), 0.5);
}

.cv__entry {
  min-width: 0;
}

.cv__title,
.cv__place {
  display: block;
}

.cv__place {
  margin-top: 0.18em;
  color: rgba(var(--ids__text-RGB), 0.62);
}

.cv__entry a {
  color: rgb(var(--ids__text-RGB));
  text-decoration-color: rgba(var(--ids__text-RGB), 0.18);
}

.cv__entry a:hover {
  color: rgb(var(--ids__hover-RGB));
  text-decoration-color: rgba(var(--ids__hover-RGB), 0.45);
}

.subscribe-form {
  margin-top: calc(var(--ids__density) * 1.15em);
  font-family: "Anna Arial", Arial, sans-serif;
}

.subscribe-form label {
  display: block;
  margin-bottom: 0.5em;
  font-size: 0.88em;
  line-height: 1.22;
  color: rgba(var(--ids__text-RGB), 0.62);
}

.subscribe-form__row {
  display: flex;
  align-items: stretch;
  gap: 0.4em;
}

.subscribe-form input,
.subscribe-form button {
  min-height: 2.25em;
  border: 1px solid rgba(var(--ids__text-RGB), 0.3);
  border-radius: 0.2em;
  font: inherit;
  color: rgb(var(--ids__text-RGB));
  background: transparent;
}

.subscribe-form input {
  width: 100%;
  min-width: 0;
  padding: 0.42em 0.52em 0.45em;
}

.subscribe-form input::placeholder {
  color: rgba(var(--ids__text-RGB), 0.38);
}

.subscribe-form input:focus {
  outline: 0;
  border-color: rgba(var(--ids__hover-RGB), 0.75);
}

.subscribe-form button {
  flex: 0 0 auto;
  padding: 0.42em 0.7em 0.45em;
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.subscribe-form button:hover {
  color: rgb(var(--ids__hover-RGB));
  border-color: rgba(var(--ids__hover-RGB), 0.65);
  background: rgba(var(--ids__hover-RGB), 0.06);
  transition:
    color 0s ease,
    border-color 0s ease,
    background-color 0s ease;
}

.subscribe-form--surface {
  padding: calc(var(--ids__density) * 0.55em);
  border-radius: 0.2em;
  background: rgba(var(--ids__surface-RGB), 0.72);
}

.subscribe-form--surface label {
  max-width: 22em;
  color: rgba(var(--ids__text-RGB), 0.7);
}

.subscribe-form--surface input,
.subscribe-form--surface button {
  background: rgba(var(--ids__background-RGB), 0.55);
}

@media (width >= 900px) and (width < 1100px) {
  .home {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  }

  .home__scroll-layout {
    display: block;
  }

  .section-index {
    display: none;
  }

  .home__block p {
    font-size: 1.08em;
  }

  .home__bio {
    font-size: 1.25em;
  }

  .home__eyebrow {
    font-size: 0.82em;
  }

  .works__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width < 900px) {
  .event-page {
    display: flex;
    flex-direction: column;
  }

  .event-page__media {
    order: 2;
    position: relative;
    height: auto;
  }

  .event-page__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }

  .event-page__content {
    display: contents;
    min-height: auto;
  }

  .event-page__content > .home__header {
    order: 1;
  }

  .event-page__header {
    flex-wrap: wrap;
    padding-bottom: calc(var(--ids__density) * 0.75em);
    border-bottom: 1px solid rgba(var(--ids__text-RGB), 0.22);
  }

  .event-page__article {
    order: 3;
    max-width: none;
    padding: calc(var(--ids__density) * 1em) calc(var(--ids__density) * 0.6em);
  }

  .event-page__article h1 {
    max-width: none;
    font-size: 3rem;
  }

  .event-page__meta div {
    grid-template-columns: 5.35em minmax(0, 1fr);
    gap: 0.95em;
  }

  .home {
    display: flex;
    flex-direction: column;
  }

  .home__photo {
    order: 2;
    position: relative;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    overflow: hidden;
    background: rgb(var(--ids__surface-RGB));
  }

  .home__photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }

  .home__content {
    order: 1;
    min-height: auto;
    display: contents;
  }

  .home__inner {
    min-height: auto;
    display: contents;
  }

  .home__header {
    order: 1;
    flex-wrap: wrap;
    padding: calc(var(--ids__density) * 0.75em) calc(var(--ids__density) * 0.6em);
    border-bottom: 1px solid rgba(var(--ids__text-RGB), 0.22);
  }

  .home__brand {
    width: 100%;
    max-width: 100%;
  }

  .home__brand-row {
    justify-content: space-between;
    gap: 0.75em;
  }

  .home__lang--desktop {
    display: none;
  }

  .home__lang--mobile {
    display: flex;
  }

  .home__header-contacts {
    max-width: 100%;
  }

  .home__nav {
    flex-wrap: wrap;
  }

  .home__scroll-layout {
    order: 3;
    display: block;
    padding: 0;
  }

  .home__feed {
    max-width: none;
    padding: 0 calc(var(--ids__density) * 0.6em);
  }

  .section-index {
    display: none;
  }

  .home__footer {
    order: 4;
    max-width: none;
    padding: calc(var(--ids__density) * 1em) calc(var(--ids__density) * 0.6em);
    border-top: 1px solid rgba(var(--ids__text-RGB), 0.22);
  }

  .home__block:first-child {
    border-top: 0;
  }

  .home__block p {
    font-size: 1em;
  }

  .home__bio {
    font-size: 1.14em;
  }

  .home__eyebrow {
    font-size: 0.82em;
  }

  .works__grid--two {
    grid-template-columns: 1fr;
  }

  .ids .work-card {
    min-height: 6.6em;
  }

  .cv {
    --cv-left-column: 5.35em;
    --cv-column-gap: 0.95em;
  }

  .subscribe-form__row {
    flex-direction: column;
    gap: 0.4em;
  }

  .subscribe-form button {
    width: 100%;
  }
}
