:root {
  --ink: #14202E;
  --ink-soft: #4A5A6B;
  --paper: #F7F5F1;
  --line: #DED8CE;
  --accent: #B85C38;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* A quiet grid line behind everything, echoing a site plan. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 32, 46, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 32, 46, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.frame {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 28px 32px;
}

/* Wordmark */
.mark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.mark-glyph {
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--accent);
}

.mark-word {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
}

/* Centre stage */
.stage {
  align-self: center;
  max-width: 40ch;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.125rem, 6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.lede {
  margin: 0 0 16px;
  max-width: 46ch;
  font-size: 1.0625rem;
  color: var(--ink-soft);
}

.lede-2 {
  margin: 0 0 36px;
  max-width: 46ch;
  font-size: 1.0625rem;
  color: var(--ink-soft);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 9px 16px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}

@media (prefers-reduced-motion: no-preference) {
  .dot { animation: pulse 2.8s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
  }
}

/* Footer */
.foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

.foot-sep { color: var(--line); }

@media (min-width: 720px) {
  .frame { padding: 56px 48px 40px; gap: 64px; }
}
