:root {
  --bg-1: #fff7ed;
  --bg-2: #ffe4e6;
  --bg-3: #f8fafc;

  --text: #1e293b;
  --muted: #475569;
  --muted-2: #64748b;

  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-600: #e11d48;
  --amber-50: #fffbeb;
  --amber-200: #fde68a;

  --white-glass: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.75);
  --border-soft: rgba(226, 232, 240, 0.8);

  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.06);

  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, var(--bg-1), var(--bg-2) 45%, var(--bg-3) 100%);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.card {
  border-radius: var(--radius-xl);
}

.glass {
  position: relative;
  overflow: hidden;
  background: var(--white-glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero,
.schedule,
.notes,
.closing {
  padding: 2rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-copy h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 680;
  color: #0f172a;
}

.subtitle {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--rose-600);
  font-weight: 600;
  vertical-align: middle;
}

.lead {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge {
  margin-bottom: 1rem;
  background: var(--rose-50);
  border: 1px solid #fecdd3;
  color: #be123c;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.pill.dark {
  background: #0f172a;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.pill.light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.soft-card {
  border-radius: 1.75rem;
  border: 1px solid #ffe4e6;
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 50%, #fffbeb 100%);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-2);
}

.accent {
  color: var(--rose-600);
}

.includes-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.terms {
  margin-top: 1.5rem;
  border-radius: 1rem;
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem;
}

.terms-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #fff;
}

.schedule {
  margin-top: 2rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-head h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.1;
  color: #0f172a;
}

.section-text {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.days-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.day-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.day-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.day-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.day-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-2);
}

.day-title {
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #0f172a;
}

.day-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border-radius: 1rem;
  background: var(--rose-100);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
}

.day-items {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.day-items li {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.day-items li::before {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.58rem;
  border-radius: 999px;
  flex: 0 0 0.45rem;
  background: var(--rose-400);
}

.footer-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.notes {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.notes-kicker {
  color: #d97706;
}

.notes-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.notes-list p,
.closing p {
  margin: 0;
}

.closing {
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-md);
  color: #f8fafc;
}

.closing-kicker {
  color: #fda4af;
}

.closing-text {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.5;
  font-weight: 700;
}

.closing-sign {
  margin-top: 1rem;
  color: #cbd5e1;
}

.blob {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
}

.blob-top {
  top: -2rem;
  right: -2rem;
  background: rgba(253, 164, 175, 0.45);
}

.blob-bottom {
  left: -2rem;
  bottom: -2rem;
  background: rgba(253, 230, 138, 0.45);
}

@media (min-width: 860px) {
  .container {
    width: min(1200px, calc(100% - 3rem));
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }

  .hero,
  .schedule,
  .notes,
  .closing {
    padding: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .section-head {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
  }

  .section-text {
    text-align: right;
  }

  .days-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .days-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, 1200px);
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .hero,
  .schedule,
  .notes,
  .closing {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

  .soft-card,
  .day-card {
    border-radius: 1.25rem;
  }

  .hero-copy h1 {
    line-height: 1.03;
  }

  .subtitle {
    display: block;
    margin-top: 0.5rem;
    margin-left: 0;
  }

  .lead,
  .section-text,
  .day-items li,
  .notes-list {
    font-size: 0.98rem;
  }

  .day-title {
    font-size: 1.1rem;
  }

  .day-emoji {
    width: 2.7rem;
    height: 2.7rem;
    flex-basis: 2.7rem;
    font-size: 1.35rem;
  }
}
