/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-medium-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-medium-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope-semibold-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope-semibold-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-bold-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-bold-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  --color-dark: #1e2328;
  --color-darker: #181818;
  --color-text: #202020;
  --color-text-strong: #151515;
  --color-text-muted: #4d4545;
  --color-text-light: #e8e0d3;
  --color-accent: #b79052;
  --color-accent-soft: #b79052;
  --color-cream: #f5f1ea;
  --color-border: rgba(32, 32, 32, 0.6);
  --color-overlay: rgba(0, 0, 0, 0.2);

  --font-main: "Manrope", "Arial", sans-serif;

  --container-width: 1520px;
  --container-padding: 80px;
}

@media (min-width: 2001px) {
  :root {
    --container-width: 1800px;
  }
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

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

html {
  --page-bg: #262626;
  -webkit-text-size-adjust: 100%;
  background-color: var(--page-bg);
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--page-bg);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

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

/* ==========================================================================
   Button
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 300px;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.button:hover {
  opacity: 0.85;
}

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

.button--outline {
  padding: 14px 50px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.button--soft {
  background-color: var(--color-cream);
  color: var(--color-text-strong);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.button__icon {
  flex-shrink: 0;
  transform: rotate(90deg);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  max-width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 144px;
  height: 131px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header__link {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    var(--color-accent) 0 50%,
    var(--color-text-light) 50% 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.45s ease;
}

.header__link:hover,
.header__link:focus-visible {
  background-position: 0 0;
}

.header__burger {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.header__burger-line {
  width: 22px;
  height: 2px;
  background-color: var(--color-text-light);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header--nav-open .header__burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header--nav-open .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header--nav-open .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-top: 455px;
  padding-bottom: 140px;
  overflow: hidden;
  background-color: #262626;
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 810px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35));
  opacity: 0.5;
  pointer-events: none;
}

.hero__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 149px;
  background: linear-gradient(to top, rgba(30, 35, 40, 0), var(--color-dark));
}

.hero__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 417px;
  background: linear-gradient(to bottom, rgba(54, 54, 53, 0), #262626);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.hero__glow--warm {
  left: 470px;
  top: 620px;
  z-index: 1;
  width: 1100px;
  height: 720px;
  background-image:
    url("../images/ras.png"),
    radial-gradient(
      ellipse 55% 48% at 50% 50%,
      rgba(245, 241, 234, 0.88) 0%,
      rgba(245, 241, 234, 0.5) 28%,
      rgba(245, 241, 234, 0.18) 48%,
      rgba(245, 241, 234, 0) 70%
    );
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: cover, 100% 100%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: radial-gradient(
    ellipse 72% 68% at 50% 50%,
    #000 0%,
    #000 32%,
    transparent 70%
  );
  mask-image: radial-gradient(
    ellipse 72% 68% at 50% 50%,
    #000 0%,
    #000 32%,
    transparent 70%
  );
}

.hero__glow--dark {
  left: -198px;
  top: -18px;
  width: 433px;
  height: 183px;
  background-image: url("../images/glow-dark-desktop.svg");
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 753px;
  color: var(--color-cream);
}

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

.hero__text {
  margin-top: 33px;
  max-width: 753px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-light);
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero__actions .button__icon {
  transition: transform 0.35s ease;
}

.hero__actions .button:hover .button__icon {
  transform: translateX(5px) rotate(90deg);
}

.hero--history {
  padding-top: 451px;
  padding-bottom: 40px;
  min-height: 810px;
}

.hero--history .hero__overlay {
  background: #000;
  opacity: 0.5;
}

.hero--history .hero__title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 30px;
}

.hero--history .hero__text {
  margin-top: 32px;
  max-width: 594px;
}

.hero--history .hero__years {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 5px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-light);
}

.hero--history .hero__year {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--color-text-light);
}

.hero--history .hero__year--start {
  color: var(--color-accent);
}

.hero--history .hero__years-line {
  display: block;
  width: 100px;
  height: 1px;
  min-height: 1px;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  background-color: var(--color-accent);
}

.history-story {
  position: relative;
  overflow: visible;
  padding: 0;
  color: var(--color-text-strong);
  background-color: var(--page-bg);
  --history-card-height: 543px;
  --history-bg-inset: 255px;
}

.history-story__pin {
  position: sticky;
  top: 0;
  overflow-x: clip;
  overflow-y: visible;
  padding: var(--history-pin-pad-top, 80px) 0
    calc(var(--history-pin-pad-bottom, 80px) + var(--history-open-extra, 0px));
  background-color: var(--page-bg);
}

.history-story__media {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: var(--history-open-extra, 0px);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.history-story__bg {
  position: absolute;
  top: -30px;
  left: var(--history-bg-inset);
  width: calc(100% - var(--history-bg-inset) + 345px);
  height: calc(100% + 30px);
  max-width: none;
  object-fit: cover;
  object-position: left top;
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 10%,
      rgba(0, 0, 0, 0.55) 22%,
      #000 40%,
      #000 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 16%,
      #000 58%,
      rgba(0, 0, 0, 0.35) 82%,
      transparent 100%
    );
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 10%,
      rgba(0, 0, 0, 0.55) 22%,
      #000 40%,
      #000 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 16%,
      #000 58%,
      rgba(0, 0, 0, 0.35) 82%,
      transparent 100%
    );
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-composite: intersect;
}

.history-story__fade {
  position: absolute;
  pointer-events: none;
}

.history-story__fade--side {
  top: -30px;
  left: 0;
  width: calc(var(--history-bg-inset) + min(1185px, 70%));
  height: calc(100% + 30px);
  background: linear-gradient(
    90deg,
    var(--page-bg) 0,
    var(--page-bg) var(--history-bg-inset),
    color-mix(in srgb, var(--page-bg) 80%, transparent) calc(var(--history-bg-inset) + 28%),
    transparent 100%
  );
}

.history-story__fade--top {
  top: -30px;
  left: 0;
  width: 100%;
  height: 303px;
  background: linear-gradient(
    180deg,
    var(--page-bg) 0%,
    color-mix(in srgb, var(--page-bg) 55%, transparent) 55%,
    transparent 100%
  );
}

.history-story__fade--bottom {
  left: 0;
  bottom: 0;
  width: 100%;
  height: min(420px, 48%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--page-bg) 45%, transparent) 42%,
    var(--page-bg) 78%,
    var(--page-bg) 100%
  );
}

.history-story__head,
.history-story__scroll {
  position: relative;
  z-index: 1;
}

.history-story__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.history-story__heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 548px;
}

.history-story__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.history-story__title-accent {
  display: block;
  color: var(--color-accent);
}

.history-story__title-main {
  display: block;
  color: var(--color-text-strong);
}

.history-story__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent);
}

.history-story__lead {
  max-width: 555px;
  margin-top: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
  color: var(--color-text-muted);
}

.history-story__viewport {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: 0 var(--container-padding);
  cursor: grab;
  user-select: none;
}

.history-story__viewport.is-dragging {
  cursor: grabbing;
}

.history-story__track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
  padding-bottom: 30px;
  will-change: transform;
}

.history-card {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  height: var(--history-card-height);
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.history-card__panel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: var(--history-card-height);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.history-card.is-open .history-card__panel {
  z-index: 4;
  height: auto;
  overflow: visible;
}

.history-card__photo {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}

.history-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.history-card__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.history-card__arc {
  position: absolute;
  top: 0;
  left: 40%;
  z-index: 1;
  width: 60.36%;
  height: 100.6%;
  pointer-events: none;
}

.history-card__index {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 2;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.history-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 243px;
  padding: 28px 20px 54px;
}

.history-card__year {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-accent);
}

.history-card__name {
  margin: 0 0 -12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text-strong);
}

.history-card__text {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.history-card__text > p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.history-card.is-open .history-card__text > p {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.history-card__extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.history-card.is-open .history-card__extra {
  grid-template-rows: 1fr;
}

.history-card__extra-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
}

.history-card__extra-inner p {
  margin: 0;
}

.history-card__list {
  margin: 0;
  padding-left: 26px;
}

.history-card__list li {
  list-style: disc;
}

.history-card:not(:has(.history-card__extra)) .history-card__plus {
  display: none;
}

.history-card__plus {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1;
  color: var(--color-accent);
  cursor: pointer;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.history-card.is-open .history-card__plus {
  transform: rotate(45deg);
}

.history-story__scroll {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.history-story__bar {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    rgba(183, 144, 82, 0.15) 0%,
    rgba(183, 144, 82, 0.25) 100%
  );
  cursor: pointer;
}

.history-story__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 12px;
  border-radius: 50px;
  background-color: var(--color-accent);
  pointer-events: none;
}

/* ==========================================================================
   Regions
   ========================================================================== */

.regions {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  overflow: hidden;
  background-color: #363635;
}

.regions__frame {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  aspect-ratio: 1440 / 1060;
  overflow: hidden;
  background-color: #363635;
}

.regions__header {
  position: absolute;
  z-index: 3;
  top: calc(100% * 80 / 1060);
  left: var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(100% * 20 / 1060);
  width: calc(100% * 435 / 1440);
  pointer-events: none;
}

.regions__title {
  font-weight: 500;
  font-size: clamp(28px, 4.17vw, 60px);
  line-height: 1.1;
  text-transform: uppercase;
}

.regions__title-main {
  display: block;
  color: var(--color-cream);
}

.regions__title-accent {
  display: block;
  color: var(--color-accent-soft);
}

.regions__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent-soft);
}

.regions__lead {
  position: absolute;
  top: calc(100% * 116 / 1060);
  right: var(--container-padding);
  z-index: 3;
  width: calc(100% * 545 / 1440);
  max-width: 545px;
  font-weight: 500;
  font-size: clamp(14px, 1.39vw, 20px);
  line-height: 1.6;
  color: var(--color-text-light);
  text-align: right;
  pointer-events: none;
}

.regions__map {
  position: absolute;
  inset: 0;
}

/* Карта + точки масштабируются вместе — позиции % не съезжают */
.regions__stage {
  --regions-stage-scale: 1;
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: scale(var(--regions-stage-scale));
  transform-origin: 50% 60%;
  will-change: transform;
}

.regions__map-art {
  position: absolute;
  z-index: 1;
  top: calc(100% * 159 / 1060);
  left: calc(100% * 2 / 1440);
  width: calc(100% * 1360 / 1440);
  height: calc(100% * 902 / 1060);
  overflow: visible;
  pointer-events: none;
}

.regions__picture {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.regions__map-blur,
.regions__map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: left top;
  pointer-events: none;
}

.regions__drawn-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
}

.regions__drawn-line {
  position: absolute;
  display: block;
  max-width: none;
  overflow: visible;
  pointer-events: none;
}

.regions__drawn-line--a {
  left: calc(100% * 66.97 / 1360);
  top: calc(100% * 444.78 / 902);
  width: calc(100% * 7.043 / 1360);
  height: calc(100% * 20.43 / 902);
}

.regions__drawn-line--b {
  left: calc(100% * 113.78 / 1360);
  top: calc(100% * 454.93 / 902);
  width: calc(100% * 14.485 / 1360);
  height: calc(100% * 30.362 / 902);
}

.regions__drawn-line--c {
  left: calc(100% * 90.86 / 1360);
  top: calc(100% * 462.51 / 902);
  width: calc(100% * 9.351 / 1360);
  height: calc(100% * 17.249 / 902);
}

.regions__map-blur {
  z-index: 0;
  opacity: 0.5;
  filter: blur(25px);
}

.regions__map-img {
  z-index: 1;
}

.regions__fades {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.regions__fade {
  position: absolute;
}

.regions__fade--top,
.regions__fade--bottom,
.regions__fade--start,
.regions__fade--end {
  display: none;
}

.regions__connector {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  /* Без transition при скрытии — иначе ниточка остаётся после плашки */
  transition: none;
}

.regions__connector.is-visible {
  opacity: 1;
  transition: opacity 0.28s ease;
}

.regions__points {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.regions-point {
  position: absolute;
  z-index: 2;
  display: block;
  width: 32px;
  height: 32px;
  margin: -10px 0 0 -10px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  font: inherit;
  white-space: nowrap;
}

.regions-point:focus-visible {
  outline: 2px solid var(--color-accent-soft);
  outline-offset: 4px;
}

.regions-point__mark {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.regions-point__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.regions-point__dot--sm {
  width: 24px;
  height: 24px;
  opacity: 1;
}

.regions-point__dot--lg {
  width: 32px;
  height: 32px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

.regions-point__label {
  position: absolute;
  top: 50%;
  left: calc(100% + 2px);
  transform: translateY(-50%);
  /* Hit-test геометрический в JS — подпись не должна срывать hover */
  pointer-events: none;
  font-weight: 500;
  /* 19px визуально с учётом scale сцены */
  font-size: calc(19px / var(--regions-stage-scale, 1));
  line-height: 1.2;
  color: #c4baab;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.regions-point.is-active {
  z-index: 4;
}

.regions-point.is-active .regions-point__mark {
  top: 6px;
  left: 6px;
  width: 20px;
  height: 20px;
}

.regions-point.is-active .regions-point__dot--sm {
  opacity: 0;
}

.regions-point.is-active .regions-point__dot--lg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.regions-point.is-active .regions-point__label {
  top: calc(var(--label-y, -48px) + 10px);
  left: calc(var(--label-x, 36px) + 10px);
  transform: none;
  padding: 6px 12px;
  border: 0.8px solid var(--color-accent-soft);
  border-radius: 4px;
  background-color: #21201f;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.4);
  font-size: calc(22px / var(--regions-stage-scale, 1));
  color: var(--color-text-light);
  pointer-events: none;
  animation: regions-label-in 0.28s ease;
}

@keyframes regions-label-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.regions-point--deluvialnoe {
  top: calc(100% * 512 / 1060);
  left: calc(100% * 956 / 1440);
}

.regions-point--polyarnik {
  top: calc(100% * 530 / 1060);
  left: calc(100% * 966 / 1440);
}

.regions-point--delyankir {
  top: calc(100% * 538 / 1060);
  left: calc(100% * 1076 / 1440);
}

.regions-point--delyankir:not(.is-active) .regions-point__label {
  transform: translateY(calc(-50% - 8px));
}

.regions-point--malo-tarynskoe {
  top: calc(100% * 554 / 1060);
  left: calc(100% * 1017 / 1440);
}

.regions-point--yakutskoe {
  top: calc(100% * 569 / 1060);
  left: calc(100% * 1000 / 1440);
}

.regions-point--turakh-yuryakh {
  top: calc(100% * 584 / 1060);
  left: calc(100% * 995 / 1440);
}

.regions-point--zerkalny {
  top: calc(100% * 426 / 1060);
  left: calc(100% * 1213 / 1440);
}

.regions-point--ignimbritovy {
  top: calc(100% * 441 / 1060);
  left: calc(100% * 1206 / 1440);
}

.regions-point--kangalatvayam {
  top: calc(100% * 525 / 1060);
  left: calc(100% * 1254 / 1440);
}

.regions-point--perevalny {
  top: calc(100% * 559 / 1060);
  left: calc(100% * 1266 / 1440);
}

.regions-point--ozernovskoe {
  top: calc(100% * 575 / 1060);
  left: calc(100% * 1278 / 1440);
}

.regions-point--solonechnskoe {
  top: calc(100% * 773 / 1060);
  left: calc(100% * 939 / 1440);
}

.regions-panel {
  position: absolute;
  z-index: 5;
  top: calc(var(--panel-top, calc(100% * 388 / 1060)) + var(--panel-shift, 16px));
  left: var(--panel-left, calc(100% * 706 / 1440));
  display: flex;
  flex-direction: column;
  width: calc(100% * 360 / 1440);
  height: calc(100% * 470 / 1060);
  min-height: 0;
  padding: 20px;
  border: none;
  border-radius: 16px;
  background-color: transparent;
  box-shadow: 0 30px 20px rgba(0, 0, 0, 0.4);
  visibility: hidden;
  pointer-events: none;
}

/* Стекло без opacity/transform на предках — иначе backdrop-filter «догоняет» рамку */
.regions-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-color: rgba(33, 32, 31, 0.6);
  background-image: linear-gradient(rgba(33, 32, 31, 0.2), rgba(33, 32, 31, 0.2));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

/* Рамка отдельным слоем поверх стекла — не обрезается backdrop-filter */
.regions-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  border: 0.8px solid transparent;
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.regions-panel > * {
  position: relative;
  z-index: 1;
}

.regions-panel.is-open {
  visibility: visible;
  /* Десктоп: панель только для просмотра при hover, не перехватывает курсор */
  pointer-events: none;
}

.regions-panel.is-open::after {
  border-color: #c59a4a;
  transition: border-color 0.25s ease 0.05s;
}

/* Выезд только при первом открытии — при смене точки позиция без анимации */
.regions-panel.is-open.is-entering {
  transition:
    top 0.4s ease,
    left 0.35s ease;
}

.regions-panel.is-open.is-entering::after {
  transition: border-color 0.25s ease 0.05s;
}

.regions-panel__region {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #c59a4a;
}

.regions-panel__name {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-cream);
}

.regions-panel__divider {
  display: block;
  width: 53px;
  height: 2px;
  margin-bottom: 0;
  background-color: #c59a4a;
}

.regions-panel__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 16px 0;
}

.regions-panel__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.regions-panel__bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 6px;
  background-color: #c59a4a;
}

.regions-panel__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.regions-panel__stage {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.regions-panel__text {
  margin: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #a69a9a;
}

.regions-panel__footer {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(232, 224, 211, 0.15);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.33;
  color: #a69a9a;
}

.regions-panel__value {
  font-weight: 600;
  color: #c59a4a;
}

/* ==========================================================================
   Presence (Yandex map)
   ========================================================================== */

.presence {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--color-darker);
}

.presence:first-child {
  margin-top: 0;
}

.presence__frame {
  position: relative;
  width: 100%;
  /* Без max-width — растягиваем на весь viewport */
  aspect-ratio: 1440 / 1060;
  overflow: hidden;
  background-color: #181818;
}

/* Якорный контейнер для текстовых элементов — центрирует их в 1440px */
.presence__frame::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  max-width: var(--container-width);
  margin: 0 auto;
  pointer-events: none;
}

.presence__header {
  position: absolute;
  z-index: 3;
  top: calc(100% * 80 / 1060);
  /* Центрируем: отступ = (100% - 1440px) / 2 + container-padding */
  left: max(var(--container-padding), calc(50% - var(--container-width) / 2 + var(--container-padding)));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(100% * 20 / 1060);
  width: calc(100% * 435 / 1440);
  max-width: 435px;
  pointer-events: none;
}

.presence__title {
  font-weight: 500;
  font-size: clamp(28px, 4.17vw, 60px);
  line-height: 1.1;
  text-transform: uppercase;
}

.presence__title-main {
  display: block;
  color: var(--color-cream);
}

.presence__title-accent {
  display: block;
  color: var(--color-accent-soft);
}

.presence__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent-soft);
}

.presence__lead {
  position: absolute;
  top: calc(100% * 116 / 1060);
  right: max(var(--container-padding), calc(50% - var(--container-width) / 2 + var(--container-padding)));
  z-index: 3;
  width: calc(100% * 545 / 1440);
  max-width: 545px;
  font-weight: 500;
  font-size: clamp(14px, 1.39vw, 20px);
  line-height: 1.6;
  color: var(--color-text-light);
  text-align: right;
  pointer-events: none;
}

.presence__map {
  position: absolute;
  inset: 0;
}

.presence__canvas {
  position: absolute;
  inset: 0;
  background-color: #101010;
}

.presence__canvas > ymaps,
.presence__canvas canvas {
  background-color: #101010;
}

.presence__connector {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  transition: none;
}

.presence__connector.is-visible {
  opacity: 1;
  transition: opacity 0.28s ease;
}

.presence-zoom {
  position: absolute;
  z-index: 6;
  top: calc(50% - 100px);
  right: var(--container-padding);
  display: flex;
  flex-direction: column;
  border: 0.8px solid var(--color-accent-soft);
  border-radius: 4px;
  overflow: hidden;
  background-color: #21201f;
  transform: translateY(-50%);
}

.presence-zoom__btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #e8e0d3;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.presence-zoom__btn + .presence-zoom__btn {
  border-top: 0.8px solid rgba(197, 154, 74, 0.4);
}

.presence-zoom__btn:hover,
.presence-zoom__btn:focus-visible {
  background-color: #2a2826;
  color: #c59a4a;
}

.presence-mark-wrap {
  pointer-events: none;
}

.presence__canvas ymaps,
.presence__canvas [class^="ymaps"] {
  color: #e8e0d3;
}

.presence-mark {
  position: relative;
  width: 0;
  height: 0;
  cursor: pointer;
  pointer-events: none;
}

.presence-mark__pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #c59a4a;
  box-shadow: 0 0 12px 3px rgba(239, 167, 53, 0.55);
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.presence-mark__pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff9ee;
  transform: translate(-50%, -50%);
}

.presence-mark__label {
  position: absolute;
  top: 0;
  left: 12px;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  color: #e8e0d3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  pointer-events: none;
}

.presence-mark--start .presence-mark__label {
  left: auto;
  right: 12px;
  transform: translateY(-50%);
}

.presence-mark--bottom .presence-mark__label {
  top: 12px;
  left: 0;
  transform: translate(-50%, 0);
}

.presence-mark--top .presence-mark__label {
  top: auto;
  bottom: 12px;
  left: 0;
  transform: translate(-50%, 0);
}

.presence-mark.is-active .presence-mark__pin {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 16px 5px rgba(239, 167, 53, 0.8);
}

.presence-mark.is-active .presence-mark__pin::after {
  width: 6px;
  height: 6px;
}

.presence-mark.is-active .presence-mark__label {
  z-index: 3;
  top: var(--label-y, -48px);
  left: var(--label-x, 36px);
  right: auto;
  bottom: auto;
  transform: none;
  padding: 6px 12px;
  border: 0.8px solid var(--color-accent-soft);
  border-radius: 4px;
  background-color: #21201f;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.4);
  font-size: 16px;
  text-shadow: none;
}

.presence__canvas:not(.is-zoomed) .presence-mark__pin {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 10px 3px rgba(239, 167, 53, 0.5);
}

.presence__canvas:not(.is-zoomed) .presence-mark__pin::after {
  display: none;
}

.presence__canvas:not(.is-zoomed) .presence-mark.is-active .presence-mark__pin::after {
  display: block;
}

.presence-mark__label.is-colliding,
.presence__canvas:not(.is-zoomed) .presence-mark__label {
  display: none;
}

.presence-mark:hover .presence-mark__label,
.presence-mark.is-active .presence-mark__label,
.presence-mark:hover .presence-mark__label.is-colliding,
.presence-mark.is-active .presence-mark__label.is-colliding {
  display: block;
}

.presence-panel {
  position: absolute;
  z-index: 5;
  top: var(--panel-top, 24%);
  left: var(--panel-left, 8%);
  display: flex;
  flex-direction: column;
  width: calc(100% * 533 / 1440);
  max-height: 72%;
  min-height: 0;
  padding: calc(100% * 32 / 1440);
  border: none;
  border-radius: 20px;
  background-color: transparent;
  box-shadow: 0 30px 20px rgba(0, 0, 0, 0.4);
  visibility: hidden;
  pointer-events: none;
}

.presence-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-color: rgba(33, 32, 31, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.presence-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  border: 0.8px solid transparent;
  pointer-events: none;
}

.presence-panel > * {
  position: relative;
  z-index: 1;
}

.presence-panel.is-open {
  visibility: visible;
  pointer-events: auto;
}

.presence-panel.is-open::after {
  border-color: var(--color-accent-soft);
}

.presence-panel__region {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: clamp(10px, 0.9vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
}

.presence-panel__name {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: clamp(20px, 2.22vw, 32px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-cream);
}

.presence-panel__divider {
  display: block;
  width: 53px;
  height: 2px;
  margin-bottom: 20px;
  background-color: var(--color-accent-soft);
}

.presence-panel__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 26px;
  overflow: auto;
}

.presence-panel__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.presence-panel__bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 6px;
  background-color: var(--color-accent-soft);
}

.presence-panel__stage {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: clamp(13px, 1.11vw, 16px);
  text-transform: uppercase;
  color: var(--color-text-light);
}

.presence-panel__text {
  font-weight: 500;
  font-size: clamp(13px, 1.04vw, 15px);
  line-height: 24px;
  color: #a69a9a;
}

.presence-panel__footer {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(232, 224, 211, 0.15);
  font-weight: 500;
  font-size: clamp(13px, 1.04vw, 15px);
  color: #a69a9a;
}

.presence-panel__value {
  font-weight: 600;
  color: var(--color-accent-soft);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  /* Заходим под скругления regions — без белых углов */
  margin-top: -40px;
  padding-bottom: 0;
  overflow: hidden;
  background-color: var(--page-bg);
}

.about__showcase {
  position: relative;
  /* 80px до заголовка + 40px компенсации margin */
  padding: 120px 0 0;
  overflow: hidden;
}

.about__showcase > .container {
  position: relative;
  z-index: 1;
}

.about__showcase > .container:last-child {
  padding-bottom: 80px;
}

.about__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about__bg-clip {
  position: absolute;
  top: 2px;
  left: calc(50% - 463px);
  width: 1526px;
  height: 859px;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 12%,
      rgba(0, 0, 0, 0.45) 24%,
      #000 38%,
      #000 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 22%,
      #000 90%,
      transparent 100%
    );
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 12%,
      rgba(0, 0, 0, 0.45) 24%,
      #000 38%,
      #000 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 22%,
      #000 90%,
      transparent 100%
    );
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-composite: intersect;
}

/* Правый fade — привязан к картинке, появляется когда viewport шире контейнера */
.about__bg-clip::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 200px;
  height: 100%;
  background: linear-gradient(to left, var(--page-bg) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
}

@media (min-width: 1441px) {
  .about__bg-clip::after {
    opacity: 1;
  }
}

.about__bg {
  position: absolute;
  top: -4%;
  left: calc(8% - 150px);
  width: 108%;
  height: 108%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transform-origin: center center;
}

.about__fade {
  position: absolute;
  pointer-events: none;
}

.about__fade--side {
  top: 0;
  left: 0;
  z-index: 1;
  width: calc(50% + 60px);
  height: 861px;
  background: linear-gradient(
    to right,
    var(--page-bg) 0%,
    var(--page-bg) calc(100% - 523px),
    color-mix(in srgb, var(--page-bg) 80%, transparent) calc(100% - 256px),
    transparent 100%
  );
}


.about__fade--top {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 303px;
  background: linear-gradient(
    to bottom,
    var(--page-bg) 0%,
    color-mix(in srgb, var(--page-bg) 75%, transparent) 40%,
    transparent 100%
  );
}

.about__fade--bottom {
  top: 760px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    color-mix(in srgb, var(--page-bg) 20%, transparent) 55%,
    color-mix(in srgb, var(--page-bg) 55%, transparent) 100%
  );
}

.about__inner {
  position: relative;
  z-index: 1;
}

.about__intro {
  max-width: 555px;
}

.about__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text-strong);
}

.about__line {
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 20px;
  background-color: var(--color-accent);
}

.about__lead {
  margin-top: 37px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 600px;
  max-width: 100%;
  margin-top: 30px;
}

.about-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: 20px;
}

.about-card__label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-card__text {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
}

.about-card__text-extra {
  display: none;
}

.about-card--mission {
  background-color: rgba(24, 24, 24, 0.87);
}

.about-card--mission .about-card__label {
  color: var(--color-accent-soft);
}

.about-card--mission .about-card__text {
  color: var(--color-text-light);
}

.about-card--goal {
  padding-right: 200px;
  background-color: rgba(183, 144, 82, 0.87);
  color: var(--color-text-strong);
}

.about-card--task {
  padding: 29px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(21, 21, 21, 0.15);
}

.about-card--task .about-card__label {
  color: var(--color-accent-soft);
}

.about-card--task .about-card__text {
  color: var(--color-text-strong);
}

.about-card__badge {
  position: absolute;
  top: -10px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3.5px solid var(--color-accent);
  background-color: #181818;
  box-shadow: 0 0 0 3px #181818, 0 0 0 4.5px #181818, 0 16px 16px rgba(0, 0, 0, 0.25);
  color: var(--color-accent);
  text-align: center;
}

.about-card__badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(
    from 200deg,
    transparent 0 58%,
    rgba(183, 144, 82, 0.55) 72%,
    transparent 88%
  );
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  filter: blur(0.5px);
}

.about-card__badge-value {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: var(--color-accent);
}

.about-card__badge-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.about__stats {
  display: flex;
  align-items: center;
  height: 145px;
  margin-top: 40px;
  padding: 36px 10px;
  border-radius: 24px;
  background-color: rgba(24, 24, 24, 0.87);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.about__stats.is-revealed {
  opacity: 1;
  transform: none;
}

.about__stat {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  text-align: center;
}

.about__stat:not(:last-child) {
  box-shadow: inset -1px 0 0 0 rgba(232, 224, 211, 0.15);
}

.about__stat-value-wrap {
  position: relative;
  display: inline-block;
}

.about__stat-sizer,
.about__stat-value {
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--color-accent);
}

.about__stat-sizer {
  display: block;
  visibility: hidden;
}

.about__stat-value-wrap .about__stat-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__stat-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-light);
}

/* About reveal — каждый элемент при доскролле до него */
.about__title,
.about__line,
.about__lead {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.about__title.is-revealed,
.about__line.is-revealed,
.about__lead.is-revealed {
  opacity: 1;
  transform: none;
}

.about-card {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.about-card.is-revealed {
  opacity: 1;
  transform: none;
}

.about-card__badge {
  opacity: 0;
  transform: scale(0.88);
  transition: none;
}

.about-card__badge.is-revealed {
  animation: about-badge-in 1.15s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.about-card__badge.is-revealed::before {
  animation: about-badge-gleam 1.3s ease 0.45s 1 forwards;
}

@keyframes about-badge-in {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes about-badge-gleam {
  0% {
    opacity: 0;
    transform: rotate(0deg);
  }

  25% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
    transform: rotate(110deg);
  }
}

.about__stat.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .about__title,
  .about__line,
  .about__lead,
  .about-card,
  .about-card__badge,
  .about__stats,
  .about__stat {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .about-card__badge::before {
    display: none;
  }

  .about__bg {
    will-change: auto;
    transform: none !important;
  }
}

/* ==========================================================================
   Values
   ========================================================================== */

.values {
  position: relative;
  overflow: hidden;
  padding: 79px 0 80px;
  background-color: #121212;
}

.values__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.values__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 30%;
}

.values__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(18, 18, 18, 0.35) 0%, rgba(18, 18, 18, 0.55) 100%);
}

.values > .container {
  position: relative;
  z-index: 1;
}

.values__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.values__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.values__title {
  font-weight: 500;
  font-size: 60px;
  line-height: 66px;
  text-transform: uppercase;
}

.values__title-main {
  display: block;
  color: #ffffff;
}

.values__title-accent {
  display: block;
  color: var(--color-accent-soft);
}

.values__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent-soft);
}

.values__lead {
  width: 412px;
  max-width: 100%;
  margin-top: 36px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  text-align: right;
}

.values__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.values__row {
  display: grid;
  column-gap: 20px;
  row-gap: 0;
  /* Три ряда: иконка / заголовок / текст — выравнивание в паре карточек */
  grid-template-rows: auto auto auto;
  align-items: stretch;
}

.values__row--top {
  grid-template-columns: 847fr 413fr;
}

.values__row--middle {
  grid-template-columns: 1fr 1fr;
}

.values__row--bottom {
  grid-template-columns: 1fr 1fr;
}

.values-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  min-width: 0;
  min-height: 260px;
  height: auto;
  padding: 28px;
  border: 1px solid rgba(232, 224, 211, 0.35);
  border-radius: 20px;
  background-color: rgba(24, 24, 24, 0.6);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    background-color 0.45s ease,
    border-color 0.45s ease;
}

.values-card:hover,
.values-card:focus-within {
  border-color: rgba(183, 144, 82, 0.6);
  background-color: rgba(183, 144, 82, 0.6);
}

.values-card__head {
  display: contents;
}

.values-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: filter 0.45s ease;
}

.values-card:hover .values-card__icon,
.values-card:focus-within .values-card__icon {
  filter: brightness(0) invert(8.24%);
}

.values-card__title {
  margin-top: 36px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  transition: color 0.45s ease;
}

.values-card:hover .values-card__title,
.values-card:focus-within .values-card__title {
  color: var(--color-text-strong);
}

.values-card__text {
  margin-top: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  transition: color 0.45s ease;
}

.values-card:hover .values-card__text,
.values-card:focus-within .values-card__text {
  color: rgba(21, 21, 21, 0.75);
}

.values-card--efficiency .values-card__title {
  line-height: 1.1;
}

@supports not (grid-template-rows: subgrid) {
  .values__row {
    grid-template-rows: none;
    gap: 20px;
  }

  .values-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: none;
  }
}

/* Values reveal — по элементу при доскролле */
.values__title,
.values__line,
.values__lead {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.values__title.is-revealed,
.values__line.is-revealed,
.values__lead.is-revealed {
  opacity: 1;
  transform: none;
}

.values-card[data-values-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.values-card[data-values-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .values__title,
  .values__line,
  .values__lead,
  .values-card[data-values-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .values-card,
  .values-card__icon,
  .values-card__title,
  .values-card__text {
    transition: none;
  }
}

/* ==========================================================================
   Cycle
   ========================================================================== */

.cycle {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background-color: var(--page-bg);
}

.cycle__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px var(--container-padding) 80px;
}

.cycle__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.cycle.is-inview .cycle__header {
  opacity: 1;
  transform: translateY(0);
}

.cycle__title {
  margin: 0;
  font-weight: 500;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
}

.cycle__title-main {
  display: block;
  color: var(--color-text-strong);
}

.cycle__title-accent {
  display: block;
  color: var(--color-accent-soft);
}

.cycle__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent-soft);
}

.cycle__diagram {
  position: relative;
  z-index: 1;
}

.cycle__path {
  position: absolute;
  top: 74px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 12px;
  overflow: visible;
  pointer-events: none;
}

.cycle__path-track,
.cycle__path-dash,
.cycle__path-pulse {
  fill: none;
  stroke: var(--color-accent-soft);
  stroke-linecap: round;
}

.cycle__path-track {
  stroke-width: 1.25;
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: 80px 6px;
}

.cycle.is-inview .cycle__path-track {
  animation: cycle-path-draw 1.7s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}

.cycle__path-dash {
  stroke-width: 1.5;
  stroke-dasharray: 3 14;
  opacity: 0;
  transition: opacity 0.6s ease 1.4s;
}

.cycle.is-inview .cycle__path-dash {
  opacity: 0.55;
}

.cycle__path-pulse {
  stroke-width: 2.5;
  stroke-dasharray: 6 94;
  stroke-dashoffset: 0;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(183, 144, 82, 0.45));
}

.cycle.is-inview.is-settled .cycle__path-pulse {
  opacity: 0.9;
  animation: cycle-path-pulse 7.5s linear 0.2s infinite;
}

.cycle__path-dots {
  fill: var(--color-accent-soft);
  opacity: 0;
  transition: opacity 0.6s ease 1.4s;
}

.cycle.is-inview .cycle__path-dots {
  opacity: 0.9;
}

.cycle__stages {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cycle-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 160px;
  opacity: 0;
  transform: translate3d(-18px, 0, 0) scale(0.92);
}

.cycle.is-inview .cycle-stage--01 {
  animation: cycle-stage-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.cycle.is-inview .cycle-stage--02 {
  animation: cycle-stage-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.cycle.is-inview .cycle-stage--03 {
  animation: cycle-stage-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.cycle.is-inview .cycle-stage--04 {
  animation: cycle-stage-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
}

.cycle.is-inview .cycle-stage--05 {
  animation: cycle-stage-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.25s forwards;
}

.cycle.is-inview .cycle-stage--06 {
  animation: cycle-stage-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.45s forwards;
}

.cycle.is-inview .cycle-stage--07 {
  animation: cycle-stage-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.65s forwards;
}

.cycle-stage__node {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--color-cream);
  transform: scale(1);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    filter 0.45s ease;
  box-shadow: 0 0 0 0 rgba(183, 144, 82, 0);
  filter: drop-shadow(0 0 0 rgba(183, 144, 82, 0));
}

.cycle-stage__node::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-accent-soft);
  border-radius: 50%;
  pointer-events: none;
}

.cycle-stage__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cycle-stage--02 .cycle-stage__img {
  object-position: center bottom;
}

.cycle-stage__label {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 20px;
  pointer-events: none;
}

.cycle-stage__num {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--color-accent-soft);
}

.cycle-stage__name {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  color: var(--color-text-strong);
  text-transform: uppercase;
  white-space: nowrap;
}

.cycle-stage--05 .cycle-stage__name {
  white-space: normal;
}

.cycle-stage:hover .cycle-stage__node,
.cycle-stage:focus-visible .cycle-stage__node {
  transform: scale(1.06);
  box-shadow: 0 0 28px rgba(183, 144, 82, 0.35);
  filter: drop-shadow(0 0 12px rgba(183, 144, 82, 0.55));
}

.cycle-stage:focus {
  outline: none;
}

.cycle-stage:focus-visible .cycle-stage__node {
  outline: 2px solid rgba(183, 144, 82, 0.7);
  outline-offset: 4px;
}

@keyframes cycle-path-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes cycle-path-pulse {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes cycle-stage-in {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(0.92);
  }

  55% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.04);
    filter: drop-shadow(0 0 14px rgba(183, 144, 82, 0.55));
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 0 0 rgba(183, 144, 82, 0));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cycle__header,
  .cycle-stage,
  .cycle__path-dots,
  .cycle__path-dash {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .cycle__stages::before,
  .cycle-stage:not(:last-child)::after {
    opacity: 1;
    transition: none;
  }

  .cycle__path-track {
    transform: none;
    animation: none;
  }

  .cycle__path-pulse {
    animation: none;
    opacity: 0;
  }
}

/* ==========================================================================
   Advantages
   ========================================================================== */

.advantages {
  position: relative;
  overflow: hidden;
  min-height: 994px;
  background-color: var(--page-bg);
}

.advantages__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.advantages__picture {
  display: block;
  position: absolute;
  top: 0;
  left: calc(100% * -286 / 1440);
  width: calc(100% * 1325 / 1440);
  height: 100%;
}

.advantages__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.advantages__fade {
  position: absolute;
  pointer-events: none;
}

.advantages__fade--top {
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% * 796 / 994);
  background: linear-gradient(
    to bottom,
    var(--page-bg) 0%,
    color-mix(in srgb, var(--page-bg) 55%, transparent) 40%,
    transparent 100%
  );
}

.advantages__fade--bottom {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(
    to top,
    var(--page-bg) 0%,
    color-mix(in srgb, var(--page-bg) 55%, transparent) 50%,
    transparent 100%
  );
}

.advantages__fade--side {
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(100% * 171 / 1440);
  background: linear-gradient(
    to left,
    var(--page-bg) 0%,
    var(--page-bg) 28%,
    color-mix(in srgb, var(--page-bg) 85%, transparent) 55%,
    transparent 100%
  );
}

.advantages__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--container-width);
  min-height: 994px;
  margin: 0 auto;
  padding: 80px var(--container-padding);
}

.advantages__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.advantages__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.advantages__title {
  margin: 0;
  font-weight: 500;
  font-size: 60px;
  line-height: 66px;
  text-transform: uppercase;
}

.advantages__title-main {
  display: block;
  color: var(--color-text-strong);
  white-space: nowrap;
}

.advantages__title-accent {
  display: block;
  color: var(--color-accent-soft);
  white-space: nowrap;
}

.advantages__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent-soft);
}

.advantages__lead {
  display: none;
  margin: 0;
}

.advantages__list {
  display: flex;
  flex-direction: column;
  width: 732px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advantages-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 20px 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  isolation: isolate;
}

.advantages-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgba(183, 144, 82, 0.12) 0%,
    rgba(183, 144, 82, 0) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.advantages-item:hover::before,
.advantages-item:focus-within::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .advantages-item::before {
    transition: none;
  }
}

.advantages-item__num {
  flex-shrink: 0;
  width: 90px;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--color-accent-soft);
  text-align: center;
}

.advantages-item__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.advantages-item__title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-text-strong);
}

.advantages-item__text {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Strategy
   ========================================================================== */

.strategy {
  position: relative;
  z-index: 1;
  padding: 80px var(--container-padding) 0;
  background-color: #171b1f;
}

.strategy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(80px + 360px - 40px);
  background-color: var(--color-cream);
  pointer-events: none;
}

.strategy__card {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 40px;
  background-color: var(--color-cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.strategy__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--color-cream);
}

.strategy__picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.strategy__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -125px 34%;
}

.strategy__fade {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% * 552 / 1440);
  height: 100%;
  background: linear-gradient(
    to left,
    var(--color-cream) 0%,
    rgba(245, 241, 234, 0.95) 35%,
    rgba(245, 241, 234, 0.8) 55%,
    rgba(245, 241, 234, 0) 100%
  );
}

.strategy__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 50px 70px 48px;
  text-align: right;
}

.strategy__header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.strategy__title {
  margin: 0;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
}

.strategy__title-main {
  display: block;
  color: var(--color-text-strong);
  white-space: nowrap;
}

.strategy__title-accent {
  display: block;
  color: var(--color-accent-soft);
  white-space: nowrap;
}

.strategy__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent-soft);
}

.strategy__lead {
  margin: 32px 0 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.strategy__button {
  margin-top: auto;
}

/* ==========================================================================
   Investment
   ========================================================================== */

.investment {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  background-color: #171b1f;
  color: var(--color-text-light);
}

.investment__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.investment__picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.investment__bg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.06);
  transform-origin: center center;
}

.investment__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(18, 18, 18, 0.35) 0%, rgba(18, 18, 18, 0.55) 100%);
}

.investment__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
  padding: 89px 40px 0;
  min-height: 850px;
}

.investment__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-shrink: 0;
  margin-bottom: 205px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.investment.is-inview .investment__header {
  opacity: 1;
  transform: translateY(0);
}

.investment__title {
  margin: 0;
  font-weight: 500;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-cream);
}

.investment__title-accent {
  color: var(--color-accent-soft);
}

.investment__title-main {
  color: var(--color-cream);
}

.investment__line {
  display: none;
  width: 60px;
  height: 2px;
  background-color: var(--color-accent-soft);
}

.investment__button {
  border-color: rgba(232, 224, 211, 0.4);
  color: var(--color-text-light);
  flex-shrink: 0;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.2s ease;
}

.investment__button:hover {
  opacity: 1;
  border-color: var(--color-accent-soft);
  box-shadow: 0 0 18px rgba(183, 144, 82, 0.28);
}

.investment__button .button__icon {
  transition: transform 0.35s ease;
}

.investment__button:hover .button__icon {
  transform: translateX(5px) rotate(90deg);
}

.investment__button--mobile {
  display: none;
}

.investment__list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.investment-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 325px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-22px);
}

.investment.is-inview .investment-item:nth-child(1) {
  animation: investment-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.investment.is-inview .investment-item:nth-child(2) {
  animation: investment-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.investment.is-inview .investment-item:nth-child(3) {
  animation: investment-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
}

.investment.is-inview .investment-item:nth-child(4) {
  animation: investment-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

.investment-item__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 90px;
}

.investment-item__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  transform: scale(1);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}

.investment-item__circle {
  display: block;
  width: 90px;
  height: 90px;
  overflow: visible;
}

.investment-item__circle-fill {
  fill: #1f1c1a;
}

.investment-item__circle-stroke {
  fill: none;
  stroke: var(--color-accent-soft);
  stroke-width: 1;
  stroke-linecap: round;
  transform-origin: 45px 45px;
  transform: rotate(-90deg);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.investment.is-inview .investment-item:nth-child(1) .investment-item__circle-stroke {
  animation: investment-circle-draw 0.9s ease 0.5s forwards;
}

.investment.is-inview .investment-item:nth-child(2) .investment-item__circle-stroke {
  animation: investment-circle-draw 0.9s ease 0.85s forwards;
}

.investment.is-inview .investment-item:nth-child(3) .investment-item__circle-stroke {
  animation: investment-circle-draw 0.9s ease 1.2s forwards;
}

.investment.is-inview .investment-item:nth-child(4) .investment-item__circle-stroke {
  animation: investment-circle-draw 0.9s ease 1.55s forwards;
}

.investment-item__glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.investment-item__connector {
  display: block;
  width: 28px;
  height: 166px;
  margin-top: -8px;
  overflow: visible;
}

.investment-item__dash {
  stroke: var(--color-accent-soft);
  stroke-width: 2;
  stroke-dasharray: 8 8;
  opacity: 0.85;
}

.investment-item__pulse {
  fill: none;
  stroke: #efc27a;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 16 160;
  stroke-dashoffset: 164;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(239, 167, 53, 0.7));
}

.investment.is-inview .investment-item:nth-child(1) .investment-item__pulse {
  animation: investment-pulse 0.85s ease-in 1.05s forwards;
}

.investment.is-inview .investment-item:nth-child(2) .investment-item__pulse {
  animation: investment-pulse 0.85s ease-in 1.4s forwards;
}

.investment.is-inview .investment-item:nth-child(3) .investment-item__pulse {
  animation: investment-pulse 0.85s ease-in 1.75s forwards;
}

.investment.is-inview .investment-item:nth-child(4) .investment-item__pulse {
  animation: investment-pulse 0.85s ease-in 2.1s forwards;
}

.investment-item__dot-glow {
  fill: #efa735;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.4);
  filter: blur(3px);
}

.investment-item__dot {
  fill: var(--color-accent-soft);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.4);
}

.investment-item__dot-core {
  fill: #fff9ee;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.4);
}

.investment.is-inview .investment-item:nth-child(1) .investment-item__dot-glow,
.investment.is-inview .investment-item:nth-child(1) .investment-item__dot,
.investment.is-inview .investment-item:nth-child(1) .investment-item__dot-core {
  animation: investment-dot-on 0.5s ease 1.7s forwards;
}

.investment.is-inview .investment-item:nth-child(2) .investment-item__dot-glow,
.investment.is-inview .investment-item:nth-child(2) .investment-item__dot,
.investment.is-inview .investment-item:nth-child(2) .investment-item__dot-core {
  animation: investment-dot-on 0.5s ease 2.05s forwards;
}

.investment.is-inview .investment-item:nth-child(3) .investment-item__dot-glow,
.investment.is-inview .investment-item:nth-child(3) .investment-item__dot,
.investment.is-inview .investment-item:nth-child(3) .investment-item__dot-core {
  animation: investment-dot-on 0.5s ease 2.4s forwards;
}

.investment.is-inview .investment-item:nth-child(4) .investment-item__dot-glow,
.investment.is-inview .investment-item:nth-child(4) .investment-item__dot,
.investment.is-inview .investment-item:nth-child(4) .investment-item__dot-core {
  animation: investment-dot-on 0.5s ease 2.75s forwards;
}

.investment.is-settled .investment-item:nth-child(-n + 4) .investment-item__dot-glow {
  animation: none;
  opacity: 0.55;
  transform: scale(1);
}

.investment.is-settled .investment-item:nth-child(-n + 4) .investment-item__dot,
.investment.is-settled .investment-item:nth-child(-n + 4) .investment-item__dot-core {
  animation: none;
  opacity: 1;
  transform: scale(1);
}

.investment-item__body {
  padding-top: 11px;
  width: 225px;
  transition: color 0.35s ease;
}

.investment-item__title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color 0.35s ease;
}

.investment-item__title-break {
  display: block;
}

.investment-item__text {
  margin: 16px 0 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  transition: color 0.35s ease, opacity 0.35s ease;
}

.investment-item:hover .investment-item__icon,
.investment-item:focus-within .investment-item__icon {
  transform: scale(1.07);
  filter: drop-shadow(0 0 12px rgba(183, 144, 82, 0.55));
}

.investment-item:hover .investment-item__circle-stroke,
.investment-item:focus-within .investment-item__circle-stroke {
  stroke: #efc27a;
  filter: drop-shadow(0 0 6px rgba(183, 144, 82, 0.7));
}

.investment-item:hover .investment-item__title,
.investment-item:focus-within .investment-item__title {
  color: var(--color-cream);
}

.investment-item:hover .investment-item__text,
.investment-item:focus-within .investment-item__text {
  color: #f5f1ea;
  opacity: 0.95;
}

@keyframes investment-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes investment-circle-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes investment-pulse {
  0% {
    opacity: 0;
    stroke-dashoffset: 164;
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: -16;
  }
}

@keyframes investment-dot-on {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  70% {
    transform: scale(1.12);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .investment__header,
  .investment-item {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .investment-item__circle-stroke,
  .investment-item__pulse,
  .investment-item__dot-glow,
  .investment-item__dot,
  .investment-item__dot-core {
    animation: none;
  }

  .investment-item__circle-stroke {
    stroke-dashoffset: 0;
  }

  .investment-item__pulse {
    opacity: 0;
  }

  .investment-item__dot-glow,
  .investment-item__dot,
  .investment-item__dot-core {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Sustainability
   ========================================================================== */

.sustainability {
  position: relative;
  overflow: hidden;
  min-height: 830px;
  background-color: var(--page-bg);
}

.sustainability__media {
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(100% * 532 / 1440);
  width: calc(100% * 1135 / 1440);
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    rgba(0, 0, 0, 0.4) 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    rgba(0, 0, 0, 0.4) 88%,
    transparent 100%
  );
}

.sustainability__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.sustainability__bg {
  display: block;
  width: 100%;
  height: calc(100% * 850 / 830);
  object-fit: cover;
  object-position: center;
}

.sustainability__fade {
  position: absolute;
  pointer-events: none;
}

.sustainability__fade--start {
  top: 0;
  left: 0;
  width: calc(100% * 520 / 1135);
  height: 100%;
  background: linear-gradient(
    to right,
    var(--page-bg) 0%,
    color-mix(in srgb, var(--page-bg) 80%, transparent) 51%,
    transparent 100%
  );
}

.sustainability__fade--top {
  top: 0;
  left: 0;
  width: 100%;
  height: 303px;
  background: linear-gradient(
    to bottom,
    var(--page-bg) 0%,
    color-mix(in srgb, var(--page-bg) 75%, transparent) 45%,
    transparent 100%
  );
}

.sustainability__fade--bottom {
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 185px;
  background: linear-gradient(
    to top,
    var(--page-bg) 0%,
    var(--page-bg) 22%,
    color-mix(in srgb, var(--page-bg) 80%, transparent) 55%,
    transparent 100%
  );
}

.sustainability__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: var(--container-width);
  min-height: 830px;
  margin: 0 auto;
  padding: 80px var(--container-padding);
}

.sustainability__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 47px;
}

.sustainability__heading {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.sustainability__title {
  margin: 0;
  font-weight: 500;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
}

.sustainability__title-accent,
.sustainability__title-main {
  display: block;
}

.sustainability__title-accent {
  color: var(--color-accent-soft);
}

.sustainability__title-main {
  color: var(--color-text-strong);
}

.sustainability__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent-soft);
}

.sustainability__lead {
  flex: 0 1 555px;
  width: 555px;
  max-width: 100%;
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
  text-align: right;
  color: var(--color-text-muted);
}

.sustainability__list {
  display: grid;
  grid-template-columns: 400px 400px;
  column-gap: 20px;
  row-gap: 22px;
  width: 820px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sustainability-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 44px;
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(21, 21, 21, 0.15);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  transition:
    background-color 0.45s ease,
    border-color 0.45s ease;
}

.sustainability-card:hover,
.sustainability-card:focus-within {
  border-color: rgba(183, 144, 82, 0.6);
  background-color: rgba(183, 144, 82, 0.6);
}

.sustainability-card__icon {
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: filter 0.45s ease;
}

.sustainability-card:hover .sustainability-card__icon,
.sustainability-card:focus-within .sustainability-card__icon {
  filter: brightness(0) invert(8.24%);
}

.sustainability-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.sustainability-card__title {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text-strong);
}

.sustainability-card__title-break {
  display: none;
}

.sustainability-card__text {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  transition: color 0.45s ease;
}

.sustainability-card:hover .sustainability-card__text,
.sustainability-card:focus-within .sustainability-card__text {
  color: rgba(21, 21, 21, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .sustainability-card,
  .sustainability-card__icon,
  .sustainability-card__text {
    transition: none;
  }
}

/* ==========================================================================
   Media library
   ========================================================================== */

.media {
  background-color: var(--page-bg);
  padding: 80px 0;
}

.media__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.media__header {
  position: relative;
  margin-bottom: 50px;
  min-height: 86px;
}

.media__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.media__title {
  margin: 0;
  font-weight: 500;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text-strong);
}

.media__line {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent-soft);
}

.media__tabs {
  position: absolute;
  top: 6px;
  left: calc(475px - var(--container-padding));
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.media__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 40px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: transparent;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    opacity 0.2s ease;
}

.media__tab:hover {
  opacity: 1;
  border-color: var(--color-accent-soft);
  color: var(--color-accent-soft);
}

.media__tab.is-active:hover {
  border-color: var(--color-accent);
  color: var(--color-text-strong);
}

.media__tab.is-active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-strong);
}

.media__tab:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.media__tab-label--mobile {
  display: none;
}

.media__panels {
  display: grid;
}

.media__panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.media__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.media__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.media__grid > li {
  flex: 1 1 0;
  min-width: 200px;
  max-width: 260px;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.media__panel.is-revealed .media__grid > li {
  opacity: 1;
  transform: none;
}

.media__panel.is-revealed .media__grid > li:nth-child(2) {
  transition-delay: 0.18s;
}

.media__panel.is-revealed .media__grid > li:nth-child(3) {
  transition-delay: 0.36s;
}

.media__panel.is-revealed .media__grid > li:nth-child(4) {
  transition-delay: 0.54s;
}

.media__panel.is-revealed .media__grid > li:nth-child(5) {
  transition-delay: 0.72s;
}

@media (prefers-reduced-motion: reduce) {
  .media__grid > li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.media-card {
  position: relative;
  display: block;
  width: 100%;
  height: 194px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background-color: rgba(127, 127, 127, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.media-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

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

.media-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(23, 27, 31, 0.72);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.media-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--color-cream);
  transform: translate(-50%, -50%);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open[hidden] {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(23, 27, 31, 0.92);
  cursor: pointer;
}

.lightbox__dialog {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.lightbox__stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lightbox__image,
.lightbox__video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 120px);
  margin: 0;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.lightbox__image.is-ready,
.lightbox__video.is-ready {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.lightbox__image[hidden],
.lightbox__video[hidden] {
  display: none;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--color-cream);
  transition: opacity 0.2s ease;
  pointer-events: auto;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  opacity: 0.75;
}

.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.lightbox__close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
}

.lightbox__close span,
.lightbox__close span::before {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
}

.lightbox__close span {
  position: relative;
  transform: rotate(45deg);
}

.lightbox__close span::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
}

.lightbox__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

.lightbox__nav span {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.lightbox__nav--prev span {
  margin-left: 4px;
  transform: rotate(135deg);
}

.lightbox__nav--next span {
  margin-right: 4px;
  transform: rotate(-45deg);
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-light);
  white-space: nowrap;
  pointer-events: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--page-bg);
  color: #a69a9a;
}

.footer__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 60px var(--container-padding);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 440px;
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  width: 120px;
}

.footer__logo img {
  display: block;
  width: 120px;
  height: auto;
}

.footer__about {
  width: 380px;
  max-width: 100%;
}

.footer__copy {
  margin: 0 0 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #6c6666;
}

.footer__text {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #a69a9a;
}

.footer__disclaimer {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: #6c6666;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (hover: hover) {
  .footer__disclaimer:hover {
    color: var(--color-cream);
  }
}

.footer__disclaimer:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.footer__link-text--mobile {
  display: none;
}

.footer__columns {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding-bottom: 70px;
}

.footer__col {
  min-width: 0;
}

.footer__col--docs {
  width: 280px;
}

.footer__title {
  margin: 0 0 35px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-text-light);
}

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

.footer__list li + li {
  margin-top: 10px;
}

.footer__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #a69a9a;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-cream);
}

.footer__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

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

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__contacts li + li {
  margin-top: 15px;
}

.footer__contact-icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer__address {
  display: block;
  max-width: 220px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #a69a9a;
}

.footer__col--contacts {
  width: 252px;
  flex-shrink: 0;
}

.footer__top {
  position: absolute;
  right: var(--container-padding);
  bottom: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 252px;
  padding: 14px 30px;
  border: 1px solid rgba(232, 224, 211, 0.4);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-light);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.2s ease;
}

.footer__top:hover {
  opacity: 1;
  border-color: var(--color-accent-soft);
  box-shadow: 0 0 18px rgba(183, 144, 82, 0.28);
}

.footer__top:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.footer__top-icon {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  transform: none;
  transition: transform 0.35s ease;
}

.footer__top:hover .footer__top-icon {
  transform: translateY(-4px);
}

/* ==========================================================================
   Tablet: ≤1024px
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --container-padding: 40px;
  }

  /* Планшетная шкала: display 40 / lead 16 / card 18 / body 15 */

  .header__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .header__logo img {
    width: 96px;
    height: 87px;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-dark);
    transition: max-height 0.3s ease;
  }

  .header--nav-open .header__nav {
    max-height: 420px;
  }

  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px var(--container-padding) 32px;
  }

  .header__burger {
    display: flex;
  }

  .header__link {
    font-size: 16px;
  }

  .hero {
    padding-top: 320px;
    padding-bottom: 120px;
  }

  .hero__actions {
    margin-top: 40px;
  }

  .hero__title {
    font-size: 40px;
    line-height: 1.1;
    max-width: 560px;
  }

  .hero__text {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero--history {
    padding-top: 320px;
    padding-bottom: 100px;
    min-height: 0;
  }

  .hero--history .hero__text {
    max-width: 560px;
  }

  .hero--history .hero__title-row {
    gap: 20px;
  }

  .hero--history .hero__years {
    font-size: 15px;
  }

  .hero--history .hero__years-line {
    width: 72px;
  }

  .history-story {
    --history-card-height: 460px;
    --history-bg-inset: 180px;
  }

  .history-story__pin {
    --history-pin-pad-top: 60px;
    --history-pin-pad-bottom: 48px;
  }

  .history-story__head {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
  }

  .history-story__heading {
    gap: 16px;
  }

  .history-story__title {
    font-size: 40px;
  }

  .history-story__lead {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    color: var(--color-text-strong);
  }

  .history-story__bg {
    width: calc(100% - var(--history-bg-inset) + 200px);
    height: calc(100% + 30px);
  }

  .history-card {
    width: 400px;
  }

  .history-card__photo {
    height: 240px;
  }

  .history-card__panel {
    border-radius: 20px;
  }

  .history-card__body {
    gap: 16px;
    min-height: 220px;
    padding: 24px 16px 48px;
  }

  .history-card__year {
    font-size: 28px;
  }

  .history-card__name {
    margin-bottom: -4px;
    font-size: 18px;
  }

  .history-card__text {
    font-size: 16px;
  }

  .button {
    width: 260px;
    padding: 13px 24px;
    font-size: 16px;
  }

  .button--outline {
    padding: 13px 24px;
  }

  .regions__header,
  .presence__header {
    width: min(320px, 38%);
  }

  .regions__title,
  .presence__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .regions__lead,
  .presence__lead {
    width: min(400px, 46%);
    font-size: 16px;
    line-height: 1.6;
  }

  .presence-panel {
    width: calc(100% * 480 / 1440);
  }

  .about {
    padding-bottom: 60px;
  }

  .values {
    padding: 60px 0;
  }

  .values__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .values__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .values__lead {
    width: auto;
    max-width: 520px;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }

  .values__row--top,
  .values__row--middle,
  .values__row--bottom {
    grid-template-columns: 1fr 1fr;
  }

  .values-card {
    height: auto;
    min-height: 200px;
  }

  .values-card__title {
    font-size: 18px;
  }

  .values-card__text {
    font-size: 15px;
  }

  .about__showcase {
    padding-top: 100px;
  }

  .about__fade--top {
    height: 280px;
  }

  .about__fade--bottom {
    top: auto;
    bottom: 0;
    height: 760px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      color-mix(in srgb, var(--page-bg) 70%, transparent) 16%,
      color-mix(in srgb, var(--page-bg) 90%, transparent) 34%,
      var(--page-bg) 56%
    );
  }

  .about__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .about__lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-card__text {
    font-size: 16px;
  }

  .about__cards {
    width: 100%;
    max-width: 560px;
  }

  .about-card--goal {
    padding-right: 160px;
  }

  .about-card__badge {
    right: 24px;
    width: 130px;
    height: 130px;
  }

  .about-card__badge-value {
    font-size: 28px;
    line-height: 28px;
  }

  .about__stats {
    flex-wrap: wrap;
    height: auto;
    gap: 24px 0;
    margin-top: 32px;
    padding: 28px 10px;
  }

  .about__stat {
    flex: 1 1 33.333%;
  }

  .about__stat:nth-child(3) {
    box-shadow: none;
  }

  .about__stat:nth-child(n + 4) {
    flex: 1 1 33.333%;
  }

  .about__stat-sizer,
  .about__stat-value {
    font-size: 24px;
  }

  .cycle {
    --cycle-node: 110px;
    --cycle-gap: 24px;
    border-radius: 32px;
  }

  .cycle__frame {
    padding: 60px var(--container-padding);
  }

  .cycle__header {
    gap: 16px;
    margin-bottom: 40px;
  }

  .cycle__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .cycle__path {
    display: none;
  }

  .cycle__stages {
    flex-direction: column;
    align-items: stretch;
    gap: var(--cycle-gap);
  }

  .cycle__stages::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--cycle-node) / 2);
    z-index: 0;
    width: 1px;
    background-image: repeating-linear-gradient(
      to bottom,
      var(--color-accent-soft) 0 3px,
      transparent 3px 16px
    );
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease 0.45s;
  }

  .cycle.is-inview .cycle__stages::before {
    opacity: 0.7;
  }

  .cycle-stage {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 28px;
  }

  .cycle-stage:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(100% + var(--cycle-gap) / 2);
    left: calc(var(--cycle-node) / 2);
    z-index: 1;
    width: 5px;
    height: 6px;
    border-radius: 4px;
    background-color: var(--color-accent-soft);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease 1.2s;
  }

  .cycle.is-inview .cycle-stage:not(:last-child)::after {
    opacity: 1;
  }

  .cycle-stage__node {
    flex-shrink: 0;
    width: var(--cycle-node);
    height: var(--cycle-node);
  }

  .cycle-stage__label {
    margin-top: 0;
    gap: 8px;
    align-items: center;
  }

  .cycle-stage__num {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
  }

  .cycle-stage__name {
    font-size: 15px;
    white-space: normal;
  }

  .cycle__line {
    height: 3px;
  }

  .advantages,
  .advantages__content {
    min-height: 0;
  }

  .advantages__media {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 700px;
    overflow: hidden;
  }

  .advantages__picture {
    left: 0;
    width: 100%;
    height: 100%;
  }

  .advantages__bg {
    object-position: 70% center;
  }

  .advantages__fade--top {
    height: 520px;
    background: linear-gradient(
      to bottom,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--page-bg) 82%, transparent) 38%,
      transparent 100%
    );
  }

  .advantages__fade--bottom {
    height: 280px;
    background: linear-gradient(
      to top,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--page-bg) 70%, transparent) 45%,
      transparent 100%
    );
  }

  .advantages__fade--side {
    display: none;
  }

  .advantages__content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 60px 0 40px;
  }

  .advantages__header {
    gap: 20px;
    width: 100%;
    margin-bottom: 32px;
    padding: 0 var(--container-padding);
  }

  .advantages__heading {
    gap: 16px;
  }

  .advantages__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .advantages__title-main,
  .advantages__title-accent {
    white-space: normal;
  }

  .advantages__lead {
    display: block;
    max-width: 520px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-strong);
  }

  .advantages__list {
    width: 100%;
    padding: 0 var(--container-padding);
  }

  .advantages-item {
    padding: 20px 16px 20px 0;
  }

  .advantages-item:nth-child(odd)::before {
    opacity: 1;
  }

  .advantages-item__num {
    width: 56px;
    font-size: 22px;
  }

  .advantages-item__title {
    font-size: 18px;
    line-height: 1.1;
  }

  .advantages-item__text {
    font-size: 15px;
  }

  .strategy {
    padding: 60px var(--container-padding) 0;
  }

  .strategy::before {
    height: calc(60px + 320px - 32px);
  }

  .strategy__card {
    height: 320px;
    border-radius: 32px;
  }

  .strategy__content {
    padding: 40px 40px 36px;
  }

  .strategy__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .strategy__lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .investment,
  .investment__content {
    min-height: 0;
  }

  .investment__overlay {
    background: rgba(24, 24, 24, 0.8);
  }

  .investment__overlay::before,
  .investment__overlay::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 160px;
    pointer-events: none;
  }

  .investment__overlay::before {
    top: 0;
    background: linear-gradient(to bottom, #181818, transparent);
  }

  .investment__overlay::after {
    bottom: 0;
    background: linear-gradient(to top, #181818, transparent);
  }

  .investment__content {
    padding: 60px var(--container-padding) 48px;
  }

  .investment__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }

  .investment__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .investment__line {
    display: block;
    width: 80px;
    height: 3px;
  }

  .investment__button--desktop {
    display: none;
  }

  .investment__button--mobile {
    display: inline-flex;
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    padding: 12px 40px;
    font-size: 16px;
    letter-spacing: 0.02em;
    gap: 6px;
  }

  .investment__button--mobile .button__icon {
    width: 16px;
    height: 16px;
  }

  .investment__list {
    --invest-icon: 64px;
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    margin: 0;
  }

  .investment__list::before {
    content: "";
    position: absolute;
    top: var(--invest-icon);
    left: calc(var(--invest-icon) / 2);
    z-index: 0;
    width: 1px;
    height: calc(100% - var(--invest-icon) * 2);
    background-image: repeating-linear-gradient(
      to bottom,
      var(--color-accent-soft) 0,
      var(--color-accent-soft) 8px,
      transparent 8px,
      transparent 16px
    );
    transform: translateX(-50%);
    pointer-events: none;
  }

  .investment-item {
    position: relative;
    z-index: 1;
    width: 100%;
    gap: 20px;
  }

  .investment-item__visual {
    width: var(--invest-icon);
  }

  .investment-item__icon {
    width: var(--invest-icon);
    height: var(--invest-icon);
  }

  .investment-item__circle {
    width: var(--invest-icon);
    height: var(--invest-icon);
  }

  .investment-item__glyph {
    width: 56px;
    height: 56px;
  }

  .investment-item__connector {
    display: none;
  }

  .investment-item__body {
    padding-top: 4px;
    width: auto;
    flex: 1;
  }

  .investment-item__title {
    font-size: 18px;
  }

  .investment-item__text {
    margin-top: 10px;
    font-size: 15px;
  }

  .sustainability {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .sustainability__inner {
    order: 1;
    z-index: 1;
    min-height: 0;
    padding: 60px var(--container-padding) 0;
  }

  .sustainability__media {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 380px;
    margin-top: -72px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .sustainability__media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(
      to bottom,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--page-bg) 70%, transparent) 45%,
      transparent 100%
    );
    pointer-events: none;
  }

  .sustainability__bg {
    height: 100%;
    object-position: 70% 60%;
  }

  .sustainability__fade--start,
  .sustainability__fade--top {
    display: none;
  }

  .sustainability__fade--bottom {
    height: 80px;
  }

  .sustainability__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .sustainability__heading {
    gap: 16px;
  }

  .sustainability__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .sustainability__lead {
    flex: none;
    width: auto;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    color: var(--color-text-strong);
  }

  .sustainability__list {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    column-gap: 16px;
    row-gap: 16px;
  }

  .sustainability-card:nth-child(1) {
    order: 1;
  }

  .sustainability-card:nth-child(2) {
    order: 3;
  }

  .sustainability-card:nth-child(3) {
    order: 2;
  }

  .sustainability-card:nth-child(4) {
    order: 4;
  }

  .sustainability-card {
    gap: 24px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .sustainability-card__title {
    font-size: 18px;
  }

  .sustainability-card__text {
    font-size: 15px;
  }

  .media {
    padding: 60px 0 80px;
  }

  .media__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .media__tab {
    min-width: 160px;
    padding: 12px 24px;
    font-size: 15px;
  }

  .media__grid > li {
    min-width: 160px;
  }

  .media-card {
    height: 160px;
  }

  .lightbox__nav--prev {
    left: 12px;
  }

  .lightbox__nav--next {
    right: 12px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 48px var(--container-padding);
  }

  .footer__brand {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
  }

  .footer__about {
    width: auto;
    max-width: 420px;
    flex: 1;
  }

  .footer__columns {
    width: 100%;
    flex-wrap: wrap;
    gap: 32px 24px;
    padding-bottom: 0;
  }

  .footer__col {
    flex: 1 1 200px;
  }

  .footer__col--docs,
  .footer__col--contacts {
    width: auto;
    max-width: none;
    min-width: 200px;
  }

  .footer__title {
    font-size: 18px;
  }

  .footer__copy,
  .footer__link,
  .footer__list li {
    font-size: 15px;
  }

  .footer__top {
    position: static;
    width: auto;
    align-self: flex-start;
  }
}

/* ==========================================================================
   Mobile: ≤768px
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  .header__inner {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .header__logo img {
    width: 69px;
    height: 63px;
  }

  .header__menu {
    padding: 20px var(--container-padding) 28px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 726px;
    min-height: 726px;
    padding-top: 0;
    padding-bottom: 60px;
    background-color: #262626;
  }

  .hero--history {
    height: 710px;
    min-height: 710px;
    padding-bottom: 44px;
  }

  .hero--history .hero__overlay {
    background: #000;
    opacity: 0.2;
  }

  .hero--history .hero__bg {
    object-position: 62% center;
  }

  .hero--history .hero__text {
    margin-top: 16px;
  }

  .hero--history .hero__actions {
    margin-top: 16px;
  }

  .hero--history .hero__title-row {
    gap: 15px;
  }

  .hero--history .hero__years {
    font-size: 14px;
  }

  .hero--history .hero__years-line {
    width: 50px;
  }

  .history-story {
    --history-card-height: 440px;
    --history-bg-inset: 0px;
  }

  .history-story__pin {
    --history-pin-pad-top: 40px;
    --history-pin-pad-bottom: 40px;
  }

  .history-story__head {
    gap: 16px;
    margin-bottom: 24px;
  }

  .history-story__heading {
    gap: 10px;
    max-width: none;
  }

  .history-story__title {
    font-size: 30px;
  }

  .history-story__line {
    width: 60px;
    height: 2px;
  }

  .history-story__lead {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }

  .history-story__bg {
    top: 0;
    right: auto;
    left: 0;
    width: 1188px;
    height: calc(100% + 40px);
  }

  .history-story__fade--side {
    display: none;
  }

  .history-story__fade--top {
    top: 0;
    height: 300px;
  }

  .history-story__fade--bottom {
    height: 410px;
  }

  .history-story__track {
    gap: 10px;
    padding-bottom: 20px;
  }

  .history-card {
    width: 310px;
  }

  .history-card__panel {
    border-radius: 12px;
  }

  .history-card__photo {
    height: 186px;
    border-radius: 12px;
  }

  .history-card__index {
    top: 16px;
    left: 16px;
    font-size: 16px;
  }

  .history-card__body {
    gap: 12px;
    min-height: 0;
    padding: 20px 16px 28px;
  }

  .history-card__year {
    font-size: 26px;
  }

  .history-card__name {
    margin-bottom: -6px;
    font-size: 17px;
  }

  .history-card__text {
    font-size: 15px;
  }

  .history-card__text > p {
    -webkit-line-clamp: 4;
  }

  .history-card__plus {
    right: 16px;
    bottom: 16px;
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .history-story__bar,
  .history-story__thumb {
    height: 8px;
  }

  .history-story__thumb {
    width: 50px;
  }

  .hero__media {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    mask-image: none;
    background: none;
  }

  .hero__bg {
    object-fit: cover;
    object-position: center center;
  }

  /* Затемнение берётся из базового .hero__overlay (градиент поверх видео) */
  .hero__overlay {
    display: block;
    background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.5));
    opacity: 0.7;
  }

  .hero__glow--warm {
    display: block;
    left: 50%;
    top: 520px;
    width: min(120vw, 520px);
    height: 380px;
    background-image:
      url("../images/ras.png"),
      radial-gradient(
        ellipse 58% 52% at 50% 50%,
        rgba(245, 241, 234, 0.9) 0%,
        rgba(245, 241, 234, 0.55) 30%,
        rgba(245, 241, 234, 0.2) 52%,
        rgba(245, 241, 234, 0) 72%
      );
    background-repeat: no-repeat;
    background-position: center, center;
    background-size: cover, 100% 100%;
    transform: translate(-50%, -50%);
    -webkit-mask-image: radial-gradient(
      ellipse 72% 68% at 50% 50%,
      #000 0%,
      #000 34%,
      transparent 72%
    );
    mask-image: radial-gradient(
      ellipse 72% 68% at 50% 50%,
      #000 0%,
      #000 34%,
      transparent 72%
    );
  }

  .hero__glow--dark {
    left: 50%;
    top: 0;
    width: 140%;
    height: 200px;
    border-radius: 50%;
    background-color: #1e2328;
    background-image: none;
    opacity: 0.85;
    filter: blur(60px);
    transform: translate(-50%, -45%);
  }

  .hero__media::before {
    height: 77px;
    background: linear-gradient(
      to bottom,
      rgba(30, 35, 40, 0.9) 0%,
      rgba(30, 35, 40, 0) 100%
    );
  }

  .hero__media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 84px;
    background: linear-gradient(
      to top,
      #262626 0%,
      rgba(38, 38, 38, 0) 100%
    );
    pointer-events: none;
  }

  .hero__inner {
    width: 100%;
  }

  .hero__title {
    gap: 0;
    font-size: 32px;
    max-width: none;
  }

  .hero__title-line {
    white-space: nowrap;
  }

  .hero__text {
    margin-top: 16px;
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .button__icon {
    width: 14px;
    height: 14px;
  }

  .button--outline {
    padding: 12px 24px;
  }

  .regions {
    margin-top: -20px;
    padding: 0;
  }

  .presence {
    margin-top: -20px;
    padding-bottom: 20px;
  }

  .presence:first-child {
    margin-top: 0;
  }

  .presence__frame {
    container-type: inline-size;
    aspect-ratio: 375 / 842;
    min-height: 0;
    max-width: none;
    margin: 0;
  }

  .presence__header {
    top: calc(100% * 40 / 842);
    left: calc(100% * 20 / 375);
    width: calc(100% * 335 / 375);
    max-width: none;
    margin: 0;
    gap: calc(10 * 100cqw / 375);
  }

  .presence__title {
    font-size: 32px;
  }

  .presence__line {
    width: calc(60 * 100cqw / 375);
    height: calc(2 * 100cqw / 375);
  }

  .presence__lead {
    top: calc(100% * 146 / 842);
    left: calc(100% * 20 / 375);
    right: auto;
    width: calc(100% * 335 / 375);
    max-width: none;
    margin: 0;
    font-size: 15px;
    text-align: left;
  }

  .presence-zoom {
    top: auto;
    bottom: 188px;
    right: 20px;
    transform: none;
  }

  .presence-zoom__btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .presence-mark__label {
    font-size: 11px;
  }

  .presence-mark.is-active .presence-mark__label {
    padding: 4px 8px;
    font-size: 13px;
  }

  .presence-panel {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-height: calc(100% - 40px);
    padding: 24px 16px 16px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 12px;
    box-shadow: 0 19px 13px rgba(0, 0, 0, 0.4);
  }

  .presence-panel__region {
    font-size: 10px;
    letter-spacing: 0.065em;
  }

  .presence-panel__name {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .presence-panel__divider {
    width: 32px;
    height: 1px;
    margin-bottom: 12px;
  }

  .presence-panel__list {
    gap: 16px;
    margin-bottom: 13px;
  }

  .presence-panel__item {
    gap: 10px;
  }

  .presence-panel__bullet {
    width: 7px;
    height: 7px;
    margin-top: 4px;
    border-radius: 4px;
  }

  .presence-panel__stage {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .presence-panel__text {
    font-size: 13px;
    line-height: 1.5;
  }

  .presence-panel__footer {
    padding-top: 16px;
    font-size: 13px;
  }

  .regions__frame {
    container-type: inline-size;
    aspect-ratio: 375 / 842;
    min-height: 0;
    max-width: none;
    margin: 0;
  }

  .regions__header {
    position: absolute;
    top: calc(100% * 40 / 842);
    left: calc(100% * 20 / 375);
    z-index: 3;
    width: calc(100% * 335 / 375);
    max-width: none;
    margin: 0;
    gap: calc(10 * 100cqw / 375);
    pointer-events: none;
  }

  .regions__title {
    font-size: 32px;
  }

  .regions__title-main {
    display: block;
  }

  .regions__title-accent {
    display: block;
  }

  .regions__line {
    width: calc(60 * 100cqw / 375);
    height: calc(2 * 100cqw / 375);
  }

  .regions__lead {
    position: absolute;
    top: calc(100% * 144 / 842);
    left: calc(100% * 20 / 375);
    right: auto;
    z-index: 3;
    width: calc(100% * 335 / 375);
    max-width: none;
    margin: 0;
    font-size: 15px;
    text-align: left;
  }

  .regions__map {
    position: absolute;
    inset: 0;
    height: auto;
    margin-top: 0;
    overflow: hidden;
  }

  .regions__stage {
    --regions-stage-scale: 1;
    transform: none;
    will-change: auto;
  }

  .regions__map-art {
    top: calc(100% * 166.27 / 842);
    left: calc(100% * -723.95 / 375);
    right: auto;
    width: calc(100% * 1074.9 / 375);
    height: calc(100% * 801.73 / 842);
  }

  .regions__map-blur,
  .regions__map-img {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: left top;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .regions__map-blur {
    filter: blur(25px);
  }

  .regions-point {
    width: calc(32 * 100cqw / 375);
    height: calc(32 * 100cqw / 375);
    margin: calc(-10 * 100cqw / 375) 0 0 calc(-10 * 100cqw / 375);
  }

  .regions-point__mark {
    top: calc(10 * 100cqw / 375);
    left: calc(10 * 100cqw / 375);
    width: calc(12 * 100cqw / 375);
    height: calc(12 * 100cqw / 375);
  }

  .regions-point__dot--sm {
    width: calc(24 * 100cqw / 375);
    height: calc(24 * 100cqw / 375);
  }

  .regions-point__dot--lg {
    width: calc(32 * 100cqw / 375);
    height: calc(32 * 100cqw / 375);
  }

  .regions-point__label {
    top: 50%;
    left: calc(24 * 100cqw / 375);
    transform: translateY(-50%);
    font-size: calc(11 * 100cqw / 375);
    line-height: 1.2;
    color: #c4baab;
  }

  .regions-point--delyankir:not(.is-active) .regions-point__label {
    transform: translateY(-50%);
  }

  .regions-point.is-active .regions-point__mark {
    top: calc(8.5 * 100cqw / 375);
    left: calc(8.5 * 100cqw / 375);
    width: calc(15 * 100cqw / 375);
    height: calc(15 * 100cqw / 375);
  }

  .regions-point.is-active .regions-point__label {
    top: calc(var(--label-y, -33px) + (10 * 100cqw / 375));
    left: calc(var(--label-x, 32px) + (10 * 100cqw / 375));
    transform: none;
    padding: calc(4 * 100cqw / 375) calc(8 * 100cqw / 375);
    border-radius: 3px;
    box-shadow: 0 5.8px 2.9px rgba(0, 0, 0, 0.4);
    font-size: calc(15 * 100cqw / 375);
  }

  .regions-point--deluvialnoe {
    top: calc(100% * 458.5 / 842);
    left: calc(100% * 36 / 375);
  }

  .regions-point--polyarnik {
    top: calc(100% * 469.67 / 842);
    left: calc(100% * 44.85 / 375);
  }

  .regions-point--delyankir {
    top: calc(100% * 481 / 842);
    left: calc(100% * 126 / 375);
  }

  .regions-point--malo-tarynskoe {
    top: calc(100% * 491.5 / 842);
    left: calc(100% * 91 / 375);
  }

  .regions-point--yakutskoe {
    top: calc(100% * 501.5 / 842);
    left: calc(100% * 72 / 375);
  }

  .regions-point--turakh-yuryakh {
    top: calc(100% * 509.99 / 842);
    left: calc(100% * 66 / 375);
  }

  .regions-point--zerkalny {
    top: calc(100% * 381.5 / 842);
    left: calc(100% * 239.4 / 375);
  }

  .regions-point--ignimbritovy {
    top: calc(100% * 391.35 / 842);
    left: calc(100% * 236 / 375);
  }

  .regions-point--kangalatvayam {
    top: calc(100% * 461.5 / 842);
    left: calc(100% * 275 / 375);
  }

  .regions-point--perevalny {
    top: calc(100% * 492.5 / 842);
    left: calc(100% * 278 / 375);
  }

  .regions-point--ozernovskoe {
    top: calc(100% * 502.71 / 842);
    left: calc(100% * 288.21 / 375);
  }

  .regions-point--solonechnskoe {
    top: calc(100% * 657.5 / 842);
    left: calc(100% * 18 / 375);
  }

  .regions-panel {
    top: auto;
    bottom: calc(20px - var(--panel-shift, 16px));
    left: 20px;
    right: 20px;
    width: auto;
    height: auto;
    min-height: 0;
    max-height: calc(100% - 40px);
    padding: 24px 16px 16px;
    /* Без scrollport жест уходит на страницу; скролл панели — только с .is-scrollable */
    overflow: visible;
    border-radius: 12px;
    box-shadow: 0 19px 13px rgba(0, 0, 0, 0.4);
    transform: none;
    transition: none;
  }

  .regions-panel.is-scrollable {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .regions-panel.is-open {
    transition: none;
    pointer-events: auto;
  }

  .regions-panel.is-open.is-entering {
    transition: bottom 0.4s ease;
  }

  .regions-panel.is-open.is-entering::after {
    transition: border-color 0.25s ease 0.05s;
  }

  .regions-panel__region {
    font-size: 10px;
    letter-spacing: 0.065em;
  }

  .regions-panel__name {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .regions-panel__divider {
    width: 32px;
    height: 1px;
    margin-bottom: 12px;
  }

  .regions-panel__list {
    flex: none;
    gap: 16px;
    margin-bottom: 13px;
    padding: 0;
  }

  .regions-panel__item {
    gap: 10px;
  }

  .regions-panel__bullet {
    width: 7px;
    height: 7px;
    margin-top: 4px;
    border-radius: 4px;
  }

  .regions-panel__content {
    gap: 4px;
  }

  .regions-panel__stage {
    margin: 0;
    font-size: 15px;
  }

  .regions-panel__text {
    font-size: 13px;
    line-height: 1.6;
  }

  .regions-panel__footer {
    padding-top: 13px;
    font-size: 14px;
  }

  .about {
    margin-top: -24px;
    padding-bottom: 40px;
  }

  .about__showcase {
    padding-top: 64px;
  }

  .about__showcase > .container:last-child {
    padding-bottom: 0;
  }

  .about__media {
    top: 54px;
    right: 0;
    bottom: auto;
    left: 0;
    height: 700px;
  }

  .about__bg-clip {
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .about__bg {
    top: 0;
    right: auto;
    bottom: 0;
    left: calc(100% * -90 / 375);
    width: calc(100% * 1244 / 375);
    height: 100%;
    object-position: left top;
  }

  .about__fade--side {
    display: none;
  }

  .about__fade--top {
    height: 250px;
    background: linear-gradient(
      to bottom,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--page-bg) 85%, transparent) 40%,
      transparent 100%
    );
  }

  .about__fade--bottom {
    top: auto;
    bottom: 0;
    height: 410px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      color-mix(in srgb, var(--page-bg) 45%, transparent) 35%,
      color-mix(in srgb, var(--page-bg) 85%, transparent) 70%,
      var(--page-bg) 100%
    );
  }

  .about__intro {
    max-width: none;
  }

  .about__title {
    font-size: 32px;
  }

  .about__line {
    width: 60px;
    height: 2px;
    margin-top: 10px;
  }

  .about__lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-strong);
  }

  .about__cards {
    gap: 12px;
    width: 100%;
    max-width: none;
    margin-top: 32px;
  }

  .about-card {
    gap: 10px;
    padding: 24px 16px;
    border-radius: 12px;
  }

  .about-card--goal {
    padding-right: 16px;
  }

  .about-card__label {
    letter-spacing: 0.96px;
  }

  .about-card__text {
    font-size: 15px;
  }

  .about-card__text-extra {
    display: inline;
  }

  .about-card--task {
    padding: 24px 16px;
    background-color: transparent;
    border-width: 0.8px;
  }

  .about-card__badge {
    top: -42px;
    right: 0;
    width: 100px;
    height: 100px;
    border-width: 3px;
    box-shadow: 0 16px 16px rgba(0, 0, 0, 0.25);
  }

  .about-card__badge-value {
    font-size: 28px;
    line-height: 1.1;
  }

  .about-card__badge-text {
    font-size: 9px;
    letter-spacing: 0.36px;
  }

  .values {
    padding: 40px 0;
    background-color: #181818;
  }

  .values__media {
    overflow: hidden;
  }

  .values__bg {
    position: absolute;
    top: 0;
    left: calc(100% * -902 / 375);
    width: calc(100% * 2358 / 375);
    height: 100%;
    max-width: none;
    opacity: 0.2;
    object-fit: cover;
    object-position: left top;
  }

  .values__overlay {
    display: none;
  }

  .values__header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }

  .values__heading {
    gap: 10px;
  }

  .values__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .values__title-main {
    color: var(--color-cream);
  }

  .values__line {
    width: 60px;
    height: 2px;
  }

  .values__lead {
    width: auto;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    text-align: left;
  }

  .values__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .values__row {
    display: contents;
  }

  .values-card--responsibility {
    order: 1;
  }

  .values-card--development {
    order: 2;
  }

  .values-card--professionalism {
    order: 3;
  }

  .values-card--efficiency {
    order: 4;
  }

  .values-card--safety {
    order: 5;
  }

  .values-card--nature {
    order: 6;
    background-color: #181818;
  }

  .values-card {
    flex: none;
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: none;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 24px 16px;
    border-radius: 12px;
    justify-content: flex-start;
    gap: 16px;
  }

  .values-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .values-card__icon {
    width: 28px;
    height: 28px;
  }

  .values-card--responsibility .values-card__icon,
  .values-card--development .values-card__icon {
    width: 28px;
    height: 28px;
  }

  .values-card__title {
    margin-top: 0;
    font-size: 17px;
    line-height: 1.2;
  }

  .values-card--efficiency .values-card__title,
  .values-card--development .values-card__title {
    line-height: 1.1;
  }

  .values-card--nature .values-card__title {
    font-size: 16px;
    line-height: 1.35;
  }

  .values-card__text {
    margin-top: 0;
    font-size: 15px;
  }

  .values-card--nature .values-card__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .values-card__break {
    display: none;
  }

  .about__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    height: auto;
    gap: 0;
    margin-top: 39px;
    padding: 16px;
    border-radius: 12px;
  }

  .about__stat {
    flex: none;
    gap: 4px;
    padding: 0 10px;
    box-shadow: none;
    justify-content: flex-start;
  }

  .about__stat:not(:last-child) {
    box-shadow: none;
  }

  .about__stat:nth-child(1),
  .about__stat:nth-child(2),
  .about__stat:nth-child(3) {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(232, 224, 211, 0.15);
  }

  .about__stat:nth-child(1),
  .about__stat:nth-child(2),
  .about__stat:nth-child(4) {
    border-right: 1px solid rgba(232, 224, 211, 0.15);
  }

  .about__stat:nth-child(4),
  .about__stat:nth-child(5) {
    padding-top: 12px;
  }

  .about__stat-sizer,
  .about__stat-value {
    font-size: 20px;
    line-height: 1.1;
  }

  .about__stat-label {
    font-size: 11px;
    line-height: 1.6;
  }

  .cycle {
    --cycle-node: 90px;
    --cycle-gap: 20px;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--page-bg);
  }

  .cycle__frame {
    padding: 40px 20px;
  }

  .cycle__header {
    gap: 10px;
    margin-bottom: 30px;
  }

  .cycle__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .cycle__title-accent {
    white-space: normal;
  }

  .cycle__line {
    width: 60px;
    height: 2px;
  }

  .cycle__diagram {
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .cycle-stage {
    gap: 26px;
  }

  .cycle-stage__num {
    font-size: 20px;
  }

  .cycle-stage__name {
    font-size: 15px;
  }

  .cycle-stage--05 .cycle-stage__name {
    max-width: 154px;
  }

  .advantages {
    padding-bottom: 0;
  }

  .advantages__media {
    height: 700px;
  }

  .advantages__picture {
    left: calc(100% * -300 / 375);
    width: calc(100% * 1244 / 375);
  }

  .advantages__bg {
    object-position: left top;
  }

  .advantages__fade--top {
    height: 550px;
    background: linear-gradient(
      to bottom,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--page-bg) 88%, transparent) 22%,
      color-mix(in srgb, var(--page-bg) 62%, transparent) 52%,
      transparent 100%
    );
  }

  .advantages__fade--bottom {
    height: 410px;
    background: linear-gradient(
      to top,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--page-bg) 88%, transparent) 28%,
      color-mix(in srgb, var(--page-bg) 55%, transparent) 58%,
      transparent 100%
    );
  }

  .advantages__content {
    max-width: none;
    padding: 40px 0 0;
  }

  .advantages__header {
    gap: 24px;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .advantages__heading {
    gap: 10px;
  }

  .advantages__title {
    width: 273px;
    max-width: 100%;
    font-size: 32px;
  }

  .advantages__line {
    width: 60px;
    height: 2px;
  }

  .advantages__lead {
    max-width: none;
    font-size: 15px;
  }

  .advantages__list {
    padding: 0 20px;
  }

  .advantages-item {
    gap: 10px;
    padding: 16px 16px 16px 0;
  }

  .advantages-item__num {
    width: 40px;
    font-size: 20px;
    line-height: 18px;
  }

  .advantages-item__body {
    gap: 10px;
  }

  .advantages-item__title {
    font-size: 17px;
  }

  .advantages-item:nth-child(2) .advantages-item__title {
    max-width: 195px;
  }

  .strategy {
    padding: 40px var(--container-padding) 0;
  }

  .strategy::before {
    height: calc(40px + 689px - 24px);
  }

  .strategy__card {
    height: 689px;
    border-radius: 24px;
    background-color: var(--color-cream);
  }

  .strategy__picture {
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .strategy__bg {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: calc(100% * -253 / 375);
    width: calc(100% * 1356 / 375);
    height: calc(100% * 576 / 689);
    max-width: none;
    object-fit: cover;
    object-position: center top;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 18%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 18%
    );
  }

  .strategy__fade {
    top: 0;
    right: auto;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(100% * 300 / 689);
    background: linear-gradient(
      to bottom,
      var(--color-cream) 0%,
      rgba(245, 241, 234, 0.92) 35%,
      rgba(245, 241, 234, 0.55) 65%,
      rgba(245, 241, 234, 0) 100%
    );
  }

  .strategy__content {
    align-items: flex-start;
    height: auto;
    padding: 40px 20px;
    text-align: left;
  }

  .strategy__header {
    align-items: flex-start;
    gap: 10px;
  }

  .strategy__title {
    font-size: 30px;
  }

  .strategy__title-main,
  .strategy__title-accent {
    white-space: normal;
  }

  .strategy__line {
    width: 60px;
    height: 2px;
  }

  .strategy__lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-strong);
    white-space: normal;
  }

  .strategy__button {
    width: 100%;
    margin-top: 32px;
    padding: 12px 40px;
    font-size: 14px;
    letter-spacing: 0.02em;
    gap: 6px;
  }

  .strategy__button .button__icon {
    width: 14px;
    height: 14px;
  }

  .investment__media {
    inset: 0;
    height: auto;
  }

  .investment__picture {
    inset: auto;
    top: 0;
    left: calc(100% * -445 / 375);
    width: calc(100% * 1272 / 375);
    height: 100%;
  }

  .investment__bg {
    object-position: left top;
  }

  .investment__overlay::before,
  .investment__overlay::after {
    height: 150px;
  }

  .investment__content {
    padding: 40px 20px 40px;
  }

  .investment__header {
    gap: 10px;
    margin-bottom: 30px;
  }

  .investment__title {
    font-size: 30px;
  }

  .investment__title-accent,
  .investment__title-main {
    display: block;
  }

  .investment__line {
    width: 60px;
    height: 2px;
  }

  .investment__button--mobile {
    max-width: none;
    margin-top: 32px;
    padding: 12px 40px;
    font-size: 14px;
  }

  .investment__button--mobile .button__icon {
    width: 14px;
    height: 14px;
  }

  .investment__list {
    --invest-icon: 50px;
    gap: 32px;
  }

  .investment-item {
    gap: 20px;
  }

  .investment-item__glyph {
    width: 44px;
    height: 44px;
  }

  .investment-item__body {
    padding-top: 0;
  }

  .investment-item__title {
    font-size: 17px;
    line-height: 1.1;
  }

  .investment-item__title-break {
    display: block;
  }

  .investment-item__text {
    margin-top: 10px;
    font-size: 14px;
  }

  .sustainability {
    display: block;
  }

  .sustainability__inner {
    min-height: 0;
    justify-content: flex-start;
    padding: 40px 20px 318px;
  }

  .sustainability__media {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: calc(100% * -250 / 375);
    width: calc(100% * 799 / 375);
    height: 598px;
    margin-top: 0;
  }

  .sustainability__media::after {
    height: 464px;
    background-image:
      linear-gradient(to bottom, var(--page-bg), transparent),
      linear-gradient(to bottom, var(--page-bg), transparent),
      linear-gradient(to bottom, var(--page-bg), transparent),
      linear-gradient(to bottom, var(--page-bg), transparent);
  }

  .sustainability__bg {
    object-fit: cover;
    object-position: center;
  }

  .sustainability__fade--bottom {
    height: 168px;
    background: linear-gradient(
      to top,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--page-bg) 55%, transparent) 45%,
      transparent 100%
    );
  }

  .sustainability__header {
    gap: 22px;
    margin-bottom: 32px;
  }

  .sustainability__heading {
    gap: 10px;
  }

  .sustainability__title {
    font-size: 30px;
  }

  .sustainability__line {
    width: 60px;
    height: 2px;
  }

  .sustainability__lead {
    flex: none;
    width: 100%;
    max-width: none;
    font-size: 15px;
  }

  .sustainability__lead br {
    display: none;
  }

  .sustainability__list {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 12px;
    row-gap: 12px;
  }

  .sustainability-card {
    gap: 24px;
    padding: 24px 16px;
    border-radius: 12px;
  }

  .sustainability-card__icon {
    width: 28px;
    height: 28px;
  }

  .sustainability-card:nth-child(4) .sustainability-card__icon {
    width: 32px;
    height: 32px;
  }

  .sustainability-card__body {
    gap: 10px;
  }

  .sustainability-card__title {
    font-weight: 600;
    font-size: 17px;
  }

  .sustainability-card__title-break {
    display: block;
  }

  .sustainability-card__text {
    font-size: 15px;
  }

  .media {
    background-color: var(--page-bg);
    padding: 32px 0 60px;
  }

  .media__header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    margin-bottom: 32px;
    min-height: 0;
  }

  .media__heading {
    gap: 10px;
  }

  .media__title {
    font-size: 30px;
  }

  .media__line {
    width: 60px;
    height: 2px;
  }

  .media__tabs {
    position: static;
    top: auto;
    left: auto;
    gap: 10px;
    margin-top: 0;
  }

  .media__tab {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    font-size: 14px;
  }

  .media__tab-label--desktop {
    display: none;
  }

  .media__tab-label--mobile {
    display: inline;
  }

  .media__grid {
    flex-direction: column;
    gap: 12px;
  }

  .media__grid > li {
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  /* В макете mobile — по 2 элемента в каждой вкладке */
  .media__grid > li:nth-child(n + 3) {
    display: none;
  }

  .media-card {
    height: 224px;
    border-radius: 21px;
  }

  .lightbox__stage {
    padding: 0;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
  }

  .lightbox__nav--prev {
    left: 4px;
  }

  .lightbox__nav--next {
    right: 4px;
  }

  .lightbox__counter {
    bottom: 16px;
  }

  .lightbox__image,
  .lightbox__video {
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 64px);
    border-radius: 6px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 40px 20px;
  }

  .footer__brand {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
  }

  .footer__logo {
    width: 100px;
    height: auto;
    margin-left: 0;
  }

  .footer__logo img {
    width: 100px;
    height: auto;
  }

  .footer__about {
    width: auto;
    max-width: none;
    flex: 1;
    min-width: 0;
  }

  .footer__copy {
    display: block;
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #6c6666;
  }

  .footer__text {
    display: none;
  }

  .footer__disclaimer {
    display: inline;
  }

  .footer__disclaimer[aria-expanded="true"] + .footer__text {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 2;
    margin: 0;
    padding: 16px;
    border-radius: 12px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 1.6;
    color: #6c6666;
  }

  .footer__link-text--desktop {
    display: inline;
  }

  .footer__link-text--mobile {
    display: none;
  }

  .footer__columns {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding-bottom: 0;
  }

  .footer__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: none;
    width: 100%;
  }

  .footer__col--docs,
  .footer__col--contacts {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .footer__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text-light);
  }

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

  .footer__list li {
    font-size: 16px;
    line-height: 1.4;
  }

  .footer__list li + li {
    margin-top: 0;
  }

  .footer__link {
    font-size: 16px;
    line-height: 1.4;
  }

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

  .footer__contacts li {
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
  }

  .footer__contacts li:last-child {
    align-items: flex-start;
  }

  .footer__contacts li + li {
    margin-top: 0;
  }

  .footer__contact-icon {
    display: block;
  }

  .footer__address {
    max-width: none;
    font-size: 16px;
    line-height: 1.4;
  }

  .footer__top {
    display: none;
  }
}

/* ==========================================================================
   Tablet: та же stacked-вёрстка, что на мобилке, но без растянутых пустот.
   Десктоп (>1024) и мобилка (≤600) не трогаем.
   ========================================================================== */

@media (min-width: 601px) and (max-width: 768px) {
  .regions__frame {
    aspect-ratio: 375 / 700;
  }

  .regions__lead {
    top: calc(100% * 98 / 842 + 30px);
  }

  /* Сцена в пропорциях 375×842, как в макете — карта и точки не разъезжаются */
  .regions__stage {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100cqw * 842 / 375);
    transform: translateY(calc(100% * -103 / 842 + 30px));
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .about-card--task {
    background-color: rgba(255, 255, 255, 0.82);
  }
}

/* ==========================================================================
   Narrow mobile: <375px
   ========================================================================== */

@media (max-width: 374px) {
  .hero {
    height: 700px;
    min-height: 700px;
  }

  .hero--history {
    height: 680px;
    min-height: 680px;
  }

  .hero__title {
    font-size: calc(32px * 100vw / 375);
  }
}
