@font-face {
  font-family: "HelveticaNeueCyrLight";
  src: url("./assets/fonts/HELVETICANEUECYR-LIGHT.OTF") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --bg: #101010;
  --panel: rgba(16, 18, 18, 0.78);
  --panel-strong: rgba(19, 22, 22, 0.92);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f3efe7;
  --muted: rgba(243, 239, 231, 0.7);
  --soft: rgba(243, 239, 231, 0.5);
  --accent: #d7b46a;
  --accent-2: #8b6a31;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1404px, calc(100vw - 64px));
  --font-main: "utopia-std", serif;
  --font-heading: "HelveticaNeueCyrLight", "Helvetica Neue", Arial, sans-serif;
  --services-contact-bg:
    radial-gradient(circle at left top, var(--deep-red-glow), transparent 48%),
    var(--work-about-base-bg);
  --about-gap: 280px;
  --deep-red-glow: rgba(88, 18, 18, 0.15);
  --work-about-base-bg: #0c0c0c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 300;
  font-synthesis: none;
  -webkit-text-stroke: 0 transparent;
  text-shadow: none;
}

body,
body * {
  font-synthesis: none;
}

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

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

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: min(1404px, calc(100vw - 64px));
  padding: 30px 18px;
  transform: translateX(-50%);
  background: transparent;
  transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: transparent;
  transition: background 220ms ease, backdrop-filter 220ms ease;
  z-index: -1;
}

.topbar.is-scrolled {
  backdrop-filter: blur(6px);
}

.topbar.is-scrolled::before {
  background: rgba(28, 28, 28, 0.66);
  backdrop-filter: blur(6px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand--stacked {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}

.brand__logo {
  display: block;
  width: 398px;
  max-width: min(58vw, 398px);
  height: auto;
}

.brand__wordmark {
  color: #f0eeeb;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu a {
  position: relative;
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: #b32025;
  transition: transform 180ms ease;
}

.menu a:hover,
.menu a:focus-visible,
.menu a.is-active {
  color: #f70000;
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: clip;
  background: #0f1110;
}

.hero__video-frame,
.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background: transparent;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  max-width: none;
  padding: clamp(28px, 4vw, 56px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-main);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: none;
  text-align: center;
  font-family: "utopia-std-display", serif;
  color: #f0eeeb;
  font-size: 63px;
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 1px;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.58);
  text-transform: uppercase;
}

.brand__wordmark,
.menu a,
.hero h1,
.section-heading h2,
.section-heading__subtext,
.about-title,
.about-lead,
.text-column p,
.topWhiteText,
.services-title,
.services-copy p,
.contact-email,
.l_time,
.l_title,
.l_description,
.l_link a,
.work-item-title,
.work-item-meta,
.work-item-action {
  font-weight: 300 !important;
}

.section-copy,
.about__grid p,
.service-list p,
.contact__panel p {
  color: var(--muted);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 300;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: #17120b;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #e7c37a;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 96px 0 0;
}

.intro {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #0c0c0c;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-family: var(--font-main);
  color: #f0eeeb;
  font-size: 64px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro .section-heading {
  display: flex;
  justify-content: center;
}

.intro .section-heading h2,
.section-heading--centered h2 {
  max-width: none;
  margin-bottom: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.section-heading--centered {
  display: flex;
  justify-content: center;
  padding-bottom: 28px;
}

.section-heading__subtext {
  color: #7f7f7f;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.works {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 6px;
  row-gap: 176px;
  overflow: visible;
  position: relative;
  isolation: isolate;
}

.works::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: calc(var(--about-gap) * -1);
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: var(--work-about-base-bg);
}

.works::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(var(--about-gap) * -1);
  width: 100vw;
  height: calc(360px + var(--about-gap));
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at left bottom, var(--deep-red-glow), transparent 48%);
}

.work-item-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.project-card__link,
.work-item {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 700px;
  padding: 0;
  text-align: center;
  cursor: default;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #000;
}

.work-item-media,
.project-card__preview,
.work-item__poster,
.work-item__shade,
.work-item-top-content {
  position: absolute;
  inset: 0;
}

.work-item__preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 280ms ease, transform 480ms ease;
  transform: scale(1);
}

.work-item__poster {
  background-position: center;
  background-size: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 280ms ease, transform 480ms ease;
}

.work-item__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.26) 50%, rgba(0, 0, 0, 0.52) 100%);
  opacity: 0.72;
  transition: opacity 280ms ease;
}

.work-item-top-content {
  z-index: 2;
  padding: 0 32px;
}

.work-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  min-height: 700px;
  min-width: 0;
}

.work-item-content-title,
.work-item-content-title-special {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  color: #fff;
}

.work-item-content-title-special {
  margin-top: 70px;
  margin-bottom: 0;
}

.work-item-content-title--offset {
  padding-top: 70px;
}

.work-item-content-title h3,
.work-item-content-title-special h3 {
  margin: 0;
  color: inherit;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 3px rgba(100, 100, 100, 0.8);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 1px;
  overflow-wrap: anywhere;
}

.work-item-meta,
.work-item-action {
  margin: 16px 0 0;
  color: inherit;
  text-align: center;
  text-shadow: 0 0 3px rgba(100, 100, 100, 0.8);
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  overflow-wrap: anywhere;
}

.work-item-action {
  margin-top: 20px;
  text-transform: lowercase;
}

.work-item-action-separator {
  display: inline-block;
  margin: 0 8px;
  color: inherit;
  font-weight: 300;
}

.work-item-action-link {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 300;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
  text-shadow: inherit;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.work-item-action-link:hover,
.work-item-action-link:focus-visible,
.work-item-site-link:hover,
.work-item-site-link:focus-visible {
  opacity: 0.72;
}

.work-item-site {
  margin: 12px 0 0;
  color: inherit;
  text-align: center;
  text-shadow: 0 0 3px rgba(100, 100, 100, 0.8);
  font-size: 18px;
  line-height: 1.1;
}

.work-item-site-link {
  display: inline-block;
  color: inherit;
  font-weight: 300;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.work-item-theme--dark h3,
.work-item-theme--dark .work-item-meta,
.work-item-theme--dark .work-item-action,
.work-item-theme--dark .work-item-site {
  color: #080808;
  text-shadow: none;
}

.work-item-theme--red h3,
.work-item-theme--red .work-item-meta,
.work-item-theme--red .work-item-action,
.work-item-theme--red .work-item-site {
  color: #b50a0a;
  text-shadow: none;
  font-weight: 300;
}

.project-card__link:hover .work-item__preview,
.project-card__link:focus-visible .work-item__preview,
.project-card__link.is-previewing .work-item__preview {
  transform: scale(1.03);
  opacity: 1;
}

.project-card__link:hover .work-item__poster,
.project-card__link:focus-visible .work-item__poster,
.project-card__link.is-previewing .work-item__poster {
  transform: scale(1.02);
  opacity: 0;
}

.project-card__link:focus-visible {
  outline: 1px solid #7f7f7f;
  outline-offset: 4px;
}

.project-card__link:hover .work-item__shade,
.project-card__link:focus-visible .work-item__shade,
.project-card__link.is-previewing .work-item__shade {
  opacity: 0.86;
}

.work-item-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.work-item-awards + .work-item-awards {
  margin-top: 12px;
}

.work-item-content-title + .work-item-awards,
.work-item-content-title-special + .work-item-awards {
  margin-top: 0;
}

.work-item-awards--light .award {
  filter: brightness(0) invert(1);
}

.award {
  display: block;
  max-height: 70px;
  max-width: 140px;
  height: auto;
  width: auto;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  filter: none;
  opacity: 1;
  transform: scale(1);
  transform-origin: center;
  transition: none;
  cursor: default;
  position: relative;
  z-index: 1;
}

.contact__panel,
.service-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin-top: 34px;
}

.about-section,
.dream-section,
.news-section,
.services-section,
.contact-section {
  padding-top: 0;
}

.about-section {
  position: relative;
}

.about-content,
.dream-content,
.news-content,
.services-content,
.contact-content {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-dream-group {
  position: relative;
}

.about-content {
  min-height: 100vh;
  margin-top: 155px;
  padding: 110px 25px 80px;
  color: #fff;
  font-size: 1.2em;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.32) 0%, rgba(8, 8, 8, 0.48) 55%, rgba(8, 8, 8, 0.62) 100%),
    url("./assets/images/about-bg.jpg") center center / cover no-repeat;
}


.about-container {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.1fr);
  column-gap: 72px;
  row-gap: 80px;
  align-items: start;
  width: min(var(--container), 100%);
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.about-intro {
  grid-column: 1 / -1;
  max-width: 760px;
}

.about-kicker {
  margin: 0 0 12px;
  color: #f70000;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-title {
  margin: 0;
  color: #f0eeeb;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: #f0eeeb;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 300;
}

.image-column {
  position: relative;
}

.image-column--primary {
  grid-column: 1;
  grid-row: 2;
}

.image-column--secondary {
  grid-column: 2;
  grid-row: 3;
}

.image-column img,
.about-image {
  width: 65%;
  max-width: 100%;
  height: auto;
  margin: 0;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.text-column {
  max-width: 720px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 24px;
}

.text-column--primary {
  grid-column: 2;
  grid-row: 2;
}

.text-column--secondary {
  grid-column: 1;
  grid-row: 3;
  margin-top: 0;
  max-width: none;
  width: 160%;
}

.image-column--primary .about-image {
  width: min(100%, 520px);
}

.image-column--secondary .about-image {
  width: min(100%, 374px);
  margin-left: auto;
}

.text-column p {
  margin: 0;
  color: #f0eeeb;
  font-size: 18px;
  line-height: 1.68;
  font-weight: 300;
  letter-spacing: 0;
}

.text-column--primary em {
  font-family: "utopia-std-display", serif;
  font-style: italic;
  font-weight: 500;
  color: #f70000;
  display: inline-block;
  white-space: nowrap;
}

.about-brand-accent {
  font-family: "utopia-std-display", serif;
  font-style: italic;
  font-weight: 500;
  color: #f70000;
  display: inline-block;
  white-space: nowrap;
}

.text-column p + p {
  margin-top: 24px;
}

.dream-content {
  position: relative;
  min-height: 100vh;
  padding: 0 0 80px;
  font-size: 17px;
  background: transparent;
  overflow: hidden;
}

.about-dream-video-wrap,
.about-dream-video,
.about-dream-video-overlay {
  position: absolute;
  inset: 0;
}

.about-dream-video {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  transform: scale(1.06);
}

.about-dream-video-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.46) 52%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(90deg, rgba(5, 8, 14, 0.22) 0%, rgba(5, 8, 14, 0.08) 50%, rgba(5, 8, 14, 0.24) 100%);
}

.topWhiteText {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(var(--container), 100%);
  max-width: 100%;
  padding: 160px 25px 25px;
  color: #f0eeeb;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0;
  margin: 0 auto;
}

.dreamContentWrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 48px;
}

.dreamContent {
  width: min(var(--container), 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px 60px;
  box-sizing: border-box;
}

.dreamContent form {
  width: min(80%, 1120px);
  margin: 0 auto;
}

.dreamContent textarea,
.dreamContent input.emailDream,
.dreamContent input.nameDream,
.dreamContent input.birthdayDream,
.dreamContent input.submitDream,
.dream-card-experiment__form textarea,
.dream-card-experiment__form input.nameDream,
.dream-card-experiment__form input.birthdayDream,
.dream-card-experiment__form input.emailDream,
.dream-card-experiment__form input.submitDream {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 300;
}

.dreamContent textarea,
.dream-card-experiment__form textarea {
  width: 100%;
  min-height: 210px;
  margin-top: 10px;
  padding: 14px 18px;
  color: #f0eeeb;
  border: 1px solid rgba(240, 238, 235, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  resize: vertical;
}

.dreamContent input.emailDream,
.dream-card-experiment__form input.nameDream,
.dream-card-experiment__form input.birthdayDream,
.dream-card-experiment__form input.emailDream {
  width: 100%;
  min-height: 40px;
  margin-top: 12px;
  padding: 0 18px;
  color: #f0eeeb;
  border: 1px solid rgba(240, 238, 235, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.dreamContent input.submitDream,
.dream-card-experiment__form input.submitDream {
  min-height: 40px;
  margin-top: 12px;
  padding: 0 18px;
  color: #f70000;
  border: 1px solid rgba(240, 238, 235, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  text-transform: lowercase;
}

.dreamContent textarea::placeholder,
.dreamContent input.emailDream::placeholder,
.dream-card-experiment__form input.nameDream::placeholder,
.dream-card-experiment__form input.birthdayDream::placeholder,
.dream-card-experiment__form textarea::placeholder,
.dream-card-experiment__form input.emailDream::placeholder {
  color: rgba(240, 238, 235, 0.72);
}

.submit-wrapper {
  text-align: right;
}

.web3-captcha {
  margin-top: 14px;
}

.dream-form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: #f0eeeb;
  font-size: 14px;
  line-height: 1.4;
}

.dream-form-status.is-error {
  color: #ff8e8e;
}

.dream-form-status.is-success {
  color: #b6f3c6;
}

.dream-section--experiment {
  padding: 40px 0 0;
}

.dream-experiment-stage {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 0 80px;
  box-sizing: border-box;
}

.dream-card-experiment {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 700px;
  margin: 0 auto;
  overflow: hidden;
  background: #080808;
}

.dream-card-experiment__media,
.dream-card-experiment__video,
.dream-card-experiment__shade,
.dream-card-experiment__teaser,
.dream-card-experiment__form-panel {
  position: absolute;
  inset: 0;
}

.dream-card-experiment__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.dream-card-experiment__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 8, 14, 0.18) 0%, rgba(5, 8, 14, 0.06) 50%, rgba(5, 8, 14, 0.18) 100%);
}

.dream-card-experiment__teaser {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 34px 42px;
  border: 0;
  background: transparent;
  color: #f0eeeb;
  text-align: center;
  cursor: pointer;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.dream-card-experiment__copy {
  max-width: 500px;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 300;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.dream-card-experiment__copy p {
  margin: 0;
}

.dream-card-experiment__headline {
  font-size: 30px;
  line-height: 1.08;
  text-transform: none;
  white-space: nowrap;
}

.dream-card-experiment__note {
  margin-top: 18px !important;
  font-size: 17px;
  line-height: 1.4;
}

.dream-card-experiment__hover-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0;
  border: 0;
  color: #f70000;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  transition: transform 220ms ease, color 220ms ease;
}

.dream-card-experiment__form-panel {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px 26px;
  background: rgba(10, 10, 10, 0.64);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.dream-card-experiment__close {
  position: absolute;
  top: -15px;
  right: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f0eeeb;
  font-family: var(--font-main);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.dream-card-experiment__form {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
}

.dream-card-experiment__form-copy {
  margin-bottom: 18px;
  color: #f0eeeb;
  font-size: 15px;
  line-height: 1.45;
}

.dream-card-experiment__form-copy p {
  margin: 0;
}

.dream-card-experiment__form-copy p + p {
  margin-top: 8px;
}

.dream-card-experiment__form-copy p:first-child {
  font-size: 17px;
}

.dream-card-experiment__fields {
  position: relative;
  padding-top: 12px;
}

.dream-card-experiment__form textarea {
  min-height: 130px;
}

.dream-card-experiment__form input.nameDream,
.dream-card-experiment__form input.birthdayDream,
.dream-card-experiment__form input.emailDream {
  width: 100%;
}

.dream-card-experiment__form textarea {
  margin-top: 12px;
}

.dream-card-experiment.is-open .dream-card-experiment__teaser {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dream-card-experiment.is-open .dream-card-experiment__form-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dream-card-experiment:hover .dream-card-experiment__hover-text,
.dream-card-experiment:focus-within .dream-card-experiment__hover-text {
  transform: translateY(-2px);
  color: #ff3d3d;
}

@media (max-width: 1024px) {
  .dream-card-experiment {
    min-height: clamp(560px, 58vw, 640px);
  }

  .dream-card-experiment__copy {
    font-size: 17px;
  }

  .dream-card-experiment__headline {
    font-size: 26px;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .dream-experiment-stage {
    padding: 0 0 64px;
  }

  .dream-card-experiment {
    min-height: clamp(500px, 64vw, 580px);
  }

  .dream-card-experiment__teaser {
    padding: 28px 22px;
  }

  .dream-card-experiment__copy {
    font-size: 16px;
    line-height: 1.4;
  }

  .dream-card-experiment__headline {
    font-size: 20px;
    white-space: normal;
  }

  .dream-card-experiment__note {
    font-size: 15px;
  }

  .dream-card-experiment__form-panel {
    padding: 20px 18px 18px;
  }

  .dream-card-experiment__form textarea {
    min-height: 150px;
  }

  .dream-card-experiment__form-copy {
    font-size: 14px;
  }

  .dream-card-experiment__form-copy p:first-child {
    font-size: 16px;
  }

  .dream-card-experiment__form textarea,
  .dream-card-experiment__form input.nameDream,
  .dream-card-experiment__form input.birthdayDream,
  .dream-card-experiment__form input.emailDream,
  .dream-card-experiment__form input.submitDream {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .dream-card-experiment {
    min-height: clamp(320px, 120vw, 520px);
  }

  .dream-card-experiment__teaser {
    padding: 24px 16px;
  }

  .dream-card-experiment__copy {
    font-size: 15px;
  }

  .dream-card-experiment__headline {
    font-size: 18px;
  }

  .dream-card-experiment__note {
    margin-top: 10px !important;
    font-size: 14px;
  }

  .dream-card-experiment__hover-text {
    margin-top: 18px;
    font-size: 16px;
  }

  .dream-card-experiment__form-copy {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .dream-card-experiment__form-copy p:first-child {
    font-size: 15px;
  }

  .dream-card-experiment__close {
    top: -12px;
    font-size: 22px;
  }

  .dream-card-experiment__form-panel {
    justify-content: flex-start;
    overflow-y: auto;
    padding: 16px 14px 18px;
  }

  .dream-card-experiment__fields {
    padding-top: 8px;
  }

  .web3-captcha {
    margin-top: 12px;
    transform-origin: left top;
    transform: scale(0.96);
  }

  .dream-card-experiment__form textarea,
  .dream-card-experiment__form input.nameDream,
  .dream-card-experiment__form input.birthdayDream,
  .dream-card-experiment__form input.emailDream,
  .dream-card-experiment__form input.submitDream {
    font-size: 15px;
  }

  .dream-card-experiment__form textarea {
    min-height: 110px;
    margin-top: 10px;
  }

  .dream-card-experiment__form input.nameDream,
  .dream-card-experiment__form input.birthdayDream,
  .dream-card-experiment__form input.emailDream,
  .dream-card-experiment__form input.submitDream {
    min-height: 38px;
    margin-top: 10px;
  }
}

@media (max-width: 360px) {
  .dream-card-experiment {
    min-height: clamp(280px, 122vw, 420px);
  }

  .dream-card-experiment__form-copy {
    font-size: 12px;
  }

  .dream-card-experiment__form textarea {
    min-height: 96px;
  }
}

.news-content {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  height: auto;
  padding: 118px 0 52px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2em;
  background-image: url("./assets/images/bg-news.png");
  overflow: visible;
}

body.index2-variant .news-content {
  background-image: none;
  background:
    radial-gradient(circle at right top, var(--deep-red-glow), transparent 48%),
    radial-gradient(circle at left bottom, var(--deep-red-glow), transparent 48%),
    var(--work-about-base-bg);
}

body.index-main .news-content {
  background-size: 100% calc(100% + 19px);
  background-position: center top;
}

body.index2-variant .services-section {
  background:
    radial-gradient(circle at left top, var(--deep-red-glow), transparent 48%),
    var(--work-about-base-bg);
}

body.index2-variant .l_blocks {
  padding-bottom: 17px;
}

body.index2-variant .l_description {
  padding: 2px 0 0 30px;
}

body.index2-variant .dream-section--experiment {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 0;
  background:
    radial-gradient(circle at right bottom, var(--deep-red-glow), transparent 48%),
    var(--work-about-base-bg);
}

body.index2-variant .dream-section--experiment .dream-experiment-stage {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 88px 0 80px;
}

body.index2-variant .dream-section--experiment .dream-card-experiment {
  width: 100%;
  margin: 0 auto;
}

.l_container {
  width: min(1180px, 100%);
  max-width: 100%;
  flex: 1 1 auto;
  height: auto;
  margin: 0 auto;
  padding: 0 250px;
  box-sizing: border-box;
  overflow-y: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.l_container::-webkit-scrollbar {
  display: none;
}

.news-intro {
  margin-bottom: 42px;
}

.dream-intro {
  margin-bottom: 42px;
}

.l_blocks {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  padding-bottom: 34px;
}

.l_time {
  padding-left: 5px;
  font-style: italic;
  font-weight: 200;
  line-height: 1.35;
}

.l_title {
  font-size: 1.1em;
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  margin-top: 4px;
}

.l_blocks a {
  text-decoration: none;
}

.l_blocks a:hover {
  color: #fff;
}

.l_description {
  padding: 10px 0 9px 30px;
  font-weight: 200;
  line-height: 1.45;
}

.l_title--uk,
.l_title--uk a,
.l_description--uk {
  font-family: "Lora", serif;
}

.l_link {
  align-self: flex-end;
  margin-top: 2px;
}

.services-content {
  min-height: auto;
  padding: 104px 25px 152px;
  color: #fff;
  font-size: 1.2em;
}

.services-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--services-contact-bg);
}

body.index-main .services-section {
  position: relative;
  overflow: hidden;
  background: #0c0c0c;
}

body.index-main .services-content {
  position: relative;
  overflow: hidden;
  background: transparent;
}

body.index-main .services-video-wrap {
  position: absolute;
  inset: -14px 0 0;
  z-index: 0;
}

body.index-main .services-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.1);
}

body.index-main .services-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right bottom, rgba(120, 16, 12, 0.14), transparent 34%);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  width: min(var(--container), 100%);
  max-width: 100%;
  margin: 0 auto;
  align-items: start;
  box-sizing: border-box;
}

.services-intro {
  grid-column: 1 / -1;
  max-width: 100%;
  text-align: center;
}

.services-title {
  margin: 0;
  color: #f0eeeb;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.services-lead {
  max-width: 100%;
  margin: 30px 0 0;
  color: #f0eeeb;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 300;
}

.services-layout > * {
  min-width: 0;
}

body.index-main .services-layout,
body.index-main .contact-content {
  position: relative;
  z-index: 1;
}

body.index-main .services-layout {
  display: block;
  width: min(var(--container), 100%);
}

body.index-main .services-intro {
  max-width: none;
  margin-bottom: 130px;
  position: relative;
  z-index: 1;
}

body.index-main .services-intro::before {
  content: "";
  position: absolute;
  inset: -18px -36px;
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(8, 8, 8, 0.38) 0%, rgba(8, 8, 8, 0.22) 54%, rgba(8, 8, 8, 0) 100%);
  filter: blur(16px);
}

body.index-main .services-copy {
  width: min(620px, 100%);
  margin: 94px 0 0 auto;
  padding-left: 0;
  position: relative;
  z-index: 1;
}

body.index-main .services-copy::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: #0c0c0c;
}

body.index-main .contact-panel-simple {
  position: relative;
  z-index: 1;
}

body.index-main .contact-panel-simple::before {
  content: none;
}

body.index-main .services-media {
  display: none;
}

.services-image {
  width: 84%;
  height: auto;
  margin: 0 auto 50px;
}

.services-copy {
  padding-top: 0;
  color: #fff;
  min-width: 0;
}

.services-copy p {
  max-width: none;
  margin: 0;
  color: #f0eeeb;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0;
}

.services-copy p + p {
  margin-top: 14px;
}

.services-copy strong {
  color: #f70000;
  font-weight: 300;
}

.services-contact-label {
  color: #f0eeeb;
  font-weight: 300;
}

.contact-content {
  min-height: auto;
  padding: 0 25px;
  background: transparent;
  grid-column: 1 / -1;
}

body.index-main .contact-content {
  width: 100%;
  margin: 0;
  padding: 0;
  margin-top: 46px;
}

.contact-panel-simple {
  width: 100%;
  max-width: 100%;
  margin: 18px auto 0;
  color: #f0eeeb;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 0;
  padding-top: 0;
}

.contact-name,
.contact-email {
  margin: 0;
  color: #f0eeeb;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.contact-email {
  font-size: 25px;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  overflow-wrap: anywhere;
}

.text-column p,
.topWhiteText,
.services-copy p,
.l_title,
.l_description,
.l_link a,
.contact-email a {
  overflow-wrap: anywhere;
}

.contact-panel-simple a {
  color: #f0eeeb;
  transition: opacity 180ms ease;
}

.contact-panel-simple a:hover,
.contact-panel-simple a:focus-visible {
  opacity: 0.82;
}

.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 2px;
}

.socialBtn {
  width: 36px;
  height: 36px;
  margin-right: 0;
  display: inline-block;
  vertical-align: baseline;
  cursor: pointer;
  opacity: 0.78;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  transition: transform 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
  filter: brightness(0.96);
}

.socialBtn:hover {
  opacity: 1;
  background-color: transparent;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.video-modal.is-open {
  display: block;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 108px), 1500px);
  margin: 50vh auto 0;
  transform: translateY(-50%);
}

.video-modal__close {
  position: absolute;
  top: -38px;
  right: 0;
  border: 0;
  background: transparent;
  color: #f0eeeb;
  font-family: var(--font-main);
  font-size: 28px;
  cursor: pointer;
}

.video-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__frame iframe,
.video-modal__frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.image-lightbox {
  display: none;
}


.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-list article {
  padding: 28px;
}

.service-list article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.service-list span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.service-list h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.contact__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}

@media (max-width: 1024px) {
  .intro,
  .about__layout,
  .dream__layout,
  .service-list,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .about__layout {
    margin-top: 26px;
  }

  .dream__layout {
    margin-top: 26px;
  }

  .dream {
    padding-top: 160px;
  }

  .about {
    padding-top: 1px;
  }

  .about-container,
  .services-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .image-column,
  .text-column {
    flex: 0 0 100%;
    padding-left: 0;
  }

  .text-column--secondary {
    width: 100%;
  }

  .dreamContent {
    width: 100%;
  }

  .dreamContent form {
    width: 100%;
  }

  .works {
    gap: 36px;
  }

  .service-list article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw - 24px, 100%);
    padding-top: 0;
  }

  .topbar {
    gap: 14px;
    justify-content: center;
    width: calc(100vw - 24px);
    padding: 16px 14px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    width: 100%;
    position: static;
    left: auto;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
  }

  .brand__wordmark {
    font-size: 14px;
    text-align: center;
    white-space: normal;
  }

  .topbar.is-open .menu {
    display: flex;
  }

  .topbar.is-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.is-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .hero__content {
    min-height: 100svh;
  }

  .hero__video-frame {
    background: #000;
  }

  .hero__video {
    object-fit: contain;
    object-position: center center;
  }

  .hero__content {
    padding: 24px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 63px);
    line-height: 1;
  }

  .section-heading h2 {
    font-size: clamp(38px, 8vw, 64px);
  }

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

  .about-content,
  .services-content {
    padding: 120px 18px 56px;
  }

  .dream-content {
    padding: 0 0 56px;
  }

  .topWhiteText {
    padding: 120px 0 24px;
    line-height: 1.3em;
  }

  .news-content {
    height: auto;
    min-height: 100vh;
    display: block;
    padding: 106px 0 36px;
  }

  .l_container {
    height: auto;
    padding: 0 18px;
  }

  .services-layout {
    gap: 20px;
  }

  .services-image,
  .about-image,
  .image-column img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .contact-content {
    padding: 130px 18px 72px;
  }

  .contact-panel-simple {
    width: 100%;
    padding-top: 34px;
  }

  .project-card__link,
  .work-item,
  .work-item-content {
    min-height: 520px;
  }

  .work-item-top-content {
    padding: 0 18px;
  }

  .work-item-content-title,
  .work-item-content-title-special {
    margin-bottom: 34px;
  }

  .work-item-content-title-special {
    margin-top: 34px;
  }

  .work-item-content-title h3,
  .work-item-content-title-special h3 {
    font-size: 18px;
    line-height: 1.12;
  }

  .work-item-meta,
  .work-item-action {
    font-size: 19px;
    line-height: 1.2;
  }

  .work-item__preview {
    opacity: 1;
  }

  .work-item__poster {
    opacity: 0;
  }

  .contact__panel {
    align-items: flex-start;
  }

  .video-modal__dialog {
    width: calc(100vw - 12px);
  }
}

@media (max-width: 1360px) {
  :root {
    --container: min(1240px, calc(100vw - 56px));
    --about-gap: 240px;
  }

  .topbar {
    width: var(--container);
    padding: 20px 12px;
  }

  .menu {
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(54px, 5.1vw, 63px);
  }

  .section-heading h2 {
    font-size: clamp(52px, 5.1vw, 64px);
  }

  .works {
    row-gap: 144px;
  }

  .project-card__link,
  .work-item,
  .work-item-content {
    min-height: clamp(620px, 54vw, 700px);
  }

  .about-content,
  .services-content {
    padding-top: 148px;
  }

  .about-content {
    margin-top: 240px;
  }

  .news-content {
    padding-top: 108px;
  }

  .l_container {
    width: min(1120px, 100%);
    padding: 0 180px;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(1040px, calc(100vw - 40px));
    --about-gap: 200px;
  }

  .topbar {
    width: var(--container);
    padding: 18px 0;
  }

  .menu {
    gap: 16px;
  }

  .menu a {
    font-size: 13px;
  }

  .hero__content {
    padding: 32px 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(44px, 6vw, 58px);
    line-height: 0.98;
    white-space: nowrap;
  }

  .intro .section-heading h2,
  .section-heading--centered h2 {
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(30px, 3.9vw, 35px);
  }

  .works {
    row-gap: 128px;
  }

  .project-card__link,
  .work-item,
  .work-item-content {
    min-height: clamp(560px, 58vw, 640px);
  }

  .work-item-top-content {
    padding: 0 24px;
  }

  .work-item-content-title h3,
  .work-item-content-title-special h3 {
    font-size: 22px;
  }

  .work-item-meta,
  .work-item-action {
    font-size: 19px;
  }

  .award {
    max-height: 58px;
    max-width: 118px;
  }

  .about-content {
    margin-top: 200px;
    padding: 100px 20px 72px;
  }

  .about-container {
    gap: 36px;
  }

  .about-title {
    font-size: 25px;
  }

  .about-lead {
    font-size: 18px;
  }

  .image-column {
    flex: 0 0 38%;
  }

  .text-column {
    flex: 1 1 0;
  }

  .topWhiteText {
    padding: 136px 20px 25px;
  }

  .dream-content {
    padding: 0 0 72px;
  }

  .dreamContent form {
    width: min(100%, 920px);
  }

  .news-content {
    padding: 104px 0 44px;
  }

  .l_container {
    width: min(980px, 100%);
    height: auto;
    padding: 0 110px;
  }

  .services-content {
    padding: 136px 20px 72px;
  }

  .services-layout {
    gap: 28px;
  }

  .services-image {
    width: 92%;
  }

  .services-title {
    font-size: 25px;
  }

  .services-lead {
    font-size: 18px;
  }

  .contact-content {
    padding: 156px 20px 108px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: min(920px, calc(100vw - 32px));
    --about-gap: 168px;
  }

  .topbar {
    width: calc(100vw - 32px);
    justify-content: flex-end;
    padding: 16px 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    top: auto;
    right: auto;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 999px;
    background: rgba(12, 12, 12, 0.3);
    backdrop-filter: blur(6px);
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: min(420px, calc(100vw - 32px));
    padding: 18px 18px 20px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 18, 18, 0.88);
    backdrop-filter: blur(10px);
    z-index: 1;
  }

  .topbar.is-open .menu {
    display: flex;
  }

  .topbar.is-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.is-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .topbar:not(.is-open) .menu-toggle span:nth-child(2) {
    opacity: 1;
  }

  .topbar.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .hero,
  .hero__content {
    min-height: 100svh;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(40px, 6vw, 52px);
    white-space: nowrap;
  }

  .intro {
    padding-top: 82px;
  }

  .works {
    row-gap: 112px;
  }

  .project-card__link,
  .work-item,
  .work-item-content {
    min-height: clamp(500px, 64vw, 580px);
  }

  .work-item-content-title,
  .work-item-content-title-special {
    margin-bottom: 36px;
  }

  .work-item-content-title-special {
    margin-top: 48px;
  }

  .work-item-content-title--offset {
    padding-top: 48px;
  }

  .work-item-content-title h3,
  .work-item-content-title-special h3 {
    font-size: 20px;
  }

  .work-item-meta,
  .work-item-action {
    font-size: 17px;
  }

  .award {
    max-height: 52px;
    max-width: 104px;
  }

  .about-content,
  .services-content {
    min-height: auto;
    padding: 120px 16px 60px;
  }

  .about-content {
    padding-top: 88px;
  }

  .about-content {
    margin-top: 168px;
  }

  .about-container,
  .services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .about-intro {
    max-width: 100%;
  }

  .services-intro {
    max-width: 100%;
  }

  .image-column,
  .text-column {
    flex: 0 0 100%;
    padding-left: 0;
  }

  .image-column--secondary {
    order: 3;
  }

  .text-column--secondary {
    order: 4;
  }

  .image-column img,
  .about-image,
  .services-image {
    width: min(100%, 560px);
    max-width: 100%;
    margin: 0 auto 18px;
  }

  .dream-content {
    min-height: auto;
    padding: 0 0 60px;
  }

  .topWhiteText {
    padding: 120px 16px 24px;
  }

  .dreamContentWrapper {
    padding-top: 28px;
  }

  .dreamContent textarea {
    min-height: 180px;
  }

  .news-content {
    height: auto;
    min-height: auto;
    padding: 120px 0 44px;
  }

  .l_container {
    width: min(860px, 100%);
    height: auto;
    max-height: none;
    padding: 0 48px;
    overflow-y: visible;
  }

  .contact-content {
    padding: 0 16px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(calc(100vw - 24px), 100%);
    --about-gap: 124px;
  }

  .site-shell {
    width: min(100vw - 24px, 100%);
    padding-bottom: 0;
  }

  .topbar {
    width: calc(100vw - 24px);
    padding: 14px 0;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu {
    width: calc(100vw - 24px);
    gap: 12px;
    padding: 16px 14px 18px;
  }

  .menu a {
    font-size: 14px;
  }

  .hero__content {
    padding: 20px 16px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(29px, 10vw, 40px);
    line-height: 1;
    white-space: nowrap;
  }

  .intro {
    padding-top: 74px;
  }

  .section-heading--centered {
    padding-bottom: 74px;
  }

  .intro .section-heading h2,
  .section-heading--centered h2 {
    font-size: clamp(22px, 6.4vw, 26px);
    font-weight: 300;
    line-height: 1.08;
  }

  .works {
    padding-inline: 4px;
    row-gap: 82px;
  }

  .project-card__link,
  .work-item,
  .work-item-content {
    min-height: clamp(320px, 120vw, 520px);
  }

  .work-item-top-content {
    padding: 0 16px;
  }

  .work-item-content {
    max-width: 100%;
  }

  .work-item-content-title,
  .work-item-content-title-special {
    margin-bottom: 24px;
  }

  .work-item-content-title-special {
    margin-top: 28px;
  }

  .work-item-content-title--offset {
    padding-top: 28px;
  }

  .work-item-content-title h3,
  .work-item-content-title-special h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .work-item-meta,
  .work-item-action {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.22;
  }

  .work-item-awards {
    gap: 6px;
    max-width: 100%;
  }

  .award {
    max-height: 56px;
    max-width: 114px;
  }

  .about-content {
    min-height: auto;
    margin-top: 124px;
  }

  .about-content,
  .services-content {
    padding: 96px 12px 48px;
  }

  .about-content {
    padding-top: 72px;
  }

  .about-title {
    font-size: clamp(22px, 6.4vw, 26px);
    font-weight: 300;
    line-height: 0.98;
  }

  .about-lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .text-column--primary em {
    color: #0c0c0c;
    font-weight: 700;
    font-synthesis: weight;
  }

  .services-title {
    font-size: clamp(22px, 6.4vw, 26px);
    font-weight: 300;
    line-height: 0.98;
  }

  .services-lead {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.5;
  }

  .dream-content {
    margin-top: -96px;
    padding: 0 0 48px;
  }

  .topWhiteText {
    padding: 96px 12px 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .text-column p,
  .services-copy p,
  .dreamContent textarea,
  .dreamContent input.emailDream,
  .dreamContent input.submitDream {
    font-size: 16px;
  }

  .dreamContentWrapper {
    padding-top: 20px;
    overflow-x: clip;
  }

  .dreamContent,
  .dreamContent form {
    width: 100%;
    max-width: 100%;
  }

  .dreamContent textarea {
    min-height: 150px;
    padding: 12px 14px;
    width: 100%;
    max-width: 100%;
  }

  .dreamContent input.emailDream,
  .dreamContent input.submitDream {
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
  }

  .submit-wrapper {
    text-align: left;
  }

  .dreamContent input.submitDream {
    width: 100%;
  }

  .news-content {
    padding: 96px 0 32px;
  }

  .l_container {
    width: 100%;
    padding: 0 18px;
  }

  .l_blocks {
    padding-bottom: 24px;
  }

  .l_title {
    font-size: 1rem;
  }

  .l_description {
    padding: 8px 0 8px 14px;
    font-size: 0.94rem;
  }

  .l_link {
    align-self: flex-start;
  }

  .services-layout {
    gap: 18px;
  }

  .services-image {
    width: 100%;
  }

  .contact-content {
    padding: 0 12px;
  }

  .contact-panel-simple {
    margin-top: 18px;
    padding-top: 0;
  }

  .contact-email {
    font-size: 25px;
    line-height: 1.02;
  }

  .contact-socials {
    gap: 12px;
    margin-top: 24px;
  }

  .socialBtn {
    width: 32px;
    height: 32px;
  }

  .video-modal__dialog {
    width: calc(100vw - 24px);
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(calc(100vw - 16px), 100%);
    --about-gap: 96px;
  }

  .topbar {
    width: calc(100vw - 16px);
  }

  .menu {
    width: calc(100vw - 16px);
    padding-inline: 10px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero__video {
    object-fit: contain;
    object-position: center center;
  }

  .about-content {
    min-height: auto;
  }

  .text-column--primary em {
    color: #0c0c0c;
    font-weight: 700;
    font-synthesis: weight;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(20px, 8.6vw, 28px);
    white-space: nowrap;
  }

  .intro .section-heading h2,
  .section-heading--centered h2 {
    font-size: clamp(19px, 6.8vw, 23px);
    font-weight: 300;
  }

  .section-heading--centered {
    padding-bottom: 56px;
  }

  .works {
    padding-inline: 2px;
    row-gap: 64px;
  }

  .project-card__link,
  .work-item,
  .work-item-content {
    min-height: clamp(280px, 122vw, 420px);
  }

  .work-item-top-content {
    padding: 0 12px;
  }

  .work-item-content-title h3,
  .work-item-content-title-special h3 {
    font-size: 21px;
  }

  .work-item-content-title,
  .work-item-content-title-special {
    width: 100%;
  }

  .work-item-meta,
  .work-item-action {
    font-size: 15px;
  }

  .award {
    max-height: 48px;
    max-width: 98px;
  }

  .text-column p,
  .services-copy p,
  .topWhiteText {
    font-size: 15px;
  }

  .l_container {
    padding: 0 10px;
  }

  .l_time,
  .l_title,
  .l_description,
  .l_link {
    max-width: 100%;
  }

  .l_title {
    font-size: 0.92rem;
    line-height: 1.32;
  }

  .l_description {
    padding: 6px 0 6px 8px;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .l_link {
    font-size: 0.88rem;
  }

  .services-content {
    padding: 88px 10px 44px;
  }

  .services-layout {
    gap: 14px;
  }

  .services-copy p {
    font-size: 15px;
    line-height: 1.48;
  }

  .video-modal__dialog {
    width: calc(100vw - 8px);
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .topbar {
    padding: 10px 0;
  }

  .menu {
    gap: 12px;
  }

  .menu a {
    font-size: 12px;
  }

  .hero,
  .hero__content {
    min-height: 100svh;
  }

  .hero__content {
    padding: 16px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1;
    white-space: nowrap;
  }

  .intro {
    padding-top: 56px;
  }

  .about-content,
  .services-content,
  .news-content,
  .contact-content {
    padding-top: 84px;
  }

  .about-content {
    margin-top: 96px;
  }

  .topWhiteText {
    padding-top: 18px;
  }

  .dream-content {
    min-height: auto;
    margin-top: -96px;
  }
}

body.index-main .services-layout {
  display: block;
  width: min(var(--container), 100%);
  max-width: 100%;
  margin: 0 auto;
}

body.index-main .contact-content,
body.index-main .contact-panel-simple {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.index-main .services-copy {
  width: min(620px, 100%);
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
  padding-left: 0;
}

body.index-main .services-image,
body.index-main .services-media {
  display: none;
}

@media (max-width: 760px) {
  body.index3-variant .hero__video {
    object-fit: cover;
    object-position: center center;
  }

  body.index-main .services-section {
    background: var(--work-about-base-bg);
  }

  body.index-main .services-intro {
    margin-bottom: 84px;
  }

  body.index-main .services-copy {
    width: 100%;
    margin-top: 0;
    margin-right: auto;
  }

  body.index-main .services-video-wrap {
    display: none;
  }

  body.index-main .services-intro::before {
    content: none;
  }

  body.index-main .services-copy::before {
    content: none;
  }

  body.index-main .contact-content {
    padding: 0;
    margin-top: 64px;
  }
}

@media (max-width: 480px) {
  body.index3-variant .hero__video {
    object-fit: cover;
    object-position: center center;
  }

  body.index-main .services-intro {
    margin-bottom: 84px;
  }

  body.index-main .services-intro::before {
    content: none;
  }

  body.index-main .services-copy::before {
    content: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .work-item__preview {
    opacity: 1;
  }

  .work-item__poster {
    opacity: 0;
    transform: scale(1.02);
  }

  .project-card__link:hover .work-item__preview,
  .project-card__link:focus-visible .work-item__preview,
  .project-card__link.is-previewing .work-item__preview {
    opacity: 1;
    transform: scale(1);
  }

  .project-card__link:hover .work-item__poster,
  .project-card__link:focus-visible .work-item__poster,
  .project-card__link.is-previewing .work-item__poster {
    opacity: 0;
    transform: scale(1.02);
  }
}
