:root {
  --ink: #061b34;
  --sun: #f2cf3d;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
  margin: 0;
}
body {
  font-family: Arial, sans-serif;
  background: var(--ink);
  color: var(--white);
}
a {
  color: inherit;
  text-decoration: none;
}
.selector-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.city-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.city-choice {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  outline: none;
  transition: filter 0.42s ease;
}
.city-choice--left {
  left: 0;
  z-index: 2;
  clip-path: polygon(0 0, 59% 0, 41% 100%, 0 100%);
}
.city-choice--right {
  right: 0;
  z-index: 1;
  clip-path: polygon(59% 0, 100% 0, 100% 100%, 41% 100%);
}
.city-photo,
.city-shade {
  position: absolute;
  inset: -2%;
  transition: transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.city-photo {
  background: url("assets/pool-hero.jpg") center/cover;
  filter: saturate(0.88) contrast(1.04);
}
.city-choice--left .city-photo {
  background-position: 31% center;
}
.city-choice--right .city-photo {
  background-image: url("assets/skarszewy-dawid.png");
  background-position: center 42%;
}
.city-choice--left .city-shade {
  background:
    linear-gradient(
      90deg,
      rgba(3, 32, 73, 0.96),
      rgba(4, 49, 98, 0.75) 44%,
      rgba(0, 105, 141, 0.25)
    ),
    linear-gradient(0deg, rgba(2, 19, 44, 0.62), transparent 48%);
}
.city-choice--right .city-shade {
  background:
    linear-gradient(
      270deg,
      rgba(0, 74, 94, 0.94),
      rgba(0, 129, 153, 0.72) 48%,
      rgba(20, 172, 194, 0.26)
    ),
    linear-gradient(0deg, rgba(0, 42, 55, 0.7), transparent 52%);
}
.city-content {
  position: absolute;
  z-index: 2;
  bottom: clamp(5.5rem, 12vh, 9rem);
  width: min(34rem, 72%);
}
.city-choice--left .city-content {
  left: clamp(2rem, 7vw, 8rem);
}
.city-choice--right .city-content {
  right: clamp(2rem, 7vw, 8rem);
  text-align: right;
}
.city-kicker {
  display: block;
  margin-bottom: 0.85rem;
  color: #ffffffd1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.city-name {
  display: block;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-shadow: 0 10px 35px #00142c47;
}
.city-action {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.55rem;
  font-size: 0.82rem;
  font-weight: 800;
}
.city-action i {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid #ffffff73;
  border-radius: 50%;
  background: #ffffff1f;
  font-size: 1.4rem;
  font-style: normal;
  transition: 0.25s;
}
.city-choice:hover .city-photo,
.city-choice:focus-visible .city-photo {
  transform: scale(1.045);
}
.city-choice:hover .city-action i,
.city-choice:focus-visible .city-action i {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
  transform: translate(3px, -3px);
}
.city-choice:focus-visible:after {
  content: "";
  position: absolute;
  inset: 1.4rem;
  z-index: 5;
  border: 3px solid var(--sun);
  border-radius: 1.2rem;
}
.selector-shell[data-active="koscierzyna"] .city-choice--right,
.selector-shell[data-active="skarszewy"] .city-choice--left {
  filter: brightness(0.7) saturate(0.72);
}
.brand-lockup {
  position: absolute;
  z-index: 10;
  top: clamp(1rem, 2.2vw, 2rem);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: max-content;
  transform: translateX(-50%);
  border: 1px solid #ffffff4d;
  border-radius: 2.2rem;
  background: #041c38a3;
  padding: 0.7rem 1.45rem 0.7rem 0.75rem;
  box-shadow: 0 18px 45px #00142b40;
  backdrop-filter: blur(18px);
}
.brand-lockup img {
  width: clamp(5.5rem, 7.5vw, 7.5rem);
  height: clamp(5.5rem, 7.5vw, 7.5rem);
  border-radius: 50%;
  background: #fffffff0;
  object-fit: contain;
}
.brand-lockup span,
.brand-lockup strong {
  display: block;
}
.brand-lockup span {
  color: #ffffffb3;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-lockup strong,
.brand-lockup small {
  display: block;
}
.brand-lockup strong {
  margin-top: 0.15rem;
  font-size: 1.18rem;
}
.brand-lockup small {
  margin-top: 0.42rem;
  color: #ffffff9e;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .city-stage {
    display: grid;
    grid-template-rows: 1fr 1fr;
  }
  .city-choice {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 50svh;
    clip-path: none;
  }
  .city-choice--left {
    clip-path: polygon(0 0, 100% 0, 100% 89%, 0 100%);
  }
  .city-choice--right {
    margin-top: -5.5svh;
    min-height: 55.5svh;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }
  .city-choice--left .city-photo {
    background-position: 46% 34%;
  }
  .city-choice--right .city-photo {
    background-position: 52% center;
  }
  .city-content,
  .city-choice--left .city-content,
  .city-choice--right .city-content {
    right: auto;
    bottom: auto;
    left: 1.5rem;
    width: calc(100% - 3rem);
    text-align: left;
  }
  .city-choice--left .city-content {
    top: auto;
    bottom: 4.25rem;
  }
  .city-choice--right .city-content {
    top: auto;
    bottom: 2.35rem;
  }
  .city-name {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }
  .city-action {
    margin-top: 0.9rem;
  }
  .city-action i {
    width: 2.6rem;
    height: 2.6rem;
  }
  .brand-lockup {
    top: 0.7rem;
    gap: 0.7rem;
    padding: 0.5rem 0.85rem 0.5rem 0.55rem;
    border-radius: 1.6rem;
    background: rgba(4, 28, 56, 0.36);
  }
  .brand-lockup img {
    width: 4.25rem;
    height: 4.25rem;
  }
  .brand-lockup span {
    font-size: 0.55rem;
  }
  .brand-lockup strong {
    font-size: 0.84rem;
  }
  .brand-lockup small {
    margin-top: 0.28rem;
    max-width: 12rem;
    font-size: 0.46rem;
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
}
