/* Камерный блок панели — на десктопе прозрачен */
.hero-panel-rig {
  display: contents;
}

.panel-visual {
  display: contents;
}

/* Обёртка для мобильного трека — на десктопе прозрачна для flex-layout */
.hero-mobile-track {
  display: contents;
}

/* Десктоп: hero без мобильных слоёв */
@media (min-width: 993px) {
  .ml-scene {
    display: contents;
  }

  .ml-overlay,
  .ml-curtain,
  .ml-layer--about,
  .ml-swipe-surface {
    display: none !important;
  }
}

/* DOM-слои фильтра (стабильнее pseudo на iOS) */
.panel-filter-base,
.panel-filter-tint {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * env(safe-area-inset-top, 0px));
  bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.panel-filter-base {
  z-index: 4;
}

.panel-filter-tint {
  z-index: 5;
}

.panel-filter-base--warm {
  background: var(--filter-warm);
}

.panel-filter-tint--warm {
  background: var(--filter-warm-tint);
}

.panel-filter-base--cool {
  background: var(--filter-cool);
}

.panel-filter-tint--cool {
  background: var(--filter-cool-dark);
}

@media (min-width: 993px) {
  .panel-filter-base,
  .panel-filter-tint {
    display: none;
  }
}

/* Градиентный блюр вокруг лого */
.hero-logo-layer::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(108vw, 620px);
  height: min(68vw, 380px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse 82% 72% at 50% 48%,
    rgba(26, 17, 36, 0.62) 0%,
    rgba(61, 43, 31, 0.34) 28%,
    rgba(74, 49, 66, 0.18) 48%,
    rgba(26, 17, 36, 0.06) 62%,
    transparent 76%
  );
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  mask-image: radial-gradient(
    ellipse 88% 78% at 50% 48%,
    rgba(0, 0, 0, 0.95) 18%,
    rgba(0, 0, 0, 0.55) 42%,
    transparent 74%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 88% 78% at 50% 48%,
    rgba(0, 0, 0, 0.95) 18%,
    rgba(0, 0, 0, 0.55) 42%,
    transparent 74%
  );
  z-index: -1;
  pointer-events: none;
  opacity: calc(var(--hero-logo-o, 1) * 0.95);
  transition: opacity 0.45s ease;
}

/* ========== HERO SCREEN ========== */
.hero-screen {
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow: hidden;
  position: relative;
  background: var(--color-primary);
}

/* Панели */
.panel {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow: clip;
  display: block;
  cursor: pointer;
  contain: paint;
  transform: translateZ(0);
}

.panel--coffee,
.panel--studio {
  clip-path: none;
}

.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(26, 17, 36, 0);
  pointer-events: none;
  transition: background 0.4s ease;
}

.hero-screen.is-zone-coffee .panel--studio::after,
.hero-screen.is-zone-studio .panel--coffee::after {
  background: rgba(26, 17, 36, 0.35);
}

/* Медиа */
.panel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  contain: layout style paint;
}

.panel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
  filter: blur(4px);
  transition: filter 0.45s ease;
}

.panel-video[data-hidden] {
  visibility: hidden;
  opacity: 0;
}

.panel.is-hovered .panel-video {
  filter: blur(10px);
}

.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.panel-bg--coffee {
  background:
    linear-gradient(135deg, rgba(26, 17, 36, 0.3) 0%, rgba(61, 43, 31, 0.5) 100%),
    radial-gradient(ellipse at 20% 80%, #D4A574 0%, #6B4C35 40%, #1A1124 100%);
}

.panel-bg--studio {
  background:
    linear-gradient(135deg, rgba(232, 30, 115, 0.25) 0%, rgba(26, 17, 36, 0.5) 100%),
    radial-gradient(ellipse at 80% 20%, #F06292 0%, #4A3142 45%, #1A1124 100%);
}

/* Фильтры брендбука — поверх видео, всегда видны */
.filter-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transition: background 0.45s ease, opacity 0.45s ease;
}

.filter-overlay--warm {
  background: var(--filter-warm);
}

.filter-overlay--warm::before,
.filter-overlay--cool::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: background 0.45s ease;
}

.filter-overlay--warm::before {
  background: var(--filter-warm-tint);
}

.filter-overlay--cool {
  background: var(--filter-cool);
}

.filter-overlay--cool::before {
  background: var(--filter-cool-dark);
}

.panel--coffee.is-hovered .filter-overlay--warm {
  background: var(--filter-warm-active);
}

.panel--coffee.is-hovered .filter-overlay--warm::before {
  background: var(--filter-warm-tint-active);
}

.panel--studio.is-hovered .filter-overlay--cool {
  background: var(--filter-cool-active);
}

.panel--studio.is-hovered .filter-overlay--cool::before {
  background: var(--filter-cool-dark-active);
}

/* Общий фильтр — единая гамма на обе половины */
.hero-unify-filter {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--filter-unify-plum) 0%,
      var(--filter-unify-base) 50%,
      var(--filter-unify-plum) 100%
    ),
    var(--filter-unify-rose);
}

.hero-unify-filter.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* Размытие шва по центру — градиент от центра к краям */
.hero-center-blend {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.15) 20%,
    rgba(0, 0, 0, 0.55) 30%,
    black 34%,
    black 66%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.15) 80%,
    transparent 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.15) 20%,
    rgba(0, 0, 0, 0.55) 30%,
    black 34%,
    black 66%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.15) 80%,
    transparent 90%,
    transparent 100%
  );
}

.hero-center-blend.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* Метка зоны — поверх блюра, на уровне hero */
.panel-label {
  position: absolute;
  z-index: 35;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow:
    0 1px 2px rgba(26, 17, 36, 0.9),
    0 4px 20px rgba(26, 17, 36, 0.55);
}

.panel-label--coffee {
  top: 44px;
  right: calc(50% + 16px);
  left: auto;
  text-align: right;
  color: var(--color-accent-light);
}

.panel-label--studio {
  top: 44px;
  left: calc(50% + 16px);
  right: auto;
  text-align: left;
  color: var(--color-gold);
}

/* Навигация — поверх блюра, внутри hero */
.nav-list {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
  isolation: isolate;
}

.hero-screen.is-zone-coffee .nav-list--coffee,
.hero-screen.is-zone-studio .nav-list--studio {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list--coffee {
  right: calc(50% + 80px);
  left: auto;
  text-align: right;
}

.nav-list--studio {
  left: calc(50% + 80px);
  right: auto;
  text-align: left;
}

.nav-item {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  text-shadow: 0 2px 16px rgba(26, 17, 36, 0.75);
  transition: color 0.3s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.nav-list--coffee .nav-item::after {
  background: var(--color-accent-light);
  transform-origin: right;
}

.nav-list--studio .nav-item::after {
  background: var(--color-cool);
  transform-origin: left;
}

.nav-item:hover::after {
  transform: scaleX(1);
}

/* Золотая линия — скрыта */
.hero-divider {
  display: none;
}

/* Логотип — только внутри hero, нос кота на линии 50% */
.hero-logo-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.logo-center {
  pointer-events: none;
  display: block;
  /* чуть крупнее; сдвиг влево — нос кота (~54% ширины лого) на центр экрана */
  width: clamp(1320px, 194vw, 2380px);
  transform: translateX(calc(-1.55vw + 6px)) translateZ(0);
}

.logo-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(26, 17, 36, 0.55));
}

/* Блюр зоны при hover — только тогда затрагивает лого (z-index 7 > лого 6) */
.zone-effect {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 7;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  background: transparent;
  transition: opacity 0.45s ease;
}

.zone-effect--left {
  left: 0;
}

.zone-effect--right {
  right: 0;
}

.hero-screen.is-zone-coffee .zone-effect--left {
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(26, 17, 36, 0.12);
}

.hero-screen.is-zone-studio .zone-effect--right {
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(26, 17, 36, 0.14);
}

/* ========== RESPONSIVE — мобильный: слева кофейня, справа салон (вертикальный шов) */
@media (max-width: 992px) {
  body.is-scroll-locked {
    background-color: #000;
  }

  .hero-screen {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    min-height: 100svh;
    height: 100svh;
    margin: 0;
    box-sizing: border-box;
    touch-action: none;
    overscroll-behavior: none;
  }

  @supports (height: 100dvh) {
    .hero-screen {
      min-height: 100dvh;
      height: 100dvh;
    }
  }

  body.is-mobile-vertical .hero-screen {
    touch-action: pan-y;
    overscroll-behavior-y: contain;
    min-height: 100lvh;
    min-height: var(--app-height, 100lvh);
    height: 100lvh;
    height: var(--app-height, 100lvh);
    max-height: 100lvh;
    max-height: var(--app-height, 100lvh);
  }

  /* Mobile-only hero composition: full visual viewport, bottom zone used */
  body.is-mobile-vertical .hero-screen .ml-scene,
  body.is-mobile-vertical .hero-screen .hero-mobile-track {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  body.is-mobile-vertical .hero-mobile-track {
    width: 200%;
  }

  body.is-mobile-vertical .hero-mobile-track .panel {
    width: 50%;
    height: 100%;
  }

  /* Bleed video into home-indicator / safe bottom — no purple body strip */
  body.is-mobile-vertical .hero-mobile-track .panel-media,
  body.is-mobile-vertical .hero-mobile-track .filter-overlay,
  body.is-mobile-vertical .hero-screen .panel-filter-base,
  body.is-mobile-vertical .hero-screen .panel-filter-tint {
    top: calc(-1 * env(safe-area-inset-top, 0px));
    bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    height: auto;
  }

  /* Drop heavy plum vignette at the bottom so UI sits on video */
  body.is-mobile-vertical .panel-media::after,
  body.is-mobile-vertical .panel--coffee .panel-media::after,
  body.is-mobile-vertical .panel--studio .panel-media::after {
    background: linear-gradient(
      180deg,
      rgba(26, 17, 36, 0.45) 0%,
      rgba(26, 17, 36, 0.08) 16%,
      transparent 36%,
      transparent 100%
    );
  }

  body.is-mobile-vertical .hero-mobile-hint {
    height: calc(52px + env(safe-area-inset-bottom, 0px));
    background: none;
  }

  body.is-mobile-vertical .hero-mobile-hint__row {
    bottom: max(8px, env(safe-area-inset-bottom, 0px));
    padding: 0 18px;
  }

  .ml-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    touch-action: none;
  }

  body.is-mobile-vertical .ml-scene,
  body.is-mobile-vertical .hero-mobile-track {
    touch-action: pan-y;
  }

  .hero-mobile-track {
    display: flex;
    flex-direction: row;
    position: absolute;
    inset: 0;
    overflow: visible;
    width: 200%;
    height: 100%;
    will-change: transform;
    transform: translate3d(var(--hero-track-x, -50vw), var(--hero-track-y, 0px), 0);
    transition: none;
  }

  .hero-screen.is-hero-interacting .hero-mobile-track {
    transition: none;
  }

  .hero-screen.is-hero-animating .hero-mobile-track {
    transition: none;
  }

  .hero-screen.is-hero-interacting .hero-mobile-track .panel-media {
    transition: none;
  }

  .ml-overlay,
  .ml-curtain,
  .ml-layer--about {
    position: absolute;
    inset: 0;
    z-index: 12;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    will-change: transform;
  }

  .ml-overlay.is-ml-layer-visible,
  .ml-curtain.is-ml-layer-visible,
  .ml-layer--about.is-ml-layer-visible {
    visibility: visible;
  }

  .ml-overlay--menu {
    z-index: 14;
    background: transparent;
    transform:
      translate3d(var(--ml-menu-x, -100%), var(--ml-menu-y, 0px), 0)
      scale(var(--ml-menu-scale, 1));
    transform-origin: center 72%;
    box-shadow: none;
    transition: none;
  }

  .ml-overlay--tariffs {
    z-index: 14;
    background: transparent;
    transform:
      translate3d(var(--ml-tariffs-x, 100%), var(--ml-tariffs-y, 0px), 0)
      scale(var(--ml-tariffs-scale, 1));
    transform-origin: center 72%;
    box-shadow: none;
    transition: none;
  }

  .hero-screen.is-hero-interacting .ml-overlay,
  .hero-screen.is-hero-interacting .ml-curtain,
  .hero-screen.is-hero-interacting .ml-layer--about,
  .hero-screen.is-hero-animating .ml-overlay,
  .hero-screen.is-hero-animating .ml-curtain,
  .hero-screen.is-hero-animating .ml-layer--about,
  .hero-screen.is-hero-interacting .hero-mobile-track,
  .hero-screen.is-hero-animating .hero-mobile-track {
    transition: none !important;
  }

  .ml-curtain--club {
    z-index: 16;
    background: transparent;
    transform:
      translate3d(var(--ml-club-x, -100%), var(--ml-club-y, 0px), 0)
      scale(var(--ml-club-scale, 1));
    transform-origin: center 72%;
    box-shadow: none;
    transition: none;
  }

  .ml-curtain--works {
    z-index: 16;
    background: transparent;
    transform:
      translate3d(var(--ml-works-x, 100%), var(--ml-works-y, 0px), 0)
      scale(var(--ml-works-scale, 1));
    transform-origin: center 72%;
    box-shadow: none;
    transition: none;
  }

  .ml-layer--about {
    z-index: 18;
    background: transparent;
    transform:
      translate3d(var(--ml-about-x, 100%), var(--ml-about-y, 0px), 0)
      scale(var(--ml-about-scale, 1));
    transform-origin: center 72%;
    box-shadow: none;
    transition: none;
  }

  /* Persistent atmosphere over video — color layers crossfade */
  .ml-atm {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
  }

  .ml-atm__warm,
  .ml-atm__cool,
  .ml-atm__dark,
  .ml-atm__frost {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
  }

  .hero-screen.is-hero-interacting .ml-atm__warm,
  .hero-screen.is-hero-interacting .ml-atm__cool,
  .hero-screen.is-hero-interacting .ml-atm__dark,
  .hero-screen.is-hero-interacting .ml-atm__frost,
  .hero-screen.is-hero-animating .ml-atm__warm,
  .hero-screen.is-hero-animating .ml-atm__cool,
  .hero-screen.is-hero-animating .ml-atm__dark,
  .hero-screen.is-hero-animating .ml-atm__frost {
    transition: none;
  }

  .ml-atm__warm {
    background:
      linear-gradient(165deg, rgba(245, 240, 235, 0.55) 0%, rgba(245, 240, 235, 0.18) 48%, rgba(107, 76, 53, 0.2) 100%);
    opacity: var(--ml-atm-warm, 0);
  }

  .ml-atm__cool {
    background:
      linear-gradient(165deg, rgba(252, 228, 236, 0.52) 0%, rgba(252, 228, 236, 0.16) 45%, rgba(26, 17, 36, 0.22) 100%);
    opacity: var(--ml-atm-cool, 0);
  }

  .ml-atm__dark {
    background:
      linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(26, 17, 36, 0.42) 55%, rgba(11, 11, 13, 0.62) 100%);
    opacity: var(--ml-atm-dark, 0);
  }

  .ml-atm__frost {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px) saturate(1.02);
    -webkit-backdrop-filter: blur(4px) saturate(1.02);
    opacity: var(--ml-atm-frost, 0);
  }

  .ml-swipe-surface {
    position: absolute;
    inset: 0;
    z-index: 36;
    touch-action: none;
    pointer-events: auto;
    background: transparent;
  }

  body.is-ml-beyond-backdrop .ml-swipe-surface,
  body.is-ml-pos-menu .ml-swipe-surface,
  body.is-ml-pos-tariffs .ml-swipe-surface,
  body.is-ml-pos-about .ml-swipe-surface {
    pointer-events: none;
  }

  /* Removed: unconditionally hid .hero-mobile-ui with !important and nothing
     in JS ever un-hides it (no is-ui-active toggle exists on mobile), so the
     coffee/studio overlay text was permanently invisible over the video. */

  body.is-scroll-locked .hero-screen {
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    margin: 0;
    z-index: 0;
  }

  /* Keep portrait frame when device is landscape — backdrop/zones don't reflow */
  body.is-mobile-landing-ready.is-ml-landscape-lock.is-scroll-locked .hero-screen {
    width: min(var(--ml-port-w, 100vw), 100vh);
    height: min(var(--ml-port-h, 100vh), 100vw);
    max-width: 100vw;
    max-height: 100vh;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  body.is-mobile-landing-ready.is-ml-landscape-lock {
    background: #050505;
    transition: background 0.45s ease;
  }

  .filter-overlay--warm {
    background: var(--filter-warm);
  }

  .filter-overlay--warm::before {
    background: var(--filter-warm-tint);
  }

  .filter-overlay--cool {
    background: var(--filter-cool);
  }

  .filter-overlay--cool::before {
    background: var(--filter-cool-dark);
  }

  .panel::after {
    z-index: 6;
  }

  /* Фильтр через DOM-слои — стабильнее на iOS при transform трека */
  .hero-mobile-track .panel > .filter-overlay {
    display: none !important;
  }

  .hero-mobile-track .panel--coffee::before,
  .hero-mobile-track .panel--studio::before,
  .hero-mobile-track .panel--coffee::after,
  .hero-mobile-track .panel--studio::after {
    display: none !important;
    content: none !important;
  }

  .hero-mobile-track .panel {
    position: relative;
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    contain: none;
  }

  .hero-mobile-track .hero-panel-rig {
    display: block;
    position: absolute;
    inset: 0;
    top: calc(-1 * env(safe-area-inset-top, 0px));
    bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }

  .hero-mobile-track .panel-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    contain: none;
    transform: scale(1.18);
    transform-origin: center center;
  }

  .hero-mobile-track .panel-media::after {
    display: none;
  }

  .hero-mobile-track .panel-video,
  .hero-mobile-track .panel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-mobile-track .panel-video {
    object-fit: cover;
    object-position: center center;
  }

  .hero-screen,
  .ml-scene,
  .hero-mobile-track {
    background: var(--color-primary, #1A1124);
  }

  .hero-mobile-track .hero-unify-filter {
    display: none !important;
  }

  .hero-mobile-track .hero-center-blend {
    display: none !important;
  }

  .zone-effect {
    display: none !important;
  }

  .panel-media {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(-1 * env(safe-area-inset-top, 0px));
    bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
    height: auto;
    overflow: hidden;
  }

  .panel-bg,
  .panel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .filter-overlay {
    top: calc(-1 * env(safe-area-inset-top, 0px));
    bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    height: auto;
  }

  .hero-screen .hero-logo-layer .logo-center {
    width: 100vw;
    max-width: none;
    transform:
      translateX(-2.5vw)
      scale(2.05)
      rotate(var(--ml-logo-orient, 0deg))
      translateZ(0);
    transform-origin: center center;
    transition: transform 0.12s linear;
  }

  body.is-ml-landscape-lock .hero-screen .hero-logo-layer .logo-center {
    width: var(--ml-port-w, 100vw);
    /* Aligned to locked portrait frame — no extra rotate on top of browser turn */
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Chrome labels stay with the locked frame; vertical swipe replaces sideways browse */
  body.is-ml-landscape .hero-mobile-hint__row,
  body.is-ml-landscape .hero-mobile-ui {
    transform: none;
  }

  body.is-ml-landscape .hero-mobile-hint__row {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    top: calc(18px + env(safe-area-inset-top, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    padding: 0 16px;
  }

  body.is-ml-landscape .hero-mobile-hint {
    inset: 0;
    height: auto;
  }

  .hero-screen .hero-logo-layer .logo-img {
    width: 100%;
    max-width: none;
  }

  .hero-logo-layer {
    z-index: 20;
    pointer-events: none;
    transition: opacity 0.68s cubic-bezier(0.16, 1, 0.3, 1), transform 0.68s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: var(--hero-logo-o, 1);
    transform: scale(var(--hero-logo-scale, 1)) translateY(calc(-1 * var(--hero-logo-lift, 0px)));
  }

  .hero-mobile-ui,
  .hero-mobile-back,
  .hero-mobile-hint {
    z-index: 40;
  }

  body.is-ml-beyond-backdrop .hero-logo-layer,
  body.is-ml-beyond-backdrop .hero-mobile-hint {
    opacity: 0 !important;
    pointer-events: none;
  }

  body.is-ml-beyond-backdrop .hero-mobile-ui {
    opacity: 0 !important;
    pointer-events: none;
  }

  .hero-logo-layer::before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-screen.is-hero-interacting .hero-logo-layer {
    transition: none;
  }

  .panel-label {
    display: none;
  }

  .hero-screen .nav-list {
    display: none !important;
  }

  .hero-screen.is-zone-coffee .panel--studio::after,
  .hero-screen.is-zone-studio .panel--coffee::after {
    background: rgba(26, 17, 36, 0);
  }

  .hero-screen.is-zone-coffee .zone-effect--left,
  .hero-screen.is-zone-studio .zone-effect--right {
    opacity: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .panel.is-hovered .panel-video {
    filter: blur(4px);
  }

  .panel--coffee.is-hovered .filter-overlay--warm {
    background: var(--filter-warm);
  }

  .panel--coffee.is-hovered .filter-overlay--warm::before {
    background: var(--filter-warm-tint);
  }

  .panel--studio.is-hovered .filter-overlay--cool {
    background: var(--filter-cool);
  }

  .panel--studio.is-hovered .filter-overlay--cool::before {
    background: var(--filter-cool-dark);
  }

  .zone-effect {
    width: 50%;
    height: 100%;
  }

  .zone-effect--left {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
  }

  .zone-effect--right {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
  }

  /* Диагональ + градиенты к краям экрана */

  .panel-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(26, 17, 36, 0.72) 0%,
      rgba(26, 17, 36, 0.08) 18%,
      transparent 42%,
      transparent 58%,
      rgba(26, 17, 36, 0.08) 82%,
      rgba(26, 17, 36, 0.72) 100%
    );
  }

  .panel--coffee .panel-media::after {
    background: linear-gradient(
      180deg,
      rgba(61, 43, 31, 0.75) 0%,
      rgba(26, 17, 36, 0.1) 20%,
      transparent 45%,
      transparent 60%,
      rgba(26, 17, 36, 0.12) 82%,
      rgba(26, 17, 36, 0.7) 100%
    );
  }

  .panel--studio .panel-media::after {
    background: linear-gradient(
      180deg,
      rgba(74, 49, 66, 0.78) 0%,
      rgba(26, 17, 36, 0.1) 20%,
      transparent 45%,
      transparent 60%,
      rgba(26, 17, 36, 0.12) 82%,
      rgba(26, 17, 36, 0.7) 100%
    );
  }

  .hero-mobile-hint {
    position: absolute;
    inset: auto 0 0 0;
    top: auto;
    bottom: 0;
    z-index: 40;
    height: calc(88px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    opacity: var(--hero-hint-o, 1);
    transition: opacity 0.35s ease;
  }

  .hero-swipe-coach {
    display: none !important;
  }

  .hero-mobile-hint__coach {
    display: none !important;
  }

  .hero-mobile-hint__row {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(52px + env(safe-area-inset-bottom, 0px));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .hero-mobile-hint.is-hidden {
    opacity: 0;
  }

  .hero-mobile-hint__side--coffee,
  .hero-mobile-hint__side--studio {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(26, 17, 36, 0.8);
  }

  .hero-mobile-hint__side--coffee {
    color: var(--color-accent-light);
  }

  .hero-mobile-hint__side--studio {
    color: var(--color-gold);
  }

  .ml-pager {
    position: absolute;
    left: 50%;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 42;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transform: translateX(-50%);
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(26, 17, 36, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
  }

  .ml-pager[hidden] {
    display: none !important;
  }

  .ml-pager__dot {
    width: 5px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: transform 0.28s ease, background 0.28s ease, width 0.28s ease;
  }

  .ml-pager__dot--hero {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
  }

  .ml-pager__dot.is-active {
    background: #fff;
    transform: scale(1.2);
  }

  .ml-pager__dot--hero.is-active {
    background: var(--color-accent-light, #f8bbd0);
    box-shadow: 0 0 0 2px rgba(232, 30, 115, 0.28);
  }

  body.is-ml-pos-menu .ml-pager,
  body.is-ml-pos-tariffs .ml-pager {
    background: rgba(26, 17, 36, 0.14);
  }

  body.is-ml-pager-light .ml-pager {
    background: rgba(255, 255, 255, 0.16);
  }

  body.is-ml-pager-light .ml-pager__dot {
    background: rgba(26, 17, 36, 0.28);
  }

  body.is-ml-pager-light .ml-pager__dot.is-active {
    background: var(--color-primary, #1a1124);
  }

  .hero-mobile-back {
    display: none !important;
  }

  .hero-swipe-coach {
    position: absolute;
    top: 42%;
    left: 50%;
    z-index: 38;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(26, 17, 36, 0.52);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .hero-swipe-coach[hidden] {
    display: none;
  }

  .hero-swipe-coach.is-playing {
    animation: hero-swipe-coach-fade 2.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  }

  .hero-swipe-coach__arrows {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
  }

  .hero-swipe-coach__text {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
  }

  @keyframes hero-swipe-coach-fade {
    0% {
      opacity: 0;
      transform: translate(-50%, -46%) scale(0.94);
    }
    12% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    72% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -54%) scale(0.97);
    }
  }

  .hero-mobile-back {
    position: absolute;
    top: calc(14px + env(safe-area-inset-top, 0px));
    left: calc(14px + env(safe-area-inset-left, 0px));
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(26, 17, 36, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .hero-mobile-back[hidden] {
    display: none;
  }

  .hero-mobile-ui {
    position: absolute;
    z-index: 40;
    width: min(84%, 340px);
    top: calc(68px + env(safe-area-inset-top, 0px));
    bottom: auto;
    text-align: left;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.55s;
  }

  .hero-mobile-ui.is-ui-active {
    opacity: var(--hero-ui-o, 1);
    visibility: visible;
    transform: translateY(0);
  }

  /* No JS ever toggles is-ui-active on mobile — the overlay text/buttons must
     just be visible over the video by default so they're swipeable there. */
  body.is-mobile-vertical .hero-mobile-ui,
  body.is-mobile-vertical .hero-screen.is-mobile-slide-split .hero-mobile-ui {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .hero-mobile-ui--coffee {
    left: calc(16px + env(safe-area-inset-left, 0px));
    right: auto;
  }

  .hero-mobile-ui--studio {
    left: auto;
    right: calc(16px + env(safe-area-inset-right, 0px));
    text-align: right;
  }

  /* Coffee/studio overlays sit side by side over the split video — narrow
     them so the two text blocks never overlap each other. */
  body.is-mobile-vertical .hero-mobile-ui--coffee,
  body.is-mobile-vertical .hero-mobile-ui--studio {
    width: calc(50% - 24px);
    top: calc(22px + env(safe-area-inset-top, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  body.is-mobile-vertical .hero-mobile-ui__lead {
    margin-bottom: 0;
  }

  body.is-mobile-vertical .hero-mobile-ui__actions {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }

  body.is-mobile-vertical .hero-mobile-ui__actions .btn {
    min-height: 42px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 11px;
  }

  .hero-mobile-ui.is-ui-active .hero-mobile-ui__actions,
  .hero-mobile-ui.is-ui-active a,
  .hero-mobile-ui.is-ui-active button {
    pointer-events: auto;
  }

  .hero-screen.is-hero-interacting .hero-mobile-ui {
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero-mobile-ui__eyebrow {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 8px;
  }

  .hero-mobile-ui--studio .hero-mobile-ui__eyebrow {
    color: var(--color-gold);
  }

  .hero-mobile-ui__title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 6vw, 28px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(26, 17, 36, 0.65);
  }

  .hero-mobile-ui__lead {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(26, 17, 36, 0.55);
  }

  .hero-mobile-ui__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-mobile-ui__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-divider {
    display: none;
  }
}

@media (max-width: 992px) {
  body.is-mobile-vertical .hero-screen .hero-mobile-track {
    width: 100%;
    transform: none !important;
  }

  body.is-mobile-vertical .hero-mobile-track .panel--coffee {
    flex: 0 0 50%;
    width: 50%;
  }

  body.is-mobile-vertical .hero-mobile-track .panel--studio {
    flex: 0 0 50%;
    width: 50%;
  }

  body.is-mobile-vertical .hero-mobile-ui--coffee {
    width: calc(50% - 24px);
  }

  body.is-mobile-vertical .hero-mobile-ui--studio {
    width: calc(50% - 24px);
  }

  body.is-mobile-vertical .hero-mobile-ui--coffee,
  body.is-mobile-vertical .hero-mobile-ui--studio {
    top: auto;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    display: flex;
    min-height: 42%;
    flex-direction: column;
    justify-content: flex-end;
  }

  body.is-mobile-vertical .hero-mobile-ui__title {
    margin-bottom: 16px;
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  body.is-mobile-vertical .hero-mobile-ui__lead {
    display: none;
  }

  body.is-mobile-vertical .hero-mobile-ui__actions {
    position: static;
    gap: 7px;
  }

  body.is-mobile-vertical .hero-mobile-ui__actions .btn {
    min-height: 40px;
    border-radius: 999px;
  }

  body.is-mobile-vertical .hero-mobile-hint {
    display: none;
  }

  body.is-mobile-vertical .panel-media::after {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(26, 17, 36, 0.3) 0%,
      transparent 34%,
      transparent 54%,
      rgba(16, 10, 21, 0.72) 100%
    );
  }
}

/* ========== INTRO SPLASH ========== */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: auto;
  cursor: pointer;
}

.intro-splash__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.intro-splash__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1.4s ease, transform 1.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.intro-splash__orb--warm {
  width: min(52vmax, 520px);
  height: min(52vmax, 520px);
  left: -12%;
  top: 18%;
  background: rgba(212, 165, 116, 0.22);
}

.intro-splash__orb--cool {
  width: min(48vmax, 480px);
  height: min(48vmax, 480px);
  right: -10%;
  bottom: 12%;
  background: rgba(232, 30, 115, 0.16);
}

.intro-splash__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 72% 58% at 50% 48%, rgba(74, 49, 66, 0.35) 0%, transparent 58%),
    var(--color-primary);
  opacity: 1;
  transition: opacity 1.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.intro-splash__center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
  transition:
    opacity 0.95s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.95s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.95s ease;
}

.intro-splash__mark {
  position: relative;
  width: clamp(320px, 44vw, 620px);
  aspect-ratio: 3508 / 2480;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(var(--intro-logo-scale, 0.92));
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-splash__logo,
.intro-splash__outline,
.intro-splash__outline img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-splash__logo {
  opacity: 0.2;
  transform: scale(0.985);
  filter: saturate(0.82) brightness(0.88);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease;
}

.intro-splash__outline {
  z-index: 2;
  overflow: hidden;
  opacity: 0.96;
  clip-path: inset(0 var(--intro-outline-hide, 94%) 0 0);
  filter:
    drop-shadow(0 0 5px rgba(255, 244, 250, 0.72))
    drop-shadow(0 0 15px rgba(232, 30, 115, 0.34));
  transition:
    clip-path 1050ms cubic-bezier(0.2, 0.72, 0.2, 1),
    opacity 700ms ease,
    filter 700ms ease;
}

.intro-splash__outline img {
  display: block;
}

body.is-intro-booting .intro-splash__mark {
  transform: scale(var(--intro-logo-scale, 0.92));
}

.intro-splash.is-logo .intro-splash__mark {
  transform: scale(1);
}

body.is-intro-booting .intro-splash__orb {
  opacity: 1;
  transform: scale(1);
}

.intro-splash.is-logo .intro-splash__logo {
  opacity: 1;
  transform: scale(1);
  filter:
    saturate(1)
    brightness(1)
    drop-shadow(0 10px 30px rgba(232, 30, 115, 0.3));
}

.intro-splash.is-logo .intro-splash__outline {
  clip-path: inset(0 0 0 0);
  opacity: 0.28;
  filter: drop-shadow(0 0 12px rgba(255, 244, 250, 0.4));
}

.intro-splash.is-echo .intro-splash__outline {
  animation: intro-outline-echo 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes intro-outline-echo {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  42% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.intro-splash__title {
  font-family: var(--font-heading);
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.intro-splash__hint {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-accent-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}

.intro-splash__skip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  opacity: 0;
  transition: opacity 0.5s ease 1.2s;
  pointer-events: none;
}

body.is-intro-booting .intro-splash__skip {
  opacity: 1;
  transition-delay: 0.35s;
}

.intro-splash__boot-label {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 360ms ease;
}

body.is-intro-booting .intro-splash__boot-label {
  opacity: 1;
}

.intro-splash.is-logo .intro-splash__boot-label {
  opacity: 0;
}

/* Hero под intro — мягкий вход */
body.is-intro-pending .hero-screen .panel {
  opacity: 0.35;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.is-intro-pending .hero-logo-layer {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.15s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1.15s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.is-intro-pending .hero-screen.is-intro-reveal .panel {
  opacity: 1;
  transform: scale(1);
}

body.is-intro-pending .hero-screen.is-intro-reveal .hero-logo-layer {
  opacity: 1;
  transform: scale(1);
}

.intro-splash.is-logo .intro-splash__orb {
  opacity: 1;
  transform: scale(1);
}

.intro-splash.is-breathe .intro-splash__mark {
  animation: intro-breathe 1.05s cubic-bezier(0.22, 0.72, 0.24, 1) both;
}

@keyframes intro-breathe {
  0%, 100% { transform: scale(1); }
  52% { transform: scale(1.055); }
}

.intro-splash.is-title .intro-splash__title,
.intro-splash.is-title .intro-splash__hint {
  opacity: 1;
  transform: translateY(0);
}

.intro-splash.is-title .intro-splash__skip {
  opacity: 1;
}

.intro-splash.is-dissolve .intro-splash__center {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(7px);
}

.intro-splash.is-dissolve .intro-splash__orb--warm {
  transform: scale(1.12) translateX(-4%);
}

.intro-splash.is-dissolve .intro-splash__orb--cool {
  transform: scale(1.12) translateX(4%);
}

.intro-splash.is-reveal .intro-splash__veil {
  opacity: 0;
}

.intro-splash.is-reveal .intro-splash__orb {
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 1.2s;
}

.intro-splash.is-done {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media (max-width: 768px) {
  .intro-splash__mark {
    width: clamp(360px, 112vw, 460px);
  }

  .intro-splash__orb--warm {
    left: -20%;
    top: 8%;
  }

  .intro-splash__orb--cool {
    right: -18%;
    bottom: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel-video,
  .panel::after,
  .nav-item::after,
  .nav-list,
  .filter-overlay,
  .zone-effect {
    transition: none;
  }

  .panel.is-hovered .panel-video,
  .panel-video {
    filter: none;
  }

  .panel-video {
    display: none !important;
  }

  .intro-splash {
    display: none !important;
  }
}

@media (max-width: 992px) {
  body.is-mobile-vertical .hero-screen .hero-logo-layer .logo-center {
    position: relative;
    top: -84px;
  }

  body.is-mobile-vertical .hero-mobile-track .panel--coffee {
    display: none !important;
  }

  body.is-mobile-vertical .hero-mobile-track .panel--studio {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    pointer-events: none;
  }

  body.is-mobile-vertical .hero-mobile-track .panel--studio .panel-video,
  body.is-mobile-vertical .hero-mobile-track .panel--studio .panel-bg {
    width: 100%;
    height: 100%;
    object-position: center center;
    background-position: center center;
  }

  body.is-mobile-vertical .hero-mobile-track,
  body.is-mobile-vertical .hero-mobile-track .panel--studio,
  body.is-mobile-vertical .hero-mobile-track .hero-panel-rig,
  body.is-mobile-vertical .hero-mobile-track .panel-media {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  body.is-mobile-vertical .hero-mobile-ui,
  body.is-mobile-vertical .panel-label,
  body.is-mobile-vertical .nav-list,
  body.is-mobile-vertical .hero-divider,
  body.is-mobile-vertical .zone-effect,
  body.is-mobile-vertical .hero-center-blend,
  body.is-mobile-vertical .ml-atm__warm {
    display: none !important;
  }
}
