:root {
  --background: #0b0b0b;
  --overlay: rgba(11, 11, 11, 0.6);
  --text: #f7f6f3;
  --text-muted: rgba(247, 246, 243, 0.78);
  --text-faint: rgba(247, 246, 243, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("bojanc-capital-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(8%) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.45) 0%, var(--overlay) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.75rem 1.5rem;
  text-align: left;
}

.hero__content > * {
  width: 100%;
  max-width: 65ch;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}

.hero__title--stacked {
  margin-top: 0.2rem;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 1.75rem 0;
}

.divider__line {
  height: 1px;
  width: 2.75rem;
  background: var(--text-faint);
}

.hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero__sublead {
  margin: 0.75rem 0 0;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.7;
  color: rgba(247, 246, 243, 0.68);
}

.hero__cta {
  margin-top: 2rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  color: var(--text);
  text-decoration: none;
  text-decoration-line: underline;
  text-decoration-color: var(--text-faint);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: transparent;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.cta__icon {
  width: 0.95rem;
  height: 0.95rem;
}

.cta:hover,
.cta:focus-visible {
  text-decoration-color: var(--text);
}

.cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(247, 246, 243, 0.35), 0 0 0 6px rgba(11, 11, 11, 0.8);
  border-radius: 999px;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(11, 11, 11, 0) 0%, rgba(11, 11, 11, 0.5) 100%);
}

@media (max-width: 960px) {
  .hero__content {
    padding: 4rem 1.5rem;
  }

  .hero__content > * {
    max-width: 58ch;
  }
}

@media (max-width: 720px) {
  .hero__content {
    padding: 3.5rem 1.25rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.25rem);
  }

  .hero__divider {
    margin: 1.5rem 0;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__sublead {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero__content > * {
    max-width: 100%;
  }

  .hero__title {
    letter-spacing: -0.01em;
  }

  .cta {
    font-size: 0.85rem;
  }

  .hero__bg {
    background-position: center 20%;
  }
}
