/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(4rem,8vw,6rem) clamp(2rem,8vw,7rem);
  gap: 5rem; min-height: 100svh;
}
@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5rem 2rem 5rem;
    gap: 2.5rem;
  }
}

.hero-eyebrow {
  display: block; font-size: .68rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.06; color: var(--text-dark);
}
.hero-title em { font-style: italic; color: var(--rose); }

.hero-sub {
  font-weight: 200; font-size: .95rem;
  color: var(--text-light); letter-spacing: .22em; margin-top: 1.5rem;
}

.hero-divider {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--petal), transparent);
  margin: 1.8rem 0;
}
@media (max-width: 700px) { .hero-divider { margin: 1.5rem auto; } }

/* Polaroid hero photo */
.hero-photo-wrap { position: relative; display: flex; justify-content: center; }

.polaroid-hero {
  background: #fff8f5;
  padding: 1.1rem 1.1rem 3.4rem;
  box-shadow: 0 20px 60px rgba(180,90,80,.14), 0 4px 12px rgba(180,90,80,.08);
  transform: rotate(-1.5deg);
  transition: transform .4s;
  max-width: 340px; width: 100%; cursor: pointer;
}
.polaroid-hero:hover { transform: rotate(0deg) scale(1.02); }
.polaroid-hero img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  filter: sepia(.06) brightness(1.03) saturate(1.1);
}
.polaroid-caption {
  text-align: center; margin-top: .85rem;
  font-family: 'Dancing Script', cursive;
  color: var(--text-light); font-size: 1.05rem;
}

.scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  font-size: .66rem; letter-spacing: .35em;
  color: var(--text-light);
  animation: bounce 2.8s ease-in-out infinite; opacity: .5;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
