.home-page {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(96px + env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px)) max(48px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: homeBgIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes homeBgIn {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.88) 55%, rgba(10, 10, 10, 0.95) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
}

.home-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af37;
  font-weight: 700;
}

.home-hero h1 {
  margin: 0 0 16px;
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(1.85rem, 8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: #f5f5f7;
}

.home-hero__lead {
  margin: 0 auto 32px;
  max-width: 560px;
  color: #a1a1a6;
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  line-height: 1.6;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(180px, 100%);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #0a0a0a;
}

.btn--outline {
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
}

@media (max-width: 640px) {
  .home-hero {
    padding-top: calc(80px + env(safe-area-inset-top, 0px));
    align-items: flex-end;
    padding-bottom: max(56px, env(safe-area-inset-bottom, 0px));
  }

  .home-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .home-hero__actions .btn {
    width: 100%;
  }
}
