/* aaronsalt.com — uses the Govern Differently palette verbatim, per site-rebuild-brief.md. */

:root {
  --ink: #050709;
  --paper: #FCFDFD;
  --alt-bg: #F4F5F5;
  --border: #D6D8DA;
  --body-copy: #4A4E52;
  --muted: #8C9096;
  --header-border: #1B1F22;

  --teal: #097FAB;
  --teal-hover: #075E7D;
  --wash: #E3F1F6;

  --radius-card: 14px;
  --radius-btn: 10px;
  --max-width: 1160px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); }
body { font-family: 'Assistant', Helvetica, Arial, sans-serif; color: var(--ink); line-height: 1.5; }
h1, h2, h3 { font-family: 'Lora', Georgia, serif; font-weight: 700; letter-spacing: -0.015em; margin: 0; }
p { margin: 0; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-hover); }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: 'Assistant', Helvetica, Arial, sans-serif; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: var(--paper); padding: 12px 20px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); border-bottom: 1px solid var(--header-border); }
.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-badge { width: 34px; height: 34px; border: 2.5px solid var(--teal); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-weight: 700; font-size: 14px; color: var(--teal); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-word { font-family: 'Lora', serif; font-size: 19px; font-weight: 700; color: var(--paper); letter-spacing: -0.01em; }
.logo-tagline { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 700; font-size: 15px; color: var(--muted); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }

.btn { display: inline-block; text-decoration: none; font-weight: 800; border-radius: var(--radius-btn); border: none; cursor: pointer; white-space: nowrap; font-size: 15px; }
.btn-primary { background: var(--teal); color: var(--paper); padding: 11px 22px; }
.btn-primary:hover { background: var(--teal-hover); color: var(--paper); }
.btn-primary.btn-lg { font-size: 17px; padding: 15px 30px; }
.btn-outline-light { background: transparent; color: var(--paper); border: 2px solid #3A3E42; padding: 13px 28px; font-size: 17px; }
.btn-outline-light:hover { border-color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 13px 26px; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-white { background: #FFFFFF; color: var(--ink); border: 2px solid var(--ink); padding: 16px 32px; }
.btn-white:hover { background: var(--ink); color: var(--paper); }

/* ---------- Layout ---------- */
.section { padding-top: 88px; padding-bottom: 88px; }
.section--wash { background: var(--wash); border-top: 1px solid var(--border); }
.section--wash-between { background: var(--wash); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark { background: var(--ink); color: var(--paper); }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card { background: var(--alt-bg); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px; }
.card h3 { font-family: 'Assistant', sans-serif; font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 16px; line-height: 1.55; color: var(--body-copy); }
.card .accent-bar { width: 28px; height: 5px; background: var(--teal); margin-bottom: 18px; }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 96px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero h1 { font-size: 54px; line-height: 1.08; letter-spacing: -0.015em; margin-bottom: 24px; color: var(--paper); }
.hero .lede { font-size: 19px; line-height: 1.6; color: #B9BDC1; margin-bottom: 36px; max-width: 54ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-wrap { width: 100%; aspect-ratio: 4/5; background: var(--alt-bg); border-radius: 18px; padding: 10px; }
.img-slot { background: var(--alt-bg); border: 1px dashed var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; color: var(--muted); font-size: 14px; font-weight: 600; overflow: hidden; height: 100%; }
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot--rounded { border-radius: 16px; }

/* ---------- Guide ---------- */
.guide-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; }
.guide-img { width: 280px; height: 340px; }
.underline-link { font-weight: 800; font-size: 16px; color: var(--ink); border-bottom: 3px solid var(--teal); padding-bottom: 2px; }
.underline-link:hover { color: var(--teal-hover); }

/* ---------- Plan cards ---------- */
.plan-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 30px; border-top: 5px solid var(--teal); }
.plan-card .num { font-size: 13px; font-weight: 800; color: var(--muted); margin-bottom: 12px; }
.plan-card h3 { font-size: 21px; margin-bottom: 10px; color: var(--ink); }
.plan-card p { font-size: 16px; line-height: 1.55; color: var(--body-copy); }

/* ---------- Proof point ---------- */
.proof-point { text-align: center; }
.proof-point .inner { max-width: 960px; margin: 0 auto; padding-top: 96px; padding-bottom: 96px; }
.proof-point .setup { font-size: 17px; line-height: 1.6; color: #B9BDC1; margin: 0 auto 28px; max-width: 62ch; }
.proof-point blockquote { font-family: 'Lora', serif; font-size: 32px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; margin: 0 auto 28px; max-width: 26ch; }
.proof-point .payoff { font-size: 19px; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.proof-point .disclaimer { font-size: 14px; color: var(--muted); }

/* ---------- Stakes ---------- */
.stakes-card { border-radius: var(--radius-card); padding: 36px; }
.stakes-card h3 { font-size: 21px; margin-bottom: 18px; }
.stakes-card ul { display: grid; gap: 10px; font-size: 16px; line-height: 1.5; padding-left: 20px; list-style: disc; }
.stakes-card--muted { border: 1px solid var(--border); background: var(--alt-bg); }
.stakes-card--muted h3 { color: var(--muted); }
.stakes-card--muted ul { color: var(--body-copy); }
.stakes-card--strong { border: 2px solid var(--ink); background: #FFFFFF; }
.stakes-card--strong ul { color: var(--ink); }

/* ---------- Cross-links ---------- */
.crosslink-card { display: block; text-decoration: none; border-radius: var(--radius-card); padding: 32px; transition: transform .15s, box-shadow .15s; }
.crosslink-card:hover { transform: translateY(-3px); }
.crosslink-card--light { background: #FFFFFF; border: 1px solid var(--border); }
.crosslink-card--light:hover { box-shadow: 0 10px 28px rgba(5,7,9,0.08); }
.crosslink-card--dark { background: var(--ink); }
.crosslink-card--dark:hover { box-shadow: 0 10px 28px rgba(5,7,9,0.18); }
.crosslink-card .kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.crosslink-card h3 { font-size: 22px; margin-bottom: 10px; }
.crosslink-card p { font-size: 15px; line-height: 1.55; margin-bottom: 14px; }
.crosslink-card .cta { font-weight: 800; font-size: 14px; }

/* ---------- Page header ---------- */
.page-header h1 { font-size: 50px; letter-spacing: -0.02em; margin-bottom: 18px; max-width: 20ch; }
.page-header .lede { font-size: 19px; line-height: 1.6; color: var(--body-copy); max-width: 60ch; }

/* ---------- Bio ---------- */
.bio-grid { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.bio-photo { width: 360px; height: 440px; position: sticky; top: 108px; }
.belief-card { background: var(--wash); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 32px; margin-bottom: 32px; }
.belief-card h2 { font-size: 20px; margin-bottom: 10px; }
.belief-card p { font-size: 17px; line-height: 1.65; color: var(--body-copy); }
.logo-spine { width: 26px; height: 34px; border: 2.5px solid var(--teal); border-left: 8px solid var(--teal); border-radius: 2px; }

.credential-list { display: grid; gap: 14px; margin-bottom: 32px; }
.credential-item { display: flex; align-items: flex-start; gap: 14px; }
.credential-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 8px; }
.credential-item .text { font-size: 16px; line-height: 1.5; color: var(--ink); }

/* ---------- Speaking ---------- */
.speaking-row { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center; background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 36px; border-left: 6px solid var(--teal); margin-bottom: 20px; }
.speaking-row:last-child { margin-bottom: 0; }
.speaking-row--dark { background: var(--ink); }
.speaking-row .duration { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.speaking-row h2 { font-size: 23px; margin-bottom: 10px; color: var(--ink); }
.speaking-row--dark h2 { color: var(--paper); }
.speaking-row p { font-size: 16px; line-height: 1.6; color: var(--body-copy); }
.speaking-row--dark p { color: #B9BDC1; }

/* ---------- Forms ---------- */
.form-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px; padding: 40px; display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card label { display: grid; gap: 6px; font-size: 14px; font-weight: 700; }
.form-card input, .form-card select, .form-card textarea { padding: 13px 16px; border-radius: var(--radius-btn); border: 1.5px solid var(--border); font-size: 16px; background: var(--paper); }
.form-card textarea { resize: vertical; }
.form-card button { justify-self: start; padding: 15px 26px; font-size: 17px; }
.form-confirm { background: var(--ink); color: var(--paper); border-radius: 18px; padding: 48px; }
.form-confirm h2 { font-size: 26px; margin-bottom: 12px; }
.form-confirm p { font-size: 17px; line-height: 1.6; color: #B9BDC1; }
.form-error { background: #FDECEC; border: 1px solid #E8A9A9; color: #7A1F1F; border-radius: 10px; padding: 14px 16px; font-size: 14px; font-weight: 600; }

.reassurance { display: grid; gap: 14px; }
.reassurance li { display: flex; gap: 12px; font-size: 16px; line-height: 1.5; color: var(--body-copy); }
.reassurance .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 7px; }
.reassurance a { font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 48px; border-bottom: 1px solid var(--header-border); }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-badge { width: 26px; height: 26px; border: 2px solid var(--teal); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-weight: 700; font-size: 11px; color: var(--teal); }
.footer-wordmark { font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: var(--paper); }
.footer-blurb { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 34ch; }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col-title { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.footer-col a { color: var(--paper); font-size: 15px; font-weight: 600; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero, .guide-grid, .grid-3, .grid-2, .bio-grid, .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .guide-img { width: 100%; height: 280px; }
  .bio-photo { width: 100%; height: 320px; position: static; }
  .speaking-row { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 16px 32px; row-gap: 12px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .page-header h1 { font-size: 32px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .footer-top { grid-template-columns: 1fr; }
}
