/* ============ DESIGN DEVILS — hero slider ============ */
:root {
  --dark: #131c28;
  --white: #ffffff;
  --line: rgba(255, 255, 255, .18);
  --tr: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: 'Oswald', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font-family: inherit; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__logo {
  font-size: 42px; font-weight: 600; letter-spacing: 1px;
  animation: pulse 1.2s ease-in-out infinite;
}
.preloader__logo span { opacity: .9; }
.preloader__ring {
  position: absolute; width: 110px; height: 110px;
  border: 1px solid var(--line); border-top-color: rgba(255,255,255,.8);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .55; } }

/* ---------- Hero / backgrounds ---------- */
.hero { position: relative; height: 100vh; width: 100%; overflow: hidden; }

.hero__bg { position: absolute; inset: 0; }
.hero__bg-item {
  position: absolute; inset: -40px;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 7s linear;
  will-change: opacity, transform;
}
.hero__bg-item.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(19,28,40,.88), rgba(19,28,40,.72) 55%, rgba(19,28,40,.86));
}

/* ---------- Orbits ---------- */
.orbits {
  position: absolute; left: 56%; top: 50%;
  width: 0; height: 0;
  pointer-events: none;
}
.orbit {
  position: absolute; left: 50%; top: 50%;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit--1 { width: 480px; height: 480px; animation: orbitSpin 60s linear infinite; }
.orbit--2 { width: 780px; height: 780px; animation: orbitSpin 90s linear infinite reverse; }
.orbit--3 { width: 1080px; height: 1080px; animation: orbitSpin 130s linear infinite; }
@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.orbit__dot {
  position: absolute; left: 50%; top: 50%;
  width: 5px; height: 5px; margin: -2.5px;
  background: rgba(255,255,255,.55);
  border-radius: 50%;
  transform: rotate(var(--a)) translateX(calc(240px)) ;
}
.orbit--2 .orbit__dot { transform: rotate(var(--a)) translateX(390px); }
.orbit--3 .orbit__dot { transform: rotate(var(--a)) translateX(540px); }
.orbit__dot { animation: dotPulse 3s ease-in-out infinite; }
@keyframes dotPulse { 50% { opacity: .3; } }

/* ---------- Entrance animation helper ---------- */
.anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--tr), transform .9s var(--tr);
  transition-delay: var(--d, 0s);
}
body.is-loaded .anim { opacity: 1; transform: translateY(0); }

/* ---------- Header ---------- */
.header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center;
  padding: 34px 56px 0 56px;
}
.logo {
  font-size: 30px; font-weight: 600; line-height: 1;
  margin-right: 10%;
  transition-property: opacity, transform;
}
.logo span { transition: opacity .3s; }
.logo:hover span { opacity: .4; }

.nav { display: flex; flex: 1; gap: 56px; align-items: center; }
.nav__link {
  font-size: 13px; font-weight: 300; letter-spacing: 2.5px; text-transform: capitalize;
  position: relative; padding: 4px 0;
}
.nav__link--r:nth-of-type(3) { margin-left: auto; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--white);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--tr);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.burger {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  margin-left: 8%;
  z-index: 60; position: relative;
  transition: transform .4s var(--tr), background .3s, opacity .9s var(--tr);
}
.burger span {
  display: block; width: 16px; height: 2px; background: var(--dark);
  transition: transform .35s var(--tr), opacity .25s;
}
.burger:hover { transform: scale(1.1); }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Side rails ---------- */
.rail {
  position: absolute; top: 0; bottom: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  width: 56px;
}
.rail--left { left: 0; justify-content: flex-end; padding-bottom: 40px; }
.rail--right { right: 0; justify-content: flex-start; padding-top: 120px; }

.rail__item {
  writing-mode: vertical-rl;
  font-size: 11px; font-weight: 300; letter-spacing: 2.5px;
  color: rgba(255,255,255,.55);
  margin: 26px 0;
  transition: color .3s, opacity .9s var(--tr), transform .9s var(--tr);
}
a.rail__item:hover { color: var(--white); }
.rail__item--share { position: absolute; top: 40%; }

/* Scroll down */
.scrolldown {
  margin-top: auto; margin-bottom: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.scrolldown__mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(255,255,255,.7); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scrolldown__mouse i {
  width: 2px; height: 6px; background: var(--white); border-radius: 2px;
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}
.scrolldown__arrow {
  width: 1px; height: 26px; background: rgba(255,255,255,.6); position: relative;
  animation: drop 1.6s ease-in-out infinite;
}
.scrolldown__arrow::after {
  content: ""; position: absolute; bottom: 0; left: -3px;
  border: 3.5px solid transparent; border-top-color: rgba(255,255,255,.8);
}
@keyframes drop { 50% { transform: translateY(6px); } }
.scrolldown__label {
  writing-mode: vertical-rl;
  font-size: 11px; font-weight: 300; letter-spacing: 2.5px;
  color: rgba(255,255,255,.55);
}

/* ---------- Slide content ---------- */
.slide {
  position: absolute; z-index: 5;
  left: 14.5%; top: 0; right: 14.5%; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}

.slide__title {
  font-size: clamp(64px, 11vw, 176px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 6vh;
  min-height: 1em;
}
.slide__title .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(.55em) rotate(4deg);
  transition: opacity .7s var(--tr), transform .7s var(--tr);
  transition-delay: calc(var(--ci) * .045s + .15s);
}
.slide__title .ch.sp { width: .35em; }
.slide__title.is-in .ch { opacity: 1; transform: translateY(0) rotate(0); }
.slide__title.is-out .ch {
  opacity: 0; transform: translateY(-.45em);
  transition-delay: calc(var(--ci) * .02s);
  transition-duration: .35s;
}

.slide__meta { display: flex; gap: 12%; }
.slide__label { display: none; }
.slide__meta p {
  font-size: 14px; font-weight: 300; letter-spacing: 2px; line-height: 1.6;
}
.slide__col--counter { margin-left: auto; }

/* Bullets */
.bullets {
  position: absolute; left: 2px; bottom: 17%;
  display: flex; flex-direction: column; gap: 14px;
}
.bullet {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .3s, transform .3s;
  position: relative;
}
.bullet:hover { background: rgba(255,255,255,.8); }
.bullet.is-active { background: var(--white); transform: scale(1.25); }

/* Arrows */
.arrows {
  position: absolute; right: 0; bottom: 26%;
  display: flex; gap: 120px;
}
.arrow { padding: 8px; }
.arrow svg {
  width: 17px; height: 32px; display: block;
  fill: none; stroke: rgba(255,255,255,.85); stroke-width: 2;
  transition: transform .35s var(--tr), stroke .3s;
}
.arrow:hover svg { stroke: #fff; }
.arrow--prev:hover svg { transform: translateX(-6px); }
.arrow--next:hover svg { transform: translateX(6px); }
.arrow:active svg { transform: scale(.85); }

/* ---------- Footer ---------- */
.footer {
  position: absolute; bottom: 0; left: 14.5%; right: 14.5%; z-index: 10;
  display: flex; justify-content: space-between;
  padding-bottom: 38px;
}
.footer__link {
  font-size: 13px; font-weight: 300; letter-spacing: 2.5px;
  position: relative; padding: 4px 0;
}
.footer__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--white);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--tr);
}
.footer__link:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__link:first-child { margin-left: 18%; }

/* ---------- Progress ---------- */
.progress {
  position: absolute; left: 0; bottom: 0; z-index: 20;
  width: 100%; height: 2px; background: rgba(255,255,255,.08);
}
.progress i {
  display: block; height: 100%; width: 0;
  background: rgba(255,255,255,.6);
}
.progress i.is-running { animation: prog var(--dur, 6s) linear forwards; }
@keyframes prog { from { width: 0; } to { width: 100%; } }

/* ---------- Fullscreen menu ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(13, 19, 28, .97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  clip-path: circle(0 at calc(100% - 80px) 57px);
  visibility: hidden;
  transition: clip-path .7s var(--tr), visibility .7s;
}
.menu-overlay.is-open {
  clip-path: circle(150% at calc(100% - 80px) 57px);
  visibility: visible;
}
/* while menu is open the header rises above the overlay so the X stays clickable;
   nav links hide to avoid duplicating the overlay menu */
body.menu-open .header { z-index: 60 !important; }
body.menu-open .nav { opacity: 0; pointer-events: none; transition: opacity .3s; }
.nav { transition: opacity .3s; }
.menu-overlay__nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.menu-overlay__link {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500; text-transform: uppercase; letter-spacing: 2px;
  line-height: 1.5;
  opacity: 0; transform: translateY(30px);
  transition: opacity .5s var(--tr), transform .5s var(--tr), color .3s;
  transition-delay: 0s;
  color: rgba(255,255,255,.85);
}
.menu-overlay.is-open .menu-overlay__link {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(.25s + var(--i) * .08s);
}
.menu-overlay__link:hover { color: #fff; letter-spacing: 6px; }
.menu-overlay__link { transition-property: opacity, transform, color, letter-spacing; }
.menu-overlay__footer {
  position: absolute; bottom: 40px;
  display: flex; gap: 40px;
}
.menu-overlay__footer a {
  font-size: 12px; letter-spacing: 2.5px; font-weight: 300;
  color: rgba(255,255,255,.5); transition: color .3s;
}
.menu-overlay__footer a:hover { color: #fff; }

/* ============ Inner pages ============ */
body.inner {
  overflow: hidden auto;
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(56, 80, 110, .35), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(40, 58, 84, .3), transparent 60%),
    var(--dark);
}
body.inner .header {
  position: fixed;
  z-index: 40;
  padding-bottom: 24px;
  background: linear-gradient(to bottom, rgba(19,28,40,.92), rgba(19,28,40,0));
}
.nav__link.is-active { pointer-events: none; }
.nav__link.is-active::after { transform: scaleX(1); }
.menu-overlay__link.is-active { color: rgba(255,255,255,.35); pointer-events: none; }

/* faint fixed orbits behind content */
.inner-orbits {
  position: fixed; left: 75%; top: 20%; z-index: 0; pointer-events: none;
}
.inner-orbits .orbit { opacity: .6; }

.inner-main {
  position: relative; z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 170px 48px 90px;
}
.inner-head { margin-bottom: 64px; }
.inner-head__kicker {
  display: block;
  font-size: 12px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.inner-title {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 600; line-height: .95; text-transform: uppercase;
}
.inner-lead {
  max-width: 560px;
  margin-top: 26px;
  font-size: 15px; font-weight: 300; letter-spacing: 1px; line-height: 1.8;
  color: rgba(255,255,255,.65);
}

/* reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--tr), transform .9s var(--tr);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ----- Works grid ----- */
.works-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px 40px;
}
.work-card { display: block; }
.work-card__img {
  position: relative; overflow: hidden; aspect-ratio: 16 / 10;
  background: #0d141d;
}
.work-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.85) brightness(.85);
  transform: scale(1.01);
  transition: transform 1s var(--tr), filter .5s;
}
.work-card:hover .work-card__img img { transform: scale(1.07); filter: saturate(1) brightness(1); }
.work-card__img::after {
  content: "View project";
  position: absolute; inset: auto 0 0 0;
  padding: 14px 20px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  background: linear-gradient(to top, rgba(13,19,28,.85), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s var(--tr);
}
.work-card:hover .work-card__img::after { opacity: 1; transform: translateY(0); }
html[lang="ru"] .work-card__img::after { content: "Смотреть проект"; }
.work-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 18px;
}
.work-card__title { font-size: 24px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.work-card__meta { font-size: 12px; font-weight: 300; letter-spacing: 2px; color: rgba(255,255,255,.5); }

/* ----- Services ----- */
.service-row {
  display: grid; grid-template-columns: 110px 1fr 1.2fr; gap: 32px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.service-row:first-of-type { border-top: 1px solid var(--line); }
.service-row__num {
  font-size: 15px; font-weight: 200; letter-spacing: 2px; color: rgba(255,255,255,.4);
}
.service-row__name { font-size: 30px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.service-row__desc {
  font-size: 14px; font-weight: 300; letter-spacing: .8px; line-height: 1.8;
  color: rgba(255,255,255,.65);
}

/* ----- Awards ----- */
.award-row {
  display: grid; grid-template-columns: 110px 1fr 1fr 120px; gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left .4s var(--tr), background .4s;
}
.award-row:first-of-type { border-top: 1px solid var(--line); }
.award-row:hover { padding-left: 16px; background: rgba(255,255,255,.03); }
.award-row__year { font-size: 13px; font-weight: 200; letter-spacing: 2px; color: rgba(255,255,255,.4); }
.award-row__name { font-size: 20px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.award-row__proj { font-size: 13px; font-weight: 300; letter-spacing: 1.5px; color: rgba(255,255,255,.6); }
.award-row__kind { font-size: 12px; font-weight: 300; letter-spacing: 2px; color: rgba(255,255,255,.45); text-align: right; }

/* ----- Testimonials ----- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.quote {
  border: 1px solid var(--line);
  padding: 44px 40px;
  position: relative;
  transition: border-color .4s, transform .5s var(--tr);
}
.quote:hover { border-color: rgba(255,255,255,.4); transform: translateY(-4px); }
.quote::before {
  content: "“";
  position: absolute; top: 6px; left: 32px;
  font-size: 90px; font-weight: 600; line-height: 1;
  color: rgba(255,255,255,.12);
}
.quote__text {
  font-size: 15px; font-weight: 300; letter-spacing: .5px; line-height: 1.9;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}
.quote__author { font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.quote__role { font-size: 12px; font-weight: 300; letter-spacing: 1.5px; color: rgba(255,255,255,.45); margin-top: 4px; }

/* ----- Contacts ----- */
.contacts-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: start;
}
.contact-mail {
  display: inline-block;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 500; letter-spacing: 1px;
  border-bottom: 2px solid rgba(255,255,255,.25);
  padding-bottom: 6px;
  transition: border-color .4s, letter-spacing .4s var(--tr);
}
.contact-mail:hover { border-color: #fff; letter-spacing: 2.5px; }
.contact-list { margin-top: 48px; display: flex; flex-direction: column; gap: 22px; }
.contact-list__item { display: flex; gap: 18px; align-items: center; }
.contact-list__item svg {
  width: 20px; height: 20px; fill: none; stroke: rgba(255,255,255,.7); stroke-width: 1.5;
}
.contact-list__item a, .contact-list__item span {
  font-size: 15px; font-weight: 300; letter-spacing: 1.5px; color: rgba(255,255,255,.75);
  transition: color .3s;
}
.contact-list__item a:hover { color: #fff; }
.contact-side__label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.contact-socials { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
.contact-socials a {
  font-size: 16px; font-weight: 300; letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  width: fit-content; position: relative;
  transition: color .3s, padding-left .35s var(--tr);
}
.contact-socials a:hover { color: #fff; padding-left: 14px; }

/* ----- Project page ----- */
.project-hero {
  position: relative;
  height: 58vh; min-height: 380px;
  margin-bottom: 60px;
  overflow: hidden;
}
.project-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.8) saturate(.9);
  transform: scale(1.06);
  transition: transform 8s linear;
}
body.is-loaded .project-hero img { transform: scale(1); }
.project-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark) 2%, rgba(19,28,40,.35) 40%, rgba(19,28,40,.55));
}
.project-hero__inner {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  padding: 0 48px;
}

.project-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.project-meta__label {
  display: block;
  font-size: 11px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
}
.project-meta__value { font-size: 16px; font-weight: 400; letter-spacing: 1px; }
.project-meta__value a { border-bottom: 1px solid rgba(255,255,255,.3); transition: border-color .3s; }
.project-meta__value a:hover { border-color: #fff; }

.project-desc {
  max-width: 640px;
  margin-bottom: 72px;
}
.project-desc p {
  font-size: 15px; font-weight: 300; letter-spacing: .8px; line-height: 1.9;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}
.project-desc p:first-child {
  font-size: 19px; font-weight: 400; color: rgba(255,255,255,.9);
}

.project-shot {
  margin-bottom: 72px;
  overflow: hidden;
}
.project-shot img {
  width: 100%; display: block;
  filter: saturate(.9);
  transition: transform 1.2s var(--tr);
}
.project-shot:hover img { transform: scale(1.03); }

/* next project */
.next-project {
  display: block;
  border-top: 1px solid var(--line);
  padding: 64px 0 20px;
  text-align: left;
}
.next-project__label {
  display: block;
  font-size: 11px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.next-project__title {
  font-size: clamp(40px, 6.5vw, 90px);
  font-weight: 600; line-height: 1; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 28px;
  transition: letter-spacing .5s var(--tr);
}
.next-project:hover .next-project__title { letter-spacing: 4px; }
.next-project__title svg {
  width: .55em; height: .55em; flex: none;
  fill: none; stroke: rgba(255,255,255,.8); stroke-width: 2;
  transition: transform .45s var(--tr);
}
.next-project:hover .next-project__title svg { transform: translateX(.25em); }

/* clickable hero slider title on home */
.slide__title { cursor: pointer; }

@media (max-width: 900px) {
  .project-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .project-hero__inner { padding: 0 28px; }
  .project-hero { height: 44vh; }
}

/* ----- Inner footer ----- */
.inner-footer {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  padding: 0 48px 44px;
  display: flex; justify-content: space-between;
  font-size: 12px; font-weight: 300; letter-spacing: 2px;
  color: rgba(255,255,255,.4);
}
.inner-footer a { transition: color .3s; }
.inner-footer a:hover { color: #fff; }
.inner-footer__links { display: flex; gap: 32px; }

@media (max-width: 900px) {
  .works-grid, .quotes, .contacts-grid { grid-template-columns: 1fr; }
  .contacts-grid { gap: 56px; }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row__desc { grid-column: 2; }
  .award-row { grid-template-columns: 80px 1fr; }
  .award-row__proj, .award-row__kind { grid-column: 2; text-align: left; }
  .inner-main { padding: 140px 28px 60px; }
  .inner-footer { padding: 0 28px 32px; }
  .inner-orbits { display: none; }
}

/* ---------- Still mode (?still — skip entrance animations) ---------- */
body.no-anim .anim,
body.no-anim .slide__title .ch,
body.no-anim .hero__bg-item,
body.no-anim .menu-overlay,
body.no-anim .menu-overlay__link,
body.no-anim .reveal { transition: none !important; }
body.no-anim .reveal { opacity: 1; transform: none; }
body.no-anim .preloader { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav { gap: 32px; }
  .arrows { gap: 60px; }
  .orbits { left: 60%; }
}
@media (max-width: 760px) {
  .header { padding: 24px 24px 0; }
  .nav { display: none; }
  .logo { margin-right: auto; }
  .rail { display: none; }
  .slide { left: 8%; right: 8%; }
  .slide__title { white-space: normal; }
  .slide__meta { gap: 8%; }
  .slide__col--counter { display: none; }
  .bullets { left: -4%; }
  .arrows { right: 0; bottom: 12%; gap: 40px; }
  .footer { left: 8%; right: 8%; padding-bottom: 24px; }
  .footer__link:first-child { margin-left: 0; }
  .orbits { left: 50%; }
}

/* ---------- Design Devils logo image ---------- */
.logo__img {
  height: 56px; width: auto; display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
  transition: transform .4s var(--tr);
}
.logo:hover .logo__img { transform: scale(1.08); }
.preloader__logo img { width: 140px; height: auto; display: block; }
@media (max-width: 760px) {
  .logo__img { height: 44px; }
}

/* ---------- Slide-1 background video + sound toggle ---------- */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sound-btn {
  position: absolute; z-index: 12;
  left: 96px; bottom: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, opacity .6s var(--tr), transform .9s var(--tr);
}
.sound-btn:hover { border-color: #fff; }
.sound-btn svg { width: 20px; height: 20px; display: block; }
.sound-btn__body { fill: #fff; }
.sound-btn__wave, .sound-btn__cross path {
  fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round;
  transition: opacity .25s;
}
.sound-btn__cross { opacity: 0; }
.sound-btn.is-muted .sound-btn__cross { opacity: 1; }
.sound-btn.is-muted .sound-btn__wave { opacity: 0; }
.sound-btn.is-hidden { opacity: 0 !important; pointer-events: none; }
@media (max-width: 760px) {
  .sound-btn { left: 24px; bottom: 96px; }
}
