/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial light */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 40%,
    rgba(139, 37, 53, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Reserve space for the fixed logo — height set by JS after image load */
.hero-logo-placeholder {
  width: 380px;
  height: 380px; /* fallback, overridden by JS */
  flex-shrink: 0;
  visibility: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  max-width: 600px;
  line-height: 1.6;
  opacity: 0; /* animated by JS */
}

.hero-tagline em {
  font-style: normal;
  color: var(--red);
}

.hero-divider {
  opacity: 0; /* animated by JS */
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0; /* animated by JS */
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  transform-origin: top;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-logo-placeholder {
    width: 260px;
    /* height auto-set by JS */
  }
}
