:root {
  --bg: #fff6f2;
  --surface: #fffdf9;
  --text: #231a22;
  --muted: #6c5f69;
  --accent: #d85d8b;
  --accent-soft: #ffd5e6;
  --line: #ebd9e2;
  --shadow: 0 18px 45px rgba(91, 28, 58, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 185, 210, 0.28), transparent 40%),
    radial-gradient(circle at 90% 8%, rgba(255, 226, 179, 0.3), transparent 45%),
    radial-gradient(circle at 80% 95%, rgba(216, 93, 139, 0.18), transparent 35%),
    var(--bg);
  min-height: 100vh;
}

.background-glow {
  position: fixed;
  inset: auto -25% -25% auto;
  width: min(68vw, 780px);
  height: min(68vw, 780px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 93, 139, 0.25), rgba(216, 93, 139, 0) 70%);
  pointer-events: none;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3.5rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 1.5vw + 0.95rem, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.brand img {
  width: clamp(1.5rem, 1.2vw + 1.1rem, 2.1rem);
  height: clamp(1.5rem, 1.2vw + 1.1rem, 2.1rem);
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(216, 93, 139, 0.22);
}

.brand span {
  color: var(--accent);
}

.pill {
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(120deg, #d85d8b, #f09651);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  box-shadow: 0 14px 30px rgba(216, 93, 139, 0.25);
  transition: transform 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
}

.hero {
  margin-top: 3.2rem;
  max-width: 820px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

h1 {
  margin: 0.4rem 0 1rem;
  line-height: 1.08;
  font-size: clamp(2.15rem, 6vw, 4.95rem);
}

.accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.22em;
  background: var(--accent-soft);
  z-index: -1;
}

.lead {
  color: var(--muted);
  margin: 0;
  max-width: 70ch;
  font-size: clamp(1rem, 0.3vw + 0.96rem, 1.25rem);
}

.countdown {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.time-box {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.95rem 0.8rem;
  text-align: center;
}

.time-value {
  display: block;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  font-weight: 800;
  color: var(--text);
}

.time-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

.claims {
  margin-top: 1.4rem;
  margin-bottom: 0;
  padding-left: 1.15rem;
  color: var(--text);
}

.claims li {
  margin-bottom: 0.55rem;
}

.notify {
  margin-top: 3.4rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fffefb, #fff7fb);
  padding: 1.35rem 1.35rem 1.1rem;
  max-width: 760px;
  box-shadow: var(--shadow);
}

.notify h2 {
  margin: 0;
  font-size: 1.35rem;
}

.notify p {
  margin: 0.35rem 0 0.95rem;
  color: var(--muted);
}

.notify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.notify-form input,
.notify-form button {
  font: inherit;
}

.notify-form input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.82rem;
  background: #fff;
}

.notify-form button {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(120deg, #d85d8b, #f09651);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.notify small {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
}

.ritual {
  margin-top: 4rem;
}

.ritual-head {
  max-width: 820px;
  margin-bottom: 1rem;
}

.ritual-head h2 {
  margin: 0.45rem 0 0.65rem;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.6rem);
  line-height: 1.15;
}

.ritual-head p {
  color: var(--muted);
  margin: 0;
}

.ritual-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  margin-top: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ritual-card:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.ritual-card:nth-child(even) .ritual-media {
  order: 2;
}

.ritual-card:nth-child(even) .ritual-copy {
  order: 1;
}

.ritual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(91, 28, 58, 0.18);
}

.ritual-media {
  min-height: 240px;
  background: #f2e5ec;
}

.ritual-media img,
.ritual-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ritual-copy {
  padding: 1.1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ritual-copy .step {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.ritual-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.23rem;
}

.ritual-copy p {
  margin: 0;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 768px) {
  .page {
    padding: 1.1rem 0.9rem 2.3rem;
  }

  .hero {
    margin-top: 1.8rem;
  }

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

  .notify-form {
    grid-template-columns: 1fr;
  }

  .ritual-card,
  .ritual-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .ritual-card:nth-child(even) .ritual-media,
  .ritual-card:nth-child(even) .ritual-copy {
    order: unset;
  }

  .ritual-media {
    min-height: 220px;
  }
}
