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

:root {
  --bg:        #F5F0E8;
  --gold:      #C4963A;
  --dark:      #0F0E0D;
  --taupe:     #6B5F50;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html, body {
  height: 100dvh;
  overflow: hidden;
}

body {
  background: var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.page {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 24px;
}

/* Logo */
.logo {
  height: 48px;
  width: auto;
  opacity: 0.88;
}

/* Coming Soon */
.coming-soon {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 56px;
}

.cd-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cd-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
}

.cd-sep {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  padding-bottom: 20px;
}

/* Launch date */
.launch-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Mobile */
@media (max-width: 480px) {
  .page { gap: 24px; }
  .logo { height: 32px; }
  .cd-item { min-width: 40px; gap: 4px; }
  .cd-sep { padding-bottom: 14px; }
  .countdown { gap: 6px; }
}
