/* Calligraphy enhancement: fuller, classic wedding lettering while preserving the existing palette and motion. */
.intro h1 {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: clamp(76px, 12.5vw, 170px);
  line-height: .78;
  gap: 12px;
  letter-spacing: .01em;
}

.intro h1 em {
  margin: 2px 0;
}

/* The added inset lets the tall calligraphic flourishes render fully while the writing reveal plays. */
.hero { overflow: visible; }
.names {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: clamp(98px, 15vw, 190px);
  line-height: .69;
  padding: .18em .06em .24em;
  margin: -.18em 0 -.24em;
  letter-spacing: .01em;
}

.names span {
  padding: .17em .2em .24em;
  margin: -.17em -.2em -.24em;
  clip-path: none;
  opacity: 0;
  transform: translateY(14px) scale(.94);
  transform-origin: center;
  animation: names-reveal 1.45s cubic-bezier(.2,.7,.2,1) forwards;
}

.names span:last-child {
  animation-delay: 1.35s;
}

.names i {
  margin: 20px 0;
}

.closing-names {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: 75px;
  line-height: .8;
}

@keyframes names-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 650px) {
  .intro h1 { font-size: 28vw; line-height: .8; }
  .names { font-size: 23vw; line-height: .72; }
}
