:root {
  --white: #f6f8ff;
  --muted-white: rgba(246, 248, 255, 0.84);
  --accent: #ff9a88;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: #06101d;
  color: var(--white);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 64px;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("assets/postproduction-studio-bg.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 50% 42%, rgba(22, 51, 84, 0.04) 0%, rgba(7, 19, 35, 0.42) 44%, rgba(4, 11, 23, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 18, 32, 0.20) 0%, rgba(8, 20, 36, 0.32) 44%, rgba(8, 20, 36, 0.80) 100%);
}

.hero::after {
  display: none;
}

.hero__blur {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -2;
  pointer-events: none;
}

.hero__blur--bottom {
  display: none;
}

.hero__content {
  position: relative;
  width: min(1080px, 100%);
  margin-top: 30px;
  text-align: center;
}

.hero__title-row {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  align-items: center;
  gap: 40px;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-wrap: balance;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.25);
}

.hero p {
  width: min(720px, 100%);
  margin: 48px auto 0;
  color: var(--muted-white);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.hero__bracket {
  position: relative;
  width: 74px;
  height: 210px;
  opacity: 0.96;
  filter: drop-shadow(0 0 18px rgba(255, 154, 136, 0.24));
}

.hero__bracket::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid var(--accent);
  border-top: 0;
  border-bottom: 0;
}

.hero__bracket--left::before {
  left: 24px;
  border-right: 0;
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
  transform: skewY(-4deg);
}

.hero__bracket--right::before {
  right: 24px;
  border-left: 0;
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  transform: skewY(4deg);
}

.hero__bottom-text {
  position: absolute;
  bottom: 56px;
  z-index: 2;
  color: rgba(246, 249, 255, 0.88);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.hero__bottom-text--left {
  left: 64px;
  text-align: left;
}

.hero__bottom-text--right {
  right: 64px;
  text-align: right;
}

@media (max-width: 980px) {
  .hero {
    padding: 76px 28px 92px;
  }

  .hero__title-row {
    grid-template-columns: 52px 1fr 52px;
    gap: 16px;
  }

  .hero__bracket {
    width: 44px;
    height: 170px;
  }

  .hero__bracket::before {
    border-width: 3px;
  }

  .hero__bracket--left::before {
    left: 12px;
  }

  .hero__bracket--right::before {
    right: 12px;
  }

  .hero p {
    margin-top: 38px;
  }

  .hero__bottom-text {
    bottom: 38px;
  }

  .hero__bottom-text--left {
    left: 28px;
  }

  .hero__bottom-text--right {
    right: 28px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    padding: 54px 20px 120px;
  }

  .hero__background {
    background-position: 58% center;
  }

  .hero__content {
    width: 100%;
    margin-top: -24px;
  }

  .hero__title-row {
    grid-template-columns: 1fr;
  }

  .hero__bracket {
    display: none;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 60px);
    line-height: 1.02;
  }

  .hero p {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.22;
  }

  .hero__bottom-text {
    max-width: 46%;
    bottom: 34px;
    font-size: 14px;
    line-height: 1.18;
  }

  .hero__bottom-text--left {
    left: 20px;
  }

  .hero__bottom-text--right {
    right: 20px;
  }

  .hero::after {
    height: 58vh;
    bottom: -26vh;
  }
}


/* ===== ABOUT / NUMBERS BLOCK ===== */

.about {
  position: relative;
  min-height: 100vh;
  margin-top: 0;
  padding: 118px 64px 92px;
  overflow: hidden;
  background: linear-gradient(180deg, #07172d 0%, #050915 28%, #030710 100%);
  color: var(--white);
  isolation: isolate;
}

.about::before {
  display: none;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 12%, rgba(80, 148, 235, 0.18) 0%, rgba(4, 7, 16, 0) 30%),
    radial-gradient(circle at 88% 18%, rgba(72, 135, 218, 0.16) 0%, rgba(4, 7, 16, 0) 32%),
    linear-gradient(180deg, rgba(4, 7, 16, 0.08) 0%, rgba(4, 7, 16, 0.92) 62%, #030710 100%);
}

.about__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.about__top {
  display: grid;
  grid-template-columns: 1.15fr 0.62fr 0.62fr;
  gap: clamp(48px, 6vw, 120px);
  align-items: start;
  padding-bottom: 70px;
}

.about__eyebrow {
  margin-bottom: 24px;
  color: rgba(246, 248, 255, 0.34);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

.about h2 {
  max-width: 570px;
  margin: 0;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(38px, 4.45vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.about__link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-top: 44px;
  color: rgba(246, 248, 255, 0.32);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  transition: color 0.25s ease;
}

.about__link span {
  color: rgba(75, 151, 240, 0.95);
  font-size: 18px;
  transform: translateY(-1px);
}

.about__link:hover {
  color: rgba(246, 248, 255, 0.82);
}

.about__text {
  color: rgba(246, 248, 255, 0.64);
  font-size: clamp(14px, 1.18vw, 19px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.about__text p {
  margin: 0;
}

.about__text p + p {
  margin-top: 18px;
}

.stats {
  border-top: 1px solid rgba(246, 248, 255, 0.18);
}

.stats__row {
  min-height: 156px;
  display: grid;
  grid-template-columns: 1.18fr 0.55fr 0.13fr 0.52fr;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(246, 248, 255, 0.18);
}

.stats__icon {
  position: relative;
  width: 72px;
  height: 72px;
  opacity: 0.75;
}

.stats__icon span {
  position: absolute;
  display: block;
  border: 2px solid rgba(238, 150, 138, 0.72);
}

.stats__icon--rings span {
  width: 50px;
  height: 64px;
  border-radius: 50%;
  top: 4px;
}

.stats__icon--rings span:nth-child(1) {
  left: 0;
  border-color: rgba(255, 255, 255, 0.42);
}

.stats__icon--rings span:nth-child(2) {
  left: 20px;
}

.stats__icon--stack span {
  width: 64px;
  height: 18px;
  border-radius: 50%;
  left: 0;
}

.stats__icon--stack span:nth-child(1) {
  top: 9px;
}

.stats__icon--stack span:nth-child(2) {
  top: 25px;
  border-color: rgba(255, 255, 255, 0.42);
}

.stats__icon--stack span:nth-child(3) {
  top: 41px;
}

.stats__icon--atom span {
  width: 72px;
  height: 28px;
  border-radius: 50%;
  left: 0;
  top: 22px;
  transform-origin: center;
}

.stats__icon--atom span:nth-child(1) {
  transform: rotate(0deg);
  border-color: rgba(255, 255, 255, 0.42);
}

.stats__icon--atom span:nth-child(2) {
  transform: rotate(60deg);
}

.stats__icon--atom span:nth-child(3) {
  transform: rotate(-60deg);
}

.stats__icon--dot span {
  width: 62px;
  height: 62px;
  left: 5px;
  top: 5px;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.42);
}

.stats__number {
  color: rgba(246, 248, 255, 0.78);
  font-size: clamp(74px, 6.7vw, 122px);
  line-height: 0.82;
  font-weight: 500;
  letter-spacing: -0.075em;
  background: linear-gradient(180deg, #ffffff 0%, #cbd1dc 48%, #777b86 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__number--accent {
  background: linear-gradient(180deg, #e99c91 0%, #c98680 48%, #7f7d86 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__unit {
  margin-left: -58px;
  align-self: end;
  padding-bottom: 34px;
  color: rgba(232, 178, 169, 0.86);
  font-size: clamp(18px, 1.75vw, 28px);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.stats__label {
  color: rgba(246, 248, 255, 0.82);
  font-size: clamp(17px, 1.42vw, 24px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.05em;
}

@media (max-width: 980px) {
  .about {
    padding: 92px 28px 76px;
  }

  .about__top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 28px;
  }

  .about h2 {
    max-width: 760px;
  }

  .about__link {
    margin-top: 28px;
  }

  .about__text {
    max-width: 760px;
  }

  .stats__row {
    grid-template-columns: 100px 1fr auto;
    min-height: 134px;
  }

  .stats__icon {
    grid-row: span 2;
  }

  .stats__label {
    grid-column: 2 / 4;
    margin-top: -18px;
  }

  .stats__unit {
    padding-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .about {
    margin-top: 0;
    padding: 78px 20px 64px;
  }

  .about h2 {
    font-size: clamp(30px, 9.2vw, 44px);
  }

  .about__text {
    font-size: 13px;
    line-height: 1.28;
  }

  .stats__row {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 34px 0;
  }

  .stats__icon {
    width: 58px;
    height: 58px;
    grid-row: auto;
  }

  .stats__number {
    font-size: clamp(68px, 20vw, 94px);
  }

  .stats__unit {
    padding-bottom: 0;
    align-self: start;
  }

  .stats__label {
    grid-column: auto;
    margin-top: 0;
    font-size: 19px;
  }
}


.stats__icon-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  opacity: 0.78;
  filter: drop-shadow(0 0 14px rgba(238, 150, 138, 0.10));
}

@media (max-width: 640px) {
  .stats__icon-img {
    width: 58px;
    height: 58px;
  }
}












/* ===== STUDIO SPACE BLOCK ===== */

.studio-space {
  position: relative;
  padding: 92px 64px 104px;
  overflow: hidden;
  background: #030710;
  color: var(--white);
}

.studio-space::before {
  display: none;
}

.studio-space__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.studio-space__head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  column-gap: clamp(48px, 8vw, 150px);
  row-gap: 14px;
  align-items: end;
  margin-bottom: 70px;
}

.studio-space__eyebrow {
  grid-column: 1 / 3;
  color: rgba(246, 248, 255, 0.34);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.studio-space h2 {
  max-width: 720px;
  margin: 0;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(38px, 4.45vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.studio-space__head p {
  max-width: 610px;
  margin: 0;
  color: rgba(246, 248, 255, 0.62);
  font-size: clamp(14px, 1.18vw, 19px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.studio-space__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.studio-space__image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 248, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.studio-space__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 7, 16, 0) 0%, rgba(4, 7, 16, 0.18) 100%),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 30%);
}

.studio-space__image--large,
.studio-space__image--small {
  min-height: 560px;
  border-radius: 38px;
}

.studio-space__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
}

.studio-space__workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 8vw, 140px);
  align-items: start;
  margin-top: 46px;
  padding-top: 54px;
  border-top: 1px solid rgba(246, 248, 255, 0.16);
}

.studio-space__text {
  max-width: 660px;
  color: rgba(246, 248, 255, 0.68);
  font-size: clamp(14px, 1.18vw, 19px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.studio-space__text p {
  margin: 0;
}

.studio-space__text p + p {
  margin-top: 18px;
}

.studio-space__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  align-content: flex-start;
  text-align: right;
}

.studio-space__chips span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(246, 248, 255, 0.16);
  border-radius: 999px;
  color: rgba(246, 248, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

@media (max-width: 980px) {
  .studio-space {
    padding: 78px 28px 84px;
  }

  .studio-space__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

  .studio-space__eyebrow {
    grid-column: auto;
  }

  .studio-space__gallery {
    grid-template-columns: 1fr;
  }

  .studio-space__image--large,
  .studio-space__image--small {
    min-height: 420px;
    border-radius: 30px;
  }

  .studio-space__workflow {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .studio-space__chips {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .studio-space {
    padding: 68px 20px 68px;
  }

  .studio-space h2 {
    font-size: clamp(30px, 9.2vw, 44px);
  }

  .studio-space__head p,
  .studio-space__text {
    font-size: 13px;
    line-height: 1.28;
  }

  .studio-space__image--large,
  .studio-space__image--small {
    min-height: 310px;
    border-radius: 24px;
  }

  .studio-space__chips span {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 12px;
  }
}


.stats__number {
  justify-self: start;
}

.stats__unit {
  justify-self: start;
}

.stats__label {
  justify-self: start;
}


/* ===== SERVICES BLOCK ===== */

.services {
  position: relative;
  padding: 72px 64px 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 115%, rgba(53, 122, 255, 0.46) 0%, rgba(53, 122, 255, 0.00) 26%),
    radial-gradient(circle at 48% 120%, rgba(71, 201, 255, 0.32) 0%, rgba(71, 201, 255, 0.00) 24%),
    radial-gradient(circle at 82% 112%, rgba(47, 84, 255, 0.34) 0%, rgba(47, 84, 255, 0.00) 24%),
    linear-gradient(180deg, #030710 0%, #030710 42%, #071327 72%, #112c53 100%);
  color: var(--white);
  isolation: isolate;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 20%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 58%, rgba(120,190,255,0.05) 100%);
}

.services__inner {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  z-index: 1;
}

.services__head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 14px;
  align-items: end;
  margin-bottom: 52px;
}

.services__eyebrow {
  grid-column: 1 / 3;
  color: rgba(246, 248, 255, 0.34);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

.services h2 {
  margin: 0;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(38px, 4.45vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.services__head p {
  max-width: 720px;
  margin: 0;
  color: rgba(246, 248, 255, 0.62);
  font-size: clamp(14px, 1.18vw, 19px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 28px 30px;
  border: 1px solid rgba(246, 248, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.022) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.service-card__top {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 24px;
}

.service-card__index {
  color: rgba(232, 178, 169, 0.82);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0;
  color: rgba(246, 248, 255, 0.94);
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.service-card__content {
  color: rgba(246, 248, 255, 0.68);
  font-size: clamp(14px, 1.06vw, 17px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-card__content p {
  margin: 0;
}

.service-card__content p + p {
  margin-top: 14px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: rgba(246, 248, 255, 0.88);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.service-card__link-arrow {
  color: rgba(75, 151, 240, 0.95);
  font-size: 18px;
  transform: translateY(-1px);
  text-decoration: none;
}

.service-card__link:hover .service-card__link-text {
  text-decoration-color: rgba(246, 248, 255, 0.82);
}

@media (max-width: 980px) {
  .services {
    padding: 62px 28px 110px;
  }

  .services__head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .services__eyebrow {
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  .services {
    padding: 54px 20px 88px;
  }

  .services h2 {
    font-size: clamp(30px, 9.2vw, 44px);
  }

  .services__head p,
  .service-card__content {
    font-size: 13px;
    line-height: 1.28;
  }

  .service-card {
    padding: 22px 18px 22px;
    border-radius: 24px;
  }

  .service-card__top {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 26px;
  }
}


.service-card__link-text {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(246, 248, 255, 0.34);
}


/* ===== PROJECT PATH / TIMELINE BLOCK ===== */

.timeline-process {
  position: relative;
  padding: 132px 64px 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 100%, rgba(77, 154, 255, 0.14) 0%, rgba(77, 154, 255, 0) 28%),
    radial-gradient(circle at 82% 100%, rgba(255, 154, 136, 0.12) 0%, rgba(255, 154, 136, 0) 24%),
    linear-gradient(180deg, #fbfdff 0%, #f8fbff 58%, #eef4ff 100%);
  color: #071120;
}

.timeline-process__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.timeline-process__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  column-gap: clamp(40px, 8vw, 130px);
  row-gap: 14px;
  align-items: end;
  margin-bottom: 58px;
}

.timeline-process__head .timeline-process__eyebrow {
  grid-column: 1 / 3;
}

.timeline-process__eyebrow {
  color: rgba(7, 17, 32, 0.34);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
}

.timeline-process h2 {
  margin: 0;
  color: rgba(7, 17, 32, 0.96);
  font-size: clamp(38px, 4.45vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.timeline-process__head p {
  max-width: 620px;
  margin: 0;
  color: rgba(7, 17, 32, 0.62);
  font-size: clamp(14px, 1.18vw, 19px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.timeline-process__list {
  position: relative;
  padding-left: 158px;
  padding-bottom: 24px;
}

.timeline-process__line,
.timeline-process__progress {
  position: absolute;
  left: 57px;
  width: 2px;
  border-radius: 999px;
}

.timeline-process__line {
  top: 0;
  bottom: 0;
  background: rgba(7, 17, 32, 0.10);
}

.timeline-process__progress {
  top: 0;
  height: 0;
  background: linear-gradient(180deg, #2f79ff 0%, #3ab6ff 52%, #ff9a88 100%);
  box-shadow: 0 0 24px rgba(71, 150, 255, 0.28);
  transition: height 0.18s ease-out;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.timeline-step + .timeline-step {
  margin-top: 34px;
}

.timeline-step__marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.timeline-step__dot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(7, 17, 32, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: rgba(7, 17, 32, 0.52);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow: 0 8px 24px rgba(7, 17, 32, 0.06);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.timeline-step__card {
  position: relative;
  padding: 28px 34px 32px;
  border: 1px solid rgba(7, 17, 32, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 251, 255, 0.98) 100%);
  box-shadow: 0 22px 64px rgba(12, 24, 40, 0.08);
  opacity: 0.44;
  transform: translateY(36px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.timeline-step__eyebrow {
  margin-bottom: 14px;
  color: rgba(47, 121, 255, 0.86);
  font-size: 13px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.timeline-step h3 {
  margin: 0 0 18px;
  color: rgba(7, 17, 32, 0.94);
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.timeline-step__card p {
  margin: 0;
  color: rgba(7, 17, 32, 0.68);
  font-size: clamp(14px, 1.06vw, 17px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.timeline-step__card p + p {
  margin-top: 14px;
}

.timeline-step.is-active .timeline-step__card {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 28px 80px rgba(22, 42, 70, 0.12);
  border-color: rgba(47, 121, 255, 0.10);
}

.timeline-step.is-active .timeline-step__dot {
  transform: scale(1.05);
  background: linear-gradient(180deg, #0d1e38 0%, #14284a 100%);
  color: rgba(246, 248, 255, 0.96);
  border-color: rgba(47, 121, 255, 0.22);
  box-shadow: 0 14px 38px rgba(47, 121, 255, 0.18);
}

.timeline-step.is-active .timeline-step__dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(47, 121, 255, 0.22);
}

@media (max-width: 980px) {
  .timeline-process {
    padding: 108px 28px 92px;
  }

  .timeline-process__head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
  }

  .timeline-process__head .timeline-process__eyebrow {
    grid-column: auto;
  }

  .timeline-process__list {
    padding-left: 112px;
    padding-bottom: 24px;
  }

  .timeline-process__line,
  .timeline-process__progress {
    left: 43px;
  }

  .timeline-step {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .timeline-step__dot {
    width: 54px;
    height: 54px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .timeline-process {
    padding: 86px 20px 72px;
  }

  .timeline-process h2 {
    font-size: clamp(30px, 9.2vw, 44px);
  }

  .timeline-process__head p,
  .timeline-step__card p {
    font-size: 13px;
    line-height: 1.28;
  }

  .timeline-process__list {
    padding-left: 0;
    padding-bottom: 36px;
  }

  .timeline-process__line,
  .timeline-process__progress {
    left: 27px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-step + .timeline-step {
    margin-top: 24px;
  }

  .timeline-step__marker {
    justify-content: flex-start;
    padding-top: 0;
    margin-bottom: 12px;
  }

  .timeline-step__dot {
    width: 54px;
    height: 54px;
  }

  .timeline-step__card {
    margin-left: 70px;
    padding: 22px 18px 24px;
    border-radius: 24px;
    opacity: 1;
    transform: none;
  }

  .timeline-step h3 {
    font-size: 25px;
    margin-bottom: 14px;
  }
}


/* ===== PROJECTS SHOWCASE BLOCK ===== */

.projects-showcase {
  position: relative;
  padding: 124px 64px 132px;
  background:
    radial-gradient(circle at 18% 18%, rgba(74, 140, 245, 0.20) 0%, rgba(74, 140, 245, 0) 34%),
    radial-gradient(circle at 78% 20%, rgba(65, 121, 228, 0.15) 0%, rgba(65, 121, 228, 0) 30%),
    radial-gradient(circle at 50% 100%, rgba(56, 108, 210, 0.12) 0%, rgba(56, 108, 210, 0) 36%),
    linear-gradient(180deg, #12264a 0%, #0b1a37 18%, #081329 42%, #050d1c 68%, #030711 100%);
  color: var(--white);
  overflow: hidden;
}

.projects-showcase__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.projects-showcase__head {
  margin-bottom: 58px;
}

.projects-showcase__eyebrow {
  margin-bottom: 24px;
  color: rgba(246, 248, 255, 0.30);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

.projects-showcase__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.projects-showcase h2 {
  max-width: 920px;
  margin: 0;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.projects-showcase__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 16px 22px;
  border: 1px solid rgba(246, 248, 255, 0.14);
  border-radius: 999px;
  background: rgba(18, 31, 55, 0.78);
  color: rgba(246, 248, 255, 0.92);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.projects-showcase__button span {
  color: rgba(94, 162, 255, 0.95);
  font-size: 18px;
}

.projects-showcase__button:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 162, 255, 0.38);
  background: rgba(22, 37, 66, 0.9);
}

.projects-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(246, 248, 255, 0.10);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 23, 41, 0.88) 0%, rgba(9, 16, 30, 0.96) 100%);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.project-card__image {
  margin: 0;
  aspect-ratio: 0.88 / 1;
  overflow: hidden;
  background: #0b1322;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.03);
}

.project-card__body {
  padding: 22px 24px 26px;
}

.project-card__caption {
  margin-bottom: 12px;
  color: rgba(246, 248, 255, 0.38);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

@media (max-width: 1100px) {
  .projects-showcase {
    padding: 110px 28px 120px;
  }

  .projects-showcase__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-showcase__grid {
    grid-template-columns: 1fr;
  }

  .project-card__image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .projects-showcase {
    padding: 88px 20px 96px;
  }

  .projects-showcase__head {
    margin-bottom: 42px;
  }

  .projects-showcase__button {
    padding: 14px 18px;
    font-size: 14px;
  }

  .project-card {
    border-radius: 24px;
  }

  .project-card__body {
    padding: 18px 18px 22px;
  }

  .project-card h3 {
    font-size: 24px;
  }
}


/* ===== WOW NAVIGATION ===== */

@keyframes nav-reveal {
  from {
    opacity: 0;
    transform: translate(-50%, -14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

.site-nav {
  position: fixed;
  top: 5px;
  left: 50%;
  width: min(1440px, calc(100% - 128px));
  z-index: 1000;
  opacity: 0;
  animation: nav-reveal 0.85s cubic-bezier(.2,.72,.2,1) 0.08s forwards;
}

.site-nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 3px 10px 3px 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 100%),
    rgba(7, 16, 29, 0.46);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  overflow: hidden;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.site-nav__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,0.10) 100%);
  opacity: 0.55;
  pointer-events: none;
}

.site-nav.is-scrolled .site-nav__inner {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.site-nav.is-light .site-nav__inner {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(245,248,255,0.74) 100%),
    rgba(255, 255, 255, 0.86);
  border-color: rgba(7, 16, 29, 0.08);
  box-shadow: 0 20px 60px rgba(7, 16, 29, 0.12);
}

.site-nav__brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding-right: 16px;
  text-decoration: none;
}

.site-nav__logo-stack {
  position: relative;
  display: block;
  width: 132px;
  height: 26px;
}

.site-nav__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.site-nav__logo--dark {
  opacity: 0;
}

.site-nav__logo--light {
  opacity: 1;
}

.site-nav.is-light .site-nav__logo--dark {
  opacity: 1;
}

.site-nav.is-light .site-nav__logo--light {
  opacity: 0;
}

.site-nav__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(246, 248, 255, 0.92);
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.site-nav.is-light .site-nav__link {
  color: rgba(7, 16, 29, 0.84);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__item.is-open > .site-nav__link,
.site-nav__link.is-current {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  outline: none;
}

.site-nav.is-light .site-nav__link:hover,
.site-nav.is-light .site-nav__link:focus-visible,
.site-nav.is-light .site-nav__item.is-open > .site-nav__link,
.site-nav.is-light .site-nav__link.is-current {
  background: rgba(7, 16, 29, 0.055);
  box-shadow: inset 0 0 0 1px rgba(7,16,29,0.05);
}

.site-nav__link.is-current {
  color: rgba(255, 255, 255, 0.98);
  background: rgba(255,255,255,0.12);
}

.site-nav.is-light .site-nav__link.is-current {
  color: rgba(7, 16, 29, 0.96);
  background: rgba(7,16,29,0.06);
}

.site-nav__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  font-size: 12px;
  line-height: 1;
  transform: none;
  transition: transform 0.22s ease;
}

.site-nav__item.is-open .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 236px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%),
    rgba(8, 18, 31, 0.88);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.site-nav.is-light .site-nav__dropdown {
  border-color: rgba(7, 16, 29, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(245,248,255,0.84) 100%),
    rgba(255,255,255,0.9);
  box-shadow: 0 18px 55px rgba(7, 16, 29, 0.14);
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown,
.site-nav__item.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-nav__dropdown-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(246, 248, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.site-nav.is-light .site-nav__dropdown-link {
  color: rgba(7, 16, 29, 0.84);
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link.is-current {
  background: rgba(255,255,255,0.11);
  transform: translateX(3px);
}

.site-nav.is-light .site-nav__dropdown-link:hover,
.site-nav.is-light .site-nav__dropdown-link.is-current {
  background: rgba(7,16,29,0.055);
}

.site-nav__toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.site-nav__toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(246, 248, 255, 0.96);
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.site-nav__toggle span:first-child {
  top: 12px;
}

.site-nav__toggle span:last-child {
  bottom: 12px;
}

.site-nav.is-light .site-nav__toggle span {
  background: rgba(7, 16, 29, 0.96);
}

.site-nav.menu-open .site-nav__toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.site-nav.menu-open .site-nav__toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 110px 64px 100px;
  background:
    radial-gradient(circle at 18% 0%, rgba(87, 155, 255, 0.18) 0%, rgba(87, 155, 255, 0) 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 154, 136, 0.14) 0%, rgba(255, 154, 136, 0) 25%),
    linear-gradient(180deg, #04101d 0%, #071327 24%, #09172c 46%, #06101d 100%);
}

.page-shell--soft {
  background:
    radial-gradient(circle at 15% 6%, rgba(87, 155, 255, 0.22) 0%, rgba(87, 155, 255, 0) 28%),
    radial-gradient(circle at 84% 10%, rgba(255, 154, 136, 0.10) 0%, rgba(255, 154, 136, 0) 22%),
    linear-gradient(180deg, #07111e 0%, #0a172c 34%, #081221 100%);
}

.page-shell__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.page-hero {
  padding: 34px 0 24px;
}

.page-shell__eyebrow {
  margin-bottom: 20px;
  color: rgba(246, 248, 255, 0.34);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

.page-shell h1 {
  max-width: 980px;
  margin: 0;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.page-shell__lead {
  max-width: 880px;
  margin: 26px 0 0;
  color: rgba(246, 248, 255, 0.70);
  font-size: clamp(18px, 1.38vw, 22px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.page-shell__section {
  padding-top: 36px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.info-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.info-card__label {
  margin-bottom: 18px;
  color: rgba(232, 178, 169, 0.82);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card h2,
.info-card h3 {
  margin: 0 0 16px;
  color: #12161f;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.info-card p {
  margin: 0;
  color: rgba(18, 22, 31, 0.74);
  font-size: 16px;
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.info-card p + p {
  margin-top: 14px;
}

.page-note {
  margin-top: 22px;
  color: rgba(246, 248, 255, 0.52);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.page-projects {
  padding-top: 22px;
}

.page-projects .projects-showcase {
  padding: 0;
  background: transparent;
}

.page-projects .projects-showcase__head {
  margin-bottom: 38px;
}

.page-projects .projects-showcase__button {
  display: none;
}

@media (max-width: 1100px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-nav {
    width: min(1440px, calc(100% - 56px));
  }

  .site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 100%),
      rgba(7, 16, 29, 0.92);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
  }

  .site-nav.is-light .site-nav__panel {
    border-color: rgba(7,16,29,0.08);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(245,248,255,0.84) 100%),
      rgba(255,255,255,0.92);
    box-shadow: 0 18px 55px rgba(7,16,29,0.14);
  }

  .site-nav.menu-open .site-nav__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__panel .site-nav__link,
  .site-nav__panel .site-nav__link--button {
    justify-content: space-between;
    min-height: 42px;
    padding: 12px 14px;
  }

  .site-nav__item--dropdown .site-nav__dropdown {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown,
  .site-nav__item--dropdown:focus-within .site-nav__dropdown {
    display: none;
  }

  .site-nav__item.is-open .site-nav__dropdown {
    display: grid;
  }

  .page-shell {
    padding: 106px 28px 88px;
  }
}

@media (max-width: 640px) {
  .site-nav {
    width: calc(100% - 40px);
  }

  .site-nav__inner {
    min-height: 42px;
    padding: 4px 8px 4px 12px;
    border-radius: 18px;
  }

  .site-nav__logo-stack {
    width: 104px;
    height: 20px;
  }

  .page-shell {
    padding: 102px 20px 74px;
  }

  .info-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .info-card p {
    font-size: 15px;
  }
}


/* ===== NAV FIX v23 ===== */

/* Лого почти во всю высоту меню */
.site-nav__brand {
  height: 36px;
  padding-right: 18px;
}

.site-nav__logo-stack {
  width: 120px;
  height: 31px;
}

.site-nav__logo {
  object-fit: contain;
}

/* Базово меню без лишнего glass, состояние задаётся секцией */
.site-nav:not(.is-hero) .site-nav__inner {
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Первый hero-блок: оставляем красивый blur */
.site-nav.is-hero .site-nav__inner {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 100%),
    rgba(7, 16, 29, 0.46);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

/* Тёмные блоки: белое меню */
.site-nav.is-on-dark .site-nav__inner {
  background: rgba(246, 248, 255, 0.94);
  border-color: rgba(7, 16, 29, 0.07);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.10);
}

.site-nav.is-on-dark .site-nav__link,
.site-nav.is-on-dark .site-nav__dropdown-link {
  color: rgba(7, 16, 29, 0.86);
}

.site-nav.is-on-dark .site-nav__link:hover,
.site-nav.is-on-dark .site-nav__link.is-current,
.site-nav.is-on-dark .site-nav__item.is-open > .site-nav__link {
  background: rgba(7, 16, 29, 0.065);
  color: rgba(7, 16, 29, 0.98);
  box-shadow: none;
}

/* Светлые блоки: тёмное меню */
.site-nav.is-on-light .site-nav__inner {
  background: rgba(7, 16, 29, 0.94);
  border-color: rgba(7, 16, 29, 0.12);
  box-shadow: 0 14px 42px rgba(7, 16, 29, 0.14);
}

.site-nav.is-on-light .site-nav__link,
.site-nav.is-on-light .site-nav__dropdown-link {
  color: rgba(246, 248, 255, 0.92);
}

.site-nav.is-on-light .site-nav__link:hover,
.site-nav.is-on-light .site-nav__link.is-current,
.site-nav.is-on-light .site-nav__item.is-open > .site-nav__link {
  background: rgba(246, 248, 255, 0.11);
  color: rgba(246, 248, 255, 0.98);
  box-shadow: none;
}

/* Лого: на белом меню тёмное, на тёмном меню/hero — белое */
.site-nav.is-on-dark .site-nav__logo--dark {
  opacity: 1;
}

.site-nav.is-on-dark .site-nav__logo--light {
  opacity: 0;
}

.site-nav.is-on-light .site-nav__logo--dark,
.site-nav.is-hero .site-nav__logo--dark {
  opacity: 0;
}

.site-nav.is-on-light .site-nav__logo--light,
.site-nav.is-hero .site-nav__logo--light {
  opacity: 1;
}

/* Стрелка у "Услуги" ровно на уровне текста */
.site-nav__link--button {
  align-items: center;
}

.site-nav__chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  margin-top: -3px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.22s ease, margin-top 0.22s ease;
}

.site-nav__item.is-open .site-nav__chevron,
.site-nav__item:hover .site-nav__chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

/* Услуги: на десктопе только hover, без клика/focus-open */
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Выпадашка под цвет текущего меню */
.site-nav.is-on-dark .site-nav__dropdown {
  background: rgba(246, 248, 255, 0.96);
  border-color: rgba(7, 16, 29, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav.is-on-light .site-nav__dropdown {
  background: rgba(7, 16, 29, 0.96);
  border-color: rgba(246, 248, 255, 0.10);
  box-shadow: 0 18px 50px rgba(7, 16, 29, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav.is-on-dark .site-nav__dropdown-link:hover,
.site-nav.is-on-dark .site-nav__dropdown-link.is-current {
  background: rgba(7, 16, 29, 0.065);
}

.site-nav.is-on-light .site-nav__dropdown-link:hover,
.site-nav.is-on-light .site-nav__dropdown-link.is-current {
  background: rgba(246, 248, 255, 0.10);
}

/* Hero dropdown оставляем стеклянной */
.site-nav.is-hero .site-nav__dropdown {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%),
    rgba(8, 18, 31, 0.88);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.site-nav.is-hero .site-nav__dropdown-link {
  color: rgba(246, 248, 255, 0.88);
}

/* На мобилке click нужен, поэтому возвращаем открытие через is-open */
@media (max-width: 980px) {
  .site-nav__item:focus-within .site-nav__dropdown {
    display: none;
  }

  .site-nav__item.is-open .site-nav__dropdown {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__logo-stack {
    width: 104px;
    height: 27px;
  }
}


/* ===== DROPDOWN FIX v24 ===== */

/* Меню раньше обрезало выпадашку из-за overflow: hidden у внутренней плашки */
.site-nav,
.site-nav__inner,
.site-nav__panel,
.site-nav__item {
  overflow: visible;
}

/* На десктопе список услуг раскрывается именно при наведении */
@media (min-width: 981px) {
  .site-nav__item--dropdown:hover .site-nav__dropdown {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav__item--dropdown .site-nav__dropdown {
    z-index: 1002;
  }
}


/* ===== MENU HOVER + BLUR ROUND FIX v25 ===== */

/* Чтобы блюр/подложка меню не показывали прямые углы */
.site-nav__inner {
  isolation: isolate;
}

.site-nav__inner::before {
  border-radius: inherit;
}

/* Невидимый мостик между кнопкой "Услуги" и выпадающим меню:
   теперь курсор можно спокойно вести вниз и список не пропадает */
@media (min-width: 981px) {
  .site-nav__item--dropdown::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 18px;
    background: transparent;
  }

  .site-nav__item--dropdown .site-nav__dropdown {
    top: calc(100% + 8px);
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown,
  .site-nav__item--dropdown .site-nav__dropdown:hover {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}


/* ===== NAV TWEAKS v26 ===== */
.site-nav__dropdown-link {
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link.is-current,
.site-nav.is-light .site-nav__dropdown-link:hover,
.site-nav.is-light .site-nav__dropdown-link.is-current,
.site-nav.is-on-dark .site-nav__dropdown-link:hover,
.site-nav.is-on-dark .site-nav__dropdown-link.is-current,
.site-nav.is-on-light .site-nav__dropdown-link:hover,
.site-nav.is-on-light .site-nav__dropdown-link.is-current,
.site-nav.is-hero .site-nav__dropdown-link:hover,
.site-nav.is-hero .site-nav__dropdown-link.is-current {
  transform: none;
}


/* ===== NAV CONTACTS + DROPDOWN GAP FIX v27 ===== */

/* Контакты пока ведут в будущий футер */
.footer-anchor {
  display: block;
  height: 1px;
}

/* Чуть больше воздуха между меню и выпадающим списком */
@media (min-width: 981px) {
  .site-nav__item--dropdown .site-nav__dropdown {
    top: calc(100% + 12px);
  }

  .site-nav__item--dropdown::after {
    height: 22px;
  }
}


/* ===== FOOTER v31 ===== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 108px 64px 50px;
  background:
    radial-gradient(circle at 8% 100%, rgba(75, 146, 255, 0.62) 0%, rgba(75, 146, 255, 0.28) 18%, rgba(75, 146, 255, 0) 36%),
    radial-gradient(circle at 84% 102%, rgba(73, 139, 245, 0.58) 0%, rgba(73, 139, 245, 0.25) 19%, rgba(73, 139, 245, 0) 36%),
    linear-gradient(180deg, #030711 0%, #040914 46%, #071225 78%, #0c2448 100%);
  color: rgba(246, 248, 255, 0.94);
  border-top: 1px solid rgba(246, 248, 255, 0.12);
}

.site-footer::before {
  content: "Volna";
  position: absolute;
  left: 50%;
  bottom: -74px;
  transform: translateX(-50%);
  color: rgba(246, 248, 255, 0.035);
  font-size: clamp(210px, 29vw, 480px);
  line-height: 0.75;
  font-weight: 700;
  letter-spacing: 0.035em;
  pointer-events: none;
  user-select: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(121, 180, 255, 0.42) 0%, rgba(121, 180, 255, 0.16) 32%, rgba(121, 180, 255, 0) 68%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.site-footer__brand {
  display: block;
  margin-bottom: 54px;
}

.site-footer__logo {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}

.site-footer__brand p {
  margin: 0;
  color: rgba(246, 248, 255, 0.58);
  font-size: clamp(18px, 1.34vw, 22px);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(30px, 5.8vw, 96px);
  padding-top: 34px;
  border-top: 1px solid rgba(246, 248, 255, 0.14);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__label {
  margin-bottom: 24px;
  color: rgba(246, 248, 255, 0.38);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

.site-footer a,
.site-footer__col p {
  margin: 0;
  color: rgba(246, 248, 255, 0.82);
  text-decoration: none;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.045em;
  transition: color 0.24s ease, transform 0.24s ease;
}

.site-footer a + a {
  margin-top: 11px;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.98);
  transform: translateX(4px);
}

.site-footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px !important;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(246, 248, 255, 0.14);
  background: rgba(246, 248, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(246, 248, 255, 0.03);
}

.site-footer__whatsapp span {
  color: rgba(96, 164, 255, 0.98);
  font-size: 20px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 248, 255, 0.10);
  color: rgba(246, 248, 255, 0.34);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

@media (max-width: 980px) {
  .site-footer {
    padding: 88px 28px 40px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 30px;
  }

  .site-footer__brand {
    margin-bottom: 42px;
  }

  .site-footer__bottom {
    margin-top: 56px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 70px 20px 34px;
  }

  .site-footer__logo {
    width: 120px;
  }

  .site-footer a,
  .site-footer__col p {
    font-size: 17px;
  }

  .site-footer__whatsapp {
    padding: 12px 15px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 46px;
  }
}


/* ===== SERVICE PAGES CONTENT v34 ===== */
.service-page {
  overflow: hidden;
}

.service-hero {
  padding: 34px 0 44px;
}

.service-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: end;
}

.service-hero__content {
  padding-top: 12px;
}

.service-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 32vw, 520px);
  margin: 0;
  border-radius: 38px;
  border: 1px solid rgba(246, 248, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.service-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 28, 0) 42%, rgba(4, 14, 28, 0.42) 100%),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.18), transparent 30%);
  pointer-events: none;
}

.service-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.service-section {
  position: relative;
  padding-top: 58px;
}

.service-section--last {
  padding-bottom: 12px;
}

.service-section__head {
  max-width: 920px;
  margin-bottom: 52px;
}

.service-section__head h2 {
  margin: 0;
  color: rgba(246, 248, 255, 0.95);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.service-section__head p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(246, 248, 255, 0.62);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-list--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-list--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-list__item {
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.10);
}

.service-list__item span {
  display: inline-flex;
  margin-bottom: 38px;
  color: rgba(232, 178, 169, 0.84);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-list__item h3 {
  margin: 0 0 12px;
  color: #12161f;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.service-list__item p {
  margin: 0;
  color: rgba(18, 22, 31, 0.74);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.info-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rental-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
  gap: 28px;
  align-items: stretch;
}

.rental-split__main {
  min-height: 360px;
}

.service-bullets {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-bullets li {
  position: relative;
  padding-left: 22px;
  color: rgba(18, 22, 31, 0.74);
  font-size: 16px;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 178, 169, 0.86);
  transform: translateY(-50%);
}

.rental-callout {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(232, 178, 169, 0.20);
  background:
    radial-gradient(circle at 20% 12%, rgba(232, 178, 169, 0.20), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.025) 100%);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.18);
}

.rental-callout__line {
  width: 56px;
  height: 1px;
  margin-bottom: auto;
  background: rgba(232, 178, 169, 0.82);
}

.rental-callout h3 {
  max-width: 390px;
  margin: 0 0 16px;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.rental-callout p {
  margin: 0 0 28px;
  color: rgba(246, 248, 255, 0.62);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.rental-callout a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: rgba(246, 248, 255, 0.95);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.rental-callout a span {
  transition: transform 0.22s ease;
}

.rental-callout a:hover span {
  transform: translateX(4px);
}

@media (max-width: 1280px) {
  .service-list--five,
  .service-list--four,
  .info-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .service-hero__inner,
  .rental-split {
    grid-template-columns: 1fr;
  }

  .service-section__head {
    margin-bottom: 40px;
  }

  .service-hero__visual {
    min-height: 360px;
    border-radius: 30px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list__item {
    min-height: auto;
  }

  .service-list__item span {
    margin-bottom: 28px;
  }

  .info-grid--wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding-bottom: 32px;
  }

  .service-hero__visual {
    min-height: 260px;
    border-radius: 24px;
  }

  .service-section {
    padding-top: 44px;
  }

  .service-list__item,
  .rental-callout {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .rental-split__main,
  .rental-callout {
    min-height: auto;
  }
}


/* ===== BREADCRUMBS + PROJECTS CATALOG v37 ===== */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px auto 10px;
  color: rgba(246, 248, 255, 0.42);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.breadcrumbs a {
  color: rgba(246, 248, 255, 0.58);
  text-decoration: none;
  transition: color 0.22s ease;
}

.breadcrumbs a:hover {
  color: rgba(246, 248, 255, 0.94);
}

.breadcrumbs span[aria-current="page"] {
  color: rgba(246, 248, 255, 0.86);
}

.breadcrumbs__sep {
  color: rgba(232, 178, 169, 0.58);
}

.projects-showcase--catalog .projects-showcase__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.projects-showcase--catalog .project-card {
  border-color: rgba(246, 248, 255, 0.12);
  border-radius: 28px;
}

.projects-showcase--catalog .project-card__image {
  aspect-ratio: 0.82 / 1;
}

.project-card__image--soon {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(232, 178, 169, 0.22), transparent 34%),
    radial-gradient(circle at 78% 74%, rgba(94, 162, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(18, 31, 55, 0.98) 0%, rgba(8, 17, 32, 0.98) 100%);
}

.project-card__soon {
  color: rgba(246, 248, 255, 0.92);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.07em;
  text-align: center;
}

@media (max-width: 1280px) {
  .projects-showcase--catalog .projects-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .projects-showcase--catalog .projects-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-showcase--catalog .project-card__image {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 640px) {
  .breadcrumbs {
    margin-top: 8px;
    font-size: 12px;
  }

  .projects-showcase--catalog .projects-showcase__grid {
    grid-template-columns: 1fr;
  }
}


/* ===== THEME OVERRIDE v38 ===== */
:root {
  --theme-dark-1: #121212;
  --theme-dark-2: #181818;
  --theme-dark-3: #222222;
  --theme-dark-4: #2b2b2b;
  --theme-yellow-1: #f0d36a;
  --theme-yellow-2: #d8b24a;
  --theme-yellow-3: #b98e2f;
}

body {
  background: #121212;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(240, 211, 106, 0.10) 0%, rgba(18, 18, 18, 0.34) 44%, rgba(16, 16, 16, 0.76) 100%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.28) 0%, rgba(20, 20, 20, 0.46) 44%, rgba(16, 16, 16, 0.82) 100%);
}

.about {
  background: linear-gradient(180deg, #181818 0%, #141414 28%, #101010 100%);
}

.about::after {
  background:
    radial-gradient(circle at 10% 12%, rgba(240, 211, 106, 0.20) 0%, rgba(16, 16, 16, 0) 30%),
    radial-gradient(circle at 88% 18%, rgba(216, 178, 74, 0.18) 0%, rgba(16, 16, 16, 0) 32%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.10) 0%, rgba(16, 16, 16, 0.92) 62%, #101010 100%);
}

.studio-space {
  background: #111111;
}

.services {
  background:
    radial-gradient(circle at 15% 115%, rgba(240, 211, 106, 0.30) 0%, rgba(240, 211, 106, 0.00) 26%),
    radial-gradient(circle at 48% 120%, rgba(255, 231, 155, 0.22) 0%, rgba(255, 231, 155, 0.00) 24%),
    radial-gradient(circle at 82% 112%, rgba(216, 178, 74, 0.24) 0%, rgba(216, 178, 74, 0.00) 24%),
    linear-gradient(180deg, #101010 0%, #111111 42%, #1b1b1b 72%, #2a2a2a 100%);
}

.services::after {
  background:
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 20%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 58%, rgba(240,211,106,0.08) 100%);
}

.timeline-process {
  background:
    radial-gradient(circle at 16% 100%, rgba(240, 211, 106, 0.14) 0%, rgba(240, 211, 106, 0) 28%),
    radial-gradient(circle at 82% 100%, rgba(216, 178, 74, 0.12) 0%, rgba(216, 178, 74, 0) 24%),
    linear-gradient(180deg, #fffdfa 0%, #fcfaf1 58%, #f6efdb 100%);
}

.timeline-process__progress {
  background: linear-gradient(180deg, #c79d3d 0%, #f0d36a 52%, #fff1af 100%);
  box-shadow: 0 0 24px rgba(216, 178, 74, 0.28);
}

.timeline-step__eyebrow {
  color: rgba(191, 144, 37, 0.92);
}

.timeline-step.is-active .timeline-step__card {
  border-color: rgba(216, 178, 74, 0.18);
}

.timeline-step.is-active .timeline-step__dot {
  background: linear-gradient(180deg, #2b2619 0%, #3a321f 100%);
  border-color: rgba(216, 178, 74, 0.28);
  box-shadow: 0 14px 38px rgba(216, 178, 74, 0.18);
}

.projects-showcase {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 211, 106, 0.18) 0%, rgba(240, 211, 106, 0) 34%),
    radial-gradient(circle at 78% 20%, rgba(216, 178, 74, 0.14) 0%, rgba(216, 178, 74, 0) 30%),
    radial-gradient(circle at 50% 100%, rgba(191, 144, 37, 0.10) 0%, rgba(191, 144, 37, 0) 36%),
    linear-gradient(180deg, #2a2a2a 0%, #232323 18%, #1b1b1b 42%, #151515 68%, #111111 100%);
}

.project-card {
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.94) 0%, rgba(23, 23, 23, 0.98) 100%);
}

.project-card__image {
  background: #1b1b1b;
}

.page-shell {
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 211, 106, 0.16) 0%, rgba(240, 211, 106, 0) 30%),
    radial-gradient(circle at 82% 12%, rgba(216, 178, 74, 0.12) 0%, rgba(216, 178, 74, 0) 25%),
    linear-gradient(180deg, #141414 0%, #1a1a1a 24%, #1f1f1f 46%, #151515 100%);
}

.page-shell--soft {
  background:
    radial-gradient(circle at 15% 6%, rgba(240, 211, 106, 0.18) 0%, rgba(240, 211, 106, 0) 28%),
    radial-gradient(circle at 84% 10%, rgba(216, 178, 74, 0.10) 0%, rgba(216, 178, 74, 0) 22%),
    linear-gradient(180deg, #161616 0%, #1d1d1d 34%, #141414 100%);
}

.site-nav__inner,
.site-nav.is-hero .site-nav__inner {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 100%),
    rgba(24, 24, 24, 0.58);
}

.site-nav__dropdown,
.site-nav__panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%),
    rgba(22, 22, 22, 0.92);
}

.about__link span,
.service-card__link-arrow,
.projects-showcase__button span,
.site-footer__whatsapp span {
  color: rgba(240, 211, 106, 0.98);
}

.site-footer {
  background:
    radial-gradient(circle at 8% 100%, rgba(240, 211, 106, 0.36) 0%, rgba(240, 211, 106, 0.16) 18%, rgba(240, 211, 106, 0) 36%),
    radial-gradient(circle at 84% 102%, rgba(216, 178, 74, 0.32) 0%, rgba(216, 178, 74, 0.14) 19%, rgba(216, 178, 74, 0) 36%),
    linear-gradient(180deg, #111111 0%, #161616 46%, #1e1e1e 78%, #272727 100%);
}

.site-footer::after {
  background: radial-gradient(ellipse at 50% 100%, rgba(240, 211, 106, 0.30) 0%, rgba(240, 211, 106, 0.12) 32%, rgba(240, 211, 106, 0) 68%);
}

.breadcrumbs__sep,
.projects-showcase__button:hover,
.service-card__index,
.info-card__label,
.service-list__item span,
.rental-callout__line,
.service-bullets li::before,
.project-card__soon {
  color: rgba(216, 178, 74, 0.88);
}

.projects-showcase__button:hover {
  border-color: rgba(240, 211, 106, 0.38);
  background: rgba(50, 42, 22, 0.90);
}

.page-projects .projects-showcase__head {
  display: none;
}

.page-projects {
  padding-top: 0;
}

.project-card__image--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 211, 106, 0.20) 0%, rgba(240, 211, 106, 0) 32%),
    linear-gradient(180deg, #2a2a2a 0%, #1c1c1c 100%);
}

.project-card__soon {
  color: rgba(255, 244, 197, 0.96);
}


/* ===== THEME + NAV FIX v39 ===== */
:root {
  --theme-yellow-1: #fff45a;
  --theme-yellow-2: #f2e44a;
  --theme-yellow-3: #ddd22f;
  --theme-yellow-4: #fff98a;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 244, 90, 0.14) 0%, rgba(18, 18, 18, 0.36) 44%, rgba(16, 16, 16, 0.80) 100%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.24) 0%, rgba(20, 20, 20, 0.46) 44%, rgba(16, 16, 16, 0.84) 100%);
}

.about::after {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 244, 90, 0.24) 0%, rgba(16, 16, 16, 0) 30%),
    radial-gradient(circle at 88% 18%, rgba(242, 228, 74, 0.20) 0%, rgba(16, 16, 16, 0) 32%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.10) 0%, rgba(16, 16, 16, 0.92) 62%, #101010 100%);
}

.services {
  background:
    radial-gradient(circle at 15% 115%, rgba(255, 244, 90, 0.36) 0%, rgba(255, 244, 90, 0.00) 26%),
    radial-gradient(circle at 48% 120%, rgba(255, 249, 138, 0.28) 0%, rgba(255, 249, 138, 0.00) 24%),
    radial-gradient(circle at 82% 112%, rgba(242, 228, 74, 0.26) 0%, rgba(242, 228, 74, 0.00) 24%),
    linear-gradient(180deg, #101010 0%, #111111 42%, #1c1c1c 72%, #2a2a2a 100%);
}

.services::after {
  background:
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 20%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 58%, rgba(255,244,90,0.12) 100%);
}

.timeline-process {
  background:
    radial-gradient(circle at 16% 100%, rgba(255, 244, 90, 0.18) 0%, rgba(255, 244, 90, 0) 28%),
    radial-gradient(circle at 82% 100%, rgba(242, 228, 74, 0.14) 0%, rgba(242, 228, 74, 0) 24%),
    linear-gradient(180deg, #fffef5 0%, #fffbe8 58%, #fff5c9 100%);
}

.timeline-process__progress {
  background: linear-gradient(180deg, #d7cb2b 0%, #f2e44a 52%, #fff98a 100%);
  box-shadow: 0 0 24px rgba(242, 228, 74, 0.32);
}

.timeline-step__eyebrow {
  color: rgba(190, 181, 29, 0.96);
}

.timeline-step.is-active .timeline-step__card {
  border-color: rgba(242, 228, 74, 0.22);
}

.timeline-step.is-active .timeline-step__dot {
  background: linear-gradient(180deg, #353014 0%, #47411a 100%);
  border-color: rgba(242, 228, 74, 0.30);
  box-shadow: 0 14px 38px rgba(242, 228, 74, 0.18);
}

.projects-showcase {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 244, 90, 0.22) 0%, rgba(255, 244, 90, 0) 34%),
    radial-gradient(circle at 78% 20%, rgba(242, 228, 74, 0.18) 0%, rgba(242, 228, 74, 0) 30%),
    radial-gradient(circle at 50% 100%, rgba(221, 210, 47, 0.12) 0%, rgba(221, 210, 47, 0) 36%),
    linear-gradient(180deg, #2a2a2a 0%, #232323 18%, #1b1b1b 42%, #151515 68%, #111111 100%);
}

.page-shell {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 244, 90, 0.18) 0%, rgba(255, 244, 90, 0) 30%),
    radial-gradient(circle at 82% 12%, rgba(242, 228, 74, 0.14) 0%, rgba(242, 228, 74, 0) 25%),
    linear-gradient(180deg, #141414 0%, #1a1a1a 24%, #1f1f1f 46%, #151515 100%);
}

.page-shell--soft {
  background:
    radial-gradient(circle at 15% 6%, rgba(255, 244, 90, 0.22) 0%, rgba(255, 244, 90, 0) 28%),
    radial-gradient(circle at 84% 10%, rgba(242, 228, 74, 0.12) 0%, rgba(242, 228, 74, 0) 22%),
    linear-gradient(180deg, #161616 0%, #1d1d1d 34%, #141414 100%);
}

.site-footer {
  background:
    radial-gradient(circle at 8% 100%, rgba(255, 244, 90, 0.40) 0%, rgba(255, 244, 90, 0.18) 18%, rgba(255, 244, 90, 0) 36%),
    radial-gradient(circle at 84% 102%, rgba(242, 228, 74, 0.34) 0%, rgba(242, 228, 74, 0.16) 19%, rgba(242, 228, 74, 0) 36%),
    linear-gradient(180deg, #111111 0%, #161616 46%, #1e1e1e 78%, #272727 100%);
}

.site-footer::after {
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 244, 90, 0.34) 0%, rgba(255, 244, 90, 0.14) 32%, rgba(255, 244, 90, 0) 68%);
}

.about__link span,
.service-card__link-arrow,
.projects-showcase__button span,
.site-footer__whatsapp span,
.breadcrumbs__sep,
.service-card__index,
.info-card__label,
.service-list__item span,
.rental-callout__line,
.service-bullets li::before {
  color: rgba(255, 244, 90, 0.98);
}

.service-bullets li::before {
  background: rgba(255, 244, 90, 0.98);
}

.projects-showcase__button:hover {
  border-color: rgba(255, 244, 90, 0.48);
  background: rgba(72, 67, 20, 0.92);
}

.project-card__image--soon {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 244, 90, 0.28) 0%, rgba(255, 244, 90, 0) 32%),
    linear-gradient(180deg, #2a2a2a 0%, #1c1c1c 100%);
}

.project-card__soon {
  color: rgba(255, 249, 138, 0.98);
}

/* nav cleanup */
.site-nav__inner,
.site-nav.is-hero .site-nav__inner,
.site-nav.is-light .site-nav__inner,
.site-nav:not(.is-hero) .site-nav__inner {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%),
    rgba(26, 26, 26, 0.90);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.site-nav__inner::before {
  display: none;
}

.site-nav__panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav__link,
.site-nav.is-light .site-nav__link {
  color: rgba(255, 255, 255, 0.95);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__item.is-open > .site-nav__link,
.site-nav__link.is-current,
.site-nav.is-light .site-nav__link:hover,
.site-nav.is-light .site-nav__link:focus-visible,
.site-nav.is-light .site-nav__item.is-open > .site-nav__link,
.site-nav.is-light .site-nav__link.is-current {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  color: rgba(255, 255, 255, 0.98);
}

.site-nav__dropdown,
.site-nav.is-light .site-nav__dropdown {
  border-color: rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(20, 20, 20, 0.97);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.site-nav__dropdown-link,
.site-nav.is-light .site-nav__dropdown-link {
  color: rgba(255,255,255,0.90);
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link.is-current,
.site-nav.is-light .site-nav__dropdown-link:hover,
.site-nav.is-light .site-nav__dropdown-link.is-current {
  background: rgba(255,255,255,0.08);
}

.site-nav__toggle span,
.site-nav.is-light .site-nav__toggle span {
  background: rgba(255,255,255,0.96);
}

@media (max-width: 980px) {
  .site-nav__panel,
  .site-nav.is-light .site-nav__panel {
    border: 1px solid rgba(255,255,255,0.10);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%),
      rgba(20, 20, 20, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
  }
}


/* ===== NAV + STATS FIX v40 ===== */

/* HERO: стеклянное меню с blur */
.site-nav.is-hero .site-nav__inner {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%),
    rgba(24, 24, 24, 0.54);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.site-nav.is-hero .site-nav__link,
.site-nav.is-hero .site-nav__dropdown-link {
  color: rgba(255, 255, 255, 0.95);
}

.site-nav.is-hero .site-nav__link:hover,
.site-nav.is-hero .site-nav__link:focus-visible,
.site-nav.is-hero .site-nav__item.is-open > .site-nav__link,
.site-nav.is-hero .site-nav__link.is-current {
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.98);
}

.site-nav.is-hero .site-nav__dropdown {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%),
    rgba(18, 18, 18, 0.88);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.site-nav.is-hero .site-nav__logo--dark {
  opacity: 0;
}

.site-nav.is-hero .site-nav__logo--light {
  opacity: 1;
}

.site-nav.is-hero .site-nav__toggle span {
  background: rgba(255,255,255,0.96);
}

/* ТЁМНЫЙ БЛОК = БЕЛОЕ МЕНЮ */
.site-nav.is-on-dark:not(.is-hero) .site-nav__inner {
  border: 1px solid rgba(7, 16, 29, 0.08);
  background: rgba(246, 248, 255, 0.94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav.is-on-dark:not(.is-hero) .site-nav__link,
.site-nav.is-on-dark:not(.is-hero) .site-nav__dropdown-link {
  color: rgba(7, 16, 29, 0.86);
}

.site-nav.is-on-dark:not(.is-hero) .site-nav__link:hover,
.site-nav.is-on-dark:not(.is-hero) .site-nav__link:focus-visible,
.site-nav.is-on-dark:not(.is-hero) .site-nav__item.is-open > .site-nav__link,
.site-nav.is-on-dark:not(.is-hero) .site-nav__link.is-current {
  background: rgba(7, 16, 29, 0.065);
  box-shadow: none;
  color: rgba(7, 16, 29, 0.98);
}

.site-nav.is-on-dark:not(.is-hero) .site-nav__dropdown {
  border-color: rgba(7, 16, 29, 0.08);
  background: rgba(246, 248, 255, 0.97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav.is-on-dark:not(.is-hero) .site-nav__dropdown-link:hover,
.site-nav.is-on-dark:not(.is-hero) .site-nav__dropdown-link.is-current {
  background: rgba(7, 16, 29, 0.065);
}

.site-nav.is-on-dark:not(.is-hero) .site-nav__logo--dark {
  opacity: 1;
}

.site-nav.is-on-dark:not(.is-hero) .site-nav__logo--light {
  opacity: 0;
}

.site-nav.is-on-dark:not(.is-hero) .site-nav__toggle span {
  background: rgba(7,16,29,0.92);
}

/* СВЕТЛЫЙ БЛОК = ТЁМНОЕ МЕНЮ */
.site-nav.is-on-light:not(.is-hero) .site-nav__inner {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 18, 18, 0.94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav.is-on-light:not(.is-hero) .site-nav__link,
.site-nav.is-on-light:not(.is-hero) .site-nav__dropdown-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-nav.is-on-light:not(.is-hero) .site-nav__link:hover,
.site-nav.is-on-light:not(.is-hero) .site-nav__link:focus-visible,
.site-nav.is-on-light:not(.is-hero) .site-nav__item.is-open > .site-nav__link,
.site-nav.is-on-light:not(.is-hero) .site-nav__link.is-current {
  background: rgba(255, 255, 255, 0.10);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.98);
}

.site-nav.is-on-light:not(.is-hero) .site-nav__dropdown {
  border-color: rgba(255,255,255,0.10);
  background: rgba(18, 18, 18, 0.97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav.is-on-light:not(.is-hero) .site-nav__dropdown-link:hover,
.site-nav.is-on-light:not(.is-hero) .site-nav__dropdown-link.is-current {
  background: rgba(255,255,255,0.10);
}

.site-nav.is-on-light:not(.is-hero) .site-nav__logo--dark {
  opacity: 0;
}

.site-nav.is-on-light:not(.is-hero) .site-nav__logo--light {
  opacity: 1;
}

.site-nav.is-on-light:not(.is-hero) .site-nav__toggle span {
  background: rgba(255,255,255,0.96);
}

/* мобильное меню тоже в цвет текущего состояния */
@media (max-width: 980px) {
  .site-nav.is-hero .site-nav__panel {
    border: 1px solid rgba(255,255,255,0.12);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%),
      rgba(18, 18, 18, 0.92);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
  }

  .site-nav.is-on-dark:not(.is-hero) .site-nav__panel {
    border: 1px solid rgba(7,16,29,0.08);
    background: rgba(246,248,255,0.98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  }

  .site-nav.is-on-dark:not(.is-hero) .site-nav__panel .site-nav__link,
  .site-nav.is-on-dark:not(.is-hero) .site-nav__panel .site-nav__dropdown-link {
    color: rgba(7, 16, 29, 0.90);
  }

  .site-nav.is-on-light:not(.is-hero) .site-nav__panel {
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(18,18,18,0.98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  }

  .site-nav.is-on-light:not(.is-hero) .site-nav__panel .site-nav__link,
  .site-nav.is-on-light:not(.is-hero) .site-nav__panel .site-nav__dropdown-link,
  .site-nav.is-hero .site-nav__panel .site-nav__link,
  .site-nav.is-hero .site-nav__panel .site-nav__dropdown-link {
    color: rgba(255,255,255,0.94);
  }
}

/* ЖЁЛТЫЕ АКЦЕНТЫ В ЦИФРАХ */
.stats__number--accent {
  background: linear-gradient(180deg, #fff98a 0%, #fff45a 42%, #f2e44a 72%, #d7cb2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__unit {
  color: rgba(255, 244, 90, 0.96);
}


/* ===== FOOTER + TEAM PAGE v41 ===== */
.site-footer__columns > .site-footer__col:last-child {
  justify-self: end;
  align-items: flex-end;
  text-align: right;
}

.team-section__head {
  max-width: 820px;
  margin-bottom: 34px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.10);
}

.team-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.84 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 12px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 244, 90, 0.20) 0%, rgba(255, 244, 90, 0) 48%),
    linear-gradient(180deg, #f7f7f4 0%, #efefea 100%);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.team-card__media--cover {
  padding: 0;
}

.team-card__media--cover img {
  object-fit: cover;
  object-position: center top;
}

.team-card__body {
  padding: 22px 22px 24px;
}

.team-card h3 {
  margin: 0;
  color: #12161f;
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.team-card p {
  margin: 12px 0 0;
  color: rgba(18, 22, 31, 0.72);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.03em;
}

@media (max-width: 1280px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-footer__columns > .site-footer__col:last-child {
    justify-self: auto;
    align-items: flex-start;
    text-align: left;
  }

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

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-card {
    border-radius: 24px;
  }

  .team-card__body {
    padding: 18px 18px 20px;
  }
}

/* ===== TEAM PHOTO + PROJECT CARDS FIX v42 ===== */
.team-card__media,
.team-card__media--cover {
  padding: 0;
  background: #f4f4ef;
}

.team-card__media img,
.team-card__media--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
}

.team-card:hover .team-card__media img {
  transform: scale(1.045);
}

.team-card__media img {
  transition: transform 0.45s ease;
}

.projects-showcase--catalog .project-card,
.page-projects .project-card {
  border: 1px solid rgba(12, 18, 28, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.10);
}

.projects-showcase--catalog .project-card__body,
.page-projects .project-card__body {
  background: #ffffff;
}

.projects-showcase--catalog .project-card__caption,
.page-projects .project-card__caption {
  color: rgba(18, 22, 31, 0.46);
}

.projects-showcase--catalog .project-card h3,
.page-projects .project-card h3 {
  color: #12161f;
}

.projects-showcase--catalog .project-card__image,
.page-projects .project-card__image {
  background: #f4f4ef;
}

.projects-showcase--catalog .project-card__image--soon,
.page-projects .project-card__image--soon {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 244, 90, 0.30) 0%, rgba(255, 244, 90, 0) 42%),
    linear-gradient(180deg, #fffef3 0%, #f5f4e9 100%);
}

.projects-showcase--catalog .project-card__soon,
.page-projects .project-card__soon {
  color: #12161f;
}


/* ===== HERO BRACKETS YELLOW v43 ===== */
.hero__bracket {
  filter: drop-shadow(0 0 18px rgba(255, 244, 90, 0.30));
}

.hero__bracket::before {
  border-color: transparent;
  border-image-slice: 1;
  border-image-source: linear-gradient(180deg, #fff98a 0%, #fff45a 42%, #f2e44a 72%, #d7cb2b 100%);
}


/* ===== PARTNERS PAGE v44 ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 178px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  background: #ffffff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 84px rgba(0, 0, 0, 0.14);
}

.partner-logo-card img {
  width: 100%;
  height: 100%;
  max-height: 92px;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 1180px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .partner-logo-card {
    min-height: 150px;
    border-radius: 22px;
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== HERO BRACKETS CURVE FIX v45 ===== */
.hero__bracket {
  filter: drop-shadow(0 0 20px rgba(255, 244, 90, 0.34));
}

.hero__bracket::before {
  border-image: none !important;
  border-color: #f2e44a !important;
  border-width: 4px;
  background: none;
}


/* ===== SITE ANIMATIONS v46 ===== */
:root {
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 0.88s var(--ease-out-expo),
    transform 0.88s var(--ease-out-expo),
    filter 0.88s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.reveal--soft {
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.reveal--left {
  transform: translate3d(-34px, 18px, 0);
}

.reveal--right {
  transform: translate3d(34px, 18px, 0);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.service-card,
.info-card,
.project-card,
.team-card,
.partner-logo-card,
.timeline-step__card,
.service-list__item,
.stats__row,
.studio-space__image,
.rental-callout,
.rental-split__main {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.service-card:hover,
.info-card:hover,
.project-card:hover,
.team-card:hover,
.partner-logo-card:hover,
.timeline-step:hover .timeline-step__card,
.service-list__item:hover,
.stats__row:hover,
.studio-space__image:hover,
.rental-callout:hover,
.rental-split__main:hover {
  transform: translateY(-6px);
}

.site-nav__link,
.site-nav__dropdown-link,
.about__link,
.projects-showcase__button,
.service-card__link,
.site-footer a {
  transition:
    transform 0.28s ease,
    color 0.28s ease,
    background-color 0.28s ease,
    opacity 0.28s ease,
    box-shadow 0.28s ease;
}

.site-nav__link:hover,
.site-nav__dropdown-link:hover,
.about__link:hover,
.projects-showcase__button:hover,
.service-card__link:hover,
.site-footer a:hover {
  transform: translateY(-2px);
}

.about__link:hover,
.projects-showcase__button:hover,
.service-card__link:hover,
.site-footer__whatsapp:hover {
  transform: translateX(5px);
}

.hero__background {
  animation: heroBackgroundFloat 14s ease-in-out infinite alternate;
}

.hero__content.is-visible h1,
.page-hero h1.reveal.is-visible,
.about__heading.reveal.is-visible,
.service-section__head h2.reveal.is-visible,
.team-section__head h2.reveal.is-visible,
.services__head h2.reveal.is-visible,
.timeline-process__head h2.reveal.is-visible,
.projects-showcase__head h2.reveal.is-visible {
  animation: textLift 0.95s var(--ease-out-expo) both;
}

.hero__content.is-visible p,
.page-shell__lead.reveal.is-visible,
.about__text.reveal.is-visible,
.services__head p.reveal.is-visible,
.timeline-process__head p.reveal.is-visible,
.projects-showcase__head p.reveal.is-visible,
.service-section__head p.reveal.is-visible,
.team-section__head p.reveal.is-visible {
  animation: textFade 1s var(--ease-out-expo) both;
}

@keyframes heroBackgroundFloat {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.06) translate3d(0, -8px, 0);
  }
}

@keyframes textLift {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    letter-spacing: -0.02em;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    letter-spacing: inherit;
  }
}

@keyframes textFade {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--soft,
  .reveal--left,
  .reveal--right,
  .reveal.is-visible,
  .hero__background,
  .hero__content.is-visible h1,
  .hero__content.is-visible p,
  .page-hero h1.reveal.is-visible,
  .page-shell__lead.reveal.is-visible,
  .about__heading.reveal.is-visible,
  .about__text.reveal.is-visible,
  .services__head h2.reveal.is-visible,
  .services__head p.reveal.is-visible,
  .timeline-process__head h2.reveal.is-visible,
  .timeline-process__head p.reveal.is-visible,
  .projects-showcase__head h2.reveal.is-visible,
  .projects-showcase__head p.reveal.is-visible,
  .service-section__head h2.reveal.is-visible,
  .service-section__head p.reveal.is-visible,
  .team-section__head h2.reveal.is-visible,
  .team-section__head p.reveal.is-visible {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}


/* ===== MOBILE ADAPTIVE v47 ===== */
img {
  max-width: 100%;
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-nav {
    top: 16px;
    width: calc(100% - 32px);
  }

  .site-nav__inner {
    min-height: 58px;
    padding: 8px 10px 8px 14px;
    border-radius: 22px;
  }

  .site-nav__brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-nav__logo-stack {
    width: 96px;
    height: 20px;
  }

  .site-nav__toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    flex: 0 0 auto;
  }

  .site-nav__panel {
    top: calc(100% + 12px);
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 12px;
    border-radius: 24px;
  }

  .site-nav__panel .site-nav__link,
  .site-nav__panel .site-nav__link--button,
  .site-nav__dropdown-link {
    min-height: 48px;
    font-size: 17px;
    line-height: 1.15;
  }

  .site-nav__dropdown {
    gap: 6px;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 24px 56px;
    align-items: center;
  }

  .hero__content {
    width: 100%;
    max-width: 760px;
  }

  .hero__title-row {
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(48px, 9vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.075em;
    text-wrap: balance;
  }

  .hero__bracket {
    width: 42px;
    height: min(34vw, 210px);
    flex: 0 0 42px;
  }

  .hero p {
    max-width: 700px;
    margin-top: 26px;
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.14;
  }

  .hero__bottom-text {
    bottom: 24px;
    font-size: 14px;
    line-height: 1.08;
  }

  .hero__bottom-text--left {
    left: 24px;
  }

  .hero__bottom-text--right {
    right: 24px;
  }

  .about,
  .services,
  .studio-space,
  .timeline-process,
  .projects-showcase,
  .page-shell,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about,
  .services,
  .studio-space,
  .timeline-process,
  .projects-showcase,
  .page-shell {
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .about__top,
  .services__head,
  .projects-showcase__head,
  .page-hero,
  .service-hero__inner,
  .studio-space__head,
  .rental-split,
  .studio-space__gallery,
  .site-footer__inner,
  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .service-hero__inner,
  .studio-space__head,
  .services__head,
  .projects-showcase__head {
    gap: 22px;
  }

  .about h2,
  .services__head h2,
  .timeline-process__head h2,
  .projects-showcase__head h2,
  .page-hero h1,
  .service-hero__content h1,
  .team-section__head h2,
  .service-section__head h2 {
    font-size: clamp(34px, 6.4vw, 56px);
    line-height: 0.98;
  }

  .about__text,
  .services__head p,
  .projects-showcase__head p,
  .timeline-process__head p,
  .page-shell__lead,
  .service-hero__content p,
  .service-section__head p,
  .team-section__head p {
    font-size: 16px;
    line-height: 1.24;
  }

  .stats__row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px 18px;
    min-height: 0;
    padding: 22px 0;
    align-items: center;
  }

  .stats__icon,
  .stats__icon-img {
    width: 54px;
    height: 54px;
  }

  .stats__number {
    font-size: clamp(56px, 12vw, 88px);
    line-height: 0.86;
  }

  .stats__unit {
    margin-left: 0;
    padding-bottom: 0;
    align-self: center;
    font-size: 22px;
  }

  .stats__label {
    grid-column: 2;
    font-size: 18px;
  }

  .services__grid,
  .projects-showcase__grid,
  .info-grid,
  .service-list,
  .service-list--four,
  .service-list--five,
  .team-grid,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .project-card,
  .partner-logo-card,
  .team-card,
  .service-list__item,
  .info-card,
  .timeline-step__card,
  .rental-callout,
  .rental-split__main {
    border-radius: 26px;
  }

  .service-card,
  .service-list__item,
  .info-card,
  .timeline-step__card,
  .rental-callout,
  .rental-split__main {
    padding: 22px;
  }

  .project-card__body,
  .team-card__body {
    padding: 18px 18px 20px;
  }

  .service-hero__visual {
    min-height: 380px;
    border-radius: 30px;
    order: -1;
  }

  .timeline-process__list {
    padding-left: 0;
  }

  .timeline-process__line,
  .timeline-process__progress {
    left: 30px;
  }

  .timeline-step {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .timeline-step__marker {
    padding-top: 24px;
  }

  .timeline-step__dot {
    width: 46px;
    height: 46px;
    font-size: 12px;
  }

  .project-card__image,
  .team-card__media {
    aspect-ratio: 0.95 / 1;
  }

  .partner-logo-card {
    min-height: 150px;
    padding: 24px;
  }

  .site-footer__columns {
    gap: 28px;
  }

  .site-footer__columns > .site-footer__col:last-child {
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__bottom {
    gap: 12px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-nav {
    width: calc(100% - 20px);
    top: 10px;
  }

  .site-nav__inner {
    min-height: 54px;
    padding: 6px 8px 6px 12px;
    border-radius: 18px;
  }

  .site-nav__logo-stack {
    width: 88px;
    height: 18px;
  }

  .site-nav__toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .site-nav__panel {
    top: calc(100% + 10px);
    padding: 10px;
    border-radius: 20px;
    max-height: calc(100svh - 82px);
  }

  .site-nav__panel .site-nav__link,
  .site-nav__panel .site-nav__link--button,
  .site-nav__dropdown-link {
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 16px;
  }

  .hero {
    min-height: 100svh;
    padding: 108px 16px 24px;
    align-items: flex-start;
  }

  .hero__title-row {
    align-items: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 0.96;
    letter-spacing: -0.08em;
  }

  .hero__bracket {
    width: 18px;
    height: 120px;
    flex: 0 0 18px;
    filter: drop-shadow(0 0 10px rgba(255, 244, 90, 0.16));
  }

  .hero p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.22;
    max-width: 100%;
  }

  .hero__bottom-text {
    position: static;
    margin-top: 18px;
    max-width: 220px;
    font-size: 13px;
    line-height: 1.12;
  }

  .hero__bottom-text--right {
    margin-left: auto;
    text-align: right;
  }

  .about,
  .services,
  .studio-space,
  .timeline-process,
  .projects-showcase,
  .page-shell,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about,
  .services,
  .studio-space,
  .timeline-process,
  .projects-showcase,
  .page-shell {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .breadcrumbs {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.2;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .about__eyebrow,
  .services__eyebrow,
  .timeline-process__eyebrow,
  .projects-showcase__eyebrow,
  .page-shell__eyebrow,
  .studio-space__eyebrow {
    margin-bottom: 16px;
  }

  .about h2,
  .services__head h2,
  .timeline-process__head h2,
  .projects-showcase__head h2,
  .page-hero h1,
  .service-hero__content h1,
  .team-section__head h2,
  .service-section__head h2 {
    font-size: clamp(28px, 10.4vw, 42px);
    line-height: 0.98;
  }

  .about__text,
  .services__head p,
  .projects-showcase__head p,
  .timeline-process__head p,
  .page-shell__lead,
  .service-hero__content p,
  .service-section__head p,
  .team-section__head p,
  .service-card p,
  .project-card p,
  .team-card p,
  .info-card p,
  .service-list__item p,
  .partner-logo-card p {
    font-size: 15px;
    line-height: 1.26;
  }

  .stats__row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 14px;
    padding: 18px 0;
  }

  .stats__icon,
  .stats__icon-img {
    width: 40px;
    height: 40px;
  }

  .stats__number {
    font-size: clamp(42px, 15vw, 62px);
  }

  .stats__unit {
    font-size: 16px;
  }

  .stats__label {
    font-size: 15px;
    line-height: 1.18;
  }

  .services__grid,
  .projects-showcase__grid,
  .info-grid,
  .service-list,
  .service-list--four,
  .service-list--five,
  .team-grid,
  .partners-grid,
  .studio-space__gallery,
  .rental-split {
    grid-template-columns: 1fr;
  }

  .service-card,
  .project-card,
  .partner-logo-card,
  .team-card,
  .service-list__item,
  .info-card,
  .timeline-step__card,
  .rental-callout,
  .rental-split__main {
    border-radius: 22px;
  }

  .service-card,
  .service-list__item,
  .info-card,
  .timeline-step__card,
  .rental-callout,
  .rental-split__main,
  .project-card__body,
  .team-card__body {
    padding: 18px;
  }

  .service-card__top,
  .projects-showcase__head,
  .services__head,
  .studio-space__head,
  .page-hero,
  .team-section__head,
  .service-section__head {
    margin-bottom: 20px;
  }

  .service-card__index,
  .project-card__meta,
  .service-list__item span,
  .info-card__eyebrow {
    margin-bottom: 16px;
  }

  .studio-space__image,
  .service-hero__visual {
    border-radius: 22px;
  }

  .service-hero {
    padding-top: 16px;
  }

  .service-hero__visual {
    order: -1;
    min-height: 260px;
  }

  .timeline-process__head {
    margin-bottom: 24px;
  }

  .timeline-process__list {
    padding-bottom: 0;
  }

  .timeline-process__line,
  .timeline-process__progress {
    left: 20px;
  }

  .timeline-step {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .timeline-step + .timeline-step {
    margin-top: 18px;
  }

  .timeline-step__marker {
    padding-top: 18px;
  }

  .timeline-step__dot {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .timeline-step__card h3,
  .service-card h3,
  .service-list__item h3,
  .project-card__title,
  .team-card__name,
  .info-card h3 {
    font-size: 24px;
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .project-card__image,
  .team-card__media {
    aspect-ratio: 1 / 1.04;
  }

  .partner-logo-card {
    min-height: 118px;
    padding: 18px;
  }

  .partner-logo-card img {
    max-height: 68px;
  }

  .site-footer {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  .site-footer__inner {
    gap: 26px;
  }

  .site-footer__columns {
    gap: 20px;
  }

  .site-footer__brand p,
  .site-footer a,
  .site-footer__col p,
  .site-footer__bottom {
    font-size: 14px;
    line-height: 1.3;
  }
}


/* ===== NAV LOGO SIZE FIX v48 ===== */
.site-nav__brand {
  height: 100%;
  min-height: 40px;
  padding-right: 14px;
  display: inline-flex;
  align-items: center;
}

.site-nav__logo-stack {
  position: relative;
  width: 146px;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-nav__logo {
  position: absolute;
  left: 0;
  top: 50%;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: translateY(-50%) scale(1.72);
  transform-origin: left center;
}

.site-nav__logo--dark {
  transform: translateY(-50%) scale(1.72);
}

.site-nav__logo--light {
  transform: translateY(-50%) scale(1.72);
}

@media (max-width: 980px) {
  .site-nav__brand {
    min-height: 36px;
    padding-right: 10px;
  }

  .site-nav__logo-stack {
    width: 122px;
    height: 32px;
  }

  .site-nav__logo,
  .site-nav__logo--dark,
  .site-nav__logo--light {
    transform: translateY(-50%) scale(1.72);
  }
}

@media (max-width: 640px) {
  .site-nav__brand {
    min-height: 32px;
    padding-right: 8px;
  }

  .site-nav__logo-stack {
    width: 108px;
    height: 28px;
  }

  .site-nav__logo,
  .site-nav__logo--dark,
  .site-nav__logo--light {
    transform: translateY(-50%) scale(1.7);
  }
}


/* ===== NAV LOGO SIZE FIX v49 ===== */
/* Исправляет v48: без разгона scale, одинаково для blur/white/dark меню */
.site-nav__brand {
  height: 40px !important;
  min-height: 40px !important;
  padding-right: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.site-nav__logo-stack {
  position: relative !important;
  display: block !important;
  width: 118px !important;
  height: 34px !important;
  overflow: visible !important;
  flex: 0 0 118px !important;
}

.site-nav__logo {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 118px !important;
  height: 34px !important;
  object-fit: contain !important;
  object-position: left center !important;
  transform: translateY(-50%) !important;
  transform-origin: left center !important;
  max-width: none !important;
}

.site-nav__logo--dark,
.site-nav__logo--light {
  transform: translateY(-50%) !important;
}

@media (max-width: 980px) {
  .site-nav__brand {
    height: 38px !important;
    min-height: 38px !important;
    padding-right: 12px !important;
  }

  .site-nav__logo-stack {
    width: 110px !important;
    height: 32px !important;
    flex-basis: 110px !important;
  }

  .site-nav__logo {
    width: 110px !important;
    height: 32px !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 640px) {
  .site-nav__brand {
    height: 34px !important;
    min-height: 34px !important;
    padding-right: 8px !important;
  }

  .site-nav__logo-stack {
    width: 96px !important;
    height: 28px !important;
    flex-basis: 96px !important;
  }

  .site-nav__logo {
    width: 96px !important;
    height: 28px !important;
    transform: translateY(-50%) !important;
  }
}

/* ===== MOBILE FIXES v50 ===== */
@media (max-width: 640px) {
  /* 1. Первый экран — возвращаем нормальную композицию со скобками */
  .hero {
    min-height: 100svh !important;
    padding: 94px 18px 38px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero__content {
    width: 100% !important;
    margin-top: 0 !important;
  }

  .hero__title-row {
    display: grid !important;
    grid-template-columns: 30px minmax(0, 1fr) 30px !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(31px, 9.2vw, 42px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.075em !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .hero__bracket {
    display: block !important;
    width: 30px !important;
    height: 160px !important;
    flex: 0 0 30px !important;
    opacity: 0.96 !important;
    filter: drop-shadow(0 0 16px rgba(255, 244, 90, 0.28)) !important;
  }

  .hero__bracket::before {
    border-width: 3px !important;
  }

  .hero__bracket--left::before {
    left: 8px !important;
  }

  .hero__bracket--right::before {
    right: 8px !important;
  }

  .hero p {
    width: min(360px, 100%) !important;
    margin-top: 22px !important;
    font-size: 15px !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  .hero__bottom-text {
    position: absolute !important;
    bottom: 24px !important;
    max-width: 42% !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.12 !important;
  }

  .hero__bottom-text--left {
    left: 18px !important;
    text-align: left !important;
  }

  .hero__bottom-text--right {
    right: 18px !important;
    text-align: right !important;
  }

  /* 2. МИН рядом с цифрой */
  .stats__row {
    grid-template-columns: 48px auto min-content !important;
    column-gap: 12px !important;
    row-gap: 4px !important;
    align-items: center !important;
  }

  .stats__number {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .stats__unit {
    grid-column: 3 !important;
    grid-row: 1 !important;
    margin-left: -4px !important;
    padding: 0 !important;
    align-self: center !important;
    font-size: 15px !important;
    line-height: 1 !important;
  }

  .stats__label {
    grid-column: 2 / 4 !important;
    grid-row: 2 !important;
  }

  /* 3. Большое Volna в футере не уезжает вниз */
  .site-footer {
    padding-bottom: 112px !important;
  }

  .site-footer::before {
    bottom: 6px !important;
    font-size: clamp(116px, 33vw, 180px) !important;
    line-height: 0.85 !important;
    letter-spacing: 0.04em !important;
  }

  .site-footer::after {
    height: 48% !important;
  }

  /* 4. Хлебные крошки чуть ниже */
  .breadcrumbs {
    margin-top: 38px !important;
    margin-bottom: 22px !important;
  }

  /* 5. Проекты / Команда / Партнеры — карточки в 2 колонки на мобилке */
  .page-projects .projects-showcase__grid,
  body[data-page="team"] .team-grid,
  body[data-page="partners"] .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .page-projects .project-card,
  body[data-page="team"] .team-card,
  body[data-page="partners"] .partner-logo-card {
    border-radius: 18px !important;
  }

  .page-projects .project-card__image,
  body[data-page="team"] .team-card__media {
    aspect-ratio: 0.9 / 1 !important;
  }

  .page-projects .project-card__body,
  body[data-page="team"] .team-card__body {
    padding: 12px !important;
  }

  .page-projects .project-card__caption {
    font-size: 9px !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
  }

  .page-projects .project-card h3,
  body[data-page="team"] .team-card h3 {
    font-size: 16px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
  }

  body[data-page="team"] .team-card p {
    margin-top: 8px !important;
    font-size: 11px !important;
    line-height: 1.16 !important;
  }

  body[data-page="partners"] .partner-logo-card {
    min-height: 104px !important;
    padding: 14px !important;
  }

  body[data-page="partners"] .partner-logo-card img {
    max-height: 58px !important;
  }

  /* 6. Крестик бургера — ровно по центру */
  .site-nav__toggle {
    position: relative !important;
    z-index: 10 !important;
  }

  .site-nav__toggle span {
    left: 9px !important;
    right: 9px !important;
    top: 50% !important;
    bottom: auto !important;
    height: 1.6px !important;
    transform-origin: center !important;
  }

  .site-nav__toggle span:first-child {
    transform: translateY(-5px) !important;
  }

  .site-nav__toggle span:last-child {
    transform: translateY(5px) !important;
  }

  .site-nav.menu-open .site-nav__toggle span:first-child {
    transform: translateY(0) rotate(45deg) !important;
  }

  .site-nav.menu-open .site-nav__toggle span:last-child {
    transform: translateY(0) rotate(-45deg) !important;
  }

  .site-nav.menu-open .site-nav__panel {
    top: calc(100% + 12px) !important;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(28px, 8.8vw, 36px) !important;
  }

  .hero__title-row {
    grid-template-columns: 24px minmax(0, 1fr) 24px !important;
    gap: 8px !important;
  }

  .hero__bracket {
    width: 24px !important;
    height: 140px !important;
  }
}


/* ===== MOBILE/DESKTOP SPACING CLEANUP v51 ===== */
/* Уменьшаем воздух после описания на внутренних страницах */
body[data-page="projects"] .page-shell__section,
body[data-page="partners"] .page-shell__section,
body[data-page="team"] .page-shell__section {
  padding-top: 18px;
}

/* После информационных карточек на команде оставляем аккуратный переход сразу к людям */
body[data-page="team"] .page-shell__section--team {
  padding-top: 28px;
}

body[data-page="team"] .team-grid {
  margin-top: 0;
}

@media (max-width: 980px) {
  body[data-page="projects"] .page-shell__section,
  body[data-page="partners"] .page-shell__section,
  body[data-page="team"] .page-shell__section {
    padding-top: 12px !important;
  }

  body[data-page="team"] .page-shell__section--team {
    padding-top: 20px !important;
  }
}

@media (max-width: 640px) {
  body[data-page="projects"] .page-shell__section,
  body[data-page="partners"] .page-shell__section,
  body[data-page="team"] .page-shell__section {
    padding-top: 8px !important;
  }

  body[data-page="team"] .page-shell__section--team {
    padding-top: 16px !important;
  }

  body[data-page="partners"] .partners-grid,
  body[data-page="projects"] .projects-showcase__grid,
  body[data-page="team"] .info-grid {
    margin-top: 0 !important;
  }
}

/* ===== MOBILE NAV WIDTH FIX v52 ===== */
@media (max-width: 980px) {
  .site-nav {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
  }

  .site-nav__inner {
    width: 100% !important;
  }

  .site-nav__panel {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .site-nav {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
  }
}

/* ===== MOBILE NAV POSITION FIX v53 ===== */
@media (max-width: 980px) {
  .site-nav {
    left: 50% !important;
    right: auto !important;
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    transform: translate(-50%, 0) !important;
  }

  .site-nav__inner {
    width: 100% !important;
  }

  .site-nav__panel {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .site-nav {
    left: 50% !important;
    right: auto !important;
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    transform: translate(-50%, 0) !important;
  }
}


/* ===== VOLNA v54 UPDATES ===== */
.hero__center-logo {
  display: block;
  width: clamp(120px, 12vw, 176px);
  height: auto;
  margin: 0 auto 34px;
  filter: drop-shadow(0 12px 34px rgba(0,0,0,0.36));
}

.hero__bracket {
  filter: drop-shadow(0 0 20px rgba(255, 244, 90, 0.28));
}

.hero__bracket::before {
  border-image: none !important;
  border-color: #f2e44a !important;
  border-radius: 0 !important;
  transform: none !important;
}

.hero__bracket--left::before {
  left: 18px !important;
  right: auto !important;
  width: 54px;
  border-right: 0 !important;
  border-left: 4px solid #f2e44a !important;
  border-top: 4px solid #f2e44a !important;
  border-bottom: 4px solid #f2e44a !important;
}

.hero__bracket--right::before {
  right: 18px !important;
  left: auto !important;
  width: 54px;
  border-left: 0 !important;
  border-right: 4px solid #f2e44a !important;
  border-top: 4px solid #f2e44a !important;
  border-bottom: 4px solid #f2e44a !important;
}

/* remove WhatsApp everywhere */
.site-footer__whatsapp { display: none !important; }

/* page accent themes */
body[data-page="sound-production"] {
  --page-accent: #b75cff;
  --page-accent-soft: rgba(183, 92, 255, 0.20);
  --page-accent-mid: rgba(183, 92, 255, 0.34);
}
body[data-page="video-production"] {
  --page-accent: #4aa3ff;
  --page-accent-soft: rgba(74, 163, 255, 0.20);
  --page-accent-mid: rgba(74, 163, 255, 0.34);
}
body[data-page="rental"] {
  --page-accent: #52e08b;
  --page-accent-soft: rgba(82, 224, 139, 0.20);
  --page-accent-mid: rgba(82, 224, 139, 0.34);
}

body[data-page="sound-production"] .page-shell,
body[data-page="sound-production"] .page-shell--soft,
body[data-page="video-production"] .page-shell,
body[data-page="video-production"] .page-shell--soft,
body[data-page="rental"] .page-shell,
body[data-page="rental"] .page-shell--soft {
  background:
    radial-gradient(circle at 18% 0%, var(--page-accent-soft) 0%, rgba(0,0,0,0) 30%),
    radial-gradient(circle at 82% 10%, var(--page-accent-soft) 0%, rgba(0,0,0,0) 24%),
    linear-gradient(180deg, #161616 0%, #1d1d1d 34%, #141414 100%) !important;
}

body[data-page="sound-production"] .breadcrumbs__sep,
body[data-page="sound-production"] .info-card__label,
body[data-page="sound-production"] .service-list__item span,
body[data-page="sound-production"] .service-bullets li::before,
body[data-page="video-production"] .breadcrumbs__sep,
body[data-page="video-production"] .info-card__label,
body[data-page="video-production"] .service-list__item span,
body[data-page="video-production"] .service-bullets li::before,
body[data-page="rental"] .breadcrumbs__sep,
body[data-page="rental"] .info-card__label,
body[data-page="rental"] .service-list__item span,
body[data-page="rental"] .service-bullets li::before {
  color: var(--page-accent) !important;
}

body[data-page="sound-production"] .service-bullets li::before,
body[data-page="video-production"] .service-bullets li::before,
body[data-page="rental"] .service-bullets li::before {
  background: var(--page-accent) !important;
}

body[data-page="sound-production"] .service-hero__visual,
body[data-page="video-production"] .service-hero__visual,
body[data-page="rental"] .service-hero__visual,
body[data-page="sound-production"] .service-list__item,
body[data-page="video-production"] .service-list__item,
body[data-page="rental"] .service-list__item,
body[data-page="sound-production"] .info-card,
body[data-page="video-production"] .info-card,
body[data-page="rental"] .info-card {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16), inset 0 0 0 1px var(--page-accent-soft);
}

/* illustrated cards inside services */
.info-card--photo {
  overflow: hidden;
  padding-top: 0 !important;
}

.info-card__photo {
  position: relative;
  overflow: hidden;
  height: 190px;
  margin: -1px -1px 26px;
  border-radius: 30px 30px 22px 22px;
  background: #111;
}

.info-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.38) 100%),
    radial-gradient(circle at 22% 12%, var(--page-accent-mid), rgba(0,0,0,0) 42%);
}

.info-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.service-section__head--compact {
  margin-bottom: 28px !important;
}

.service-section__head--compact h2 {
  margin: 0;
  color: #f6f7fb;
  font-size: clamp(38px, 4.6vw, 76px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.contact-card {
  min-height: 280px;
  padding: 34px;
  border-radius: 32px;
  background: #fff;
  color: #11151d;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}

.contact-card--main {
  grid-row: span 1;
}

.contact-card h2 {
  margin: 16px 0 24px;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 10px 0 0;
  color: rgba(17,21,29,0.78);
  font-size: 19px;
  line-height: 1.22;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero__center-logo { width: 118px; margin-bottom: 24px; }
  .hero__title-row { grid-template-columns: 34px 1fr 34px !important; gap: 12px !important; }
  .hero__bracket { width: 34px !important; height: 152px !important; flex: 0 0 34px !important; }
  .hero__bracket--left::before { left: 4px !important; width: 28px !important; }
  .hero__bracket--right::before { right: 4px !important; width: 28px !important; }
  .contacts-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-card { min-height: 0; padding: 24px; border-radius: 24px; }
}

@media (max-width: 640px) {
  .hero__center-logo { width: 100px; margin-bottom: 18px; }
  .hero__title-row { grid-template-columns: 24px 1fr 24px !important; gap: 8px !important; }
  .hero__bracket { width: 24px !important; height: 116px !important; flex: 0 0 24px !important; }
  .hero__bracket::before { border-width: 3px !important; }
  .hero__bracket--left::before { left: 0 !important; width: 20px !important; }
  .hero__bracket--right::before { right: 0 !important; width: 20px !important; }
  .info-card__photo { height: 140px; margin-bottom: 18px; border-radius: 22px 22px 18px 18px; }
  .service-section__head--compact h2 { font-size: 32px; }
  .contact-card h2 { font-size: 28px; }
  .contact-card a, .contact-card p { font-size: 16px; }
}


/* ===== PAGE COLORED FOOTERS v55 ===== */
body[data-page="sound-production"] .site-footer,
body[data-page="video-production"] .site-footer,
body[data-page="rental"] .site-footer {
  border-top-color: var(--page-accent-soft) !important;
  background:
    radial-gradient(circle at 8% 100%, var(--page-accent-mid) 0%, var(--page-accent-soft) 18%, rgba(0,0,0,0) 38%),
    radial-gradient(circle at 84% 102%, var(--page-accent-mid) 0%, var(--page-accent-soft) 20%, rgba(0,0,0,0) 38%),
    radial-gradient(circle at 50% 120%, var(--page-accent-soft) 0%, rgba(0,0,0,0) 48%),
    linear-gradient(180deg, #111111 0%, #161616 42%, #1b1b1b 74%, #222222 100%) !important;
}

body[data-page="sound-production"] .site-footer::after,
body[data-page="video-production"] .site-footer::after,
body[data-page="rental"] .site-footer::after {
  background: radial-gradient(ellipse at 50% 100%, var(--page-accent-mid) 0%, var(--page-accent-soft) 34%, rgba(0,0,0,0) 70%) !important;
}

body[data-page="sound-production"] .site-footer__label,
body[data-page="sound-production"] .site-footer a:hover,
body[data-page="video-production"] .site-footer__label,
body[data-page="video-production"] .site-footer a:hover,
body[data-page="rental"] .site-footer__label,
body[data-page="rental"] .site-footer a:hover {
  color: var(--page-accent) !important;
}

body[data-page="sound-production"] .site-footer__bottom,
body[data-page="video-production"] .site-footer__bottom,
body[data-page="rental"] .site-footer__bottom {
  border-top-color: var(--page-accent-soft) !important;
}


/* ===== PRELOADER v56 ===== */
body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 244, 90, 0.10) 0%, rgba(255, 244, 90, 0) 28%),
    radial-gradient(circle at 84% 82%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #111111 0%, #171717 52%, #0e0e0e 100%);
  color: rgba(246, 248, 255, 0.94);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader::before {
  content: "Volna";
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  color: rgba(246, 248, 255, 0.035);
  font-size: clamp(120px, 28vw, 430px);
  line-height: 0.75;
  font-weight: 700;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}

.preloader::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 244, 90, 0.18) 0%, rgba(255, 244, 90, 0.07) 32%, rgba(255, 244, 90, 0) 72%);
  pointer-events: none;
}

.preloader__inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  transform: translateY(0) scale(1);
  transition:
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader__top,
.preloader__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.preloader__eyebrow,
.preloader__bottom span {
  color: rgba(246, 248, 255, 0.52);
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.preloader__percent {
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(22px, 4.2vw, 52px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.preloader__line {
  position: relative;
  overflow: hidden;
  height: 3px;
  margin: 24px 0 18px;
  border-radius: 999px;
  background: rgba(246, 248, 255, 0.10);
}

.preloader__line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--preloader-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #fff98a 0%, #fff45a 46%, #f2e44a 100%);
  box-shadow: 0 0 22px rgba(255, 244, 90, 0.34);
  transition: width 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader.is-hidden .preloader__inner {
  opacity: 0;
  transform: translateY(-18px) scale(0.985);
}

.preloader.is-hidden::before {
  animation: preloaderWordExit 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes preloaderWordExit {
  from {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  to {
    transform: translateX(-50%) translateY(34px);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .preloader {
    padding: 22px;
  }

  .preloader__top,
  .preloader__bottom {
    align-items: flex-start;
  }

  .preloader__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .preloader__line {
    margin: 20px 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader,
  .preloader__inner,
  .preloader__line span {
    transition: none !important;
  }

  .preloader.is-hidden::before {
    animation: none !important;
  }
}


/* ===== PRELOADER v57 CLEAN + 4 SEC ===== */
.preloader {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 244, 90, 0.09) 0%, rgba(255, 244, 90, 0) 28%),
    radial-gradient(circle at 84% 82%, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #101010 0%, #151515 50%, #0a0a0a 100%);
  transition:
    opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.88s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader__inner {
  width: min(760px, calc(100vw - 44px));
}

.preloader__top,
.preloader__bottom,
.preloader__eyebrow,
.preloader__bottom span {
  display: none !important;
}

.preloader__line {
  overflow: visible;
  height: 3px;
  margin: 0;
  background: rgba(246, 248, 255, 0.10);
  box-shadow:
    0 0 22px rgba(255, 244, 90, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.preloader__line span[data-preloader-line] {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #fff98a 0%, #fff45a 46%, #f2e44a 100%);
  box-shadow:
    0 0 14px rgba(255, 244, 90, 0.70),
    0 0 38px rgba(255, 244, 90, 0.32),
    0 0 70px rgba(255, 244, 90, 0.14);
  transition: none;
}

.preloader__line span[data-preloader-line]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 76px;
  height: 18px;
  transform: translate(50%, -50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 244, 90, 0.42) 0%, rgba(255, 244, 90, 0) 68%);
  pointer-events: none;
}

.preloader__percent {
  position: absolute;
  top: -54px;
  left: var(--preloader-progress, 0%);
  transform: translateX(-50%);
  display: block;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(28px, 4.3vw, 52px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.075em;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
  transition: none;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(14px);
}

.preloader.is-hidden .preloader__inner {
  opacity: 0;
  transform: translateY(-22px) scale(0.98);
  filter: blur(8px);
}

@media (max-width: 640px) {
  .preloader__inner {
    width: calc(100vw - 42px);
  }

  .preloader__percent {
    top: -42px;
    font-size: 30px;
  }
}


/* ===== PRELOADER STATIC PERCENT v58 ===== */
.preloader__inner {
  width: min(640px, calc(100vw - 72px));
}

.preloader__percent {
  left: auto !important;
  right: 0 !important;
  top: -56px;
  transform: none !important;
}

.preloader__line span[data-preloader-line]::after {
  transform: translate(25%, -50%);
  width: 58px;
}

@media (max-width: 640px) {
  .preloader__inner {
    width: calc(100vw - 64px);
  }

  .preloader__percent {
    top: -42px;
    right: 0 !important;
    font-size: 30px;
  }
}

/* ===== PRELOADER v59: ONLY GLOW LINE + PERCENT FOLLOWS END ===== */
.preloader__inner {
  width: min(640px, calc(100vw - 72px));
}

.preloader__line {
  position: relative;
  overflow: visible;
  height: 3px;
  margin: 0;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 999px;
}

.preloader__line span[data-preloader-line] {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--preloader-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff98a 0%, #fff45a 46%, #f2e44a 100%);
  box-shadow:
    0 0 13px rgba(255, 244, 90, 0.78),
    0 0 36px rgba(255, 244, 90, 0.34),
    0 0 70px rgba(255, 244, 90, 0.14);
  transition: none;
}

.preloader__line span[data-preloader-line]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 58px;
  height: 18px;
  transform: translate(45%, -50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 244, 90, 0.42) 0%, rgba(255, 244, 90, 0) 68%);
  pointer-events: none;
}

.preloader__percent {
  position: absolute;
  inset: auto !important;
  left: var(--preloader-progress, 0%) !important;
  top: 12px !important;
  right: auto !important;
  width: auto !important;
  height: auto !important;
  transform: translateX(-50%) !important;
  display: block;
  color: rgba(246, 248, 255, 0.96);
  font-size: clamp(28px, 4.3vw, 52px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.075em;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
  background: transparent !important;
  box-shadow: none !important;
  transition: none;
}

@media (max-width: 640px) {
  .preloader__inner {
    width: calc(100vw - 64px);
  }

  .preloader__percent {
    top: 10px !important;
    font-size: 30px;
  }
}


/* ===== PROJECT CARD KINOPOISK LINKS v1 ===== */
.project-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.project-card__actions {
  margin-top: auto;
  padding-top: 18px;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 11px 15px;
  border: 1px solid rgba(246, 248, 255, 0.16);
  border-radius: 999px;
  background: rgba(246, 248, 255, 0.08);
  color: rgba(246, 248, 255, 0.94);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.project-card__link:hover {
  transform: translateY(-1px);
  border-color: rgba(94, 162, 255, 0.42);
  background: rgba(94, 162, 255, 0.14);
}

.projects-showcase--catalog .project-card__link,
.page-projects .project-card__link {
  border-color: rgba(18, 22, 31, 0.12);
  background: rgba(18, 22, 31, 0.04);
  color: #12161f;
}

.projects-showcase--catalog .project-card__link:hover,
.page-projects .project-card__link:hover {
  border-color: rgba(18, 22, 31, 0.28);
  background: #12161f;
  color: #ffffff;
}


/* ===== PROJECT KINOPOISK BUTTONS FIX ===== */
.project-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.project-card__actions {
  margin-top: auto;
  padding-top: 18px;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 12px 18px;
  border: 1px solid rgba(246, 248, 255, 0.22);
  border-radius: 999px;
  background: rgba(246, 248, 255, 0.10);
  color: rgba(246, 248, 255, 0.96);
  text-decoration: none !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.project-card__link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.projects-showcase--catalog .project-card__link,
.page-projects .project-card__link {
  border-color: rgba(18, 22, 31, 0.16);
  background: rgba(18, 22, 31, 0.06);
  color: #12161f;
}

.projects-showcase--catalog .project-card__link:hover,
.page-projects .project-card__link:hover {
  border-color: rgba(18, 22, 31, 0.34);
  background: #12161f;
  color: #ffffff;
}
