/* Component-specific overrides and decorative details */

.hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 720ms ease forwards;
}

.hero__copy > *:nth-child(2) { animation-delay: 120ms; }
.hero__copy > *:nth-child(3) { animation-delay: 240ms; }
.hero__copy > *:nth-child(4) { animation-delay: 360ms; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card--hotel .card__media,
.card--venue .card__media {
  aspect-ratio: 4 / 3;
}

.card--couple .card__media {
  aspect-ratio: 3 / 4;
}

.card--party .card__media {
  aspect-ratio: 3 / 4;
}

.rule {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(191, 168, 130, 0.5), transparent);
  margin: 28px 0;
}

.section-callout {
  border-left: 2px solid var(--accent-gold);
  padding-left: 18px;
  color: var(--text-main);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  background: rgba(255,255,255,0.65);
}

.quote-block {
  padding: 26px 28px;
  border: 1px solid rgba(191, 168, 130, 0.45);
  background: rgba(255,255,255,0.72);
}

.quote-block p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.35;
  font-style: italic;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
