.page-home .home-dual-entry {
  position: relative;
  color: #07141d;
  background: #fff;
}

.page-home .home-entry-intro {
  width: min(1120px, calc(100vw - 120px));
  margin: 0 auto;
  padding: 74px 0 64px;
  text-align: center;
}

.page-home .home-entry-intro h2 {
  margin: 0;
  font-size: clamp(36px, 3vw, 46px);
  font-weight: 570;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.page-home .home-entry-intro > span {
  width: 58px;
  height: 2px;
  margin: 20px auto 16px;
  display: block;
  background: var(--red);
}

.page-home .home-entry-intro p {
  max-width: 940px;
  margin: 0 auto;
  color: #66747c;
  font-size: 16px;
  line-height: 1.85;
}

.page-home .home-entry-grid {
  min-height: 570px;
  display: flex;
  overflow: hidden;
  background: #07131d;
}

.page-home .home-entry {
  position: relative;
  min-width: 0;
  min-height: 570px;
  flex: 1 1 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  transition: flex-grow .72s cubic-bezier(.2, .78, .2, 1);
}

.page-home .home-entry + .home-entry {
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.page-home .home-entry-picture,
.page-home .home-entry-shade {
  position: absolute;
  inset: 0;
}

.page-home .home-entry-picture {
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 1s ease, filter .6s ease;
}

.page-home .home-entry--product {
  background: #0a1822;
}

.page-home .home-entry--product .home-entry-picture {
  object-position: center;
  filter: saturate(.88) contrast(1.04);
}

.page-home .home-entry--factory .home-entry-picture {
  object-position: 54% center;
  filter: saturate(.78) contrast(1.04);
}

.page-home .home-entry-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 15, 23, .03) 18%, rgba(3, 15, 23, .22) 54%, rgba(3, 15, 23, .92) 100%),
    linear-gradient(90deg, rgba(3, 15, 23, .48), transparent 55%);
  transition: background .55s ease;
}

.page-home .home-entry-copy {
  position: absolute;
  right: clamp(28px, 3.6vw, 58px);
  bottom: 42px;
  left: clamp(30px, 4vw, 64px);
}

.page-home .home-entry-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.page-home .home-entry small {
  margin-bottom: 10px;
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.page-home .home-entry h3 {
  margin: 0;
  font-size: clamp(34px, 2.7vw, 42px);
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.page-home .home-entry-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  font-size: 22px;
  transition: color .35s ease, background .35s ease, border-color .35s ease;
}

.page-home .home-entry-line {
  width: 48px;
  height: 2px;
  margin: 20px 0 16px;
  display: block;
  background: var(--red);
  transition: width .55s cubic-bezier(.2, .78, .2, 1);
}

.page-home .home-entry-copy > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-entry-action {
  width: fit-content;
  margin-top: 22px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 42px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  font-size: 14px;
  font-weight: 600;
}

.page-home .home-entry:focus-visible {
  z-index: 2;
  outline: 3px solid #fff;
  outline-offset: -3px;
}

@media (hover: hover) and (pointer: fine) {
  .page-home .home-entry-grid:has(.home-entry:hover) .home-entry {
    flex-grow: .88;
  }

  .page-home .home-entry-grid:has(.home-entry:hover) .home-entry:hover {
    flex-grow: 1.12;
  }

  .page-home .home-entry:hover .home-entry-picture {
    transform: scale(1.2);
  }

  .page-home .home-entry:hover .home-entry-shade {
    background:
      linear-gradient(180deg, rgba(3, 15, 23, .08) 12%, rgba(3, 15, 23, .32) 48%, rgba(3, 15, 23, .96) 100%),
      linear-gradient(90deg, rgba(3, 15, 23, .56), transparent 62%);
  }

  .page-home .home-entry:hover .home-entry-mark {
    color: #fff;
    border-color: var(--red);
    background: var(--red);
  }

  .page-home .home-entry:hover .home-entry-line {
    width: 96px;
  }
}

.page-home .home-entry-grid:has(.home-entry:focus-visible) .home-entry {
  flex-grow: .88;
}

.page-home .home-entry-grid:has(.home-entry:focus-visible) .home-entry:focus-visible {
  flex-grow: 1.12;
}

.page-home .home-entry:focus-visible .home-entry-picture {
  transform: scale(1.2);
}

.page-home .home-entry:focus-visible .home-entry-mark {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.page-home .home-entry:focus-visible .home-entry-line {
  width: 96px;
}

@media (max-width: 760px) {
  .page-home .home-entry-intro {
    width: calc(100% - 32px);
    padding: 58px 0 48px;
  }

  .page-home .home-entry-intro h2 {
    font-size: 34px;
  }

  .page-home .home-entry-intro p {
    font-size: 15px;
    line-height: 1.75;
  }

  .page-home .home-entry-grid {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-home .home-entry {
    min-height: clamp(420px, 112vw, 500px);
  }

  .page-home .home-entry + .home-entry {
    border-top: 1px solid rgba(255, 255, 255, .28);
    border-left: 0;
  }

  .page-home .home-entry-copy {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .page-home .home-entry h3 {
    font-size: 32px;
  }

  .page-home .home-entry-mark {
    width: 48px;
    height: 48px;
  }

  .page-home .home-entry--product .home-entry-picture {
    object-position: 48% center;
  }

  .page-home .home-entry--factory .home-entry-picture {
    object-position: 58% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-entry,
  .page-home .home-entry-picture,
  .page-home .home-entry-shade,
  .page-home .home-entry-mark,
  .page-home .home-entry-line {
    transition: none;
  }
}
