header,
.hero {
  position: relative;
  z-index: 2;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;

  height: var(--header-height);

  padding: 12px 20px 16px;

  background: transparent;
}

.logo {
  width: min(200px, 42vw);
  height: auto;
  display: block;
}

.hero {
  position: relative;

  min-height: calc(100vh - var(--header-height));

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 0 20px 70px;

  overflow: hidden;

  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
  user-select: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.26) 34%,
    rgba(0, 0, 0, 0) 60%
  );
}

.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 22px;

  width: 100%;

  text-align: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 210px;

  padding: 15px 30px;

  border-radius: 999px;

  background: rgba(215, 174, 120, 0.92);
  color: #fffaf3;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.cta:hover {
  background: rgba(223, 184, 133, 0.98);
  border-color: rgba(255, 255, 255, 0.28);

  transform: translateY(-2px);

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cta:active {
  transform: translateY(0);
}

.cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;

  gap: 6px;

  color: rgba(246, 241, 234, 0.72);

  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.scroll-down:hover {
  opacity: 1;
  transform: translateY(2px);
}

.scroll-down i {
  font-size: 1.1rem;
  color: rgba(215, 174, 120, 0.9);
}