:root {
  --mm-hero-gold: #b8873b;
  --mm-hero-gold-light: #d4ad69;
  --mm-hero-black: #050505;
  --mm-hero-white: #ffffff;
}

.mm-hero,
.mm-hero * {
  box-sizing: border-box;
}

.mm-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--mm-hero-black);
  color: var(--mm-hero-white);
  font-family: Arial, Helvetica, sans-serif;
}

.mm-hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(100%, 1450px);
  height: clamp(700px, 57.8vw, 835px);
  margin: 0 auto;
  isolation: isolate;
}

.mm-hero__panel {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #0a0a0a;
  cursor: pointer;
  opacity: 0;
  transform: translateY(22px) scale(.975);
}

.mm-hero__panel:first-child {
  border-right: 1px solid rgba(255,255,255,.86);
}

.mm-hero.is-ready .mm-hero__panel--photo {
  animation: mm-panel-enter .85s .08s cubic-bezier(.2,.78,.2,1) forwards;
}

.mm-hero.is-ready .mm-hero__panel--ai {
  animation: mm-panel-enter .85s .2s cubic-bezier(.2,.78,.2,1) forwards;
}

@keyframes mm-panel-enter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.mm-hero__picture,
.mm-hero__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.mm-hero__image {
  object-fit: fill;
  transition: transform .8s cubic-bezier(.2,.75,.2,1), filter .35s ease;
}

.mm-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.01) 0%, rgba(0,0,0,.03) 48%, rgba(0,0,0,.16) 100%),
    radial-gradient(circle at 50% 47%, transparent 0 26%, rgba(0,0,0,.06) 63%, rgba(0,0,0,.23) 100%);
}

.mm-hero__panel:hover .mm-hero__image,
.mm-hero__panel:focus-visible .mm-hero__image {
  transform: scale(1.018);
  filter: brightness(1.06);
}

.mm-hero__panel:focus-visible {
  outline: 3px solid var(--mm-hero-gold-light);
  outline-offset: -4px;
}

.mm-hero__headline {
  position: absolute;
  z-index: 8;
  top: 42%;
  left: 50%;
  width: min(1080px, 84%);
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.mm-hero__headline::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -48px -30px;
  border-radius: 18px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.76) 0%, rgba(0,0,0,.56) 48%, rgba(0,0,0,0) 78%);
  filter: blur(1px);
}

.mm-hero__headline h1 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: clamp(3.25rem, 5.15vw, 5.65rem);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-shadow: 0 5px 28px rgba(0,0,0,.95);
}

.mm-hero__headline-line {
  display: block;
}

.mm-hero__headline-accent {
  color: var(--mm-hero-gold-light);
}

.mm-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 340px;
  margin-top: 26px;
  padding: 15px 26px;
  border: 1px solid var(--mm-hero-gold-light);
  border-radius: 3px;
  background: rgba(5,5,5,.76);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.mm-hero__cta:hover,
.mm-hero__cta:focus-visible {
  transform: translateY(-2px);
  background: var(--mm-hero-gold-light);
  color: #080808;
}

.mm-hero__cards {
  position: absolute;
  z-index: 5;
  top: 5.8%;
  right: 4.8%;
  width: 320px;
  height: 300px;
  pointer-events: none;
}

.mm-hero__card {
  position: absolute;
  width: 148px;
  margin: 0;
  padding: 7px 7px 28px;
  background: #f6f3ec;
  color: #191919;
  box-shadow: 0 20px 52px rgba(0,0,0,.5);
  opacity: 0;
  will-change: transform, opacity;
}

.mm-hero__card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mm-hero__card figcaption {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.mm-hero__card--original {
  right: 126px;
  transform: translate(300px,-190px) rotate(-6deg) scale(.72);
}

.mm-hero__card--result {
  top: 58px;
  right: 0;
  transform: translate(340px,-165px) rotate(8deg) scale(.72);
}

.mm-hero.is-ready .mm-hero__card--original {
  animation: mm-card-one 1.05s .72s cubic-bezier(.16,.9,.2,1.08) forwards;
}

.mm-hero.is-ready .mm-hero__card--result {
  animation: mm-card-two 1.05s .96s cubic-bezier(.16,.9,.2,1.08) forwards;
}

@keyframes mm-card-one {
  to { opacity: 1; transform: translate(0,0) rotate(-6deg) scale(1); }
}

@keyframes mm-card-two {
  to { opacity: 1; transform: translate(0,0) rotate(8deg) scale(1); }
}

.mm-hero__scroll {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 19px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: rgba(5,5,5,.82);
  color: #fff;
  font-size: 1.85rem;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform .22s ease, border-color .22s ease, color .22s ease;
}

.mm-hero__scroll:hover,
.mm-hero__scroll:focus-visible {
  transform: translateX(-50%) translateY(3px);
  border-color: var(--mm-hero-gold-light);
  color: var(--mm-hero-gold-light);
}

.mm-hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  width: min(100%,1450px);
  min-height: 94px;
  margin: 0 auto;
  border-top: 1px solid rgba(184,135,59,.45);
  background: linear-gradient(180deg,#0d0d0d 0%,#070707 100%);
}

.mm-hero__benefit {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 94px;
  padding: 20px 26px;
  text-align: center;
}

.mm-hero__benefit + .mm-hero__benefit::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: rgba(184,135,59,.48);
}

.mm-hero__benefit strong {
  display: block;
  color: #fff;
  font-size: .94rem;
  font-weight: 700;
}

.mm-hero__benefit span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.66);
  font-size: .78rem;
  line-height: 1.35;
}

.mm-hero__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 820px) {
  .mm-hero {
    padding: 24px 15px 26px;
  }

  .mm-hero__visual {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 14px;
  }

  .mm-hero__headline {
    position: relative;
    top: auto;
    left: auto;
    order: -1;
    width: 100%;
    margin: 0 0 22px;
    padding: 0 4px;
    transform: none;
  }

  .mm-hero__headline::before {
    display: none;
  }

  .mm-hero__headline h1 {
    font-size: clamp(2.3rem, 10.4vw, 4.05rem);
    line-height: .96;
  }

  .mm-hero__headline-line {
    display: inline;
  }

  .mm-hero__headline-line::after {
    content: " ";
  }

  .mm-hero__cta {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
  }

  .mm-hero__panel {
    min-height: min(540px, 128vw);
    border: 1px solid rgba(184,135,59,.62) !important;
    border-radius: 12px;
  }

  .mm-hero__image {
    object-fit: fill;
  }

  .mm-hero__cards {
    top: 3.5%;
    right: 2.5%;
    width: 188px;
    height: 170px;
  }

  .mm-hero__card {
    width: 88px;
    padding: 4px 4px 18px;
  }

  .mm-hero__card figcaption {
    bottom: 4px;
    font-size: .42rem;
  }

  .mm-hero__card--original {
    right: 75px;
  }

  .mm-hero__card--result {
    top: 31px;
    right: 0;
  }

  .mm-hero__scroll {
    position: relative;
    left: auto;
    bottom: auto;
    width: 52px;
    height: 52px;
    margin: 17px auto 0;
    transform: none;
  }

  .mm-hero__scroll:hover,
  .mm-hero__scroll:focus-visible {
    transform: translateY(3px);
  }

  .mm-hero__benefits {
    grid-template-columns: repeat(2,minmax(0,1fr));
    width: 100%;
    min-height: 0;
    margin-top: 20px;
    border: 1px solid rgba(184,135,59,.35);
    border-radius: 10px;
    overflow: hidden;
  }

  .mm-hero__benefit {
    min-height: 84px;
    padding: 16px 12px;
  }

  .mm-hero__benefit:nth-child(3),
  .mm-hero__benefit:nth-child(4) {
    border-top: 1px solid rgba(184,135,59,.3);
  }

  .mm-hero__benefit:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 430px) {
  .mm-hero {
    padding-inline: 11px;
  }

  .mm-hero__panel {
    min-height: 465px;
  }

  .mm-hero__benefit strong {
    font-size: .84rem;
  }

  .mm-hero__benefit span {
    font-size: .72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mm-hero__panel,
  .mm-hero__image,
  .mm-hero__cta,
  .mm-hero__scroll {
    transition: none !important;
    animation: none !important;
  }

  .mm-hero__panel {
    opacity: 1 !important;
    transform: none !important;
  }

  .mm-hero__card {
    opacity: 1 !important;
    animation: none !important;
  }

  .mm-hero__card--original {
    transform: rotate(-6deg) !important;
  }

  .mm-hero__card--result {
    transform: rotate(8deg) !important;
  }
}
