:root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  --ink: #25191a;
  --muted: #62595a;
  --page: #fffdf9;
  --surface: #fff;
  --line: #eadfdc;
  --header: #8e1116;
  --accent: #a20f17;
  --link: #b51a22;
  --radius: 0.75rem;
  --shadow: 0 0.45rem 1.25rem rgba(67, 19, 19, 0.08);
  color: var(--ink);
  background: var(--page);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.55;
  background: var(--page);
}
a { color: var(--link); text-decoration: none; font-weight: 700; }
a:hover { text-decoration: underline; color: var(--accent); }
.wrap { width: min(1100px, 92vw); margin: 0 auto; }
.site-header {
  background: var(--header);
  color: #fff;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
}
.site-header .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand { color: #fff !important; font-weight: 800; text-decoration: none !important; }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem; }
.site-nav a { color: #fff !important; font-weight: 600; text-decoration: none !important; opacity: 0.92; }
.site-nav a:hover { opacity: 1; text-decoration: underline !important; }
main.wrap { flex: 1; padding: 2.5rem 0 3.5rem; }
.eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}
.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}
.lede { margin: 0; max-width: 36rem; color: var(--muted); font-size: 1.05rem; }
.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.4rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none !important;
  font-weight: 400;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover {
  border-color: #d4b8b4;
  transform: translateY(-2px);
  text-decoration: none !important;
}
.card h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink);
}
.card p {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.98rem;
}
.cta {
  font-weight: 700;
  color: var(--link);
  font-size: 0.95rem;
}
.card:hover .cta { color: var(--accent); text-decoration: underline; }
.site-footer {
  padding: 1.25rem clamp(1rem, 4vw, 4rem) 1.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}
