:root {
  --bg: #ece7dc;
  --ink: #111418;
  --muted: #3d4248;
  --paper: #f7f3ea;
  --line: #d5cfc2;
  --accent: #8d6b3a;
  --accent-ink: #5c4320;
  --focus: #0b57d0;
  --max: 40rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Source Sans 3", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
}
.skip {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 20;
}
.skip:focus { top: 0.75rem; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.wrap { width: min(70rem, calc(100% - 2rem)); margin-inline: auto; }
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  font-weight: 650;
}
.brand img { width: 40px; height: 40px; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a { color: var(--ink); text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { text-decoration: underline; }
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 0.8rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.4rem; }
.hero {
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  gap: 2.5rem;
  align-items: center;
}
.lede { font-size: 1.28rem; max-width: var(--max); color: var(--muted); margin: 0 0 1.5rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn, .btn-ghost {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  font-weight: 650;
  border-radius: 3px;
}
.btn { background: var(--ink); color: #fff; }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn:focus-visible, .btn-ghost:focus-visible, a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.mark-stage {
  background: var(--ink);
  min-height: 18rem;
  border-radius: 6px;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.mark-stage svg { width: min(16rem, 100%); height: auto; }
section { padding: 3rem 0; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-ink);
  margin: 0 0 0.5rem;
}
.grid-2, .grid-3 { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.card, .case {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.3rem 1.35rem;
}
.card p, .case p { margin: 0; color: var(--muted); }
ol.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
ol.steps li {
  background: var(--paper);
  border-top: 3px solid var(--accent);
  padding: 1.2rem 1.3rem;
}
ol.steps span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.35rem;
}
blockquote {
  margin: 0;
  padding: 1.4rem 1.5rem;
  background: var(--paper);
  border-left: 4px solid var(--accent);
  max-width: 46rem;
}
cite { display: block; margin-top: 0.75rem; font-style: normal; color: var(--muted); }
.family a { color: inherit; text-decoration: none; display: block; }
.family a:hover h3 { text-decoration: underline; }
.soon {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.band { background: var(--ink); color: var(--paper); }
.band .muted { color: #c9c4ba; }
footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .mark-stage { min-height: 14rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
