.registration-invite {
  width: min(880px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--blush);
  color: var(--ink);
  box-shadow: 0 24px 100px #0006;
  overflow: auto;
}
.registration-invite::backdrop { background: #141214bd; backdrop-filter: blur(6px); }
html.invite-open { overflow: hidden; }
.invite-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.invite-photo { position: relative; min-height: 100%; background: var(--wine); }
.invite-photo img { width: 100%; height: 100%; position: absolute; object-position: 48% center; }
.invite-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, #320b20d9); }
.invite-photo-caption { position: absolute; z-index: 1; bottom: 30px; left: 28px; right: 28px; color: white; font: 400 36px/1 var(--display); }
.invite-copy { position: relative; min-width: 0; padding: 44px 36px 28px; }
.invite-close { position: absolute; right: 10px; top: 10px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--blush); color: var(--wine); font: 30px/1 var(--body); }
.invite-eyebrow { color: var(--wine); font-size: 11px; font-weight: 700; letter-spacing: .16em; margin-bottom: 20px; }
.invite-copy h2 { font-size: clamp(42px, 4.5vw, 58px); line-height: .98; margin-bottom: 18px; }
.invite-copy h2 span { color: var(--wine); }
#invite-description { font-size: 15px; line-height: 1.6; }
.invite-details { margin: 22px 0; padding: 16px 0; border-block: 1px solid #5c133326; }
.invite-details time { color: var(--wine); font-size: 19px; font-weight: 700; }
.invite-details time span { white-space: nowrap; font-size: 15px; }
.invite-details p { font-size: 12px; margin-top: 4px; }
.invite-register { display: flex; justify-content: space-between; gap: 16px; width: 100%; background: var(--wine); color: white; padding: 16px 22px; }
.invite-register:hover { background: #421026; }
.invite-note { margin-top: 10px; font-size: 11px; text-align: center; color: var(--gray); }
.invite-later { display: block; margin: 16px auto 0; padding: 8px; border: 0; background: transparent; color: var(--wine); text-decoration: underline; text-underline-offset: 4px; font-size: 13px; }
@media (max-width: 640px) {
  .invite-layout { grid-template-columns: minmax(0, 1fr); }
  .invite-photo { min-height: 160px; }
  .invite-photo img { object-position: center 42%; }
  .invite-photo-caption { bottom: 16px; left: 24px; font-size: 28px; }
  .invite-copy { padding: 24px; }
  .invite-close { top: 8px; right: 8px; }
  .invite-eyebrow { margin-bottom: 12px; }
  .invite-copy h2 { font-size: 42px; }
  .invite-details { margin: 16px 0; padding: 12px 0; }
}
@media (prefers-reduced-motion: no-preference) {
  .registration-invite[open] { animation: invite-appear .25s ease-out; }
  @keyframes invite-appear { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
}
