@font-face {
  font-family: "Raleway";
  src: url("Assets/fonts/шрифты raleway/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("Assets/fonts/шрифты raleway/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("Assets/fonts/шрифты raleway/Raleway-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("Assets/fonts/шрифты raleway/Raleway-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SVA Numeric";
  src: url("Assets/fonts/montserrat/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #e9e458;
  --ink: #171717;
  --muted: #898989;
  --paper: #fefefe;
  --line: #dededb;
  --container: 1240px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.numeric {
  font-family: "Raleway", Arial, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.page__container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.header__toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  background: rgba(254, 254, 254, 0.94);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  flex: 0 0 156px;
}

.logo__image {
  width: 100%;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navigation__link,
.header__phone,
.link,
.contacts__link {
  transition: color 180ms ease, opacity 180ms ease;
}

.navigation__link:hover,
.header__phone:hover,
.link:hover,
.contacts__link:hover {
  color: var(--yellow);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.header__languages {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.header__language {
  display: inline-flex;
  min-width: 38px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: color 180ms ease, border-color 180ms ease;
}

.header__language:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.header__language--active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  cursor: default;
}

.header__language--active:hover {
  border-color: var(--yellow);
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 11px;
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover {
  background: var(--yellow);
  color: var(--ink);
}

.button--accent {
  background: var(--yellow);
  color: var(--ink);
}

.button--accent:hover {
  background: var(--paper);
}

.header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header__toggle-line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, black, transparent 86%);
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: 660px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 80px;
}

.label {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.label--light {
  color: var(--yellow);
}

.label--dark {
  color: var(--ink);
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.hero__title-accent,
.about__title-accent,
.directions__title-accent,
.process__title-accent,
.statement__title-accent,
.group-context__title-accent,
.contacts__title-accent {
  color: var(--yellow);
}

.placeholder-marker {
  display: inline-block;
  margin-left: 3px;
  color: #d51f2f;
  font-size: 1.15em;
  font-weight: 800;
  line-height: 1;
}

.hero__lead {
  max-width: 480px;
  margin: 34px 0 38px;
  color: #c5c5c5;
  font-size: 17px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-arrow {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  color: currentColor;
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.link--light {
  color: var(--paper);
}

.hero__actions .link__arrow {
  width: 1em;
  height: 1em;
}

.hero__mark {
  position: absolute;
  right: -30px;
  bottom: 76px;
  display: flex;
  width: min(40vw, 500px);
  flex-direction: column;
  align-items: flex-end;
  color: var(--yellow);
  opacity: 0.92;
}

.hero__mark-image {
  width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.08;
}

.hero__mark-line {
  width: 120px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--yellow);
}

.hero__mark-label {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1.8;
  text-align: right;
  text-transform: uppercase;
}

.hero__index {
  position: absolute;
  right: 32px;
  bottom: 32px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero__index-divider {
  padding-inline: 7px;
  color: var(--muted);
}

.ticker {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 15px 0;
  animation: ticker 20s linear infinite;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.ticker__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  white-space: nowrap;
}

.ticker__separator {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--ink);
  transform: rotate(45deg);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--ticker-shift, -100%));
  }
}

.section {
  padding-block: 140px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 56px;
}

.section__meta {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.section__number {
  color: #ededeb;
  font-size: 150px;
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.7;
}

h2 {
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.about__text {
  margin: 44px 0 36px;
  color: #606060;
  font-size: 16px;
}

.about__paragraph {
  margin-bottom: 22px;
}

.about__paragraph:last-child {
  margin-bottom: 0;
}

.about__paragraph--lead {
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
}

.directions {
  padding-top: 0;
}

.directions__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.directions__note {
  max-width: 300px;
  margin: 0 0 5px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.directions__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.directions__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: '';
  pointer-events: none;
}

.directions__visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 55px;
}

.directions__visual {
  margin: 0;
}

.directions__visual-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.directions__visual figcaption {
  padding-top: 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.directions__visual-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.direction-card {
  position: relative;
  display: grid;
  min-height: 270px;
  grid-template-columns: 48px 1fr 30px;
  gap: 24px;
  padding: 38px 34px 34px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.direction-card:hover {
  background: var(--yellow);
}

.direction-card__number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.direction-card__title {
  margin-bottom: 28px;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.direction-card__description {
  max-width: 240px;
  margin: 0;
  color: #686868;
  font-size: 13px;
  line-height: 1.6;
}

.direction-card__arrow {
  justify-self: end;
  color: var(--muted);
}

.statement {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.statement__inner {
  position: relative;
  z-index: 1;
  padding-block: 120px 110px;
}

.statement__title {
  max-width: 820px;
}

.statement__title-accent {
  color: var(--paper);
}

.statement__shape {
  position: absolute;
  border: 3px solid rgba(23, 23, 23, 0.13);
  transform: rotate(-28deg);
}

.statement__shape--one {
  top: -220px;
  right: 12%;
  width: 460px;
  height: 760px;
}

.statement__shape--two {
  right: -80px;
  bottom: -260px;
  width: 420px;
  height: 640px;
}

.roadmap {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  max-width: 920px;
  margin: 100px 0 0 auto;
  border-top: 1px solid rgba(23, 23, 23, 0.35);
}

.roadmap__item {
  min-height: 150px;
  padding: 24px 25px 0 0;
  border-right: 1px solid rgba(23, 23, 23, 0.35);
}

.roadmap__item + .roadmap__item {
  padding-left: 25px;
}

.roadmap__item:last-child {
  border-right: 0;
}

.roadmap__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.roadmap__title {
  margin: 25px 0 7px;
  font-size: 19px;
  font-weight: 800;
}

.roadmap__description {
  color: rgba(23, 23, 23, 0.65);
  font-size: 12px;
  line-height: 1.5;
}

.process {
  background: #f3f3f0;
}

.process__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.process__title {
  max-width: 500px;
}

.process__lead {
  max-width: 360px;
  margin: 38px 0 0;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.process__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  min-height: 145px;
  padding: 24px 24px 22px 0;
  border-bottom: 1px solid var(--line);
}

.process__item:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.process__number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.process__text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.group-context {
  background: var(--ink);
  color: var(--paper);
}

.group-context__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  padding-block: 120px;
}

.group-context__title {
  font-size: clamp(58px, 8vw, 112px);
}

.group-context__logo {
  display: block;
  width: min(100%, 362px);
  height: auto;
  margin-top: 0;
}

.group-context__lead {
  max-width: 470px;
  margin: 0 0 50px;
  color: #ddd;
  font-size: 21px;
  line-height: 1.5;
}

.group-context__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 470px;
  border-top: 1px solid #444;
}

.group-context__stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 20px 0 0;
}

.group-context__stat + .group-context__stat {
  padding-left: 20px;
  border-left: 1px solid #444;
}

.group-context__stat-value {
  color: var(--yellow);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.group-context__stat-label {
  color: #a9a9a9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.group-context__projects {
  max-width: 510px;
  margin-top: 48px;
  border-top: 1px solid #444;
}

.group-context__projects-title {
  margin: 0;
  padding: 22px 0 12px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.group-context__project-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.group-context__project {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid #333;
}

.group-context__project-name {
  font-size: 14px;
  font-weight: 600;
}

.group-context__project-meta {
  color: #a9a9a9;
  font-size: 10px;
  text-align: right;
}

.group-context__note {
  max-width: 510px;
  margin: 46px 0 0;
  color: #a9a9a9;
  font-size: 12px;
  line-height: 1.7;
}

.contacts {
  background: var(--ink);
  color: var(--paper);
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contacts__card {
  max-width: 500px;
  padding-top: 16px;
}

.contacts__intro {
  max-width: 390px;
  margin: 0 0 32px;
  color: #c4c4c4;
  font-size: 18px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 15px;
  margin-bottom: 68px;
  font-family: "SVA Numeric", "Raleway", Arial, sans-serif;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
  color: #bdbdbd;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #444;
  border-radius: 0;
  outline: 0;
  background: #242424;
  color: var(--paper);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form__field textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--yellow);
  background: #2b2b2b;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #898989;
  font-size: 10px;
  line-height: 1.4;
}

.contact-form__consent input {
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--yellow);
}

.contact-form__submit {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.contact-form__status {
  min-height: 21px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.contact-form__status--success {
  color: var(--yellow);
}

.contact-form__status--error {
  color: #ff8d8d;
}

.contacts__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #444;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.contacts__arrow {
  color: var(--yellow);
}

.contacts__note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.contacts__legend {
  margin: 12px 0 0;
  color: #d51f2f;
  font-size: 11px;
}

.footer {
  background: var(--ink);
  color: var(--muted);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: end;
  gap: 30px;
  padding-block: 32px;
  border-top: 1px solid #333;
  font-size: 11px;
  line-height: 1.6;
}

.logo--footer {
  width: 150px;
}

.logo--footer .logo__image {
  opacity: 0.75;
}

.footer__description,
.footer__copyright {
  margin: 0;
}

.footer__copyright {
  justify-self: end;
  text-align: right;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  margin: 0;
  text-transform: uppercase;
}

.footer__links a {
  transition: color 180ms ease;
}

.footer__links a:hover {
  color: var(--yellow);
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .header__inner {
    min-height: 74px;
  }

  .logo {
    flex-basis: 135px;
  }

  .header__contact .header__phone {
    display: none;
  }

  .header__toggle {
    display: block;
    margin-left: auto;
  }

  .navigation {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px;
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  }

  .navigation--open {
    display: flex;
  }

  .navigation__link {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .navigation__link:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero__mark {
    right: -160px;
    bottom: 70px;
    width: 450px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .process__grid,
  .group-context__inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .section__meta {
    min-height: 100px;
  }

  .section__number {
    display: none;
  }

  .about__text {
    margin-left: 0;
  }

  .roadmap {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .page__container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header__contact .button {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 580px;
  }

  .hero__content {
    padding-block: 45px 55px;
  }

  .hero__lead {
    max-width: 330px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero__mark {
    right: -140px;
    bottom: 62px;
    width: 360px;
  }

  .hero__index {
    right: 20px;
    bottom: 20px;
  }

  .section {
    padding-block: 64px;
  }

  .directions__heading {
    display: block;
    margin-bottom: 45px;
  }

  .directions__note {
    margin-top: 28px;
  }

  .directions__list {
    grid-template-columns: 1fr;
  }

  .directions__list::before {
    display: none;
  }

  .directions__visuals {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .direction-card {
    min-height: 220px;
    padding: 28px 0;
  }

  .direction-card__title {
    margin-bottom: 18px;
  }

  .statement__inner {
    padding-block: 64px;
  }

  .process__list {
    grid-template-columns: 1fr;
  }

  .process__item:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .group-context__inner {
    gap: 55px;
    padding-block: 64px;
  }

  .roadmap {
    display: block;
    margin-top: 65px;
    border-top: 0;
  }

  .roadmap__item,
  .roadmap__item + .roadmap__item {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.35);
  }

  .roadmap__item:last-child {
    border-bottom: 0;
  }

  .roadmap__title {
    margin-top: 12px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contacts__card {
    padding-top: 0;
  }

  .contact-form {
    margin-bottom: 42px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer__description {
    justify-self: end;
    text-align: right;
  }

  .footer__links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer__copyright {
    grid-column: 1 / -1;
    justify-self: start;
    padding-top: 18px;
    text-align: left;
  }
}

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

  .ticker__track {
    animation: none;
  }
}

/* Figma: solution pages, media gallery and shared lightbox. */
.service-hero {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.service-hero__inner {
  display: grid;
  min-height: 611px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 660px);
  align-items: center;
  gap: 32px;
  padding-block: 36px;
}

.service-hero__content {
  min-width: 0;
  max-width: 720px;
}

.service-hero h1 {
  max-width: 100%;
  white-space: pre-line;
  font-size: clamp(44px, 3.6vw, 56px);
}

.service-hero__lead {
  max-width: 720px;
  margin: 48px 0 0;
  color: #c5c5c5;
  font-size: 15px;
  line-height: 1.45;
}

.service-hero__gallery {
  position: relative;
  width: 100%;
}

.service-hero__gallery-label {
  display: none;
}

.media-gallery__viewport {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #242424;
  cursor: zoom-in;
}

.media-gallery__media,
.media-viewer__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-gallery__counter,
.media-viewer__counter {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 20px;
  color: var(--paper);
  font-family: "SVA Numeric", "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.media-gallery__instruction {
  position: absolute;
  z-index: 1;
  top: 36px;
  left: 20px;
  color: #c5c5c5;
  font-family: "SVA Numeric", "Raleway", sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.media-gallery__arrow,
.media-viewer__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  border: 0;
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
  font: 400 32px/1 "Raleway", sans-serif;
  transform: translateY(-50%);
}

.media-gallery__arrow--prev,
.media-viewer__arrow--prev {
  left: 18px;
}

.media-gallery__arrow--next,
.media-viewer__arrow--next {
  right: 18px;
}

.media-gallery__thumbs,
.media-viewer__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  height: 80px;
  margin-top: 20px;
}

.media-gallery__thumb,
.media-viewer__thumb {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: #d8d8d5;
  cursor: pointer;
}

.media-gallery__thumb[aria-current="true"],
.media-viewer__thumb[aria-current="true"] {
  border-color: var(--yellow);
}

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

.media-gallery__thumb-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-align: left;
  padding: 4px 6px;
  background: var(--yellow);
}

.media-viewer {
  width: min(90vw, 1240px);
  height: min(90vh, 740px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.media-viewer::backdrop {
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(24px);
}

.media-viewer__panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 80px;
  gap: 30px;
  width: 100%;
  height: 100%;
  padding: 70px 170px 50px;
  background: #171717;
}

.media-viewer__stage {
  grid-row: 1;
  width: 100%;
  min-height: 0;
  height: auto;
  overflow: hidden;
  background: #111;
}

.media-viewer__media {
  object-fit: contain;
}

.media-viewer__close {
  position: absolute;
  top: 16px;
  right: 22px;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: 400 28px/1 "Raleway", sans-serif;
}

.media-viewer__arrow {
  font-size: 46px;
}

.media-viewer__thumbs {
  position: static;
  grid-row: 2;
  align-self: stretch;
  height: 80px;
  margin: 0;
  overflow: hidden;
}

.service-intro {
  padding-block: 56px 68px;
  background: var(--paper);
}

.service-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 780px) 480px;
  justify-content: space-between;
  gap: 64px;
}

.service-intro h2,
.service-benefits h2,
.service-process h2,
.service-related__title {
  max-width: 900px;
  font-size: clamp(36px, 4vw, 58px);
}

.service-intro__copy {
  max-width: 780px;
  margin-top: 34px;
  color: #606060;
  font-size: 14px;
  line-height: 1.6;
}

.service-intro__copy p {
  margin: 0 0 18px;
}

.service-intro__copy p:last-child {
  margin-bottom: 0;
}

.service-intro__signal {
  display: grid;
  align-content: start;
  gap: 6px;
  margin: 78px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.service-intro__signal span {
  white-space: normal;
}

.service-benefits {
  padding-block: 52px 72px;
  background: #f3f3f0;
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 42px;
  margin-top: 42px;
}

.service-benefit {
  min-height: 260px;
  padding: 24px 28px;
  background: var(--paper);
}

.service-benefit__number {
  display: block;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1;
}

.service-benefit h3 {
  margin: 28px 0 28px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.service-benefit p,
.service-process__item p {
  margin: 0;
  color: #606060;
  font-size: 12px;
  line-height: 1.45;
}

.service-process {
  padding-block: 52px 72px;
  background: var(--paper);
}

.service-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.service-process__item {
  min-height: 150px;
  padding-top: 22px;
}

.service-process__number {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
}

.service-process__item h3 {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.service-related {
  padding-block: 48px 80px;
  background: var(--ink);
  color: var(--paper);
}

.service-related__title {
  margin: 0 0 24px;
  color: var(--paper);
}

.service-related__note {
  max-width: 1110px;
  margin: 0 0 34px;
  color: #c4c4c4;
  font-size: 13px;
}

.service-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper);
  color: var(--ink);
}

.service-related__card {
  position: relative;
  min-height: 270px;
  padding: 28px 54px;
  border: 1px solid var(--line);
}

.service-related__card:hover {
  background: var(--yellow);
}

.service-related__number {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.service-related__card h3 {
  max-width: 320px;
  margin: 30px 0 24px;
  white-space: pre-line;
  font-size: 28px;
  letter-spacing: -0.06em;
}

.service-related__card p {
  max-width: 240px;
  margin: 0;
  color: #686868;
  font-size: 12px;
  line-height: 1.5;
}

.service-related__card .icon-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.service-contact {
  padding-block: 96px 112px;
}

.error-hero {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.error-hero__inner {
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 64px;
  padding-block: 72px;
}

.error-hero__content {
  max-width: 720px;
}

.error-hero h1 {
  max-width: 720px;
  margin-top: 58px;
  font-size: clamp(52px, 5.2vw, 84px);
  letter-spacing: -0.06em;
}

.error-hero__title-accent {
  color: var(--yellow);
}

.error-hero__lead {
  max-width: 620px;
  margin: 42px 0 0;
  color: #c5c5c5;
  font-size: 18px;
  line-height: 1.55;
}

.error-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.error-hero__number-panel {
  display: flex;
  min-height: 539px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--ink);
}

.error-hero__contact-link {
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.error-hero__contact-link:hover {
  color: var(--yellow);
}

.error-hero__number {
  color: var(--yellow);
  font-family: "SVA Numeric", "Raleway", Arial, sans-serif;
  font-size: clamp(180px, 21vw, 360px);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.78;
  text-align: center;
}

@media (max-width: 1100px) {
  .service-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 40px;
  }

  .service-intro__grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .service-benefits__grid {
    gap: 20px;
  }

  .media-viewer__panel {
    padding-inline: 90px;
  }

  .media-viewer__thumbs {
    right: 90px;
    left: 90px;
  }
}

@media (max-width: 900px) {
  .error-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

  .error-hero__number {
    text-align: center;
  }

  .error-hero__number-panel {
    order: -1;
    min-height: 360px;
  }

  .service-hero__inner,
  .service-intro__grid {
    grid-template-columns: 1fr;
  }

  .service-hero__inner {
    min-height: 0;
    padding-block: 64px;
  }

  .service-hero__gallery {
    max-width: 760px;
  }

  .service-intro__signal {
    margin-top: 16px;
  }

  .service-benefits__grid,
  .service-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-viewer__panel {
    padding: 64px 56px 54px;
  }

  .media-viewer__thumbs {
    right: 56px;
    left: 56px;
  }
}

@media (max-width: 640px) {
  .error-hero__inner {
    gap: 30px;
    padding-block: 48px;
  }

  .error-hero h1 {
    margin-top: 38px;
  }

  .error-hero__lead {
    margin-top: 30px;
    font-size: 16px;
  }

  .service-hero__inner {
    padding-block: 48px;
  }

  .service-hero__lead {
    margin-top: 30px;
  }

  .media-gallery__viewport {
    height: 260px;
  }

  .media-gallery__thumbs {
    gap: 6px;
    height: 54px;
    margin-top: 10px;
  }

  .service-benefits__grid,
  .service-process__grid,
  .service-related__grid {
    grid-template-columns: 1fr;
  }

  .service-benefit,
  .service-related__card {
    min-height: 220px;
  }

  .media-viewer {
    width: 100vw;
    height: 100vh;
  }

  .media-viewer__panel {
    padding: 58px 16px 74px;
    grid-template-rows: minmax(0, 1fr) 54px;
    gap: 6px;
  }

  .media-viewer__thumbs {
    right: 16px;
    bottom: 14px;
    left: 16px;
    gap: 6px;
    height: 54px;
  }

  .media-viewer__arrow {
    font-size: 34px;
  }

  .media-viewer__arrow--prev {
    left: 18px;
  }

  .media-viewer__arrow--next {
    right: 18px;
  }
}
