/* ── Hero section ─────────────────────────────────────── */

.section--hero {
  max-width: none;
  min-height: 100vh;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Pull up behind sticky nav */
  margin-top: calc(-1 * var(--nav-height));
  /* Hero is above the fold — show immediately, no scroll reveal */
  opacity: 1;
  transform: none;
}

/* ── Background image ────────────────────────────────── */

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Light desaturation only — let golden hour warmth come through */
  filter: saturate(0.7) brightness(0.85);
}


/* ── Content ─────────────────────────────────────────── */

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: calc(var(--nav-height) + 48px) 24px 120px;
  text-align: center;
}

.hero__headline {
  font-family: var(--font-headline);
  font-size: 4.5rem;
  line-height: 1.05;
  color: var(--warm-cream);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero__subhead {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--warm-cream);
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  border-radius: 9999px;
  background: var(--wheat-gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.hero__cta:hover {
  background-color: #b8923e;
  transform: translateY(-1px);
}

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

/* ── Scroll indicator ────────────────────────────────── */

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.5;
  animation: hero-bounce 2s ease-in-out infinite;
}

.hero__scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--warm-cream);
  border-bottom: 2px solid var(--warm-cream);
  transform: rotate(45deg);
}

.hero__scroll-chevron:first-child {
  opacity: 0.4;
  margin-bottom: -10px;
}

@keyframes hero-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll {
    animation: none;
  }
}

/* ── Mobile ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero__content {
    padding: calc(var(--nav-height) + 32px) 16px 100px;
  }

  .hero__headline {
    font-size: 2.75rem;
  }

  .hero__subhead {
    font-size: 1.125rem;
    margin-bottom: 32px;
  }

  .hero__cta {
    width: 100%;
    height: 52px;
  }

  .hero__scroll {
    bottom: 24px;
  }
}
