:root {
  --bg-0: #0b1020;
  --bg-1: #131a35;
  --gold: #e8c766;
  --gold-soft: #d4af37;
  --ink: #f5f3ee;
  --muted: #aab0c4;
  --line: rgba(232, 199, 102, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, #1b2450 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Soft radiant glow behind the card */
.glow {
  position: fixed;
  top: -20%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 199, 102, 0.16) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

.stage {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  place-items: center;
}

.card {
  width: 100%;
  max-width: 560px;
  text-align: center;
  padding: 56px 44px;
  border-radius: 24px;
  background: rgba(18, 24, 48, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.emblem { margin-bottom: 20px; line-height: 0; }
.emblem img { width: 156px; height: 156px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 14px;
}

.title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 9vw, 68px);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--muted);
  margin-top: 6px;
}

.verse {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 4.2vw, 23px);
  line-height: 1.5;
  color: #e9e6dd;
  margin: 30px auto 0;
  max-width: 30ch;
}

.verse cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.divider {
  width: 64px;
  height: 1px;
  margin: 30px auto;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.times {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.time { display: flex; flex-direction: column; gap: 4px; }

.time .day {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.time .hours {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  color: var(--ink);
}

.time .label { font-size: 13px; color: var(--muted); }

.contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.contact a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact a:hover { color: var(--gold); }

.soon {
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(170, 176, 196, 0.65);
}

@media (max-width: 480px) {
  .card { padding: 44px 26px; }
  .times { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .glow, .card { animation: none; }
}
