/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */

#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 8vw 80px;
  position: relative;
}

.hero-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(0);
  transform-origin: top center;
  width: 1px;
  height: 60%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border) 20%,
    var(--border) 80%,
    transparent
  );
  opacity: 0.5;
}

.hero-left {
  max-width: 520px;
}

.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

.hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 400px;
  opacity: 0;
}

.hero-desc.personalized {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.0rem, 1.6vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.7;
  color: var(--deep);
  letter-spacing: 0.01em;
}

.invite-family {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0 0 6px;
  animation: inviteFamilyGlow 3.5s ease-in-out infinite;
}

.invite-tagline {
  display: block;
  font-style: italic;
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.invite-tagline--below {
  margin-bottom: 0;
  margin-top: 4px;
}

@keyframes inviteFamilyGlow {
  0%, 100% {
    text-shadow: none;
  }
  50% {
    text-shadow:
      0 0 18px rgba(196, 164, 114, 0.45),
      0 0 40px rgba(196, 164, 114, 0.18);
  }
}

/* ── Hero Right (Photo) ── */
.hero-right {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
}

.hero-photo {
  width: 100%;
  margin-left: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.hero-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(0.95);
}

.hero-photo-bw {
  filter: grayscale(1) contrast(1.1) brightness(0.95) !important;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #50401E 0%, #3A2D18 40%, #2E2310 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--muted);
}

.event-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #D8CABB;
  color: var(--charcoal);
  padding: 24px 20px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.7;
}
