:root {
  --navy: #0f1f3d;
  --navy-soft: #1d3461;
  --gold: #c8992e;
  --gold-light: #e3c47e;
  --bg: #faf8f4;
  --card-bg: #ffffff;
  --text: #14213d;
  --text-muted: #5c6478;
  --border: #e7e2d8;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.blob-1 {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle at center, var(--gold-light), transparent 70%);
}

.blob-2 {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle at center, var(--navy-soft), transparent 70%);
  opacity: 0.15;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 24px;
}

.site-header {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: flex-start;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--navy);
  border: 1.5px solid var(--gold);
  padding: 6px 10px;
  border-radius: 8px;
}

.brand-name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

.hero {
  flex: 1;
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 0 40px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--navy);
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--navy-soft);
  margin: 0 0 28px;
}

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 48px;
}

.countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-unit {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  min-width: 84px;
  box-shadow: 0 8px 24px rgba(15, 31, 61, 0.06);
}

.countdown-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.signup-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form input[type="email"] {
  flex: 1 1 240px;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.signup-form input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 153, 46, 0.18);
}

.signup-form button {
  padding: 15px 26px;
  border-radius: 10px;
  border: none;
  background: var(--navy);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.signup-form button:hover {
  background: var(--navy-soft);
}

.signup-form button:active {
  transform: translateY(1px);
}

.signup-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.form-message.success { color: #1b7a4d; }
.form-message.error { color: #c1402f; }

.site-footer {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy {
  margin: 0;
}

.footer-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--gold);
}

@media (max-width: 480px) {
  .countdown-unit { min-width: 68px; padding: 14px 14px; }
  .countdown-value { font-size: 24px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-contact { flex-direction: column; gap: 6px; }
}
