/* ---------- Tokens ---------- */
:root {
  --navy:        #0F2645;
  --navy-deep:   #0a1a31;
  --ink:         #1a1f2b;
  --text:        #2a2f3a;
  --muted:       #5d6573;
  --line:        #E5E1DA;
  --bg:          #FFFFFF;
  --bg-alt:      #F7F5F2;
  --bg-warm:     #FAF7F2;
  --accent:      #B8893D;        /* warm brass — used sparingly */
  --accent-deep: #8E6826;
  --tick:        #2D6A4F;

  --container: 1180px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15,38,69,.06), 0 1px 1px rgba(15,38,69,.04);
  --shadow-md: 0 8px 24px rgba(15,38,69,.08), 0 2px 6px rgba(15,38,69,.05);
  --shadow-lg: 0 20px 50px rgba(15,38,69,.12), 0 6px 14px rgba(15,38,69,.06);

  --serif: Georgia, "Times New Roman", "Times", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent-deep); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.18;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
h5 { font-size: .95rem; text-transform: none; }

p { margin: 0 0 1em; }
ul { padding-left: 1.1rem; }

.container { width: 100%; max-width: var(--container); padding: 0 28px; margin: 0 auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin: 0 0 .9rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 10px 16px; font-size: .92rem; }
.btn-lg { padding: 18px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 4px;
  background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
  letter-spacing: .02em;
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 1.15rem;
}
.brand-sub {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--muted);
}

.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a {
  color: var(--ink); font-size: .94rem; font-weight: 500;
}
.primary-nav a:hover { color: var(--accent-deep); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.phone-link {
  font-weight: 600; font-size: .92rem; color: var(--ink);
}

@media (max-width: 960px) {
  .primary-nav { display: none; }
}
@media (max-width: 600px) {
  .phone-link { display: none; }
  .header-inner { gap: 10px; }
  .brand-sub { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(1200px 600px at -10% -20%, rgba(184,137,61,.07), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(15,38,69,.06), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-top: .2rem; }
.lede { font-size: 1.18rem; color: var(--text); max-width: 38ch; }
.lede .strike { text-decoration: line-through; color: var(--muted); margin-right: 4px; }
.guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.guarantee-mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--tick); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.hero-ctas {
  margin-top: 28px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* Hero visual — PDF report mock */
.hero-visual { display: flex; justify-content: center; }
.report-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 460px;
  padding: 22px 26px 18px;
  transform: rotate(-1.2deg);
  position: relative;
  font-size: .9rem;
}
.report-mock::before {
  content: "";
  position: absolute; inset: -14px -14px auto auto;
  width: 88px; height: 88px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: -1;
  opacity: .12;
}
.report-mock-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.report-mock-logo {
  width: 30px; height: 30px; border-radius: 4px;
  background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700;
}
.report-mock-title {
  font-family: var(--serif); color: var(--navy); font-weight: 600;
}
.report-mock-body { padding: 16px 0 8px; }
.report-mock-row {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--text);
  padding: 4px 0;
}
.report-mock-row .dots {
  flex: 1; border-bottom: 1px dotted var(--line); height: 0; transform: translateY(-3px);
}
.report-mock-body hr { border: none; border-top: 1px solid var(--line); margin: 10px 0; }
.report-mock-table { font-size: .86rem; }
.report-mock-table .row {
  display: grid; grid-template-columns: 1fr 60px 70px;
  gap: 8px; padding: 6px 0;
  border-bottom: 1px solid #f1efe9;
}
.report-mock-table .row.head {
  font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: .08em; font-size: .72rem;
  border-bottom: 1px solid var(--line);
}
.report-mock-table .row span:nth-child(2),
.report-mock-table .row span:nth-child(3) { text-align: right; }
.report-mock-footer {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: var(--muted);
  padding-top: 12px; margin-top: 8px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 44px 0 36px; }
  .report-mock { transform: none; max-width: 420px; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 18px 0;
}
.trust-grid {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 14px 28px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 500; font-size: .94rem;
}
.tick {
  color: var(--tick); font-weight: 700;
}

@media (max-width: 760px) {
  .trust-grid { justify-content: flex-start; }
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { margin-bottom: 48px; }
.section-head h2 { margin-bottom: .25em; }
.section-lede {
  color: var(--muted); font-size: 1.08rem; max-width: 60ch; margin: 0 auto;
}

/* Benefit list */
.benefit-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  text-align: left;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500; color: var(--ink);
}
.benefit-list li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--tick); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  line-height: 1;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: .35em; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Features ---------- */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(15,38,69,.06);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1rem; margin-bottom: .4em; }
.feature p { color: var(--muted); margin: 0; font-size: .96rem; }

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- Sample report ---------- */
.sample-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 40px;
}
.sample-page {
  margin: 0;
  display: flex; flex-direction: column;
}
.sample-page figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}
.page-thumb {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 0.77 / 1;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  font-size: .72rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.page-thumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.page-thumb.cover {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #fff 60%, var(--bg-warm) 100%);
}
.page-thumb.cover .page-brand {
  font-family: var(--serif);
  color: var(--navy); font-weight: 700;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  width: 70%;
}
.page-thumb.cover h4 {
  font-size: .95rem; line-height: 1.25; margin: 0 0 10px;
}
.page-thumb.cover p { margin: 0; color: var(--muted); font-size: .72rem; }
.page-thumb.cover .meta { margin-top: 18px; font-size: .68rem; }

.page-thumb h5 {
  font-size: .78rem;
  color: var(--navy);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.thumb-table { font-size: .64rem; }
.thumb-table .thumb-row {
  display: grid; grid-template-columns: 24px 1fr 30px 44px;
  gap: 4px; padding: 4px 0;
  border-bottom: 1px solid #f1efe9;
  color: var(--text);
}
.thumb-table .thumb-row.head {
  font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: .06em; font-size: .56rem;
}
.thumb-table .thumb-row span:nth-child(3),
.thumb-table .thumb-row span:nth-child(4) { text-align: right; }
.thumb-table .thumb-row span:nth-child(2) {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.thumb-bars { display: flex; flex-direction: column; gap: 10px; }
.bar-row {
  display: grid; grid-template-columns: 56px 1fr 42px;
  align-items: center; gap: 6px;
  font-size: .62rem; color: var(--text);
}
.bar {
  height: 8px; border-radius: 99px; background: #efe9dc; position: relative; overflow: hidden;
}
.bar::after {
  content: ""; position: absolute; inset: 0; width: var(--w, 60%);
  background: linear-gradient(90deg, var(--navy), #1d4373);
  border-radius: 99px;
}
.bar-row .val { text-align: right; color: var(--muted); }

.thumb-summary {
  display: flex; flex-direction: column;
  gap: 6px; font-size: .68rem;
}
.thumb-summary > div {
  display: flex; justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dotted var(--line);
  color: var(--text);
}
.thumb-summary .total {
  border-bottom: none;
  border-top: 2px solid var(--navy);
  margin-top: 6px; padding-top: 8px;
  font-weight: 700; color: var(--navy);
}
.thumb-summary + .note {
  margin-top: 10px; font-size: .62rem; color: var(--muted); font-style: italic;
}

@media (max-width: 900px) { .sample-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sample-grid { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; } }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: "\201C";
  position: absolute; top: 6px; left: 18px;
  font-family: var(--serif); font-size: 4rem; line-height: 1;
  color: rgba(15,38,69,.08);
}
.testimonial blockquote { margin: 0 0 16px; padding: 0; }
.testimonial p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.06rem; line-height: 1.5; color: var(--ink);
  margin: 0;
}
.testimonial figcaption {
  display: flex; flex-direction: column;
  font-size: .9rem;
}
.testimonial .author { font-weight: 600; color: var(--navy); }
.testimonial .loc { color: var(--muted); font-size: .85rem; }

@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ---------- Pricing ---------- */
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pricing-head {
  background: var(--navy);
  color: #fff;
  padding: 38px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.pricing-head h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.price {
  display: flex; align-items: baseline; gap: 12px;
  margin: 0 0 .4em;
}
.price-was {
  text-decoration: line-through;
  color: rgba(255,255,255,.55);
  font-size: 1.3rem;
}
.price-now {
  font-family: var(--serif);
  font-size: 3.4rem; font-weight: 700;
  line-height: 1;
}
.price-note { color: rgba(255,255,255,.7); font-size: .92rem; margin: 0; }

.pricing-list {
  list-style: none; padding: 38px 36px 0;
  margin: 0;
}
.pricing-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.pricing-list li:last-of-type { border-bottom: none; }
.pricing-list li::before {
  content: "✓"; color: var(--tick); font-weight: 700;
  position: absolute; left: 0; top: 10px;
}

.pricing-guarantee {
  margin: 24px 36px 24px;
  padding: 18px 20px;
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}
.pricing-guarantee h4 { color: var(--navy); margin-bottom: .35em; font-size: 1rem; }
.pricing-guarantee p { margin: 0; color: var(--ink); font-size: .94rem; }

.pricing-card .btn-block { margin: 0 36px 36px; width: calc(100% - 72px); }

@media (max-width: 760px) {
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-head { padding: 30px 28px; }
  .pricing-list { padding: 28px 28px 0; }
  .pricing-guarantee { margin: 20px 28px; }
  .pricing-card .btn-block { margin: 0 28px 28px; width: calc(100% - 56px); }
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.08rem;
  display: flex; align-items: center; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--muted);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--text);
}

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: center;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.about-copy h2 { margin-top: .1em; }
.about-copy .mission {
  padding: 18px 22px;
  background: #fff;
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  margin: 20px 0 28px;
  color: var(--ink);
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo img { max-width: 380px; margin: 0 auto; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.78); max-width: 56ch; margin: 0 auto 24px; font-size: 1.08rem; }
.final-cta .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.final-cta .btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.74);
  padding: 56px 0 24px;
  font-size: .94rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .brand-mark { background: #fff; color: var(--navy); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.6); }
.footer-blurb { color: rgba(255,255,255,.6); max-width: 32ch; margin: 0; }
.site-footer h5 {
  color: #fff; font-family: var(--sans);
  font-size: .82rem;
  text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
  margin-bottom: 14px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { padding: 4px 0; color: rgba(255,255,255,.74); }
.footer-list a { color: rgba(255,255,255,.74); }
.footer-list a:hover { color: #fff; }

.footer-bottom { padding-top: 24px; }
.footer-bottom small { color: rgba(255,255,255,.5); }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Legal pages (privacy, terms) ---------- */
.legal-hero {
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(15,38,69,.06), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 36px;
}
.legal-hero .eyebrow { margin-bottom: .7rem; }
.legal-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin: 0 0 .35em; }
.legal-hero p { margin: 0; color: var(--muted); }

.prose-section { padding: 56px 0 88px; }
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
}
.prose h2 {
  font-size: 1.35rem;
  margin: 2em 0 .55em;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: .4em;
}
.prose h3 { font-size: 1.05rem; margin: 1.6em 0 .4em; }
.prose p { color: var(--text); margin: 0 0 1em; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1em; }
.prose li { margin-bottom: .4em; color: var(--text); }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--accent-deep); }
.prose strong { color: var(--ink); }
.prose-back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 40px;
  font-size: .95rem;
  font-weight: 500;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
