/* ============================================================
   article.css — informational-content template (Trade-guide)
   Used by /broken-springs and any future /resources/* pages.
   Loaded ONLY on informational pages; site-chrome.css still
   handles the shared header / footer / modal / mobile-CTA / hero
   patterns used elsewhere.
   ============================================================ */

/* ——— Article hero (photo background, breadcrumb, tag pill, h1, dek, author meta) ——— */
.tg-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.tg-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  opacity: 0.85;
}
.tg-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 35%,
    rgba(0,0,0,0.7) 75%,
    rgba(0,0,0,0.92) 100%);
}
.tg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 56px var(--gutter) 48px;
}
.tg-hero .crumbs { margin-bottom: 32px; }
.tg-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 6px 12px;
  font-weight: 700;
  margin-bottom: 24px;
}
.tg-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 78px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  max-width: 18ch;
  color: var(--paper);
  margin: 0 0 20px;
}
.tg-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.tg-hero-dek {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(245,240,232,0.86);
  max-width: 60ch;
  margin: 0 0 32px;
}
.tg-hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245,240,232,0.72);
}
.tg-hero-meta strong { color: var(--paper); font-weight: 600; }
.tg-hero-meta .meta-divider { width: 1px; height: 14px; background: rgba(245,240,232,0.25); }
.tg-hero-meta .author-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
}

/* ——— "In this guide" summary card — overlaps the hero/cream boundary ——— */
.tg-summary-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--ink-line);
  padding: 0 var(--gutter);
}
.tg-summary {
  max-width: 1080px;
  margin: -40px auto 0;
  background: var(--paper);
  border: 1px solid var(--ink-line);
  border-top: 4px solid var(--gold);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  position: relative;
  z-index: 3;
}
.tg-summary-head .label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 10px;
}
.tg-summary-head h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 460;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 12px;
}
.tg-summary-head p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.55;
  margin: 0;
}
.tg-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  counter-reset: sum;
}
.tg-summary-list li {
  counter-increment: sum;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tg-summary-list li::before {
  content: counter(sum, decimal-leading-zero);
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 500;
}
.tg-summary-list a {
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
}
.tg-summary-list a:hover { color: var(--ink); border-bottom-color: var(--gold); }

/* Modifier: takeaway bullets (arrow marker, no counter) */
.tg-summary-list--takeaways { counter-reset: none; }
.tg-summary-list--takeaways li { counter-increment: none; }
.tg-summary-list--takeaways li::before {
  content: "→";
  font-family: var(--display);
  font-style: normal;
  font-size: 16px;
  color: var(--gold-deep);
  font-weight: 500;
  line-height: 1.5;
}

/* ——— Article body (paper background, single narrow column) ——— */
.tg-body {
  padding: 64px var(--gutter) 96px;
  background: var(--paper);
}
.tg-body-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.tg-article {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-family: var(--body);
  margin: 0 auto;
  position: relative;
}
.tg-section {
  scroll-margin-top: 96px;
  margin-bottom: 56px;
  position: relative;
}
.tg-section-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.tg-article h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 18ch;
}
.tg-article h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rust);
  font-weight: 400;
}
.tg-article h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 32px 0 12px;
}
.tg-article p { margin: 0 0 18px; }
.tg-article strong { color: var(--ink); font-weight: 600; }

/* ——— Diagnostic numbered cards (2-col grid, e.g. "5 tell-tale signs") ——— */
.tg-diag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.tg-diag .card {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  padding: 20px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.tg-diag .card.is-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.tg-diag .num {
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.tg-diag .card.is-cta .num { background: var(--gold); color: var(--ink); }
.tg-diag .ttl {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}
.tg-diag .card.is-cta .ttl { color: var(--paper); }
.tg-diag .desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.tg-diag .card.is-cta .desc { color: rgba(245,240,232,0.8); }

/* ——— Side-by-side diagram panel (e.g. torsion vs extension) ——— */
.tg-diagram {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  padding: 32px;
  margin: 32px 0;
}
.tg-diagram .dia-head { margin-bottom: 24px; }
.tg-diagram .dia-head .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 6px;
}
.tg-diagram .dia-head .ttl {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.tg-diagram-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tg-diagram-cols .col-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tg-diagram-cols .col-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 12px;
}
.tg-diagram-cols .col-tag.subdued { color: var(--ink-mute); }
.tg-diagram-cols .col p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.tg-diagram-art {
  height: 100px;
  background: var(--paper);
  border: 1px dashed var(--ink-line);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ——— Vertical step list (numbered, hairline-separated rows) ——— */
.tg-steps {
  margin: 24px 0;
  border-top: 2px solid var(--ink);
}
.tg-step {
  border-bottom: 1px solid var(--ink-line);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.tg-step:last-child { border-bottom: 2px solid var(--ink); }
.tg-step .step-num {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  color: #a47d2a;   /* deeper gold for WCAG AA on cream at large size */
  line-height: 1;
  letter-spacing: -0.02em;
}
.tg-step h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.tg-step p { font-size: 15px; color: var(--ink-mute); line-height: 1.55; margin: 0; }

/* ——— FAQ list (native <details>/<summary>) ——— */
.tg-faq {
  margin: 24px 0;
  border-top: 1px solid var(--ink-line);
}
.tg-faq details {
  border-bottom: 1px solid var(--ink-line);
  padding: 22px 0;
}
.tg-faq summary {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 16px;
  align-items: center;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.tg-faq summary::-webkit-details-marker { display: none; }
.tg-faq summary::before {
  content: "?";
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}
.tg-faq summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold-deep);
  text-align: right;
}
.tg-faq details[open] summary::after { content: "−"; color: var(--rust); }
.tg-faq details p {
  margin: 14px 0 0 38px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
}

/* ============================================================
   Inline conversion modules — sprinkled between article sections
   ============================================================ */

/* "Call us now" inline callout (ink-dark) */
.cc-callout {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-left: 4px solid var(--gold);
}
.cc-callout .cc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.cc-callout .cc-msg {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 460;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--paper);
}
.cc-callout .cc-msg em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.cc-callout .cc-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}
.cc-callout .cc-phone-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cc-callout .cc-phone:hover .cc-phone-num { color: var(--paper); }
.cc-callout .cc-phone-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  font-weight: 600;
  margin-top: 6px;
}

/* Warning callout (rust) */
.cc-warning {
  background: var(--paper);
  border: 1px solid var(--rust);
  border-left: 4px solid var(--rust);
  padding: 20px 24px;
  margin: 28px 0;
}
.cc-warning .cc-warn-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cc-warning .cc-warn-icon {
  width: 16px; height: 16px;
  background: var(--rust);
  color: var(--paper);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--body);
}
.cc-warning p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Tip callout (cream-deep, gold accent) */
.cc-tip {
  background: var(--cream-deep);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
}
.cc-tip .cc-tip-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.cc-tip p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Price block */
.cc-price {
  background: var(--paper);
  border: 1px solid var(--ink-line);
  padding: 24px 28px;
  margin: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.cc-price .cc-price-tag {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cc-price .cc-price-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 6px;
}
.cc-price .cc-price-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* Inline review pull-quote */
.cc-review {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 32px 0;
  margin: 40px 0;
}
.cc-review .cc-review-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 12px;
}
.cc-review blockquote {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 460;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
}
.cc-review .cc-review-attr { font-size: 13px; color: var(--ink-mute); }
.cc-review .cc-review-attr strong { color: var(--ink-soft); font-weight: 600; }

/* Inline trust strip (4 metrics) */
.trust-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--ink-line);
  padding: 24px 0;
  margin: 40px 0;
}
.trust-inline-item {
  text-align: center;
  border-right: 1px solid var(--ink-line);
  padding: 4px 16px;
}
.trust-inline-item:last-child { border-right: 0; }
.trust-inline-num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-inline-num .star { color: var(--gold); font-size: 18px; vertical-align: 2px; margin-left: 2px; }
.trust-inline-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
  font-weight: 600;
}

/* ——— Author bio card ——— */
.author-bio {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  margin: 48px 0;
  align-items: start;
}
.author-bio .ab-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
}
.author-bio .ab-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 6px;
}
.author-bio .ab-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.author-bio .ab-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ——— End-of-article CTA module ——— */
.tg-end-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 56px var(--gutter);
}
.tg-end-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.tg-end-cta .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.tg-end-cta h2 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--paper);
  margin: 0 0 16px;
  max-width: 18ch;
}
.tg-end-cta h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.tg-end-cta > .tg-end-cta-inner > div:first-child > p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245,240,232,0.78);
  margin: 0 0 24px;
  max-width: 50ch;
}
.tg-end-cta .phone-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px;
}
.tg-end-cta .phone-card .phone-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.tg-end-cta .phone-card .phone-link {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.tg-end-cta .phone-card .phone-link:hover { color: var(--gold); }
.tg-end-cta .phone-card .hours {
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  margin-bottom: 18px;
}
.tg-end-cta .phone-card .or {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  font-weight: 600;
  margin: 16px 0 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tg-end-cta .phone-card .quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.tg-end-cta .phone-card .quote-btn:hover { background: var(--gold); }

/* ——— Related articles ——— */
.related {
  padding: 64px var(--gutter);
  background: var(--cream-deep);
  border-top: 1px solid var(--ink-line);
}
.related-inner { max-width: 1080px; margin: 0 auto; }
.related h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 460;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.related .related-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0 0 32px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--paper);
  border: 1px solid var(--ink-line);
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--ink-soft);
  box-shadow: 0 16px 32px -24px rgba(0,0,0,0.18);
}
.related-card .cat {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 12px;
}
.related-card .ttl {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 460;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.related-card .read {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 12px;
}

/* ============================================================
   Responsive (≤ 760px)
   ============================================================ */
@media (max-width: 1080px) {
  .tg-summary { grid-template-columns: 1fr; gap: 24px; padding: 28px 28px; }
  .tg-summary-list { gap: 10px 24px; }
  .tg-diagram-cols { grid-template-columns: 1fr; gap: 24px; }
  .tg-end-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .tg-hero { min-height: 420px; }
  .tg-hero-inner { padding: 40px var(--gutter) 36px; }
  .tg-hero .crumbs { margin-bottom: 18px; }
  .tg-hero-tag { font-size: 10px; padding: 5px 10px; margin-bottom: 16px; }
  .tg-hero-dek { font-size: 16px; margin-bottom: 22px; }
  .tg-hero-meta { font-size: 12px; gap: 12px; }
  .tg-hero-meta .meta-divider { display: none; }

  .tg-summary { margin-top: -28px; padding: 24px 22px; }
  .tg-summary-list { grid-template-columns: 1fr; gap: 10px; }

  .tg-body { padding: 48px var(--gutter) 64px; }
  .tg-article { font-size: 16px; }
  .tg-article h2 { font-size: 28px; max-width: none; }
  .tg-article h3 { font-size: 19px; }
  .tg-section { margin-bottom: 40px; }

  .tg-diag { grid-template-columns: 1fr; }
  .tg-diagram { padding: 22px 20px; }
  .tg-diagram .dia-head .ttl { font-size: 19px; }

  .tg-steps .tg-step { grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; }
  .tg-step .step-num { font-size: 28px; }
  .tg-step h4 { font-size: 17px; }

  .tg-faq summary { font-size: 16px; grid-template-columns: 22px 1fr 22px; gap: 12px; }
  .tg-faq summary::before { width: 18px; height: 18px; font-size: 11px; }
  .tg-faq details p { margin-left: 30px; font-size: 14.5px; }

  .cc-callout { grid-template-columns: 1fr; padding: 22px 22px; gap: 18px; }
  .cc-callout .cc-phone { align-items: flex-start; }
  .cc-callout .cc-msg { font-size: 18px; }
  .cc-callout .cc-phone-num { font-size: 28px; }

  .cc-price { grid-template-columns: 1fr; gap: 12px; padding: 20px 22px; }
  .cc-price .cc-price-tag { font-size: 30px; }

  .cc-review { padding: 24px 0; margin: 28px 0; }
  .cc-review blockquote { font-size: 18px; }

  .trust-inline { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-inline-item { border-bottom: 1px solid var(--ink-line); }
  .trust-inline-item:nth-child(2) { border-right: 0; }
  .trust-inline-item:nth-last-child(-n+2) { border-bottom: 0; }

  .author-bio { grid-template-columns: 56px 1fr; gap: 14px; padding: 22px 0; margin: 32px 0; }
  .author-bio .ab-avatar { width: 56px; height: 56px; font-size: 22px; }

  .tg-end-cta { padding: 44px var(--gutter); }
  .tg-end-cta h2 { font-size: 28px; }
  .tg-end-cta .phone-card .phone-link { font-size: 28px; }

  .related { padding: 44px var(--gutter); }
  .related h2 { font-size: 24px; }
}
