:root {
  --bg-overlay: rgba(2, 48, 33, 0.8);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --accent: #eb1986;
  --max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

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

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page {
  min-height: 100svh;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-overlay);
}

.hero__content {
  position: relative;
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: clamp(24px, 6vw, 117px);
  padding-block: clamp(56px, 10vh, 120px);
  transform: translateY(clamp(88px, 7vh, 100px));
}

.hero__meta {
  margin: 0 0 16px 0;
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 24px);
  letter-spacing: 0;
  line-height: 1.25;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__dot {
  color: var(--accent);
  line-height: 1;
}

.hero__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.hero__title {
  margin: 0;
  font-family: Platypi, Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero__desc {
  margin: 14px 0 0 0;
  max-width: 679px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .hero__content {
    text-align: center;
  }

  .hero__meta {
    justify-content: center;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__desc {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-img {
    transform: none;
  }
}