@font-face {
  font-family: "Berlin Sans FB";
  src: url("assets/fonts/BerlinSansFB-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Berlin Sans FB";
  src: url("assets/fonts/BerlinSansFB-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #d095bb;
  --pink-soft: #f3d3e7;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: #111;
  background: var(--pink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.coming-soon {
  min-height: 100vh;
}

.pink-hero {
  position: relative;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--pink);
}

.pink-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.pink-hero__logo {
  position: absolute;
  top: 18%;
  left: 32px;
  display: block;
  width: 215px;
  min-width: 160px;
  height: 135px;
  object-fit: contain;
}

.pink-hero__status {
  position: absolute;
  top: 8%;
  right: 32px;
  display: flex;
  width: clamp(118px, 10.8vw, 138px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--pink);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.pink-hero__status span {
  color: var(--pink);
  font-size: clamp(12px, 1.15vw, 18px);
  font-weight: 400;
  letter-spacing: 0.22em;
}

.pink-hero__status strong {
  color: var(--pink);
  font-size: clamp(23px, 2.3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.pink-hero__status strong:first-of-type {
  margin-top: 4px;
}

.pink-hero__copy {
  position: absolute;
  top: 52%;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pink-hero h1 {
  margin: 0;
  color: var(--pink-soft);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.5vw, 88px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.pink-hero p {
  max-width: 36vw;
  margin: 0;
  color: rgba(0, 0, 0, 0.443);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 600;
  line-height: 1.55;
}

.pink-hero__contacts {
  position: absolute;
  z-index: 3;
  bottom: 10%;
  left: 32px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 38px);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(11px, 0.9vw, 14px);
  font-style: normal;
  font-weight: 700;
}

.pink-hero__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.pink-hero__contacts a:hover {
  color: #fff;
}

.pink-hero__contacts svg {
  width: 19px;
  height: 19px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pink-hero__leopard,
.pink-hero__leopard-fallback {
  position: absolute;
  top: -15%;
  right: 3.5%;
  height: 138%;
  max-width: none;
  mix-blend-mode: multiply;
  filter: brightness(1.008);
}

.pink-hero__leopard-fallback {
  display: none;
}

@media (max-width: 820px) {
  body {
    overflow: auto;
  }

  .pink-hero {
    min-height: 640px;
  }

  .pink-hero__inner {
    padding: 0 24px;
  }

  .pink-hero__logo {
    top: 8%;
    left: 24px;
    width: 168px;
    height: auto;
  }

  .pink-hero__status {
    top: 8%;
    right: 24px;
    width: 112px;
  }

  .pink-hero__copy {
    top: 44%;
    left: 24px;
    right: 24px;
    gap: 18px;
  }

  .pink-hero__contacts {
    bottom: 5%;
    left: 24px;
    right: 24px;
    flex-wrap: wrap;
    gap: 11px 18px;
    font-size: 12px;
  }

  .pink-hero p {
    max-width: min(320px, calc(100vw - 48px));
  }

  .pink-hero__leopard,
  .pink-hero__leopard-fallback {
    top: 12%;
    right: -22%;
    height: 84%;
  }
}

@media (max-width: 480px) {
  .pink-hero {
    /* Keep all four contact lines inside the visible mobile browser viewport. */
    height: 100svh;
    min-height: 0;
  }

  .pink-hero__logo {
    top: 7%;
    width: 150px;
  }

  .pink-hero__copy {
    top: 28%;
    gap: 16px;
  }

  .pink-hero__contacts {
    left: 20px;
    right: 20px;
    bottom: 2.5%;
    display: grid;
    grid-template-columns: max-content;
    gap: 2px;
    align-items: center;
    font-size: 11px;
    line-height: 1.1;
  }

  .pink-hero__contact-name {
    grid-column: auto;
  }

  .pink-hero__contacts svg {
    width: 16px;
    height: 16px;
  }

  .pink-hero__contacts a,
  .pink-hero__contact-name {
    min-height: 16px;
    line-height: 16px;
  }

  .pink-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.12;
  }

  .pink-hero p {
    max-width: 280px;
    font-size: 12px;
    line-height: 1.55;
  }

  .pink-hero__leopard,
  .pink-hero__leopard-fallback {
    top: 20%;
    right: -41%;
    height: 89%;
  }
}

@media (max-width: 360px) {
  .pink-hero__inner {
    padding: 0 20px;
  }

  .pink-hero__logo {
    left: 20px;
    width: 138px;
  }

  .pink-hero__status {
    right: 20px;
    width: 96px;
  }

  .pink-hero__status span {
    font-size: 11px;
  }

  .pink-hero__status strong {
    font-size: 22px;
  }

  .pink-hero__copy {
    left: 20px;
    right: 20px;
  }

  .pink-hero p {
    max-width: 248px;
  }

  .pink-hero__leopard,
  .pink-hero__leopard-fallback {
    top: 23%;
    right: -44%;
    height: 89%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pink-hero__leopard {
    display: none;
  }

  .pink-hero__leopard-fallback {
    display: block;
  }
}
