/* ===== DESIGN TOKENS ===== */
:root {
  color-scheme: light;
  --cream: #f5f0eb;
  --ink: #1a1a1a;
  --red: #b91c1c;
  --muted: #6b7280;
  --rule: #d6cfc7;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
.serif { font-family: var(--serif); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.15s;
}
.btn-primary:hover { background: #991b1b; }

.btn-ghost {
  display: inline-block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ===== NAV ===== */
.editorial-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.2s;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--red); }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 1px;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.75; }

/* ===== HERO ===== */
.hero-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

/* ===== STEPS ===== */
.step-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 20px;
}

/* ===== FORM ===== */
.form-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 40px;
}

.field-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.field-input {
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--cream);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s;
}
.field-input:focus { border-color: var(--red); }

/* Select arrow */
select.field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ===== CHECKLIST ===== */
.dash-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dash-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #444;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.6;
}
.dash-list li:first-child { border-top: 1px solid var(--rule); }
.dash-list li::before {
  content: '—';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== HERO FADE-IN ===== */
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.65s ease-out forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
  h1 { font-size: 2.2rem !important; }
}
