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

/* ─── Tokens ─────────────────────────────────────────────────────── */
:root {
  --cream:    #FAF8F5;
  --amber:    #C8861A;
  --charcoal: #1A1714;
  --serif:    'DM Serif Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
}

/* ─── Base ───────────────────────────────────────────────────────── */
html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--sans);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 640px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ─── Header ─────────────────────────────────────────────────────── */
.wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.9;
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tagline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.subhead {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.6);
  max-width: 480px;
}

/* ─── Features ───────────────────────────────────────────────────── */
.features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(250, 248, 245, 0.08);
}

.feature-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.5);
  max-width: 480px;
}

/* ─── Waitlist ───────────────────────────────────────────────────── */
.waitlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.waitlist-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 15px;
  background: rgba(250, 248, 245, 0.06);
  border: 1px solid rgba(250, 248, 245, 0.15);
  border-radius: 6px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input[type="email"]::placeholder {
  color: rgba(250, 248, 245, 0.3);
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--amber);
}

.waitlist-form button {
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  background: var(--amber);
  color: var(--charcoal);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.waitlist-form button:hover  { opacity: 0.88; }
.waitlist-form button:disabled { opacity: 0.5; cursor: not-allowed; }

.success-message {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.7);
}

.error-message {
  font-size: 14px;
  color: #e07070;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer p {
  font-size: 12px;
  color: rgba(250, 248, 245, 0.3);
  font-style: italic;
}

/* ─── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { gap: 40px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }
}
