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

:root {
  --site-header-height: 5.75rem;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: calc(100dvh - var(--site-header-height, 5.75rem));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.hero__inner {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__visual {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero__photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.hero__tagline {
  margin: 0;
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #a0a0a0;
  line-height: 1.45;
}

.hero__headline {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 32ch;
}

.hero__secondary {
  margin: 0;
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  font-weight: 400;
  color: #a0a0a0;
  line-height: 1.55;
  max-width: 48ch;
}

.hero__cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #000000;
  background: #ffffff;
  text-decoration: none;
  border-radius: 0;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero__cta:hover {
  opacity: 0.92;
}

.hero__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero__photo {
    max-width: min(320px, 70vw);
  }

  .hero__content {
    align-items: flex-start;
  }

  .hero__headline {
    max-width: none;
  }
}
