
/* montserrat-regular - latin */
@font-face {
  font-family: "Funnel Display";
  src: url("../fonts/FunnelDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Funnel Display";
  src: url("../fonts/FunnelDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Funnel Display";
  src: url("../fonts/FunnelDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Funnel Display";
  src: url("../fonts/FunnelDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Funnel Display";
  src: url("../fonts/FunnelDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Funnel Display", Arial, sans-serif;
  color: #743279;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #fbf7f8;
}


.hero__logo {
  position: absolute;
  top: clamp(2rem, 4vw, 3.5rem);
  left: clamp(2rem, 6vw, 7rem);
  z-index: 10;
  display: inline-flex;
}

.hero__logo img {
  width: clamp(180px, 18vw, 320px);
  height: auto;
  display: block;
}

.hero__content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(8rem, 12vw, 13rem) clamp(2rem, 5vw, 7rem) clamp(2rem, 4vw, 4rem);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: #EA6374;
}

.hero__subtitle {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  line-height: 1.35;
  font-weight: 500;
}

.hero__info {
  grid-column: 1;
  grid-row: 2;

  padding: 0 clamp(2rem, 5vw, 7rem) clamp(3rem, 6vw, 6rem);

  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.35;
}
.hero__info p {
  margin: 0 0 1.3rem;
}

.hero__media {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 100%;
  overflow: visible;
}



.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.hero__badge-link {
  position: absolute;
  top: clamp(2rem, 5vw, 3.5rem);
  left: 0;
  z-index: 10;

  display: block;
  width: clamp(190px, 12vw, 280px);

  transform: translateX(-50%);
  text-decoration: none;
}

.hero__badge-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hero__badge-link:hover .hero__badge-image {
  transform: scale(1.04);
  filter: drop-shadow(0 1.25rem 2rem rgba(80, 25, 85, 0.25));
}



.legal-links {
  position: fixed;
  left: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 20;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  font-size: 0.95rem;
  font-weight: 500;
}

.legal-links a {
  color: #743279;
  text-decoration: none;
}

.legal-links a:hover {
  color: #EA6374;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal-links span {
  color: #743279;
  opacity: 0.5;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 999;

  display: none;

  width: 100%;
  height: 100vh;
  height: 100svh;

  background: #fbf7f8;
  color: #743279;
  overflow-y: auto;
}

.legal-modal:target {
  display: block;
}

.legal-modal__inner {
  width: min(100%, 980px);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}

.legal-modal h2 {
  margin: 0 0 2rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.legal-modal h3 {
  margin: 3rem 0 1.25rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #743279;
}

.legal-modal h4 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.25;
  font-weight: 600;
  color: #743279;
}

.legal-modal ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.legal-modal li {
  margin-bottom: 0.75rem;
}

.legal-modal__content {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.5;
}

.legal-modal__content p {
  margin: 0 0 1.5rem;
}

.legal-modal__close {
  position: fixed;
  top: clamp(1.5rem, 3vw, 3rem);
  right: clamp(1.5rem, 3vw, 3rem);

  width: 3rem;
  height: 3rem;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #EA6374;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
}

.legal-modal__close:hover {
  background: #743279;
}

@media (max-width: 768px) {
  .hero {
    display: block;
    min-height: auto;
    overflow: visible;
  }

  .hero__logo {
    position: relative;
    top: auto;
    left: auto;
    z-index: 10;

    display: block;
    padding: 1.25rem 1.25rem 0.75rem;
  }

  .hero__logo img {
    width: min(52vw, 210px);
    height: auto;
  }

  .hero__content {
    display: block;
    padding: 2.25rem 1.5rem 5.75rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.25rem);
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: -0.04em;
  }

  .hero__subtitle {
    margin-top: 1.25rem;
    max-width: none;
    font-size: clamp(1.1rem, 4.4vw, 1.25rem);
    line-height: 1.35;
  }

  .hero__media {
    position: relative;
    min-height: 0;
    overflow: visible;
  }

  .hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
    object-position: center;
  }

  .hero__badge-link {
    position: absolute;
    top: -4rem;
    left: 1.5rem;
    z-index: 10;

    display: block;
    width: 155px;

    transform: none;
    text-decoration: none;
  }

  .hero__badge-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.25s ease, filter 0.25s ease;
  }

  .hero__badge-link:hover .hero__badge-image {
    transform: scale(1.04);
    filter: drop-shadow(0 1.25rem 2rem rgba(80, 25, 85, 0.25));
  }

  .hero__info {
    padding: 3.5rem 1.5rem 2rem;
    font-size: clamp(1.15rem, 4vw, 1.15rem);
    line-height: 1.4;
  }

  .hero__info p {
    margin: 0 0 1.5rem;
  }

  .legal-links {
    position: static;
    z-index: auto;

    display: flex;
    gap: 0.5rem;

    padding: 0 1.5rem 2rem;
    background: #fbf7f8;

    font-size: clamp(1rem, 4.3vw, 1.2rem);
  }
}

@media (max-width: 768px) {
  .legal-links {
    left: 1.5rem;
    bottom: 1.25rem;
    font-size: 0.9rem;
  }

  .legal-modal__inner {
    padding: 5rem 1.5rem 3rem;
  }

  .legal-modal__close {
    top: 1.25rem;
    right: 1.25rem;
  }
}
