/* ===========================
   BASE
   =========================== */

:root {
  color-scheme: only light;
}

html {
  background-color: #ffffff;
}

body {
  background-color: #ffffff !important;
  color: #111111;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

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

button {
  font-family: inherit;
}

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

/* ===========================
   FIXED HEADER
   =========================== */

.mn-fixed-header {
  --mn-side-pad: clamp(22px, 2.6vw, 34px);
  --mn-ease: cubic-bezier(.22, .9, .22, 1);
  position: fixed;
  inset: 0 0 auto;
  height: 96px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: height .32s var(--mn-ease), background .32s ease, border-color .32s ease, backdrop-filter .32s ease, box-shadow .32s ease;
}

.mn-fixed-header.is-scrolled {
  height: 76px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .06);
}

.mn-fixed-header__logo {
  position: absolute;
  left: var(--mn-side-pad);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width .32s var(--mn-ease), height .32s var(--mn-ease);
}

.mn-fixed-header.is-scrolled .mn-fixed-header__logo {
  width: 62px;
  height: 62px;
}

.mn-fixed-header__logo-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  display: block;
  transition: opacity .28s ease;
}

.mn-fixed-header__logo-img--white {
  opacity: 1;
}

.mn-fixed-header__logo-img--black {
  opacity: 0;
}

.mn-fixed-header.is-scrolled .mn-fixed-header__logo-img--white {
  opacity: 0;
}

.mn-fixed-header.is-scrolled .mn-fixed-header__logo-img--black {
  opacity: 1;
}

.mn-fixed-header__nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 38px;
  white-space: nowrap;
}

.mn-fixed-header__nav a {
  font-size: 19px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .96)!important;
  transition: color .22s ease;
}

.mn-fixed-header__nav a:hover {
  color: rgba(255, 255, 255, .68)!important;
}

.mn-fixed-header.is-scrolled .mn-fixed-header__nav a {
  color: #111!important;
}

.mn-fixed-header.is-scrolled .mn-fixed-header__nav a:hover {
  color: rgba(17, 17, 17, .58)!important;
}

.mn-fixed-header__btn {
  position: absolute;
  right: var(--mn-side-pad);
  top: 50%;
  transform: translateY(-50%);
  width: 214px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff!important;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: width .32s var(--mn-ease), height .32s var(--mn-ease), border-color .22s ease;
}

.mn-fixed-header.is-scrolled .mn-fixed-header__btn {
  width: 204px;
  height: 54px;
  border-color: #111;
}

.mn-fixed-header__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .42s var(--mn-ease), background .08s ease;
  z-index: 0;
}

.mn-fixed-header__btn-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.025em;
  color: #111!important;
  white-space: nowrap;
}

.mn-fixed-header.is-scrolled .mn-fixed-header__btn-text {
  font-size: 17px;
}

.mn-fixed-header__btn-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  transition: width .42s var(--mn-ease);
}

.mn-fixed-header__btn:hover::before {
  transform: scaleX(1);
}

.mn-fixed-header__btn:hover .mn-fixed-header__btn-text::after {
  width: 100%;
}

.mn-fixed-header__btn.is-pressed {
  background: #3f3f3f!important;
  border-color: #3f3f3f!important;
}

.mn-fixed-header__btn.is-pressed::before {
  background: #3f3f3f!important;
  transform: scaleX(1)!important;
  transition: none!important;
}

.mn-fixed-header__btn.is-pressed .mn-fixed-header__btn-text {
  color: #fff!important;
}

.mn-fixed-header__btn.is-pressed .mn-fixed-header__btn-text::after {
  width: 100%!important;
  color: #fff!important;
  transition: none!important;
}

.mn-fixed-header__btn.is-instant::before,
.mn-fixed-header__btn.is-instant .mn-fixed-header__btn-text::after {
  transition: none!important;
}

/* ===========================
   HERO
   =========================== */

.mn-hero {
  --mn-hero-ease: cubic-bezier(.22, .9, .22, 1);
  --mn-hero-primary-click: #3f3f3f;
  --mn-hero-soft-base: rgba(255, 255, 255, .12);
  --mn-hero-soft-hover: rgba(255, 255, 255, .88);
  --mn-hero-soft-click: #fff;
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #1c1c1c;
  color: #fff;
}

@supports (height:100dvh) {

  .mn-hero {
    height: 100dvh;
  }
}

.mn-hero__bg {
  position: absolute;
  inset: 0;
  background: #1c1c1c;
  z-index: 1;
}

.mn-hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 2;

  width: 100%;
  height: 100%;

  overflow: hidden;
  background: #111111;
}

.mn-hero__slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.035);

  transition: opacity 1800ms ease-in-out;

  will-change: opacity, transform;
}

.mn-hero__slide.is-visible {
  opacity: 1;
}

.mn-hero__slide.is-kenburns {
  animation: mnHeroKenBurns 9000ms linear forwards;
}

@keyframes mnHeroKenBurns {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1.11);
  }
}

.mn-hero__slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.mn-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.mn-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .36);
  z-index: 3;
  pointer-events: none;
}

.mn-hero__content {
  position: relative;
  z-index: 8;
  width: min(1240px, calc(100vw - 120px));
  height: 100%;
  margin: 0 auto;
}

.mn-hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(74px);
}

.mn-hero__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(320px, 24vw, 520px);
  height: auto;
  transform: translate(-50%, -70%);
  opacity: .7;
  z-index: 0;
  display: block;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}

.mn-hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  max-width: 1280px;
  font-size: clamp(56px, 5.25vw, 74px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.05em;
  color: #fff;
  text-align: center;
}

.mn-hero__title span {
  display: block;
}

.mn-hero__title em {
  font-style: italic;
  font-weight: 400;
}

.mn-hero__subtitle {
  position: relative;
  z-index: 2;
  margin: 26px auto 0;
  max-width: 940px;
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.4;
  font-style: italic;
  letter-spacing: -.025em;
  color: rgba(255, 255, 255, .92);
  text-wrap: balance;
}

.mn-hero__actions {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mn-hero-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.025em;
  user-select: none;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, width .32s var(--mn-hero-ease), height .32s var(--mn-hero-ease);
}

.mn-hero-btn__text {
  position: relative;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}

.mn-hero-btn--primary {
  width: 302px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mn-hero-btn--primary::before,
.mn-hero-btn--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .42s var(--mn-hero-ease), background .08s ease;
}

.mn-hero-btn--primary::before {
  background: #fff;
  transform: scaleX(1);
  transform-origin: right center;
}

.mn-hero-btn--primary .mn-hero-btn__text {
  color: #111;
}

.mn-hero-btn--primary .mn-hero-btn__text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  transition: width .42s var(--mn-hero-ease);
}

.mn-hero-btn--primary:hover::before {
  transform: scaleX(0);
}

.mn-hero-btn--soft:hover::before {
  transform: scaleX(1);
}

.mn-hero-btn--primary:hover .mn-hero-btn__text::after {
  width: 100%;
}

.mn-hero-btn--soft {
  width: 430px;
  background: var(--mn-hero-soft-base);
  border: 1.5px solid rgba(255, 255, 255, .9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mn-hero-btn--soft::before {
  background: var(--mn-hero-soft-hover);
}

.mn-hero-btn--soft .mn-hero-btn__text {
  color: #fff;
  transition: color .18s ease;
}

.mn-hero-btn--soft:hover .mn-hero-btn__text {
  color: #111;
}

.mn-hero-btn.is-pressed {
  background: #3f3f3f!important;
  border-color: #3f3f3f!important;
}

.mn-hero-btn.is-pressed::before {
  background: #3f3f3f!important;
  transform: scaleX(1)!important;
  transition: none!important;
}

.mn-hero-btn.is-instant::before,
.mn-hero-btn.is-instant .mn-hero-btn__text::after {
  transition: none!important;
}

/* ===========================
   STORIES / VIDEO CAROUSEL
   =========================== */

.eli-stories-locked {
  overflow: hidden!important;
}

.eli-stories-section {
  --eli-container: 1060px;
  --eli-side-pad: 64px;
  --eli-ease: cubic-bezier(.22, .9, .22, 1);
  width: 100%;
  background: #fff;
  padding: 100px 0 46px;
  overflow: hidden;
}

.eli-stories-head {
  width: min(var(--eli-container), calc(100vw - var(--eli-side-pad)*2));
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.eli-stories-title {
  margin: 0;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.055em;
  color: #111;
}

.eli-stories-title em {
  font-style: italic;
  font-weight: 400;
}

.eli-stories-subtitle {
  max-width: 540px;
  margin: 0;
  font-size: 15px;
  line-height: 1.32;
  letter-spacing: -.025em;
  color: rgba(0, 0, 0, .76);
}

.eli-stories-rail-wrap {
  position: relative;
  width: min(var(--eli-container), calc(100vw - var(--eli-side-pad)*2));
  margin: 0 auto;
  overflow: visible;
}

.eli-stories-rail {
  position: relative;
  width: 100%;
  overflow: visible;
}

.eli-stories-rail .swiper {
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  padding: 28px 0 34px;
}

.eli-stories-rail .swiper-wrapper {
  align-items: center;
  transition-timing-function: var(--eli-ease)!important;
}

.eli-stories-rail .swiper-slide {
  width: clamp(210px, 19vw, 286px);
  height: auto;
  opacity: .52;
  filter: saturate(.9) contrast(.95);
  transition: opacity 620ms var(--eli-ease), filter 620ms var(--eli-ease);
}

.eli-story-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  background: #161616;
  cursor: pointer;
  transform: scale(.88);
  transform-origin: center;
  box-shadow: none!important;
  transition: transform 700ms var(--eli-ease), border-radius 700ms var(--eli-ease);
  will-change: transform;
}

.eli-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 700ms var(--eli-ease), filter 700ms var(--eli-ease);
}

.eli-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .02) 42%, rgba(0, 0, 0, .34) 100%);
  pointer-events: none;
}

.eli-story-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(.88);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .9);
  color: #111;
  opacity: .9;
  transition: transform 520ms var(--eli-ease), opacity 520ms ease, background 220ms ease;
}

.eli-story-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transform: translateX(2px);
}

.eli-story-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 4;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 620ms var(--eli-ease);
}

.eli-story-caption-title {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.035em;
}

.eli-story-caption-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(255, 255, 255, .78);
}

.eli-stories-rail .swiper-slide-prev,
.eli-stories-rail .swiper-slide-next {
  opacity: .78;
  filter: saturate(.98) contrast(.98);
}

.eli-stories-rail .swiper-slide-active {
  opacity: 1;
  filter: none;
  z-index: 5;
}

.eli-stories-rail .swiper-slide-active .eli-story-card {
  transform: scale(1.08);
  border-radius: 20px;
}

.eli-stories-rail .swiper-slide-active .eli-story-card img {
  transform: scale(1);
}

.eli-stories-rail .swiper-slide-active .eli-story-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.eli-stories-rail .swiper-slide-active .eli-story-caption {
  opacity: 1;
  transform: translateY(0);
}

.eli-stories-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 50;
}

.eli-stories-nav-btn {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 0, 0, .18);
  background: rgba(255, 255, 255, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, .46);
  pointer-events: auto;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.eli-stories-nav-btn svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eli-stories-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.eli-stories-next {
  right: 0;
  transform: translate(50%, -50%);
}

.eli-stories-prev:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translate(-50%, -50%) scale(1.04);
}

.eli-stories-next:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translate(50%, -50%) scale(1.04);
}

.eli-stories-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.eli-stories-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: width 260ms ease, background 260ms ease;
}

.eli-stories-dot.is-active {
  width: 26px;
  background: #111;
}

.eli-stories-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .22s ease;
}

.eli-stories-modal.active {
  display: flex;
  opacity: 1;
}

.eli-stories-modal-top {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  z-index: 200;
}

.eli-stories-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}

.eli-stories-modal-grid {
  width: 100%;
  height: 100%;
  max-width: 1180px;
  padding: 34px 18px;
  display: grid;
  grid-template-columns: 180px 52px min(380px, 100vw) 52px 180px;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.eli-stories-side-slide {
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  opacity: .25;
  filter: saturate(.95);
  cursor: pointer;
}

.eli-stories-side-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eli-stories-modal-nav-slot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eli-stories-modal-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #111;
  border: 1.2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}

.eli-stories-modal-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eli-stories-player-wrap {
  position: relative;
  width: 100%;
  height: 82vh;
  max-height: 820px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.eli-stories-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.eli-stories-center-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 140;
  pointer-events: none;
}

.eli-stories-pp-btn {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .12s ease, transform .12s ease;
  color: #fff;
  font-size: 28px;
}

.eli-stories-player-wrap.paused .eli-stories-pp-btn,
.eli-stories-player-wrap.show-play .eli-stories-pp-btn {
  opacity: 1;
  transform: scale(1);
}

.eli-stories-progress-wrap {
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: rgba(255, 255, 255, .3);
  border-radius: 999px;
  z-index: 120;
  pointer-events: none;
}

.eli-stories-progress-fill {
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 999px;
  transition: width .1s linear;
}

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

.mnt-services {
  --mnt-container: 1060px;
  --mnt-side-pad: 64px;
  --mnt-ease: cubic-bezier(.22, .9, .22, 1);
  width: 100%;
  background: #fff;
  padding: 78px 0 88px;
  color: #111;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.mnt-services__container {
  width: min(var(--mnt-container), calc(100vw - var(--mnt-side-pad)*2));
  margin: 0 auto;
}

.mnt-services__title-row {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.mnt-services__title {
  margin: 0;
  font-size: clamp(42px, 3.8vw, 64px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.055em;
  text-align: center;
  color: #111;
}

.mnt-services__title em {
  font-style: italic;
  font-weight: 400;
}

.mnt-services__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  margin-bottom: 54px;
}

.mnt-services__subtitle {
  max-width: 500px;
  margin: 0;
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.3;
  letter-spacing: -.03em;
  color: #111;
}

.mnt-services__button {
  position: relative;
  width: 224px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #111;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  user-select: none;
}

.mnt-services__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .42s var(--mnt-ease), background .08s ease;
}

.mnt-services__button-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 19px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.035em;
  color: #111;
  white-space: nowrap;
}

.mnt-services__button-text em {
  font-style: italic;
  font-weight: 600;
}

.mnt-services__button-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  transition: width .42s var(--mnt-ease);
}

.mnt-services__button:hover::before {
  transform: scaleX(1);
}

.mnt-services__button:hover .mnt-services__button-text::after {
  width: 100%;
}

.mnt-services__button.is-pressed {
  background: #3f3f3f;
  border-color: #3f3f3f;
}

.mnt-services__button.is-pressed::before {
  background: #3f3f3f;
  transform: scaleX(1);
}

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

.mnt-service-card {
  position: relative;
  min-height: 286px;
  padding: 18px 32px 34px;
  border: 1.2px solid rgba(0, 0, 0, .34);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: border-color 320ms ease;
}

.mnt-service-card:hover {
  border-color: rgba(0, 0, 0, .72);
}

.mnt-service-card__image-wrap {
  width: 78%;
  max-width: 290px;
  height: 132px;
  margin: 0 auto 22px;
  overflow: hidden;
  background: #f7f7f5;
}

.mnt-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  filter: saturate(.9) contrast(.99);
  transform: scale(1.02);
  transition: opacity 320ms ease, filter 320ms ease, transform 480ms var(--mnt-ease);
}

.mnt-service-card:hover .mnt-service-card__image {
  opacity: .94;
  filter: saturate(1) contrast(1);
  transform: scale(1.055);
}

.mnt-service-card__title {
  margin: 0 0 12px;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.04em;
  color: #111;
}

.mnt-service-card__title em {
  font-style: italic;
  font-weight: 500;
}

.mnt-service-card__desc {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  font-style: italic;
  letter-spacing: -.015em;
  color: rgba(0, 0, 0, .76);
}

.mnt-service-card__num {
  position: absolute;
  right: 11px;
  top: 22px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  color: rgba(0, 0, 0, .72);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.mnt-service-card:hover .mnt-service-card__num {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   PROJECTS DESKTOP
   =========================== */

.mv-projects-slider {
  --mvps-container: 1120px;
  --mvps-side-pad: 64px;
  --mvps-gap: 18px;
  --mvps-radius: 20px;
  --mvps-active-w: calc((100% - var(--mvps-gap)*2)*.46);
  --mvps-side-w: calc((100% - var(--mvps-gap)*2)*.27);
  --mvps-card-h: 610px;
  --mvps-panel-bg: rgba(35, 35, 35, .50);
  --mvps-ease: cubic-bezier(.22, .9, .22, 1);
  --mvps-duration: 760ms;
  width: 100%;
  padding: 72px 0 10px;
  background: #fff;
  overflow: hidden;
  color: #111;
  scroll-margin-top: 90px;
}

.mvps-head {
  width: min(var(--mvps-container), calc(100vw - var(--mvps-side-pad)*2));
  margin: 0 auto 34px;
  text-align: center;
}

.mvps-head h2 {
  margin: 0;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.045em;
  color: #050505;
}

.mvps-head h2 em {
  font-style: italic;
  font-weight: 400;
}

.mvps-wrap {
  position: relative;
  width: min(var(--mvps-container), calc(100vw - var(--mvps-side-pad)*2));
  margin: 0 auto;
  overflow: visible;
}

.mvps-viewport {
  width: 100%;
  overflow: hidden;
}

.mvps-track {
  display: flex;
  align-items: stretch;
  gap: var(--mvps-gap);
  will-change: transform;
  transition: transform var(--mvps-duration) var(--mvps-ease);
}

.mvps-card {
  position: relative;
  flex: 0 0 var(--mvps-side-w);
  height: var(--mvps-card-h);
  border-radius: var(--mvps-radius);
  overflow: hidden;
  background: #d8d8d8;
  cursor: pointer;
  transform: translateZ(0);
  opacity: .98;
  filter: saturate(.96) contrast(.98);
  transition: flex-basis var(--mvps-duration) var(--mvps-ease), opacity var(--mvps-duration) var(--mvps-ease), filter var(--mvps-duration) var(--mvps-ease);
}

.mvps-card.is-active,
.mvps-card.is-leaving-next {
  flex-basis: var(--mvps-active-w);
}

.mvps-card.is-active {
  opacity: 1;
  filter: none;
}

.mnt-section-anchor {
  position: relative;
  width: 100%;
  height: 0;
  scroll-margin-top: 86px;
}
@media (max-width: 760px) {
  .mnt-section-anchor {
    scroll-margin-top: 72px;
  }
}


.mv-projects-slider.is-silent .mvps-track,
.mv-projects-slider.is-silent .mvps-card,
.mv-projects-slider.is-silent .mvps-photo-layer,
.mv-projects-slider.is-silent .mvps-content,
.mv-projects-slider.is-silent .mvps-content-box,
.mv-projects-slider.is-silent .mvps-title,
.mv-projects-slider.is-silent .mvps-desc,
.mv-projects-slider.is-silent .mvps-extra,
.mv-projects-slider.is-silent .mvps-label,
.mv-projects-slider.is-silent .mvps-label-icon,
.mv-projects-slider.is-silent .mvps-label-text {
  transition: none!important;
}

.mvps-photo-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #d8d8d8;
}

.mvps-photo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.035);
  will-change: opacity, transform;
  transition: opacity 820ms var(--mvps-ease), transform 980ms var(--mvps-ease);
}

.mvps-photo-layer.is-visible {
  opacity: 1;
  z-index: 2;
}

.mvps-photo-layer.is-hidden {
  opacity: 0;
  z-index: 1;
}

.mvps-card.is-active .mvps-photo-layer.is-visible {
  transform: scale(1);
}

.mvps-card.is-active .mvps-photo-layer.is-hidden {
  transform: scale(1.025);
}

.mvps-gradient {
  display: none!important;
}

.mvps-labels {
  position: absolute;
  left: 20px;
  top: 20px;
  right: 20px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}

.mvps-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  max-width: 170px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #111;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: width var(--mvps-duration) var(--mvps-ease), max-width var(--mvps-duration) var(--mvps-ease), height var(--mvps-duration) var(--mvps-ease), padding var(--mvps-duration) var(--mvps-ease), opacity 360ms ease, transform 520ms var(--mvps-ease);
}

.mvps-label-icon {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  font-size: 11px;
  opacity: .82;
}

.mvps-card:not(.is-active) .mvps-labels {
  left: 20px;
  top: 20px;
  right: auto;
  width: 30px;
  height: 30px;
  display: block;
}

.mvps-card:not(.is-active) .mvps-label {
  width: 30px;
  max-width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-4px);
}

.mvps-card:not(.is-active) .mvps-label:first-child {
  opacity: 1;
  transform: translateY(0);
}

.mvps-card:not(.is-active) .mvps-label-icon,
.mvps-card:not(.is-active) .mvps-label-text {
  opacity: 0;
}

.mvps-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  color: #fff;
  transition: left var(--mvps-duration) var(--mvps-ease), right var(--mvps-duration) var(--mvps-ease), bottom var(--mvps-duration) var(--mvps-ease);
}

.mvps-content-box {
  width: 100%;
  min-height: 118px;
  padding: 21px 23px 23px;
  background: var(--mvps-panel-bg);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .38);

  transition:
    min-height 520ms var(--mvps-ease),
    padding 520ms var(--mvps-ease),
    border-radius 520ms var(--mvps-ease),
    background 520ms var(--mvps-ease),
    backdrop-filter 520ms var(--mvps-ease);
}

.mvps-card.is-active .mvps-content {
  left: 10px;
  right: 10px;
  bottom: 10px;
}

.mvps-card.is-active .mvps-content-box {
  min-height: 166px;
  padding: 23px 24px 24px;
  border-radius: 16px;
  background: var(--mvps-panel-bg);

  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
}

.mvps-card.is-active:hover .mvps-content-box {
  min-height: 232px;
  padding: 24px 24px 25px;
}

.mvps-title {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.045em;
  color: #fff;
  transition: font-size var(--mvps-duration) var(--mvps-ease), margin var(--mvps-duration) var(--mvps-ease);
}

.mvps-card.is-active .mvps-title {
  font-size: 27px;
  margin-bottom: 9px;
}

.mvps-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, .84);
  max-height: 52px;
  overflow: hidden;
}

.mvps-card.is-active .mvps-desc {
  font-size: 12.5px;
  max-height: 76px;
}

.mvps-extra {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 520ms var(--mvps-ease), opacity 360ms ease, transform 520ms var(--mvps-ease), margin-top 520ms var(--mvps-ease), padding-top 520ms var(--mvps-ease), border-color 520ms ease;
}

.mvps-card.is-active:hover .mvps-extra {
  margin-top: 15px;
  padding-top: 14px;
  border-top-color: rgba(255, 255, 255, .18);
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
}

.mvps-extra-key {
  display: block;
  margin-bottom: 3px;
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .52);
}

.mvps-extra-value {
  display: block;
  font-size: 11.5px;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mvps-photo-nav {
  position: absolute;
  right: 22px;
  bottom: 190px;
  z-index: 8;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms var(--mvps-ease), bottom 520ms var(--mvps-ease);
}

.mvps-card.is-active:hover .mvps-photo-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  bottom: 256px;
}

.mvps-photo-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .9);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.mvps-photo-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvps-photo-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.mvps-arrow {
  position: absolute;
  top: 50%;
  z-index: 30;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  border: 1.4px solid rgba(0, 0, 0, .16);
  background: rgba(255, 255, 255, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, .42);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.mvps-arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvps-arrow-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.mvps-arrow-next {
  right: 0;
  transform: translate(50%, -50%);
}

.mvps-arrow-prev:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translate(-50%, -50%) scale(1.035);
}

.mvps-arrow-next:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translate(50%, -50%) scale(1.035);
}

/* ===========================
   PROJECTS MOBILE VISIBILITY
   =========================== */

@media (max-width:760px) {

  #projects {
    display: none!important;
  }
}

@media (min-width:761px) {

  #mvProjectsMobile {
    display: none!important;
  }
}

/* ===========================
   PROJECTS MOBILE
   =========================== */

.mvm-projects {
  width: 100%;
  background: #fff;
  color: #111;
  padding: 52px 0 20px;
  overflow: hidden;
}

.mvm-projects__head {
  width: calc(100vw - 40px);
  margin: 0 auto 26px;
  text-align: center;
}

.mvm-projects__head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.045em;
  color: #050505;
}

.mvm-projects__head h2 em {
  font-style: italic;
  font-weight: 400;
}

.mvm-projects__wrap {
  width: calc(100vw - 40px);
  margin: 0 auto;
}

.mvm-project-card {
  width: 100%;
  height: clamp(470px, 118vw, 560px);
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #d8d8d8;
  transform: translateZ(0);
  opacity: 1;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(.22, .9, .22, 1);
}

.mvm-project-card.is-changing-next,
.mvm-project-card.is-changing-prev {
  opacity: 1;
  transform: translateZ(0);
}

.mvm-project-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #d8d8d8;
}

.mvm-project-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.018);
  transition:
    opacity 460ms cubic-bezier(.22, .9, .22, 1),
    transform 620ms cubic-bezier(.22, .9, .22, 1);
  will-change: opacity, transform;
}

.mvm-project-card__img.is-current {
  opacity: 1;
  z-index: 1;
}

.mvm-project-card__img.is-next {
  opacity: 0;
  z-index: 2;
}

.mvm-project-card.is-photo-changing .mvm-project-card__img.is-current {
  opacity: 0;
  transform: scale(1.015);
}

.mvm-project-card.is-photo-changing .mvm-project-card__img.is-next {
  opacity: 1;
  transform: scale(1);
}

.mvm-project-card__labels {
  position: absolute;
  left: 14px;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  pointer-events: none;
}

.mvm-label {
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  line-height: 1;
  white-space: nowrap;
}

.mvm-label__icon {
  font-size: 10px;
  opacity: .8;
}

.mvm-photo-nav {
  position: absolute;
  right: 18px;
  bottom: 172px;
  z-index: 8;
  display: flex;
  gap: 8px;
}

.mvm-photo-btn,
.mvm-main-arrow {
  border-radius: 999px;
  border: 1.4px solid rgba(0, 0, 0, .16);
  background: rgba(255, 255, 255, .96);
  color: rgba(0, 0, 0, .48);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mvm-photo-btn {
  width: 36px;
  height: 36px;
}

.mvm-main-arrow {
  width: 58px;
  height: 58px;
}

.mvm-photo-btn svg {
  width: 17px;
  height: 17px;
}

.mvm-main-arrow svg {
  width: 20px;
  height: 20px;
}

.mvm-photo-btn svg,
.mvm-main-arrow svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvm-photo-btn:active,
.mvm-main-arrow:active {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: scale(.96);
}

.mvm-project-card__content {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 6;

  min-height: 150px;
  padding: 20px 20px 18px;
  border-radius: 16px;

  background: rgba(35, 35, 35, .50);
  color: #fff;

  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .38);

  transition:
    min-height 360ms cubic-bezier(.22, .9, .22, 1),
    background 260ms ease,
    backdrop-filter 260ms ease;
}

.mvm-project-card.is-expanded .mvm-project-card__content {
  min-height: 230px;
  background: rgba(35, 35, 35, .58);
}

.mvm-project-card__content h3 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.045em;
  color: #fff;
}

.mvm-project-card__content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, .84);
}

.mvm-project-card__more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 360ms cubic-bezier(.22, .9, .22, 1), opacity 260ms ease, transform 360ms cubic-bezier(.22, .9, .22, 1);
}

.mvm-project-card.is-expanded .mvm-project-card__more {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

.mvm-more-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 11.5px;
  line-height: 1.15;
  color: rgba(255, 255, 255, .82);
}

.mvm-more-line span:last-child {
  color: #fff;
  text-align: right;
}

.mvm-more-btn {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.mvm-projects__bottom {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.mvm-projects__counter {
  min-width: 62px;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -.02em;
  color: rgba(0, 0, 0, .55);
}

/* ===========================
   CONTACT
   =========================== */

.mnt-contact {
  --mnt-contact-container: 1120px;
  --mnt-contact-side-pad: 64px;
  --mnt-contact-ease: cubic-bezier(.22, .9, .22, 1);
  --mnt-contact-click: #3f3f3f;
  width: 100%;
  min-height: 840px;
  background: #fff;
  color: #111;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.mnt-contact__inner {
  position: relative;
  width: 100%;
  min-height: 840px;
  padding: 76px 24px 0;
  overflow: hidden;
}

.mnt-contact__content {
  position: relative;
  z-index: 3;
  width: min(var(--mnt-contact-container), calc(100vw - var(--mnt-contact-side-pad)*2));
  margin: 0 auto;
  text-align: center;
  padding-bottom: 250px;
}

.mnt-contact__title {
  margin: 0 0 54px;
  font-size: clamp(40px, 3.8vw, 64px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.045em;
  color: #050505;
}

.mnt-contact__title em {
  font-style: italic;
  font-weight: 400;
}

.mnt-contact__subtitle {
  margin: 0 auto 28px;
  max-width: 800px;
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.15;
  letter-spacing: -.035em;
  color: #292929;
}

.mnt-contact__note {
  margin: 0 auto 48px;
  max-width: 680px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.22;
  font-style: italic;
  letter-spacing: -.02em;
  color: rgba(0, 0, 0, .68);
}

.mnt-contact__buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 0 auto 28px;
}

.mnt-contact__button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 68px;
  padding: 0 22px;
  border: 1.5px solid #111;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111!important;
}

.mnt-contact__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .42s var(--mnt-contact-ease), background .08s ease;
}

.mnt-contact__button-fg {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #111;
  transition: color .18s ease;
}

.mnt-contact__button-label {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.mnt-contact__icon {
  flex: 0 0 auto;

  width: 26px;
  height: 26px;

  display: grid;
  place-items: center;

  background: transparent;
  color: currentColor;
}

.mnt-contact__button:hover::before,
.mnt-contact__button.is-after-click::before {
  transform: scaleX(1);
  background: #111;
}

.mnt-contact__button:hover .mnt-contact__button-fg,
.mnt-contact__button.is-after-click .mnt-contact__button-fg {
  color: #fff;
}

.mnt-contact__button.is-pressed {
  background: var(--mnt-contact-click)!important;
  border-color: var(--mnt-contact-click)!important;
}

.mnt-contact__button.is-pressed::before {
  background: var(--mnt-contact-click)!important;
  transform: scaleX(1)!important;
  transition: background .08s ease!important;
}

.mnt-contact__button.is-pressed .mnt-contact__button-fg {
  color: #fff!important;
}

.mnt-contact__button.is-instant::before {
  transition: none!important;
}

.mnt-contact__small {
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.28;
  font-style: italic;
  letter-spacing: -.015em;
  color: rgba(0, 0, 0, .66);
}

.mnt-contact__brand-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 330px;
  background-image: none;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}

.mnt-contact__brand {
  --brand-shift-x: -10px;
  position: absolute;
  left: 50%;
  bottom: -6px;
  z-index: 1;
  display: inline-block;
  width: max-content;
  white-space: nowrap;
  font-size: clamp(160px, 18vw, 330px);
  line-height: .72;
  font-weight: 900;
  letter-spacing: -.055em;
  color: #000;
  transform: translateX(-50%) scale(1);
  transform-origin: center bottom;
  pointer-events: none;
  user-select: none;
}
/* ===========================
   FOOTER
   =========================== */

.mn-footer,
.mn-footer * {
  box-sizing: border-box;
}

.mn-footer a {
  color: inherit;
  text-decoration: none;
}

.mn-footer {
  width: 100%;
  height: 160px;
  background: #111111;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.mn-footer__inner {
  width: 100%;
  height: 100%;
  padding: 0 42px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.mn-footer__brand {
  justify-self: start;

  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #ffffff;
}

.mn-footer__copy {
  justify-self: center;

  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;

  color: #ffffff;
}

.mn-footer__socials {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 14px;
}

.mn-footer__social {
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #111111 !important;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mn-footer__social svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Telegram и MAX — заливочные */
.mn-footer__social--telegram svg,
.mn-footer__social--max svg {
  fill: #111111 !important;
  stroke: none !important;
}

.mn-footer__social--telegram svg *,
.mn-footer__social--max svg * {
  fill: #111111 !important;
  stroke: none !important;
}

/* Instagram — контурный */
.mn-footer__social--instagram svg {
  fill: none !important;
  stroke: #111111 !important;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mn-footer__social--instagram svg * {
  fill: none !important;
  stroke: #111111 !important;
}

.mn-footer__social:hover {
  transform: scale(1.06);
}

.mn-footer__social:active {
  transform: scale(0.96);
  opacity: 0.82;
}

/* laptop */
@media (max-width: 1536px) and (min-width: 1201px) {
  .mn-footer {
    height: 152px;
  }

  .mn-footer__inner {
    padding: 0 34px;
  }

  .mn-footer__brand {
    font-size: 17px;
  }

  .mn-footer__copy {
    font-size: 12.5px;
  }

  .mn-footer__social {
    width: 32px;
    height: 32px;
  }

  .mn-footer__social svg {
    width: 17px;
    height: 17px;
  }
}

/* tablet */
@media (max-width: 1200px) and (min-width: 761px) {
  .mn-footer {
    height: 150px;
  }

  .mn-footer__inner {
    padding: 0 28px;
  }

  .mn-footer__brand {
    font-size: 16px;
  }

  .mn-footer__copy {
    font-size: 12px;
  }

  .mn-footer__social {
    width: 32px;
    height: 32px;
  }

  .mn-footer__social svg {
    width: 17px;
    height: 17px;
  }
}

/* mobile */
@media (max-width: 760px) {
  .mn-footer {
    height: auto;
    min-height: 210px;
  }

  .mn-footer__inner {
    padding: 36px 20px;

    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
  }

  .mn-footer__brand,
  .mn-footer__copy,
  .mn-footer__socials {
    justify-self: center;
  }

  .mn-footer__brand {
    font-size: 17px;
  }

  .mn-footer__copy {
    font-size: 12.5px;
  }

  .mn-footer__socials {
    gap: 16px;
  }

  .mn-footer__social {
    width: 38px;
    height: 38px;
  }

  .mn-footer__social svg {
    width: 19px;
    height: 19px;
  }
}

/* ===========================
   RESPONSIVE: WIDE MONITOR
   =========================== */

@media (min-width:1537px) {

  .eli-stories-section {
    --eli-container: 1240px;
    --eli-side-pad: 80px;
    padding-top: 150px;
    padding-bottom: 72px;
  }

  .eli-stories-head {
    margin-bottom: 36px;
  }

  .eli-stories-rail .swiper-slide {
    width: clamp(250px, 17vw, 320px);
  }

  .mnt-services {
    --mnt-container: 1240px;
    --mnt-side-pad: 80px;
    padding-top: 96px;
    padding-bottom: 20px;
  }

  .mnt-service-card {
    min-height: 306px;
    padding: 20px 38px 38px;
  }

  .mnt-service-card__image-wrap {
    height: 148px;
    max-width: 320px;
  }

  .mv-projects-slider {
    --mvps-container: 1240px;
    --mvps-side-pad: 80px;
    --mvps-gap: 18px;
    --mvps-card-h: 650px;
    padding-top: 78px;
    padding-bottom: 92px;
  }

  .mvps-arrow {
    width: 72px;
    height: 72px;
  }

  .mnt-contact {
    --mnt-contact-container: 1240px;
    --mnt-contact-side-pad: 80px;
    min-height: 860px;
  }

  .mnt-contact__inner {
    min-height: 860px;
    padding-top: 90px;
  }

  .mnt-contact__content {
    padding-bottom: 310px;
  }

  .mnt-contact__title {
    margin-bottom: 62px;
    font-size: clamp(52px, 4vw, 72px);
  }

  .mnt-contact__brand {
    --brand-shift-x: -8px;
  }
}

/* ===========================
   RESPONSIVE: LAPTOP
   =========================== */

@media (max-width:1536px) and (min-width:1201px) {

  .mn-fixed-header {
    --mn-side-pad: 24px;
    height: 88px;
  }

  .mn-fixed-header.is-scrolled {
    height: 72px;
  }

  .mn-fixed-header__logo {
    width: 64px;
    height: 64px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 56px;
    height: 56px;
  }

  .mn-fixed-header__nav {
    gap: 34px;
  }

  .mn-fixed-header__nav a {
    font-size: 17px;
  }

  .mn-fixed-header__btn {
    width: 198px;
    height: 56px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__btn {
    width: 188px;
    height: 50px;
  }

  .mn-fixed-header__btn-text {
    font-size: 16px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__btn-text {
    font-size: 15px;
  }

  .mn-hero {
    min-height: 640px;
  }

  .mn-hero__content {
    width: min(1080px, calc(100vw - 120px));
  }

  .mn-hero__inner {
    transform: translateY(62px);
  }

  .mn-hero__mark {
    width: 340px;
    transform: translate(-50%, -103%);
  }

  .mn-hero__title {
    max-width: 1080px;
    font-size: clamp(58px, 4.8vw, 78px);
  }

  .mn-hero__subtitle {
    max-width: 820px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.38;
  }

  .mn-hero__actions {
    margin-top: 30px;
    gap: 24px;
  }

  .mn-hero-btn {
    height: 70px;
    font-size: 19px;
  }

  .mn-hero-btn--primary {
    width: 260px;
  }

  .mn-hero-btn--soft {
    width: 390px;
  }

  .mv-projects-slider {
    --mvps-container: 1060px;
    --mvps-side-pad: 64px;
    --mvps-gap: 16px;
    --mvps-card-h: 620px;
  }

  .mnt-contact__brand {
    --brand-shift-x: -14px;
  }
}

/* ===========================
   RESPONSIVE: TABLET / SMALL DESKTOP
   =========================== */

@media (max-width:1200px) and (min-width:761px) {

  .mnt-services {
    --mnt-container: 900px;
    --mnt-side-pad: 40px;
  }

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

  .mv-projects-slider {
    --mvps-container: 900px;
    --mvps-side-pad: 40px;
    --mvps-gap: 14px;
    --mvps-card-h: 560px;
  }

  .mvps-card.is-active .mvps-content-box {
    min-height: 148px;
  }

  .mvps-card.is-active:hover .mvps-content-box {
    min-height: 214px;
  }
}

/* ===========================
   RESPONSIVE: TABLET
   =========================== */

@media (max-width:1199px) and (min-width:768px) {

  .mn-fixed-header {
    --mn-side-pad: 22px;
    height: 82px;
  }

  .mn-fixed-header.is-scrolled {
    height: 70px;
  }

  .mn-fixed-header__logo {
    width: 60px;
    height: 60px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 52px;
    height: 52px;
  }

  .mn-fixed-header__nav {
    gap: 24px;
  }

  .mn-fixed-header__nav a {
    font-size: 15px;
  }

  .mn-fixed-header__btn {
    width: 174px;
    height: 50px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__btn {
    width: 168px;
    height: 46px;
  }

  .mn-fixed-header__btn-text {
    font-size: 14px;
  }
  .mn-fixed-header.is-scrolled .mn-fixed-header__btn-text {
      font-size: 12px;
    }

  .mn-hero {
    min-height: 680px;
  }

  .mn-hero__content {
    width: min(880px, calc(100vw - 72px));
  }

  .mn-hero__inner {
    transform: translateY(46px);
  }

  .mn-hero__mark {
    width: 335px;
    transform: translate(-50%, -105%);
  }

  .mn-hero__title {
    max-width: 860px;
    font-size: clamp(46px, 5vw, 62px);
  }

  .mn-hero__actions {
    gap: 18px;
  }

  .mn-hero-btn {
    height: 62px;
    font-size: 17px;
  }

  .mn-hero-btn--primary {
    width: 230px;
  }

  .mn-hero-btn--soft {
    width: 320px;
  }
}

/* ===========================
   RESPONSIVE: MOBILE CONTACT / STORIES
   =========================== */

@media (max-width:860px) {

  .eli-stories-section {
    padding: 72px 0 56px;
  }

  .eli-stories-head {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .eli-stories-title {
    font-size: 36px;
  }

  .eli-stories-rail-wrap {
    width: 100%;
  }

  .eli-stories-rail .swiper {
    overflow: visible;
    padding: 22px 0 34px;
  }

  .eli-stories-rail .swiper-slide {
    width: clamp(190px, 64vw, 300px);
  }

  .eli-story-card {
    transform: scale(.92);
  }

  .eli-stories-rail .swiper-slide-active .eli-story-card {
    transform: scale(1.035);
  }

  .eli-stories-nav-btn {
    display: none;
  }

  .eli-story-caption {
    opacity: 1;
    transform: none;
  }

  .eli-stories-modal-grid {
    max-width: none;
    padding: 0;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .eli-stories-side-slide,
  .eli-stories-modal-nav-slot {
    display: none;
  }

  .eli-stories-player-wrap {
    width: min(100vw, 460px);
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }

  .mnt-contact {
    min-height: 780px;
  }

  .mnt-contact__inner {
    min-height: 780px;
    padding: 74px 20px 0;
  }

  .mnt-contact__content {
    width: 100%;
    padding-bottom: 210px;
  }

    .mnt-contact__title {
    margin-bottom: 32px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: .98;
    letter-spacing: -.055em;
  }

  .mnt-contact__subtitle {
    margin: 0 auto 20px;
    max-width: 520px;
    font-size: clamp(16px, 5vw, 20px);
    line-height: 1.14;
  }

  .mnt-contact__note {
    margin: 0 auto 30px;
    max-width: 480px;
    font-size: clamp(9px, 3vw, 14px);
    line-height: 1.22;
  }
  .mnt-contact__note br,
  .mnt-contact__subtitle br {
    display: none;
  }

    .mnt-contact__buttons {
        width: min(320px, 100%);
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 10px;
      }

  .mnt-contact__button {
    width: 76px;
    height: 76px;
    min-height: 76px;
    padding: 0;
    margin: 0 auto;
  }

  .mnt-contact__button-label {
    display: none;
  }

  .mnt-contact__button-fg {
    gap: 0;
  }

  .mnt-contact__brand {
    --brand-shift-x: -6px;
  }

  .mnt-contact__small {
    font-size: clamp(18px, 4.6vw, 22px);
  }
}

/* ===========================
   RESPONSIVE: MOBILE HEADER / HERO
   =========================== */

@media (max-width:767px) {

  .mn-fixed-header {
    --mn-side-pad: 16px;
    height: 76px;
  }

  .mn-fixed-header.is-scrolled {
    height: 68px;
  }

  .mn-fixed-header__logo {
    width: 54px;
    height: 54px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 48px;
    height: 48px;
  }

  .mn-fixed-header__nav {
    display: none;
  }

  .mn-fixed-header__btn {
    width: 164px;
    height: 46px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__btn {
    width: 156px;
    height: 42px;
  }

  .mn-fixed-header__btn-text {
    font-size: 14px;
  }
    .mn-fixed-header.is-scrolled .mn-fixed-header__btn-text {
      font-size: 13px;
    }
  .mn-hero {
    min-height: 620px;
  }

  .mn-hero__content {
    width: calc(100vw - 36px);
  }

  .mn-hero__inner {
    transform: translateY(24px);
  }

  .mn-hero__mark {
    width: 180px;
    transform: translate(-50%, -197%);
    opacity: 1;
  }

  .mn-hero__title {
    font-size: clamp(34px, 9vw, 44px);
  }

  .mn-hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .mn-hero-btn {
    width: 100%;
    max-width: 335px;
    height: 56px;
    font-size: 16px;
  }

  .mn-hero-btn--primary,
  .mn-hero-btn--soft {
    width: 100%;
  }
}

@media (max-width:760px) {

  .mnt-services {
    --mnt-side-pad: 16px;
    padding: 54px 0 20px;
  }

  .mnt-services__container {
    width: calc(100vw - 32px);
  }

  .mnt-services__title-row {
    justify-content: center;
    margin-bottom: 22px;
  }

  .mnt-services__title {
    width: 100%;
    text-align: center;
    font-size: 40px;
  }

  .mnt-services__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    margin-bottom: 36px;
  }

  .mnt-services__subtitle {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.28;
  }

  .mnt-services__button {
    width: min(335px, 100%);
    height: 56px;
    margin: 0 auto;
  }

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

  .mnt-service-card__num {
    display: none;
  }
}
/* ===========================
   RESPONSIVE: SMALL MOBILE
   =========================== */

@media (max-width:520px) {

  .mnt-footer__inner {
    min-height: 220px;
    padding: 42px 24px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .mnt-footer__brand,
  .mnt-footer__copy,
  .mnt-footer__socials {
    justify-self: center;
  }

  .mnt-contact__title {
    font-size: 40px;
  }

  .mnt-contact__subtitle {
    font-size: 20px;
  }

  .mnt-contact__note {
    font-size: 14px;
  }
}

/* ===========================
   RESPONSIVE: EXTRA SMALL MOBILE
   =========================== */

@media (max-width:390px) {

  .mvm-projects__head h2 {
    font-size: 36px;
  }

  .mvm-project-card {
    height: 520px;
    min-height: 500px;
  }

  .mvm-project-card__content h3 {
    font-size: 23px;
  }

  .mvm-photo-nav {
    bottom: 168px;
  }

    .mnt-contact__title {
    font-size: 40px;
  }

  .mnt-contact__subtitle {
    font-size: 20px;
  }

  .mnt-contact__note {
    font-size: 14px;
  }

  .mnt-contact__button {
    width: 66px;
    height: 66px;
    min-height: 66px;
  }
}


/* ===========================
   MONUMENTRA FOOTER
   =========================== */

.mnt-site-footer,
.mnt-site-footer * {
  box-sizing: border-box;
}

.mnt-site-footer a {
  color: inherit;
  text-decoration: none;
}

.mnt-site-footer {
  width: 100%;
  height: 126px;
  background: #141414;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.mnt-site-footer__inner {
  width: 100%;
  height: 100%;
  padding: 0 42px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.mnt-site-footer__logo {
  justify-self: start;

  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.mnt-site-footer__copyright {
  justify-self: center;

  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.mnt-site-footer__socials {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 14px;
}

.mnt-site-footer__social {
  width: 36px;
  height: 36px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #111111 !important;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mnt-site-footer__social svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Telegram и MAX */
.mnt-site-footer__social--telegram svg,
.mnt-site-footer__social--max svg,
.mnt-site-footer__social--whatsapp svg {
  fill: #111111 !important;
  stroke: none !important;
}

.mnt-site-footer__social--telegram svg *,
.mnt-site-footer__social--max svg *,
.mnt-site-footer__social--whatsapp svg * {
  fill: #111111 !important;
  stroke: none !important;
}

/* Instagram */
.mnt-site-footer__social--instagram svg {
  fill: none !important;
  stroke: #111111 !important;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mnt-site-footer__social--instagram svg * {
  fill: none !important;
  stroke: #111111 !important;
}

.mnt-site-footer__social:hover {
  transform: scale(1.06);
}

.mnt-site-footer__social:active {
  transform: scale(0.96);
  opacity: 0.82;
}

/* MOBILE */

@media (max-width: 760px) {
  .mnt-site-footer {
    height: 168px;
  }

  .mnt-site-footer__inner {
    padding: 28px 24px;

    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
    justify-items: center;
    align-content: center;
  }

  .mnt-site-footer__logo,
  .mnt-site-footer__copyright,
  .mnt-site-footer__socials {
    justify-self: center;
  }

  .mnt-site-footer__logo {
    font-size: 20px;
  }

  .mnt-site-footer__copyright {
    font-size: 13px;
  }

  .mnt-site-footer__social {
    width: 38px;
    height: 38px;
  }
}

/* ===========================
   CONTACT ICONS — SAME AS FOOTER
   =========================== */

.mnt-contact__icon {
  flex: 0 0 auto;

  width: 26px;
  height: 26px;

  display: grid;
  place-items: center;

  background: transparent;
  color: currentColor;
}

.mnt-contact__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Telegram и MAX — заливочные */
.mnt-contact__icon--telegram svg,
.mnt-contact__icon--max svg,
.mnt-contact__icon--whatsapp svg {
  fill: currentColor !important;
  stroke: none !important;
}

.mnt-contact__icon--telegram svg *,
.mnt-contact__icon--max svg *,
.mnt-contact__icon--whatsapp svg * {
  fill: currentColor !important;
  stroke: none !important;
}

/* Instagram — контурный */
.mnt-contact__icon--instagram svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mnt-contact__icon--instagram svg * {
  fill: none !important;
  stroke: currentColor !important;
}

/* размер иконок на больших экранах */
@media (min-width: 1537px) {
  .mnt-contact__icon {
    width: 30px;
    height: 30px;
  }
}

/* размер иконок на мобилке */
@media (max-width: 860px) {
  .mnt-contact__icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 520px) {
  .mnt-contact__icon {
    width: 28px;
    height: 28px;
  }
}


/* ===========================
   HEADER LOGO
   light / dark versions
   =========================== */

.mn-fixed-header__logo {
  position: absolute;
  left: var(--mn-side-pad);
  top: 50%;
  transform: translateY(-50%);

  width: 96px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    width 0.32s var(--mn-ease),
    height 0.32s var(--mn-ease);
}

.mn-fixed-header.is-scrolled .mn-fixed-header__logo {
  width: 88px;
  height: 64px;
}

.mn-fixed-header__logo-img {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 100%;
  height: 100%;
  object-fit: contain;

  transform: translate(-50%, -50%);
  display: block;

  transition:
    opacity 0.28s ease,
    transform 0.32s var(--mn-ease);
}

/* светлое лого видно в начале */
.mn-fixed-header__logo-img--light {
  opacity: 1;
}

/* тёмное лого скрыто в начале */
.mn-fixed-header__logo-img--dark {
  opacity: 0;
}

/* при скролле светлое исчезает */
.mn-fixed-header.is-scrolled .mn-fixed-header__logo-img--light {
  opacity: 0;
}

/* при скролле тёмное появляется */
.mn-fixed-header.is-scrolled .mn-fixed-header__logo-img--dark {
  opacity: 1;
}

/* laptop */
@media (max-width: 1536px) and (min-width: 1200px) {
  .mn-fixed-header__logo {
    width: 90px;
    height: 66px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 82px;
    height: 60px;
  }
}

/* tablet */
@media (max-width: 1199px) and (min-width: 768px) {
  .mn-fixed-header__logo {
    width: 84px;
    height: 62px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 76px;
    height: 56px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .mn-fixed-header__logo {
    width: 78px;
    height: 58px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 70px;
    height: 52px;
  }
}


.mvps-card.is-active .mvps-content-box {
  background: rgba(45, 45, 45, 0.42) !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.mvps-card.is-active:hover .mvps-content-box {
  background: rgba(45, 45, 45, 0.42) !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}




/* ===========================
   PROJECT CARDS FIX
   больше текста + без белых лейблов
   =========================== */

/* полностью скрываем белые лейблы */
.mvps-labels,
.mvm-project-card__labels {
  display: none !important;
}

/* активная плашка: меньше пустого нижнего воздуха */
.mvps-card.is-active .mvps-content-box {
  min-height: auto;
  padding: 22px 24px 18px;
}

/* при наведении плашка подстраивается под текст */
.mvps-card.is-active:hover .mvps-content-box {
  min-height: auto;
  padding: 22px 24px 18px;
}

/* описание не обрезается */
.mvps-desc,
.mvps-card.is-active .mvps-desc {
  max-height: none;
  overflow: visible;
  line-height: 1.26;
}

/* блок дополнительных параметров больше не режет текст */
.mvps-card.is-active:hover .mvps-extra {
  max-height: none;
  overflow: visible;

  margin-top: 12px;
  padding-top: 12px;

  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

/* значения переносятся на новую строку, а не режутся троеточием */
.mvps-extra-value {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;

  font-size: 11.5px;
  line-height: 1.2;
}

/* подписи ЗАДАЧА / ФОРМАТ / ФОКУС / РЕЗУЛЬТАТ */
.mvps-extra-key {
  margin-bottom: 4px;
}

/* чтобы кнопки смены фото не залезали на текст */
.mvps-card.is-active:hover .mvps-photo-nav {
  bottom: 260px;
}


/* ===========================
   SERVICES IMAGES — FULL TEXT WIDTH
   =========================== */

.mnt-service-card__image-wrap {
  width: 100%;
  max-width: none;
  height: 150px;
  margin: 0 0 22px;

  overflow: hidden;
  border-radius: 0;
  background: #f7f7f5;
}

.mnt-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  display: block;
}

/* большой монитор */
@media (min-width: 1537px) {
  .mnt-service-card__image-wrap {
    width: 100%;
    max-width: none;
    height: 162px;
  }
}

/* ноутбук */
@media (max-width: 1536px) and (min-width: 1201px) {
  .mnt-service-card__image-wrap {
    width: 100%;
    max-width: none;
    height: 150px;
  }
}

/* планшет */
@media (max-width: 1200px) and (min-width: 761px) {
  .mnt-service-card__image-wrap {
    width: 100%;
    max-width: none;
    height: 145px;
  }
}

/* телефон */
@media (max-width: 760px) {
  .mnt-service-card__image-wrap {
    width: 100%;
    max-width: none;
    height: 150px;
  }
}
/* ===========================
   SERVICES IMAGES — FINAL LOOK
   =========================== */

.mnt-service-card__image-wrap {
  width: 100%;
  max-width: none;
  height: 150px;
  margin: 0 0 22px;

  overflow: hidden;
  border-radius: 10px; /* небольшое закругление */
  background: #f7f7f5;
}

.mnt-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  display: block;

  opacity: 1;
  filter: none;
  transform: scale(1);

  transition:
    transform 480ms cubic-bezier(.22, .9, .22, 1);
}

.mnt-service-card:hover .mnt-service-card__image {
  opacity: 1;
  filter: none;
  transform: scale(1.035);
}


/* ==================================================
   SERVICES — ВЫБРАННЫЙ ВАРИАНТ
   Изображение сверху, текст снизу на едином фоне
   ================================================== */

.mnt-service-card {
  position: relative !important;

  display: flex !important;
  flex-direction: column !important;

  width: 100% !important;
  height: 360px !important;
  min-height: 360px !important;

  padding: 0 !important;

  overflow: hidden !important;
  isolation: isolate;

  border: 1.2px solid rgba(17, 17, 17, 0.38) !important;
  border-radius: 22px !important;

  background: #efede9 !important;

  transition:
    transform 320ms cubic-bezier(.22, .9, .22, 1),
    border-color 320ms ease,
    box-shadow 320ms ease !important;
}

.mnt-service-card:hover {
  transform: none !important;
  border-color: rgba(17, 17, 17, 0.7) !important;
  box-shadow: none !important;
}


/* Убираем старый градиент */

.mnt-service-card::after {
  display: none !important;
}


/* Изображение в верхней части карточки */

.mnt-service-card__image-wrap {
  position: relative !important;
  inset: auto !important;

  flex: 0 0 215px !important;

  width: 100% !important;
  max-width: none !important;
  height: 215px !important;

  margin: 0 !important;

  overflow: hidden !important;

  border-radius: 0 !important;
  background: #efede9 !important;
}

.mnt-service-card__image {
  display: block !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;

  opacity: 1 !important;
  filter: none !important;
  transform: scale(1.002) !important;

  transition: transform 600ms cubic-bezier(.22, .9, .22, 1) !important;
}

.mnt-service-card:hover .mnt-service-card__image {
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1.035) !important;
}


/* Нижняя часть с текстом */

.mnt-service-card__content {
  position: relative !important;

  left: auto !important;
  right: auto !important;
  bottom: auto !important;

  z-index: 2 !important;

  display: flex !important;
  flex: 1 !important;
  flex-direction: column !important;
  justify-content: flex-start !important;

  min-height: 0 !important;

  padding: 20px 22px 22px !important;

  border-radius: 0 !important;

  background: #efede9 !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  box-shadow: none !important;
}


/* Заголовок */

.mnt-service-card__title {
  position: relative !important;

  margin: 0 0 10px !important;

  font-size: 19px !important;
  line-height: 1.08 !important;
  font-weight: 600 !important;
  letter-spacing: -0.04em !important;

  color: #111111 !important;
}

.mnt-service-card__title em {
  font-style: italic !important;
  font-weight: 400 !important;
}


/* Описание */

.mnt-service-card__desc {
  position: relative !important;

  max-width: none !important;
  margin: 0 !important;

  font-size: 13px !important;
  line-height: 1.34 !important;
  font-style: italic !important;
  font-weight: 400 !important;

  color: rgba(17, 17, 17, 0.76) !important;
}


/* Номер */

.mnt-service-card__num {
  position: absolute !important;

  top: 14px !important;
  right: 14px !important;

  z-index: 5 !important;

  width: auto !important;
  height: auto !important;

  padding: 0 !important;

  background: transparent !important;
  border-radius: 0 !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 600 !important;

  color: #111111 !important;

  opacity: 1 !important;
  transform: none !important;
}

.mnt-service-card:hover .mnt-service-card__num {
  opacity: 1 !important;
  transform: none !important;
}


/* Планшет */

@media (max-width: 1200px) and (min-width: 761px) {
  .mnt-service-card {
    height: 370px !important;
    min-height: 370px !important;
  }

  .mnt-service-card__image-wrap {
    flex-basis: 220px !important;
    height: 220px !important;
  }

  .mnt-service-card__content {
    padding: 19px 20px 21px !important;
  }
}


/* Телефон */

@media (max-width: 760px) {
  .mnt-service-card {
    height: 430px !important;
    min-height: 430px !important;

    border-radius: 22px !important;
  }

  .mnt-service-card__image-wrap {
    flex: 0 0 260px !important;
    height: 260px !important;
  }

  .mnt-service-card__content {
    padding: 22px 24px 24px !important;
  }

  .mnt-service-card__title {
    font-size: 21px !important;
  }

  .mnt-service-card__desc {
    font-size: 14px !important;
    line-height: 1.36 !important;
  }

  .mnt-service-card__num {
    top: 16px !important;
    right: 16px !important;

    font-size: 18px !important;
  }

  .mnt-service-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* ==================================================
   SERVICES — MOBILE 2 × 3
   Две карточки в строке, три ряда
   ================================================== */

@media (max-width: 760px) {

  /* Сетка из двух колонок */

  .mnt-services__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch !important;
  }


  /* Карточка */

  .mnt-service-card {
    width: 100% !important;

    height: 330px !important;
    min-height: 330px !important;

    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    overflow: hidden !important;

    border-radius: 17px !important;
    border: 1px solid rgba(17, 17, 17, 0.34) !important;

    background: #efede9 !important;

    transform: none !important;
    box-shadow: none !important;
  }

  .mnt-service-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }


  /* Верхняя картинка */

  .mnt-service-card__image-wrap {
    position: relative !important;
    inset: auto !important;

    flex: 0 0 174px !important;

    width: 100% !important;
    height: 174px !important;
    max-width: none !important;

    margin: 0 !important;

    overflow: hidden !important;

    border-radius: 0 !important;
    background: #efede9 !important;
  }

  .mnt-service-card__image {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    opacity: 1 !important;
    filter: none !important;

    transform: scale(1.002) !important;

    transition:
      transform 550ms cubic-bezier(.22, .9, .22, 1) !important;
  }

  .mnt-service-card:hover .mnt-service-card__image {
    transform: scale(1.035) !important;
  }


  /* Нижняя часть с текстом */

  .mnt-service-card__content {
    position: relative !important;

    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    z-index: 2 !important;

    flex: 1 1 auto !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;

    min-height: 0 !important;

    padding: 13px 13px 15px !important;

    border-radius: 0 !important;

    background: #efede9 !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    box-shadow: none !important;
  }


  /* Заголовок */

  .mnt-service-card__title {
    margin: 0 0 8px !important;

    font-size: 14px !important;
    line-height: 1.08 !important;
    font-weight: 600 !important;
    letter-spacing: -0.035em !important;

    color: #111111 !important;
  }

  .mnt-service-card__title em {
    font-style: italic !important;
    font-weight: 400 !important;
  }


  /* Описание */

  .mnt-service-card__desc {
    margin: 0 !important;
    max-width: none !important;

    font-size: 10.5px !important;
    line-height: 1.28 !important;
    font-weight: 400 !important;
    font-style: italic !important;
    letter-spacing: -0.015em !important;

    color: rgba(17, 17, 17, 0.74) !important;
  }


  /* Цифра */

  .mnt-service-card__num {
    position: absolute !important;

    top: 11px !important;
    right: 11px !important;

    z-index: 5 !important;

    width: auto !important;
    height: auto !important;
    padding: 0 !important;

    background: transparent !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    color: rgba(17, 17, 17, 0.66) !important;

    opacity: 0.72 !important;
    transform: none !important;

    transition: opacity 220ms ease !important;
  }

  .mnt-service-card:hover .mnt-service-card__num {
    opacity: 1 !important;
    transform: none !important;
  }
}

.mnt-service-card__num {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 5 !important;

  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  color: #111111 !important;

  opacity: 0.72 !important;
  transform: translateY(0) scale(1) !important;
  transition: opacity 220ms ease, transform 220ms ease !important;
}

.mnt-service-card:hover .mnt-service-card__num {
  opacity: 1 !important;
  transform: translateY(0) scale(1.06) !important;
}


/* ==================================================
   SERVICES — IMAGE CARD WITH GLASS TEXT PANEL
   ================================================== */

.mnt-service-card {
  position: relative !important;

  display: block !important;

  width: 100% !important;
  height: 390px !important;
  min-height: 390px !important;

  padding: 0 !important;

  overflow: hidden !important;
  isolation: isolate;

  border: 1.2px solid rgba(17, 17, 17, 0.55) !important;
  border-radius: 24px !important;

  background: #ffffff !important;

  transform: none !important;
  box-shadow: none !important;

  transition:
    border-color 260ms ease !important;
}

.mnt-service-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: rgba(17, 17, 17, 0.85) !important;
}


/* Убираем старые декоративные слои */

.mnt-service-card::before,
.mnt-service-card::after {
  display: none !important;
}


/* Изображение заполняет карточку целиком */

.mnt-service-card__image-wrap {
  position: absolute !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;
  max-width: none !important;

  margin: 0 !important;

  overflow: hidden !important;

  border-radius: 0 !important;
  background: #ffffff !important;
}

.mnt-service-card__image {
  display: block !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center center !important;

  opacity: 1 !important;
  filter: none !important;

  transform: scale(1.002) !important;

  transition:
    transform 650ms cubic-bezier(.22, .9, .22, 1) !important;
}

.mnt-service-card:hover .mnt-service-card__image {
  opacity: 1 !important;
  filter: none !important;

  transform: scale(1.035) !important;
}


/* Полупрозрачная плашка с белой обводкой */

.mnt-service-card__content {
  position: absolute !important;

  left: 16px !important;
  right: 16px !important;
  bottom: 16px !important;

  z-index: 4 !important;

  display: block !important;

  min-height: 0 !important;

  padding: 18px 20px 20px !important;

  overflow: hidden !important;

  border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 18px !important;

  background: rgba(255, 255, 255, 0.76) !important;

  backdrop-filter: blur(12px) saturate(105%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(105%) !important;

  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25) !important;
}


/* Небольшое осветление под текстом */

.mnt-service-card__content::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.42) 100%
    );

  pointer-events: none;
}


/* Заголовок */

.mnt-service-card__title {
  position: relative !important;
  z-index: 2 !important;

  margin: 0 0 10px !important;

  font-size: 19px !important;
  line-height: 1.08 !important;
  font-weight: 600 !important;
  letter-spacing: -0.04em !important;

  color: #111111 !important;
}

.mnt-service-card__title em {
  font-style: italic !important;
  font-weight: 400 !important;
}


/* Описание */

.mnt-service-card__desc {
  position: relative !important;
  z-index: 2 !important;

  max-width: none !important;
  margin: 0 !important;

  font-size: 13px !important;
  line-height: 1.34 !important;
  font-style: italic !important;
  font-weight: 400 !important;

  color: rgba(17, 17, 17, 0.76) !important;
}


/* Номер карточки */

.mnt-service-card__num {
  position: absolute !important;

  top: 17px !important;
  right: 17px !important;

  z-index: 6 !important;

  width: auto !important;
  height: auto !important;

  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 600 !important;

  color: #111111 !important;

  opacity: 0.76 !important;
  transform: scale(1) !important;

  transition:
    opacity 220ms ease,
    transform 220ms ease !important;
}

.mnt-service-card:hover .mnt-service-card__num {
  opacity: 1 !important;
  transform: scale(1.06) !important;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 1200px) and (min-width: 761px) {

  .mnt-service-card {
    height: 370px !important;
    min-height: 370px !important;
  }

  .mnt-service-card__content {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;

    padding: 17px 18px 19px !important;
  }
}


/* ==================================================
   MOBILE — 2 × 3
   ================================================== */

@media (max-width: 760px) {

  .mnt-services__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    gap: 10px !important;
  }

  .mnt-service-card {
    height: 320px !important;
    min-height: 320px !important;

    border-radius: 18px !important;
  }

  .mnt-service-card__content {
    left: 9px !important;
    right: 9px !important;
    bottom: 9px !important;

    padding: 12px 12px 14px !important;

    border-width: 1.2px !important;
    border-radius: 14px !important;

    background: rgba(255, 255, 255, 0.79) !important;

    backdrop-filter: blur(9px) !important;
    -webkit-backdrop-filter: blur(9px) !important;
  }

  .mnt-service-card__title {
    margin-bottom: 7px !important;

    font-size: 13px !important;
    line-height: 1.08 !important;
  }

  .mnt-service-card__desc {
    font-size: 10px !important;
    line-height: 1.28 !important;
  }

  .mnt-service-card__num {
    top: 11px !important;
    right: 11px !important;

    font-size: 14px !important;
  }

  .mnt-service-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}
/* ==================================================
   SERVICES — FINAL PROPORTIONS
   ================================================== */

/* Карточки делаем ниже и ближе к квадратным */

.mnt-service-card {
  height: 350px !important;
  min-height: 350px !important;
}


/* Плашка шире и прозрачнее */

.mnt-service-card__content {
  left: 9px !important;
  right: 9px !important;
  bottom: 9px !important;

  padding: 17px 20px 19px !important;

  background: rgba(255, 255, 255, 0.62) !important;

  border: 1.5px solid rgba(255, 255, 255, 0.94) !important;
  border-radius: 18px !important;

  backdrop-filter: blur(10px) saturate(102%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(102%) !important;
}


/* Убираем лишнее осветление внутри плашки */

.mnt-service-card__content::before {
  background: rgba(255, 255, 255, 0.08) !important;
}


/* Цифра изначально скрыта */

.mnt-service-card__num {
  opacity: 0 !important;
  visibility: hidden !important;

  transform: translateY(-5px) !important;

  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease !important;
}


/* Цифра появляется только при наведении */

.mnt-service-card:hover .mnt-service-card__num {
  opacity: 1 !important;
  visibility: visible !important;

  transform: translateY(0) !important;
}


/* Планшет */

@media (max-width: 1200px) and (min-width: 761px) {
  .mnt-service-card {
    height: 325px !important;
    min-height: 325px !important;
  }

  .mnt-service-card__content {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;

    padding: 15px 17px 17px !important;
  }
}


/* Мобильный — две карточки в строке */

@media (max-width: 760px) {
  .mnt-service-card {
    height: 260px !important;
    min-height: 260px !important;

    border-radius: 17px !important;
  }

  .mnt-service-card__content {
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;

    padding: 11px 11px 12px !important;

    border-width: 1.2px !important;
    border-radius: 13px !important;

    background: rgba(255, 255, 255, 0.64) !important;

    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }

  .mnt-service-card__title {
    margin-bottom: 6px !important;

    font-size: 12.5px !important;
    line-height: 1.06 !important;
  }

  .mnt-service-card__desc {
    font-size: 9px !important;
    line-height: 1.24 !important;
  }

  .mnt-service-card__num {
    top: 10px !important;
    right: 10px !important;

    font-size: 14px !important;
  }
}

/* ==================================================
   MOBILE — PROJECTS + SERVICES
   ================================================== */

@media (max-width: 760px) {

  /* -----------------------------------------------
     ПРОЕКТЫ — скрываем количество 1 / 6
     ----------------------------------------------- */

  #mvProjectsMobile .mvm-projects__counter {
      display: none !important;
      min-width: 0 !important;
    }
    
    #mvProjectsMobile .mvm-projects__bottom {
      gap: 22px !important;
      margin-top: 18px !important;
    }


  /* -----------------------------------------------
     УСЛУГИ — сетка 2 × 3
     ----------------------------------------------- */

  #mntServicesGrid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    width: 100% !important;
    gap: 10px !important;

    align-items: stretch !important;
  }


  /* Карточка */

  #mntServicesGrid .mnt-service-card {
    position: relative !important;

    width: 100% !important;
    min-width: 0 !important;

      height: 230px !important;
      min-height: 230px !important;

    padding: 0 !important;

    display: block !important;
    overflow: hidden !important;

    border-radius: 18px !important;
    border: 1px solid rgba(17, 17, 17, 0.42) !important;

    background: #ffffff !important;

    transform: none !important;
    box-shadow: none !important;
  }

  #mntServicesGrid .mnt-service-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }


  /* Изображение занимает карточку целиком */

  #mntServicesGrid .mnt-service-card__image-wrap {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    border-radius: 0 !important;
    overflow: hidden !important;
  }

  #mntServicesGrid .mnt-service-card__image {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center top !important;

    opacity: 1 !important;
    filter: none !important;

    transform: scale(1.002) !important;

    transition:
      transform 550ms cubic-bezier(.22, .9, .22, 1) !important;
  }

  #mntServicesGrid .mnt-service-card:hover .mnt-service-card__image {
    transform: scale(1.025) !important;
  }


  /* Полупрозрачная текстовая плашка */

  #mntServicesGrid .mnt-service-card__content {
    position: absolute !important;

    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;

    z-index: 4 !important;

    min-height: 0 !important;

    padding: 10px 10px 11px !important;

    border: 1.2px solid rgba(255, 255, 255, 0.96) !important;
    border-radius: 13px !important;

    background: rgba(255, 255, 255, 0.60) !important;

    backdrop-filter: blur(8px) saturate(103%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(103%) !important;

    box-shadow:
      0 5px 16px rgba(0, 0, 0, 0.055) !important;
  }

  #mntServicesGrid .mnt-service-card__content::before {
    display: none !important;
  }


  /* Заголовок */

  #mntServicesGrid .mnt-service-card__title {
    margin: 0 0 6px !important;

    font-size: 12.5px !important;
    line-height: 1.08 !important;
    font-weight: 600 !important;
    letter-spacing: -0.035em !important;

    color: #111111 !important;
  }

  #mntServicesGrid .mnt-service-card__title em {
    font-style: italic !important;
    font-weight: 400 !important;
  }


  /* Описание */

  #mntServicesGrid .mnt-service-card__desc {
    margin: 0 !important;
    max-width: none !important;

    font-size: 10px !important;
    line-height: 1.24 !important;
    font-style: italic !important;
    font-weight: 400 !important;

    color: rgba(17, 17, 17, 0.76) !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;

    overflow: hidden !important;
  }


  /* Цифры скрыты на телефоне */

  #mntServicesGrid .mnt-service-card__num {
    display: none !important;
  }
}

.mnt-service-card,
.mnt-service-card__image-wrap {
  background: #fff !important;
}

.mnt-service-card__image {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.mnt-service-card:hover .mnt-service-card__image {
  opacity: 1 !important;
  filter: none !important;
}

.mnt-service-card::before,
.mnt-service-card::after,
.mnt-service-card__image-wrap::before,
.mnt-service-card__image-wrap::after {
  display: none !important;
}

/* ===========================
   SERVICES COLOR FIX
   =========================== */

.mnt-services,
.mnt-services__container,
.mnt-services__grid {
  background: #ffffff !important;
}

.mnt-service-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.mnt-service-card__image-wrap,
.mnt-service-card__media,
.mnt-service-card__visual {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.mnt-service-card img,
.mnt-service-card__image {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* плашка текста — оставляем стеклянной, но без розовизны */
.mnt-service-card__content,
.mnt-service-card__text,
.mnt-service-card__body {
  background: rgba(255, 255, 255, 0.72) !important;
  background-color: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}


/* ==================================================
   BOTTOM WORDMARK — PROJECT BASE
   ================================================== */

.mnt-bottom-wordmark {
  width: 100vw;
  margin-left: calc(50% - 50vw);

  padding: 72px 0 46px;

  overflow: hidden;
  background: #ffffff;
}

.mnt-bottom-wordmark__img {
  display: block;

  width: 100vw;
  max-width: none;
  height: auto;

  margin: 0 auto;
}
@media (max-width: 760px) {
  .mnt-bottom-wordmark {
    padding: 48px 0 34px;
  }

  .mnt-bottom-wordmark__img {
    width: 135vw;
    max-width: none;

    margin-left: 50%;
    transform: translateX(-50%);
  }
}

/* ==================================================
   BOTTOM TITLE — PROJECT BASE
   ================================================== */

.mnt-bottom-title {
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  min-height: 260px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 0;

  overflow: hidden;

  background: #ffffff;
}

.mnt-bottom-title__word {
  display: block;

  width: 100vw;
  max-width: none;

  margin: 0;
  padding: 0;

  font-size: clamp(74px, 13.9vw, 250px);
  line-height: 0.72;

  font-weight: 900;
  letter-spacing: -0.085em;

  color: #050505;

  text-transform: uppercase;
  white-space: nowrap;

  text-align: center;

  transform: translateY(0.045em);
}


/* Убираем зазор между надписью и футером */

.mnt-bottom-title + footer,
.mnt-bottom-title + .mnt-site-footer,
.mnt-bottom-title + .mn-footer {
  margin-top: 0 !important;
}

.mnt-site-footer,
.mn-footer {
  margin-top: 0 !important;
}


/* Планшет */

@media (max-width: 1024px) {
  .mnt-bottom-title {
    min-height: 210px;
  }

  .mnt-bottom-title__word {
    font-size: 14vw;
    line-height: 0.74;
  }
}


/* Телефон */

@media (max-width: 760px) {
  .mnt-bottom-title {
    min-height: 120px;
  }

  .mnt-bottom-title__word {
    font-size: 15.2vw;
    line-height: 0.76;
    letter-spacing: -0.09em;

    transform: translateY(0.045em);
  }
}

/* ==================================================
   CLEAN CONTACT + BOTTOM TITLE
   ================================================== */

/* Убираем старую большую высоту контактов */

.mnt-contact {
  min-height: 0 !important;
}

.mnt-contact__inner {
  min-height: 0 !important;
  padding-top: 96px !important;
  padding-bottom: 76px !important;
}

.mnt-contact__content {
  padding-bottom: 0 !important;
}


/* Старый фон/бренд внутри контактов больше не нужен */

.mnt-contact__brand-bg,
.mnt-contact__brand {
  display: none !important;
}


/* Нижняя большая надпись */

.mnt-bottom-title {
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  min-height: 255px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 0;

  overflow: hidden;

  background: #ffffff;
}

.mnt-bottom-title__word {
  display: block;

  width: 100vw;

  margin: 0;
  padding: 0;

  font-size: clamp(78px, 14.2vw, 260px);
  line-height: 0.72;

  font-weight: 900;
  letter-spacing: -0.09em;

  color: #000000;

  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;

  transform: translateY(0.045em);
}


/* Прижимаем надпись к футеру */

.mnt-bottom-title + footer,
.mnt-bottom-title + .mnt-site-footer {
  margin-top: 0 !important;
}

.mnt-site-footer {
  margin-top: 0 !important;
}


/* Планшет */

@media (max-width: 1024px) {
  .mnt-contact__inner {
    padding-top: 82px !important;
    padding-bottom: 64px !important;
  }

  .mnt-bottom-title {
    min-height: 200px;
  }

  .mnt-bottom-title__word {
    font-size: 14.4vw;
  }
}


/* Телефон */

@media (max-width: 760px) {
  .mnt-contact__inner {
    padding-top: 68px !important;
    padding-bottom: 52px !important;
  }

  .mnt-bottom-title {
    min-height: 118px;
  }

  .mnt-bottom-title__word {
    font-size: 15.4vw;
    line-height: 0.76;
    letter-spacing: -0.095em;
  }
}


/* ==================================================
   BOTTOM SCENE — CLEAN RESTART
   картинка снизу + контакты сверху + надпись поверх
   ================================================== */

.mnt-bottom-scene {
  position: relative !important;

  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;

  min-height: clamp(560px, 55vw, 860px) !important;

  display: flex !important;
  flex-direction: column !important;

  overflow: hidden !important;

  background: #ffffff !important;
}


/* Картинка как настоящее изображение, не background */

.mnt-bottom-scene__bg {
  position: absolute !important;

  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  z-index: 0 !important;

  display: block !important;

  width: 100% !important;
  height: auto !important;

  max-width: none !important;

  object-fit: contain !important;
  object-position: center bottom !important;

  pointer-events: none !important;
  user-select: none !important;
}


/* Контакты поверх картинки, но без изменения кнопок */

.mnt-bottom-scene .mnt-contact {
  position: relative !important;
  z-index: 2 !important;

  min-height: 0 !important;

  background: transparent !important;
  overflow: visible !important;
}

.mnt-bottom-scene .mnt-contact__inner {
  min-height: 0 !important;

  padding-top: clamp(54px, 6vw, 92px) !important;
  padding-bottom: clamp(20px, 3vw, 42px) !important;

  background: transparent !important;
  overflow: visible !important;
}

.mnt-bottom-scene .mnt-contact__content {
  position: relative !important;
  z-index: 3 !important;

  padding-bottom: 0 !important;
}


/* Старый огромный бренд-фон внутри контактов отключаем */

.mnt-contact__brand-bg,
.mnt-contact__brand {
  display: none !important;
}


/* Надпись ПРОЕКТ БАЗЫ — прижата к низу и лежит поверх картинки */

.mnt-bottom-title {
  position: relative !important;
  z-index: 3 !important;

  width: 100vw !important;
  margin-left: 0 !important;
  margin-top: auto !important;

  min-height: clamp(110px, 15vw, 235px) !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;

  padding: 0 0.8vw !important;

  box-sizing: border-box !important;
  overflow: hidden !important;

  background: transparent !important;
}

.mnt-bottom-title::before,
.mnt-bottom-title::after {
  display: none !important;
  content: none !important;
}

.mnt-bottom-title__word {
  position: relative !important;
  z-index: 4 !important;

  display: block !important;

  max-width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;

  font-size: clamp(56px, 12vw, 220px) !important;
  line-height: 0.76 !important;

  font-weight: 800 !important;
  letter-spacing: -0.045em !important;

  color: rgba(0, 0, 0) !important;

  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-align: center !important;

  transform: translateY(0.045em) !important;
}



/* Футер сразу после нижней сцены */

.mnt-bottom-scene + footer,
.mnt-bottom-scene + .mnt-site-footer {
  margin-top: 0 !important;
}

.mnt-site-footer {
  margin-top: 0 !important;
}


/* Планшет */

@media (max-width: 1024px) {
  .mnt-bottom-scene {
    min-height: clamp(500px, 58vw, 760px) !important;
  }

  .mnt-bottom-scene .mnt-contact__inner {
    padding-top: 72px !important;
    padding-bottom: 28px !important;
  }

  .mnt-bottom-title {
    min-height: clamp(100px, 15vw, 190px) !important;
  }
}


/* Телефон */

@media (max-width: 760px) {
  .mnt-bottom-scene {
    min-height: auto !important;
    padding-bottom: 0 !important;
  }

  .mnt-bottom-scene__bg {
    position: relative !important;
    order: 2 !important;

    width: 100% !important;
    height: auto !important;

    margin-top: -34px !important;
  }

  .mnt-bottom-scene .mnt-contact {
    order: 1 !important;
  }

  .mnt-bottom-scene .mnt-contact__inner {
    padding-top: 56px !important;
    padding-bottom: 0 !important;
  }

  .mnt-bottom-title {
    order: 3 !important;

    min-height: 92px !important;

    margin-top: -58px !important;
    padding: 0 1vw !important;
  }

  .mnt-bottom-title__word {
    font-size: 12vw !important;
    line-height: 0.78 !important;
    letter-spacing: -0.035em !important;
  }
}
/* ==================================================
   BOTTOM SCENE — ABSOLUTE TITLE FINAL FIX
   убираем промежуток между картинкой и футером
   ================================================== */

/* Секция-контейнер */

.mnt-bottom-scene {
  position: relative !important;
  overflow: hidden !important;
  background: #ffffff !important;
}


/* Мобилка: картинка обычным изображением, она задаёт высоту секции */

@media (max-width: 760px) {
  .mnt-bottom-scene {
    min-height: 0 !important;
    height: auto !important;

    display: flex !important;
    flex-direction: column !important;

    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .mnt-bottom-scene .mnt-contact {
    order: 1 !important;
    position: relative !important;
    z-index: 3 !important;

    background: transparent !important;
  }

  .mnt-bottom-scene__bg {
    order: 2 !important;

    position: relative !important;
    z-index: 1 !important;

    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin-top: -34px !important;
    margin-bottom: 0 !important;

    padding: 0 !important;

    object-fit: contain !important;
    object-position: center bottom !important;
  }


  /* ВАЖНО:
     надпись больше НЕ занимает место,
     а лежит поверх картинки */

  .mnt-bottom-title {
    position: absolute !important;

    left: 0 !important;
    right: 0 !important;
    bottom: -1px !important;

    z-index: 5 !important;

    width: 100vw !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 1vw !important;

    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;

    background: transparent !important;
    overflow: visible !important;
    pointer-events: none !important;
  }

  .mnt-bottom-title__word {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #000000 !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;

    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12vw !important;
    line-height: 0.78 !important;
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;

    text-align: center !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;

    transform: translateY(0.045em) !important;
  }


  /* Футер должен начинаться сразу после картинки */

  .mnt-bottom-scene + footer,
  .mnt-bottom-scene + .mnt-site-footer,
  .mnt-bottom-scene + .mn-footer {
    margin-top: 0 !important;
  }

  .mnt-site-footer,
  .mn-footer {
    margin-top: 0 !important;
  }
}


/* ==================================================
   HEADER BUTTON — TOP STATE HOVER LIKE HERO SOFT
   только когда хедер НЕ в состоянии is-scrolled
   ================================================== */

.mn-fixed-header:not(.is-scrolled) .mn-fixed-header__btn {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.92) !important;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* В обычном состоянии поверх прозрачной кнопки лежит белый слой */
.mn-fixed-header:not(.is-scrolled) .mn-fixed-header__btn::before {
  background: #ffffff !important;
  transform: scaleX(1) !important;
  transform-origin: right center !important;
}

/* При hover белый слой плавно уезжает — кнопка становится прозрачной */
.mn-fixed-header:not(.is-scrolled) .mn-fixed-header__btn:hover::before {
  transform: scaleX(0) !important;
}

/* Текст в обычном состоянии чёрный */
.mn-fixed-header:not(.is-scrolled) .mn-fixed-header__btn-text {
  color: #111111 !important;
}

/* При hover проявляется белый текст */
.mn-fixed-header:not(.is-scrolled) .mn-fixed-header__btn:hover .mn-fixed-header__btn-text::after {
  width: 100% !important;
  color: #ffffff !important;
}


/* ==================================================
   EQUIPMENT MARQUEE
   ================================================== */

.pb-equipment {
  width: 100%;
  padding: 15px 0 20px;
  background: #ffffff;
  color: #111111;
  overflow: hidden;
}

.pb-equipment__head {
  width: min(1120px, calc(100vw - 64px * 2));
  margin: 0 auto 34px;
  text-align: center;
}

.pb-equipment__head h2 {
  margin: 0;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: #050505;
}

.pb-equipment__head h2 em {
  font-style: italic;
  font-weight: 400;
}

.pb-equipment__head p {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.72);
}

.pb-equipment__marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.pb-equipment__marquee.is-dragging {
  cursor: grabbing;
}

.pb-equipment__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

/* ===========================
   EQUIPMENT — COMPACT CARDS
   =========================== */

.pb-equipment__track {
  align-items: center;
}

/* Карточки значительно ниже */

.pb-equipment__item {
  flex: 0 0 auto;

  width: auto;
  height: 150px;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 14px;

  background: transparent;
  overflow: hidden;

  cursor: pointer;

  transform: none !important;
  transition: none !important;
}

/* Картинка сохраняет свои пропорции и показывается целиком */

.pb-equipment__item img {
  display: block;

  width: auto;
  height: 100%;
  max-width: none;

  object-fit: contain;

  transform: none !important;
  transition: none !important;
  animation: none !important;
  filter: none !important;
}

/* Полностью убираем подпрыгивание карточки */

.pb-equipment__item:hover,
.pb-equipment__item:focus,
.pb-equipment__item:focus-visible,
.pb-equipment__item:active {
  transform: none !important;
  transition: none !important;
}

/* Полностью убираем приближение изображения */

.pb-equipment__item:hover img,
.pb-equipment__item:focus img,
.pb-equipment__item:focus-visible img,
.pb-equipment__item:active img {
  transform: none !important;
  scale: 1 !important;
  filter: none !important;
}

/* Планшет */

@media (max-width: 1024px) {
  .pb-equipment__item {
    height: 135px;
  }
}

/* Телефон */

@media (max-width: 760px) {
  .pb-equipment__item {
    height: 105px;
    border-radius: 10px;
  }
}

/* modal */

.pb-equipment-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pb-equipment-modal.is-open {
  display: flex;
}

.pb-equipment-modal__img {
  display: block;
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.pb-equipment-modal__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* mobile */

@media (max-width: 760px) {
  .pb-equipment {
    padding: 45px 0 30px;
  }

  .pb-equipment__head {
    width: calc(100vw - 32px);
    margin-bottom: 26px;
  }

  .pb-equipment__head h2 {
    font-size: 38px;
  }

  .pb-equipment__head p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.32;
  }

  .pb-equipment__track {
    gap: 12px;
  }

  .pb-equipment__item {
    height: 230px;
    border-radius: 18px;
  }

  .pb-equipment-modal {
    padding: 16px;
  }

  .pb-equipment-modal__img {
    max-width: 94vw;
    max-height: 84vh;
    border-radius: 18px;
  }
}

@media (prefers-color-scheme: dark) {
  html,
  body,
  .mnt-services,
  .mv-projects-slider,
  .mvm-projects,
  .pb-equipment,
  .mnt-bottom-scene {
    background-color: #ffffff !important;
  }

  body {
    color: #111111 !important;
  }
}

/* ==================================================
   2026-08 TEXT UPDATE / HEADER CTA / HERO ROTATOR
   ================================================== */

/* Header CTA stays white in every state. No black sweep/fill animation. */
.mn-fixed-header .mn-fixed-header__btn,
.mn-fixed-header:not(.is-scrolled) .mn-fixed-header__btn,
.mn-fixed-header .mn-fixed-header__btn:hover,
.mn-fixed-header .mn-fixed-header__btn:active,
.mn-fixed-header .mn-fixed-header__btn.is-pressed {
  background: #ffffff !important;
}

.mn-fixed-header .mn-fixed-header__btn::before,
.mn-fixed-header .mn-fixed-header__btn-text::after {
  display: none !important;
  content: none !important;
}

.mn-fixed-header .mn-fixed-header__btn-text,
.mn-fixed-header .mn-fixed-header__btn:hover .mn-fixed-header__btn-text,
.mn-fixed-header .mn-fixed-header__btn:active .mn-fixed-header__btn-text,
.mn-fixed-header .mn-fixed-header__btn.is-pressed .mn-fixed-header__btn-text {
  color: #111111 !important;
}

.mn-fixed-header:not(.is-scrolled) .mn-fixed-header__btn {
  border-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.mn-fixed-header.is-scrolled .mn-fixed-header__btn {
  border-color: #111111 !important;
}

/* Hero: overlapping vertical cross-slide for the rotating object type. */
.mn-hero__title-main {
  display: block;
}

.mn-hero__rotator {
  position: relative;
  display: block;
  height: 1.12em;
  margin-top: .04em;
  overflow: hidden;
  line-height: 1.08;
}

.mn-hero__rotating-word {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  transform: translateY(0);
  opacity: 1;
  will-change: transform, opacity;
}

.mn-hero__rotating-word.is-current {
  transform: translateY(0);
  opacity: 1;
}

.mn-hero__rotating-word.is-incoming {
  transform: translateY(105%);
  opacity: 0;
}

.mn-hero__rotating-word.is-outgoing {
  transform: translateY(-105%);
  opacity: 0;
}

.mn-hero__rotating-word.is-animating {
  transition:
    transform 460ms cubic-bezier(.22, .72, .20, 1),
    opacity 360ms ease;
}

@media (max-width: 767px) {
  /* Same H1 typography on mobile; reserve room for two-line object names. */
  .mn-hero__rotator {
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    height: 2.16em;
    margin-top: .05em;
  }

  .mn-hero__rotating-word {
    height: 100%;
    white-space: normal;
    line-height: 1.08;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mn-hero__rotating-word {
    transition: none !important;
  }
}

/* ===========================
   HEADER LOGO — LARGE AT TOP
   Shrinks to the existing size after scroll
   =========================== */

/* desktop */
.mn-fixed-header__logo {
  width: 190px;
  height: 138px;
  transition:
    width 0.44s var(--mn-ease),
    height 0.44s var(--mn-ease);
}

/* keep the current compact size after scroll */
.mn-fixed-header.is-scrolled .mn-fixed-header__logo {
  width: 88px;
  height: 64px;
}

/* laptop */
@media (max-width: 1536px) and (min-width: 1200px) {
  .mn-fixed-header__logo {
    width: 176px;
    height: 128px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 82px;
    height: 60px;
  }
}

/* tablet */
@media (max-width: 1199px) and (min-width: 768px) {
  .mn-fixed-header__logo {
    width: 162px;
    height: 118px;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 76px;
    height: 56px;
  }
}

/* mobile — scale down on narrow phones to avoid the CTA */
@media (max-width: 767px) {
  .mn-fixed-header__logo {
    width: clamp(112px, 36vw, 142px);
    height: clamp(82px, 26vw, 104px);
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 70px;
    height: 52px;
  }
}

/* ===========================
   HEADER LOGO — EXTRA LARGE AT TOP (v6)
   Approximately 2x the previous top-state size.
   Scrolled compact size remains unchanged.
   =========================== */

/* desktop */
.mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo {
  width: 380px;
  height: 276px;
}

/* laptop */
@media (max-width: 1536px) and (min-width: 1200px) {
  .mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo {
    width: 352px;
    height: 256px;
  }
}

/* tablet */
@media (max-width: 1199px) and (min-width: 768px) {
  .mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo {
    width: 324px;
    height: 236px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo {
    width: clamp(224px, 72vw, 284px);
    height: clamp(164px, 52vw, 208px);
  }
}

/* ==================================================
   HEADER RESPONSIVE REBALANCE v7
   Large, fully visible logo at page top; compact on scroll.
   Mobile header CTA is hidden to preserve space.
   ================================================== */

/* Allow the logo to hang below the transparent header instead of being
   vertically centered inside a 96px box (which clipped the XL version). */
.mn-fixed-header__logo {
  transition:
    width .44s var(--mn-ease),
    height .44s var(--mn-ease),
    top .44s var(--mn-ease),
    transform .44s var(--mn-ease);
}

/* Desktop: clearly larger brand mark, but fully inside the viewport. */
@media (min-width: 1200px) {
  .mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo {
    width: clamp(220px, 15vw, 270px);
    height: clamp(160px, 10.9vw, 196px);
    top: 16px;
    transform: none;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 88px;
    height: 64px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Tablet: keep the same idea, with a smaller opening state. */
@media (max-width: 1199px) and (min-width: 768px) {
  .mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo {
    width: clamp(180px, 22vw, 230px);
    height: clamp(131px, 16vw, 167px);
    top: 14px;
    transform: none;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 76px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Mobile: remove the redundant header CTA entirely. The hero already has
   the primary contact button, so the header can become a clean brand area. */
@media (max-width: 767px) {
  .mn-fixed-header__btn {
    display: none !important;
  }

  .mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo {
    width: clamp(122px, 34vw, 148px);
    height: clamp(89px, 24.7vw, 108px);
    left: 18px;
    top: 14px;
    transform: none;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    width: 64px;
    height: 48px;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ==================================================
   MOBILE HEADER STABILITY + CENTERED LOGO v8
   - stable hero height on mobile browser chrome changes
   - no mobile header-height morphing
   - centered logo, slightly larger at page top
   - transform-only logo shrink for smoother scrolling
   ================================================== */
@media (max-width: 767px) {
  /* Dynamic viewport units (dvh) resize while mobile browser chrome hides,
     which can make the whole first screen visibly jump during scroll. */
  .mn-hero {
    height: 100vh !important;
    height: 100svh !important;
  }

  /* Keep the fixed header geometry stable. Only its surface appearance changes. */
  .mn-fixed-header,
  .mn-fixed-header.is-scrolled {
    height: 76px !important;
    transition:
      background .28s ease,
      border-color .28s ease,
      backdrop-filter .28s ease,
      -webkit-backdrop-filter .28s ease,
      box-shadow .28s ease !important;
  }

  /* Header CTA stays hidden on mobile; hero CTA remains the primary action. */
  .mn-fixed-header__btn {
    display: none !important;
  }

  /* Keep one physical logo box and animate only compositor-friendly transform.
     This avoids width/height re-layout while scrolling. */
  .mn-fixed-header__logo,
  .mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo,
  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    left: 50% !important;
    width: 172px !important;
    height: 124px !important;
    transform-origin: 50% 50%;
    will-change: transform, top;
    transition:
      top .38s cubic-bezier(.22,.9,.22,1),
      transform .38s cubic-bezier(.22,.9,.22,1) !important;
  }

  .mn-fixed-header:not(.is-scrolled) .mn-fixed-header__logo {
    top: 10px !important;
    transform: translateX(-50%) scale(1) !important;
  }

  .mn-fixed-header.is-scrolled .mn-fixed-header__logo {
    top: 50% !important;
    transform: translate(-50%, -50%) scale(.38) !important;
  }
}

/* ==================================================
   MOBILE HERO SPACING + DYNAMIC ROTATOR HEIGHT v9
   - equal visual gap: logo -> title and title -> subtitle
   - one-line rotating phrases no longer reserve two-line space
   - two-line phrases expand the rotator smoothly
   ================================================== */
@media (max-width: 767px) {
  .mn-hero__inner {
    --mn-mobile-hero-gap: 26px;
    justify-content: flex-start !important;
    transform: none !important;
    box-sizing: border-box;
    /* Logo top 10px + physical logo box 124px + the same gap used below H1. */
    padding-top: calc(10px + 124px + var(--mn-mobile-hero-gap)) !important;
  }

  .mn-hero__subtitle {
    margin-top: var(--mn-mobile-hero-gap) !important;
  }

  .mn-hero__rotator {
    /* JS writes the exact current phrase height in px. This is only fallback. */
    height: 1.08em;
    margin-top: .05em;
    transition: height 460ms cubic-bezier(.22, .72, .20, 1);
  }

  .mn-hero__rotator.is-height-instant {
    transition: none !important;
  }

  .mn-hero__rotating-word {
    inset: auto !important;
    top: 0;
    left: 0;
    width: 100%;
    height: auto !important;
    min-height: 1.08em;
    display: block;
    white-space: normal;
    line-height: 1.08;
    text-align: center;
  }
}


/* ===========================
   HERO ROTATOR V10 — FIXED ONE-LINE HEIGHT
   All rotating phrases are intentionally short enough to stay on one line.
   This removes the mobile height interpolation/jump entirely.
   =========================== */
.mn-hero__rotator {
  height: 1.12em !important;
  transition: none !important;
}

.mn-hero__rotating-word {
  white-space: nowrap !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .mn-hero__rotator {
    height: 1.08em !important;
  }

  .mn-hero__rotating-word {
    inset: 0 !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    line-height: 1.08 !important;
    text-align: center;
  }
}
