/* Static SEO landing pages — shared styles (matches main site tokens) */
:root {
  --bg: #F4EFE8; --bg-2: #E8DDD0;
  --ink: #1F1A17; --ink-2: #4A3F38; --muted: #8B7B6E;
  --accent: #C8956D; --accent-deep: #8B5A3C;
  --line: rgba(31,26,23,0.14);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-sans: "DM Sans", -apple-system, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
.sp-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.sp-logo { font-family: var(--font-display); font-style: italic; font-size: 22px; text-decoration: none; }
.sp-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.sp-links a { text-decoration: none; opacity: 0.7; }
.sp-links a:hover, .sp-links a[aria-current="page"] { opacity: 1; }
h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 7vw, 64px); line-height: 1.02;
  letter-spacing: -0.02em; margin: 56px 0 12px;
}
h1 em { font-style: italic; }
.sp-lede { font-family: var(--font-display); font-style: italic; font-size: clamp(19px, 2.4vw, 24px); color: var(--ink-2); margin: 0 0 40px; line-height: 1.35; }
h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 36px); letter-spacing: -0.01em;
  margin: 48px 0 14px;
}
h2 em { font-style: italic; }
p { color: var(--ink-2); max-width: 64ch; }
ul { color: var(--ink-2); padding-left: 22px; }
li { margin-bottom: 6px; }
.sp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 44px 0 0; }
.sp-btn {
  display: inline-block; padding: 15px 28px; border-radius: 999px;
  background: var(--ink); color: var(--bg); text-decoration: none;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.sp-btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.sp-btn:hover { background: var(--accent-deep); color: var(--bg); }
.sp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin: 40px 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sp-stat .n { font-family: var(--font-display); font-style: italic; font-size: 40px; line-height: 1; color: var(--accent-deep); }
.sp-stat .k { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.sp-card { border: 1px solid var(--line); border-radius: 4px; padding: 26px 28px; margin: 18px 0; background: rgba(255,255,255,0.25); }
.sp-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 24px; margin: 0 0 8px; }
.sp-card .rate { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--accent-deep); }
.sp-foot { margin-top: 72px; padding: 28px 0 48px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sp-foot a { color: var(--ink-2); }
