:root {
  --ink: #f7f1f5;
  --pink: #ff3d9a;
  --pink-soft: #ff70b5;
  --black: #060406;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--black);
}

body {
  color: var(--ink);
  font-family:
    Arial,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(105, 12, 57, .32),
      transparent 32rem
    ),
    radial-gradient(
      circle at 15% 60%,
      rgba(75, 14, 48, .18),
      transparent 34rem
    ),
    var(--black);
}

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

main {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  width: min(1480px, calc(100% - 96px));
  height: 108px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .23em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #160610;
  background:
    linear-gradient(145deg, #ff2f94, #ff70b5);
  box-shadow:
    0 0 30px rgba(255, 61, 154, .35);
  letter-spacing: 0;
}

.hero {
  width: min(1480px, calc(100% - 96px));
  min-height: calc(100vh - 108px);
  margin: 0 auto;
  padding: 44px 0 72px;
  display: grid;
  grid-template-columns:
    minmax(600px, .95fr)
    minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 5vw, 86px);
}

.hero-copy {
  min-width: 0;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 3.7vw, 60px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.destinations {
  margin-top: clamp(66px, 7vh, 96px);
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 36px);
  flex-wrap: nowrap;
}

.destination {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--pink);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    color .18s ease,
    transform .18s ease;
}

.destination:hover {
  color: var(--pink-soft);
  transform: translateY(-2px);
}

.destination svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-art {
  height: min(620px, calc(100vh - 180px));
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #050305;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, .5);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 3, 5, .34),
      transparent 34%
    ),
    linear-gradient(
      0deg,
      rgba(5, 3, 5, .2),
      transparent 32%
    );
}

.hero-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  filter: contrast(1.08) saturate(1.04);
}

@media (max-width: 1100px) {
  .site-header {
    width: calc(100% - 32px);
    height: 92px;
  }

  .brand {
    gap: 12px;
    font-size: 13px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 14px 0 72px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-art {
    order: -1;
    height: min(76vh, 112vw);
    min-height: 0;
    border-radius: 22px;
  }

  .hero-art img {
    height: 100%;
    object-position: center bottom;
  }

  h1 {
    margin-top: 46px;
    font-size: clamp(36px, 8.5vw, 54px);
    line-height: 1.34;
    white-space: normal;
  }

  .destinations {
    width: 100%;
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .destination {
    width: max-content;
    gap: 18px;
    font-size: clamp(24px, 5.7vw, 32px);
  }

  .destination svg {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 9vw;
  }

  .destinations {
    margin-top: 48px;
    gap: 25px;
  }

  .destination {
    gap: 14px;
    font-size: 6vw;
  }

  .destination svg {
    width: 48px;
    height: 48px;
  }
}
