/* ==========================================================================
   Prompt CPA — Design System
   ========================================================================== */

:root {
  --ink: #17241F;
  --ink-soft: #4B564F;
  --ink-faint: #7C8981;
  --bg: #FAF8F3;
  --surface: #FFFFFF;
  --surface-alt: #F1EEE5;
  --line: #E4E0D4;
  --accent: #1F4B3F;
  --accent-dark: #142F27;
  --accent-soft: #E7EFE9;
  --gold: #B8863E;
  --gold-soft: #F5EBDA;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -25px rgba(23, 36, 31, 0.35);
  --shadow-sm: 0 8px 20px -12px rgba(23, 36, 31, 0.25);
  --max: 1140px;
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { padding-left: 0; list-style: none; margin: 0; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 96px 0; }
@media (max-width: 780px) {
  section { padding: 64px 0; }
}

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }
.btn-block { width: 100%; }

/* ---------- Seasonal deadline bar (temporary — remove after 10/15/2026) ---------- */
.deadline-bar {
  background: var(--accent-dark);
  color: #fff;
  font-size: 14px;
}
.deadline-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.deadline-bar span { color: #fff; }
.deadline-bar strong { font-weight: 600; white-space: nowrap; }
.deadline-bar .db-cta {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
}
.deadline-bar .db-cta:hover { border-bottom-color: #fff; }
@media (max-width: 480px) { .deadline-bar { font-size: 13px; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .mark {
  height: 34px;
  width: auto;
  display: block;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--ink); }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 8px 28px 20px;
}
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-nav.open { display: flex; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  margin-bottom: 20px;
}
.hero .eyebrow-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero p.lead {
  font-size: 18px;
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-row { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-row span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-row span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-card {
  background: var(--accent-dark);
  border-radius: var(--radius);
  padding: 42px 36px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card .badge {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 24px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-card .badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-card h3 { color: #fff; font-size: 21px; margin-bottom: 10px; }
.hero-card p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 22px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px; }
.hero-stats .num { font-family: var(--font-display); font-size: 26px; color: var(--gold-soft); }
.hero-stats .label { font-size: 12.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
}

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.service-card .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 15px; margin-bottom: 18px; }
.service-card ul { margin-bottom: 22px; }
.service-card li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 7px 0 7px 20px;
  position: relative;
  border-top: 1px solid var(--line);
}
.service-card li:first-child { border-top: none; }
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.service-card .card-link { font-size: 14px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link:hover { color: var(--accent-dark); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Band / dark section ---------- */
.band {
  background: var(--accent-dark);
  color: #fff;
}
.band .section-head h2, .band .section-head p { color: #fff; }
.band .kicker { color: var(--gold-soft); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 40px; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.testimonial-card p.quote { font-size: 15.5px; color: var(--ink); margin-bottom: 20px; }
.testimonial-card .who { font-size: 14px; }
.testimonial-card .who strong { display: block; color: var(--ink); }
.testimonial-card .who span { color: var(--ink-faint); font-size: 13px; }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA panel ---------- */
.cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  box-shadow: var(--shadow-sm);
}
.cta-panel h2 { font-size: 1.9rem; }
.cta-form { display: grid; gap: 14px; }
.cta-form input, .cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  resize: vertical;
}
.cta-form input:focus, .cta-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 4px; }
.form-result { font-size: 14px; font-weight: 600; margin-top: 6px; }
.form-result.is-success { color: var(--accent); }
.form-result.is-error { color: #B34B3C; }
.contact-form-card .form-result.is-success { color: var(--gold-soft); }
.contact-form-card .form-result.is-error { color: #F3A79A; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

@media (max-width: 900px) {
  .cta-panel { grid-template-columns: 1fr; padding: 36px 26px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--accent-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,0.7); font-size: 14.5px; }
.footer-grid a:hover { color: #fff; }
.footer-links li { margin-bottom: 10px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

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

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--accent-dark);
  color: #fff;
  padding: 64px 0 56px;
}
.page-header .kicker { color: var(--gold-soft); }
.page-header h1 { color: #fff; font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 60ch; font-size: 17px; margin: 0; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Pricing ---------- */
.pricing-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  margin-bottom: 32px;
}
.pricing-block-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 28px;
}
.pricing-block-head h3 { font-size: 24px; margin-bottom: 6px; }
.price-tag {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  white-space: nowrap;
}
.price-tag span { font-size: 14px; color: var(--ink-faint); font-family: var(--font-body); display: block; font-weight: 500; }
.pricing-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.pricing-cols h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); margin-bottom: 16px; }
.pricing-cols li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.pricing-cols li:first-child { border-top: none; }
.pricing-cols li strong { color: var(--ink); }

@media (max-width: 780px) {
  .pricing-block { padding: 28px 22px; }
  .pricing-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- About ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about-portrait {
  background: var(--accent-dark);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  color: #fff;
  position: sticky;
  top: 110px;
  overflow: hidden;
}
.about-portrait .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold-soft);
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-prose h3 { font-size: 21px; margin-top: 32px; }
.about-prose p { font-size: 16px; }
.credentials-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.credential-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-portrait { position: static; aspect-ratio: 16/10; }
}

/* ---------- Insights / Resources cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.post-card .tag {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 14px;
}
.post-card h3 { font-size: 21px; margin-bottom: 12px; }
.post-card p { font-size: 15px; flex: 1; }
.post-card .card-link { font-size: 14px; font-weight: 600; color: var(--accent); margin-top: 14px; }
.post-card .card-link:hover { color: var(--accent-dark); }

.post-card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.post-card-foot .card-link { margin-top: 0; }
.post-card-date {
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

/* ---------- Article byline / dateline ---------- */
/* Scoped to .page-header so it beats the `.page-header p` intro-paragraph rule. */
.page-header .post-meta {
  margin: 2px 0 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.01em;
}
.post-meta-sep { margin: 0 9px; }
.post-meta-updated { font-style: italic; }

/* ---------- Insights filtering ---------- */
.insights-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chips .chip {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.filter-chips .chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chips .chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.filter-chips .chip[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.chip-count { opacity: 0.6; margin-left: 6px; font-weight: 500; }
.insights-count { font-size: 13.5px; color: var(--ink-faint); margin: 0; }
.insights-empty { color: var(--ink-faint); margin: 0; }
.insights-more { display: flex; justify-content: center; margin-top: 36px; }

@media (max-width: 780px) {
  .insights-toolbar { margin-bottom: 24px; }
  .insights-count { display: none; }
  .post-card-foot { margin-top: 16px; padding-top: 14px; }
  /* Keep the chips to a single swipeable row rather than a wall of pills. */
  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 2px;
  }
  .filter-chips::-webkit-scrollbar { display: none; }
  .filter-chips .chip { flex: 0 0 auto; }
}

@media (max-width: 780px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* ---------- Resource feature ---------- */
.resource-feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.resource-feature .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  flex-shrink: 0;
}
.resource-feature h3 { font-size: 19px; margin-bottom: 6px; }
.resource-feature p { margin: 0; font-size: 14.5px; }

@media (max-width: 700px) {
  .resource-feature { grid-template-columns: 1fr; text-align: left; }
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 20px;
}
.contact-info-card .row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.contact-info-card .row:first-child { border-top: none; padding-top: 0; }
.contact-info-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info-card .row strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-info-card .row span, .contact-info-card .row a { font-size: 14.5px; color: var(--ink-soft); }
.contact-info-card .row a:hover { color: var(--accent); }
.contact-form-card {
  background: var(--accent-dark);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
}
.contact-form-card h2 { color: #fff; font-size: 22px; }
.contact-form-card p { color: rgba(255,255,255,0.7); font-size: 14.5px; }
.contact-form-card label { font-size: 13px; color: rgba(255,255,255,0.7); display: block; margin-bottom: 6px; }
.contact-form-card .field { margin-bottom: 18px; }
.contact-form-card input, .contact-form-card textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
}
.contact-form-card input::placeholder, .contact-form-card textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form-card input:focus, .contact-form-card textarea:focus { outline: 1.5px solid var(--gold); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ---------- Article ---------- */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: 1.5rem; margin-top: 2em; }
.article-body p, .article-body li { font-size: 16.5px; color: var(--ink-soft); }
.article-body ul { list-style: disc; padding-left: 22px; margin-bottom: 1.2em; }
.article-body li { padding: 4px 0; }
.article-body strong { color: var(--ink); }
.article-meta { display: flex; gap: 16px; align-items: center; font-size: 13.5px; color: var(--ink-faint); margin-bottom: 10px; }
table.pay-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14.5px; }
table.pay-table th, table.pay-table td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
table.pay-table th { background: var(--surface-alt); font-family: var(--font-body); font-weight: 600; }
.callout {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 15px;
  color: var(--ink);
  margin: 24px 0;
}
.callout strong { color: var(--accent); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 28px; }
.back-link:hover { color: var(--accent-dark); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
