:root {
  --bg: #fbfaf7;
  --ink: #1c2233;
  --muted: #5c6478;
  --accent: #c8102e;
  --line: #e2dfd6;
  --card: #ffffff;
  --card-line: #e9e6dd;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Serif 4", "Iowan Old Style", Charter, Georgia, serif;
  min-height: 100vh;
}

.newa { font-family: "Noto Sans Newa", serif; }

::selection { background: var(--accent); color: var(--bg); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.mast, .hero, .values, .sect, footer {
  max-width: 68rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mast {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--ink);
}
.mark { font-size: 1.15rem; font-weight: 400; font-family: "Rozha One", "Iowan Old Style", Georgia, serif; }
.mast nav { display: flex; gap: 1.75rem; font-family: system-ui, sans-serif; font-size: 0.85rem; }
.mast a { color: var(--muted); text-decoration: none; font-weight: 600; }
.mast a:hover { color: var(--accent); }

.hero { position: relative; padding-top: 5rem; padding-bottom: 4rem; overflow: hidden; }
.ghost {
  position: absolute;
  right: -1rem;
  top: 0.5rem;
  font-size: clamp(7rem, 19vw, 13rem);
  line-height: 1.15;
  color: rgba(200, 16, 46, 0.08);
  user-select: none;
  pointer-events: none;
  font-weight: 700;
}
.eyebrow {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
h1 {
  margin-bottom: 1.75rem;
  font-size: clamp(2.4rem, 5.6vw, 3.9rem);
  line-height: 1.14;
  font-family: "Rozha One", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  max-width: 17ch;
  text-wrap: balance;
}
h1 em { font-style: normal; color: var(--accent); }
.lede { max-width: 58ch; font-size: 1.2rem; line-height: 1.7; color: var(--muted); margin-bottom: 2.5rem; }
.lede strong { color: var(--ink); font-weight: 600; }

.cta { display: flex; gap: 1rem; flex-wrap: wrap; font-family: system-ui, sans-serif; }
.btn { padding: 0.8rem 1.5rem; font-weight: 700; font-size: 0.92rem; text-decoration: none; border-radius: 0.6rem; }
.btn.primary { background: var(--ink); color: var(--bg); }
.btn.primary:hover { background: var(--accent); }
.btn.ghost-btn { color: var(--ink); border: 1px solid var(--ink); }
.btn.ghost-btn:hover { color: var(--accent); border-color: var(--accent); }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  border-top: 1px solid var(--line);
}
.values h3 {
  margin-bottom: 0.6rem;
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.values p { font-size: 0.98rem; line-height: 1.65; color: var(--muted); }

.sect { padding-top: 1rem; padding-bottom: 4rem; }
.sect > h2 {
  font-size: 1.55rem;
  font-weight: 400;
  font-family: "Rozha One", "Iowan Old Style", Georgia, serif;
  margin: 1.5rem 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 1rem;
  padding: 1.75rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.15s ease;
}
.card:hover { border-color: var(--accent); }
.status {
  font-family: system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.status.live { color: #1a7f4b; }
.status.early { color: var(--accent); }
.status.soon { color: var(--muted); }
.card h3 { font-size: 1.25rem; font-weight: 400; font-family: "Rozha One", "Iowan Old Style", Georgia, serif; }
.card p { font-family: system-ui, sans-serif; font-size: 0.88rem; line-height: 1.6; color: var(--muted); flex: 1; }
.links {
  display: flex;
  gap: 1.2rem;
  padding-top: 1rem;
  margin-top: 0.35rem;
  border-top: 1px solid var(--line);
  font-family: system-ui, sans-serif;
}
.links a { color: var(--accent); font-size: 0.84rem; font-weight: 700; text-decoration: none; }
.links a:hover { text-decoration: underline; }
.links .off { color: var(--muted); font-size: 0.84rem; }

footer {
  border-top: 2px solid var(--ink);
  padding-top: 1.5rem;
  padding-bottom: 5rem;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a { color: var(--accent); text-decoration: none; font-weight: 600; }

.notfound { padding-top: 6rem; padding-bottom: 6rem; }
.notfound .code {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

@media (max-width: 860px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero { padding-top: 3rem; }
}
