.hero {
  height: 100svh;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
  background: #d6c9b8;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #d6c9b8;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Shown only when no real image is present */
.hero__bg-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero__bg-placeholder .ph-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: rgba(107, 101, 96, 0.5);
  text-align: center;
}

/* Abstract decorative lines for placeholder */
.hero__bg-placeholder::before {
  content: '';
  width: 80px;
  height: 1px;
  background: rgba(107, 101, 96, 0.3);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.10) 50%,
    rgba(0, 0, 0, 0.00) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    text-align: left;
  }
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 100;
  font-style: normal;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--color-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 251, 255, 0.65);
  margin-bottom: var(--space-md);
}

.hero__cta {
  margin-top: var(--space-md);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253, 251, 255, 0.45);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollIndicatorFade 2s ease infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  animation: scrollBounce 1.5s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

@keyframes scrollIndicatorFade {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
