/* ProbateAudit.ai: one stylesheet, no external dependencies.
   The site wears the report's brand: navy, Georgia, the RAG accents.
   No web fonts (system Georgia matches the report), no trackers, no cookies. */

:root {
  --navy: #1B2A4A;
  --navy-deep: #14203A;
  --ink: #1A1A1A;
  --grey: #555F6D;
  --line: #D8DDE5;
  --panel: #F2F4F7;
  --cream: #FAF7F2;
  --red: #CC3333;
  --amber: #E6960D;
  --green: #2E8B57;
  --white: #FFFFFF;
  --max: 1060px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  background: var(--white);
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

a { color: var(--navy); }
a:hover { color: var(--navy-deep); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy);
  color: #fff; padding: 8px 16px; z-index: 100;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px; gap: 16px; flex-wrap: wrap;
}
.wordmark {
  text-decoration: none; color: var(--navy);
  font-weight: bold; letter-spacing: 0.28em; font-size: 15px;
  white-space: nowrap;
}
.wordmark .ai { color: var(--grey); letter-spacing: 0.1em; }
nav.primary { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
nav.primary a {
  text-decoration: none; color: var(--grey); font-size: 15px;
}
nav.primary a:hover, nav.primary a[aria-current="page"] { color: var(--navy); }
nav.primary a[aria-current="page"] { border-bottom: 2px solid var(--navy); padding-bottom: 2px; }
.btn {
  display: inline-block; background: var(--navy); color: #fff !important;
  padding: 11px 22px; text-decoration: none; border-radius: 3px;
  font-size: 15px; letter-spacing: 0.02em;
}
.btn:hover { background: var(--navy-deep); }
.btn--ghost {
  background: transparent; color: var(--navy) !important;
  border: 1px solid var(--navy);
}
.btn--ghost:hover { background: var(--panel); }

/* Hero */
.hero { background: var(--navy); color: #fff; padding: 72px 0 64px; }
.hero .eyebrow { color: #B9C3D6; }
.hero h1 {
  font-size: clamp(30px, 4.6vw, 46px); line-height: 1.12;
  font-weight: bold; margin: 10px 0 22px; max-width: 17em;
}
.hero p.lead { font-size: 19px; max-width: 36em; color: #E7EBF2; margin-bottom: 14px; }
.hero .actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn { background: #fff; color: var(--navy) !important; }
.hero .btn:hover { background: var(--panel); }
.hero .btn--ghost { background: transparent; color: #fff !important; border-color: #8794AC; }

/* Sections */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px;
  color: var(--grey); display: block;
}
section.band { padding: 58px 0; }
section.band--panel { background: var(--panel); }
section.band--cream { background: var(--cream); }
section.band--navy { background: var(--navy); color: #fff; }
section.band--navy .eyebrow { color: #B9C3D6; }
section.band--navy a { color: #fff; }
h2 { font-size: clamp(24px, 3.2vw, 32px); line-height: 1.2; margin: 8px 0 18px; color: var(--navy); }
section.band--navy h2 { color: #fff; }
h3 { font-size: 20px; margin: 26px 0 10px; color: var(--navy); }
p + p { margin-top: 12px; }
.lead { font-size: 19px; }
.measure { max-width: 44em; }

/* Cards and grids */
.grid { display: grid; gap: 22px; margin-top: 26px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 3px solid var(--navy); padding: 22px 22px 18px;
}
.card h3 { margin-top: 0; }
.card p { font-size: 15.5px; color: var(--ink); }
.card .small { font-size: 13.5px; color: var(--grey); margin-top: 10px; }

/* Definition rows (the key) */
.key-row { display: grid; grid-template-columns: 170px 1fr; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.key-row:last-child { border-bottom: 0; }
.key-term { font-weight: bold; letter-spacing: 0.04em; font-size: 15px; }
.key-term.duty { color: var(--navy); }
.key-term.practice { color: var(--navy); }
.key-term.yardstick { color: var(--grey); }
.key-term.met { color: var(--green); }
.key-term.shortfall { color: var(--amber); }
.key-term.serious { color: var(--red); }
.key-row p { font-size: 15.5px; }

/* Steps (how it works) */
.step { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step-num {
  font-size: 30px; font-weight: bold; color: var(--navy);
  border-top: 3px solid var(--navy); padding-top: 8px;
}
.step h3 { margin: 4px 0 8px; }
.step p { font-size: 15.5px; max-width: 46em; }
.step .when { color: var(--grey); font-size: 13.5px; margin-top: 8px; font-style: italic; }

/* Price panel */
.price-panel {
  background: var(--navy); color: #fff; padding: 34px; border-radius: 4px;
  display: flex; gap: 30px; align-items: baseline; flex-wrap: wrap; margin-top: 26px;
}
.price-big { font-size: 54px; font-weight: bold; }
.price-panel .note { color: #C9D2E1; font-size: 15px; max-width: 30em; }
ul.includes { list-style: none; margin-top: 18px; }
ul.includes li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px solid var(--line); font-size: 16px; }
ul.includes li:last-child { border-bottom: 0; }
ul.includes li::before { content: "✓"; position: absolute; left: 4px; color: var(--green); font-weight: bold; }

/* Plain list */
ul.plain { margin: 14px 0 0 20px; }
ul.plain li { margin-bottom: 9px; font-size: 16px; }

/* Callout */
.callout {
  border-left: 4px solid var(--amber); background: #FDF6E7;
  padding: 16px 20px; margin: 26px 0; font-size: 15.5px;
}
.callout--navy { border-left-color: var(--navy); background: var(--panel); }
.callout--green { border-left-color: var(--green); background: #EDF6F1; }
.callout strong.label { letter-spacing: 0.08em; font-size: 13px; text-transform: uppercase; }

/* Table */
table.simple { border-collapse: collapse; width: 100%; margin-top: 20px; font-size: 15px; }
table.simple th { background: var(--navy); color: #fff; text-align: left; padding: 9px 12px; }
table.simple td { border: 1px solid var(--line); padding: 9px 12px; vertical-align: top; }
table.simple tr:nth-child(even) td { background: var(--panel); }

/* Footer */
footer {
  background: var(--navy-deep); color: #B9C3D6; padding: 44px 0 34px;
  font-size: 13.5px; margin-top: 70px;
}
footer .container { display: grid; gap: 18px; }
footer a { color: #DEE5EF; }
footer .foot-nav { display: flex; gap: 18px; flex-wrap: wrap; }
footer .legal { border-top: 1px solid #2C3B5C; padding-top: 18px; line-height: 1.6; }
footer .disclaimer { color: #DEE5EF; }

@media (max-width: 640px) {
  .key-row { grid-template-columns: 1fr; gap: 4px; }
  .step { grid-template-columns: 44px 1fr; }
  .price-big { font-size: 42px; }
}
