:root {
  --marigold: #ffb21f;
  --saffron: #f36f21;
  --vermillion: #bd2842;
  --lotus: #ffe5d1;
  --ink: #3b1f15;
  --cream: #fff8ec;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Poppins", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 178, 31, 0.35), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(189, 40, 66, 0.22), transparent 30rem),
    var(--cream);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%);
  background-size: 58px 58px;
  opacity: 0.28;
}

.invitation-shell {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero-card,
.details-card,
.story-chapter {
  border: 1px solid rgba(189, 40, 66, 0.16);
  box-shadow: 0 24px 70px rgba(87, 41, 10, 0.14);
  background: rgba(255, 248, 236, 0.88);
  backdrop-filter: blur(10px);
}

.hero-card {
  display: grid;
  place-items: center;
  min-height: 78vh;
  padding: 56px 28px;
  text-align: center;
  border-radius: 36px;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--vermillion);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ganesha-mark {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin-bottom: 18px;
  color: var(--cream);
  font-family: "Marcellus", serif;
  font-size: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--vermillion));
  box-shadow: 0 18px 36px rgba(189, 40, 66, 0.28);
}

h1,
h2 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.primary-action {
  display: inline-flex;
  margin-top: 32px;
  padding: 14px 28px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vermillion), var(--saffron));
}

.story-path {
  display: grid;
  gap: 24px;
  margin: 40px 0;
}

.story-chapter {
  position: relative;
  padding: 34px;
  border-radius: 28px;
}

.story-chapter::before {
  content: "🍯";
  position: absolute;
  right: 28px;
  top: 22px;
  font-size: 2rem;
}

.story-chapter.highlighted {
  color: white;
  background: linear-gradient(135deg, var(--vermillion), #7e2031);
}

.chapter-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--saffron);
  font-weight: 800;
  letter-spacing: 0.2em;
}

.highlighted .chapter-number {
  color: var(--marigold);
}

.story-chapter p,
.details-card p {
  max-width: 760px;
  line-height: 1.8;
}

.details-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 28px;
  padding: 36px;
  border-radius: 32px;
}

.event-details {
  display: grid;
  gap: 18px;
  margin: 0;
}

.event-details div {
  padding: 16px;
  border-radius: 18px;
  background: var(--lotus);
}

.event-details dt {
  color: var(--vermillion);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-details dd {
  margin: 6px 0 0;
  font-weight: 700;
}

@media (max-width: 720px) {
  .invitation-shell {
    width: min(100% - 20px, 1120px);
    padding: 20px 0;
  }

  .hero-card {
    min-height: auto;
  }

  .details-card {
    grid-template-columns: 1fr;
  }
}
