:root {
  --paper: #fbf3e6;
  --berry: #7b3a50;
  --teal: #3fa8a0;
  --ink: #2e2a28;
  --muted: #5a534e;
  --border: #f0e4d2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 36px 24px;
}

.content {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: min(46vw, 340px);
  height: auto;
  margin-bottom: 4px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--berry);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.15;
}

h1 span {
  color: var(--teal);
  font-family: "Caveat", cursive;
  font-size: 1.25em;
  font-weight: 700;
}

.intro {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.countdown-card {
  min-width: 72px;
  padding: 10px 8px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(123, 58, 80, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-card strong {
  color: var(--berry);
  font-size: 26px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.countdown-card span {
  margin-top: 3px;
  color: #9c8e82;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--berry);
  box-shadow: 0 10px 24px rgba(123, 58, 80, .25);
  color: #fff8ef;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.instagram:hover {
  transform: translateY(-2px);
  background: #652f42;
  box-shadow: 0 14px 28px rgba(123, 58, 80, .3);
}

.copyright {
  margin: 24px 0 0;
  color: #b4a79a;
  font-size: 12px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb--teal {
  top: -120px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, #3fa8a0, transparent 70%);
  opacity: .35;
  animation: float-one 14s ease-in-out infinite;
}

.orb--coral {
  right: -120px; bottom: -140px;
  width: 480px; height: 480px;
  background: radial-gradient(circle at 60% 40%, #f17f6b, transparent 70%);
  opacity: .35;
  animation: float-two 16s ease-in-out infinite;
}

.orb--gold {
  top: 8%; right: 10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, #f2b84b, transparent 70%);
  opacity: .3;
  animation: float-three 12s ease-in-out infinite;
}

.orb--pink {
  bottom: 12%; left: 8%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, #f2879e, transparent 70%);
  opacity: .3;
  animation: float-three 13s ease-in-out infinite reverse;
}

@keyframes float-one {
  50% { transform: translate(20px, -30px) rotate(8deg); }
}

@keyframes float-two {
  50% { transform: translate(-25px, 25px) rotate(-6deg); }
}

@keyframes float-three {
  50% { transform: translate(15px, 20px); }
}

@media (max-width: 560px) {
  .page { padding: 28px 16px; }
  .logo { width: min(82vw, 320px); }
  .eyebrow { font-size: 10px; letter-spacing: .22em; }
  h1 { font-size: clamp(27px, 8.2vw, 38px); }
  .intro { font-size: 14px; }
  .countdown { width: 100%; gap: 7px; justify-content: center; }
  .countdown-card { min-width: 0; width: 22%; padding: 9px 4px; }
  .countdown-card strong { font-size: 21px; }
  .countdown-card span { font-size: 8px; letter-spacing: .08em; }
  .orb--gold { right: -80px; }
}

@media (max-height: 680px) and (min-width: 561px) {
  .page { padding-block: 18px; }
  .logo { width: 260px; }
  .eyebrow { margin-bottom: 10px; }
  .intro { margin-bottom: 16px; }
  .countdown { margin-bottom: 16px; }
  .copyright { margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .instagram { transition: none; }
}
