:root {
  --ink: #17221c;
  --muted: #5f6d65;
  --paper: #f7f3eb;
  --panel: #fffdf8;
  --line: #ddd6c8;
  --accent: #7b4f2c;
  --accent-dark: #5f391e;
  --soft: #eee6d8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 235, .92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.01em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-weight: 700;
}
.status-pill {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: .82rem;
  color: var(--muted);
}
.hero { padding: 108px 0 96px; max-width: 940px; }
.eyebrow, .kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .77rem;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin-top: 0;
}
h1 {
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  letter-spacing: -.055em;
  margin: 18px 0 28px;
  max-width: 1000px;
}
h2 { font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.65rem; margin-bottom: 12px; }
.hero-copy {
  max-width: 760px;
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  color: var(--muted);
}
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.button {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
}
.button:hover { background: var(--accent-dark); }
.text-link { text-decoration: none; font-weight: 700; }
.feature-section { padding: 64px 0 100px; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  min-height: 250px;
}
.feature-number { display: block; color: var(--accent); font-size: .82rem; font-weight: 800; margin-bottom: 46px; }
.feature-card p, .section-copy, .status-card > p, .fine-print, .site-footer p { color: var(--muted); }
.process-section {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
}
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.process-section .section-copy { color: #c6cfc9; }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.process-list li > span { color: #cbb49f; font-weight: 800; }
.process-list strong { font-size: 1.08rem; }
.process-list p { margin: 4px 0 0; color: #c6cfc9; }
.status-section { padding: 96px 0; }
.status-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px;
  align-items: end;
}
.status-card h2 { margin-bottom: 0; }
.site-footer { border-top: 1px solid var(--line); padding: 42px 0 30px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 24px; align-items: start; }
.footer-wrap p { margin: 5px 0 0; }
.footer-links a { color: var(--muted); }
.fine-print { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 22px; font-size: .84rem; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1120px); }
  .hero { padding: 72px 0 64px; }
  .feature-grid, .process-grid, .status-card { grid-template-columns: 1fr; }
  .process-grid { gap: 34px; }
  .status-card { gap: 20px; padding: 30px; }
  .feature-card { min-height: auto; }
  .feature-number { margin-bottom: 28px; }
  .footer-wrap { flex-direction: column; }
}
