
:root {
  --bg: #faf8f5; --bg2: #ffffff; --text: #1a1a1a; --muted: #6b6b6b;
  --accent: #1e3a5f; --accent2: #9a3412; --line: #e8e4de;
  --display: 'Playfair Display', Georgia, serif; --body: 'Karla', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--body); color: var(--text); background: var(--bg);
  line-height: 1.65; font-size: 1.05rem;
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent2); }
.wrap { width: min(1080px, calc(100% - 2.5rem)); margin: 0 auto; }
.site-header {
  border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg2) 88%, transparent);
  backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 20;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; flex-wrap: wrap; }
.brand { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.nav { display: flex; flex-wrap: wrap; gap: .85rem 1.1rem; }
.nav a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.nav a:hover { color: var(--text); }
.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(1200px 500px at 10% -10%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%),
    radial-gradient(900px 400px at 90% 0%, color-mix(in srgb, var(--accent2) 16%, transparent), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1;
  letter-spacing: -0.03em; margin: 0 0 1rem; max-width: 16ch;
}
.hero .lede { font-size: 1.15rem; color: var(--muted); max-width: 42rem; margin: 0; }
.section { padding: 3rem 0; border-bottom: 1px solid var(--line); }
.section h2 { font-family: var(--display); font-size: 1.6rem; margin: 0 0 1rem; letter-spacing: -0.02em; }
.section p.intro { color: var(--muted); max-width: 40rem; }
.guide-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.guide-list li {
  background: var(--bg2); border: 1px solid var(--line); padding: 1.1rem 1.25rem;
}
.guide-list strong { display: block; font-family: var(--display); font-size: 1.15rem; margin-bottom: .35rem; }
.guide-list span { color: var(--muted); font-size: .95rem; }
.badge {
  display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
  padding: .2rem .5rem; margin-bottom: .6rem;
}
.prose { max-width: 42rem; }
.prose h1 { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.15; letter-spacing: -0.02em; }
.prose h2 { font-family: var(--display); margin-top: 2rem; }
.site-footer { padding: 2.5rem 0 3rem; color: var(--muted); font-size: .9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin-bottom: 1rem; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.note { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--accent); padding-left: .9rem; margin: 1.5rem 0; }
.disclaimer { font-size: .85rem; color: var(--muted); margin-top: 1.25rem; }
@media (max-width: 720px) {
  .hero h1 { max-width: none; }
}
