/* arrowmachinery.org — app layer.
   Built entirely on the Arrow Design System tokens (arrow-ds/styles.css must load
   first). Brand red is primary; all colors/fonts come from --tokens. AA contrast;
   no horizontal scroll at 375px. */

/* ---- Reset-ish helpers ---------------------------------------------------- */
html, body { max-width: 100%; overflow-x: hidden; }
img, figure { max-width: 100%; }

/* ---- AA contrast: small accent text --------------------------------------- *
 * The bright brand red (--accent = --red-500 #D81F2A) measures ~4.4:1 on the
 * warm paper (#FAF8F5) — just under the 4.5:1 AA floor for SMALL text. We do
 * NOT edit the shared arrow-ds tokens; instead we override locally with a
 * darkened red (--red-700 #9C121B ≈ 9.6:1 on paper) for the small accent-colored
 * text. Large display text in --accent stays (it only needs 3:1). */
:root { --accent-text: var(--red-700); }
.am-eyebrow,
.seg-card__cta,
.req { color: var(--accent-text); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--on-accent);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 100;
  font-family: var(--font-ui);
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }

/* Honeypot field — pulled fully off-screen for humans (incl. screen readers,
   via aria-hidden on the wrapper), but still present in the DOM for bots to fill.
   Not display:none, so naive bots that skip hidden inputs still see it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-inline);
  font-family: var(--font-ui);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  line-height: 1.1;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-control);
  border: var(--border-width-thick) solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-control);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--lg { font-size: var(--text-md); padding: var(--space-4) var(--space-6); }
.btn--sm { font-size: var(--text-sm); padding: var(--space-2) var(--space-4); }

.btn--accent {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn--accent:active { background: var(--accent-active); border-color: var(--accent-active); }

.btn--ghost {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-hover); }

/* ---- Header / nav --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-surface);
  border-bottom: var(--border-width) solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: var(--space-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-strong);
}
.brand:hover { text-decoration: none; }
.brand__logo {
  display: block;
  height: 46px;
  width: auto;
  flex: none;
}
.brand__lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__word {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--ink-950);
}
.brand__since {
  font-family: var(--font-label);
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--accent-text);
  font-weight: var(--weight-bold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.site-nav__link {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-body);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--accent-hover); background: var(--accent-soft); text-decoration: none; }
.site-nav__link[aria-current="page"] { color: var(--accent-text); font-weight: var(--weight-semibold); }
.site-nav__cta-group {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: var(--space-3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: var(--border-width) solid var(--border-default);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink-900);
  transition: var(--transition-control);
}

/* ---- Hero ----------------------------------------------------------------- */
.hero { background: var(--color-bg); padding-block: var(--space-16) var(--space-12); }
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
}
.hero__title {
  font-size: var(--text-4xl);
  margin: var(--space-3) 0 var(--space-4);
}
.hero__lede {
  font-size: var(--text-md);
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block: var(--space-6) var(--space-5);
}
.hero__area { color: var(--text-muted); font-size: var(--text-sm); }
.hero__area strong { color: var(--text-strong); }

/* ---- Segment hero (segment + contact pages) ------------------------------- */
.seg-hero { padding-block: var(--space-14) var(--space-10); }
.seg-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-10);
  align-items: center;
}
.seg-hero__copy h1 { font-size: var(--text-3xl); margin: var(--space-3) 0 var(--space-4); }
.seg-hero__lede {
  font-size: var(--text-md);
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  max-width: 56ch;
}
.seg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ---- Placeholder image component ------------------------------------------ */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  min-height: 280px;
  margin: 0;
  padding: var(--space-6);
  background:
    repeating-linear-gradient(
      45deg,
      var(--accent-soft),
      var(--accent-soft) 12px,
      var(--ink-50) 12px,
      var(--ink-50) 24px
    );
  border: var(--border-width-thick) dashed var(--accent-border);
  border-radius: var(--radius-card);
  color: var(--text-muted);
}
.placeholder--hero { min-height: 340px; }
.placeholder--map { min-height: 240px; }
.placeholder__tag {
  font-family: var(--font-label);
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-weight: var(--weight-bold);
  color: var(--accent);
  background: var(--color-surface);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  border: var(--border-width) solid var(--accent-border);
}
.placeholder__cap {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 32ch;
}

/* ---- Real photo media ----------------------------------------------------- *
 * Each figure is solo in its column, so photos keep their NATURAL aspect ratio
 * (no forced crop of real Arrow installs) inside a rounded, bordered card with
 * an optional caption bar. Product shots on white blend with the surface bg. */
.media {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-surface);
  border: var(--border-width) solid var(--border-default);
  box-shadow: var(--shadow-sm);
}
.media img {
  display: block;
  width: 100%;
  height: auto;
}
.media__cap {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--space-3) var(--space-4);
  border-top: var(--border-width) solid var(--border-subtle);
}

/* ---- Credibility band ----------------------------------------------------- */
.band {
  background: var(--color-surface-inverse);
  color: var(--text-on-inverse);
  padding-block: var(--space-8);
}
.band__lead { color: var(--ink-300); text-align: center; margin-bottom: var(--space-5); }
.cred-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-8);
}
/* White tiles so client logos (navy/red/gray on transparent) read on the dark
   band. Logo constrained by max-height; the tile gives consistent footprint. */
.cred-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  height: 96px;
  min-width: 168px;
}
/* §0.8: logos must be large enough to read — content height >= ~56px (was 40px). */
.cred-list__logo {
  display: block;
  max-height: 64px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---- Sections ------------------------------------------------------------- */
.section { padding-block: var(--space-16); }
.section--alt { background: var(--color-surface-sunken); }
.section__head { text-align: center; max-width: 64ch; margin: 0 auto var(--space-10); }
.section__title { font-size: var(--text-3xl); margin-bottom: var(--space-3); }
.section__sub { color: var(--text-muted); font-size: var(--text-md); }

.prose { max-width: var(--container-prose); }
.prose h2 { font-size: var(--text-2xl); margin-bottom: var(--space-5); }
.prose p { line-height: var(--leading-relaxed); margin-bottom: var(--space-4); }

/* ---- Segment cards -------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.seg-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--pad-card);
  background: var(--color-surface);
  border: var(--border-width) solid var(--border-default);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--text-body);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-control);
}
.seg-card:hover {
  text-decoration: none;
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.seg-card__title { font-family: var(--font-heading); font-size: var(--text-xl); color: var(--text-strong); margin: 0; }
.seg-card__body { color: var(--text-muted); line-height: var(--leading-normal); margin: 0; flex: 1; }
.seg-card__cta { font-family: var(--font-ui); font-weight: var(--weight-semibold); color: var(--accent); margin-top: var(--space-2); }

/* ---- Split + lists -------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10); align-items: center; }
.split__copy h2 { font-size: var(--text-2xl); margin: var(--space-2) 0 var(--space-4); }
.split__copy p { line-height: var(--leading-relaxed); margin-bottom: var(--space-4); color: var(--text-body); }

.check-list { list-style: none; padding: 0; margin: 0 0 var(--space-8); display: grid; gap: var(--space-3); }
.check-list li {
  position: relative;
  padding-left: var(--space-7);
  line-height: var(--leading-normal);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.proof {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
}
.proof__body { margin: var(--space-1) 0 0; color: var(--text-body); line-height: var(--leading-normal); }

/* ---- CTA band ------------------------------------------------------------- */
.cta-band { background: var(--accent); color: var(--on-accent); padding-block: var(--space-14); }
.cta-band__inner { text-align: center; max-width: 56ch; margin-inline: auto; }
.cta-band h2 { color: var(--white); font-size: var(--text-3xl); margin-bottom: var(--space-3); }
.cta-band p { color: var(--red-50); margin-bottom: var(--space-6); font-size: var(--text-md); }
.cta-band .btn--accent { background: var(--white); color: var(--accent-active); border-color: var(--white); }
.cta-band .btn--accent:hover { background: var(--red-50); border-color: var(--red-50); }

/* ---- Lead form ------------------------------------------------------------ */
.lead-form {
  max-width: 640px;
  margin-inline: auto;
  background: var(--color-surface);
  border: var(--border-width) solid var(--border-default);
  border-radius: var(--radius-panel);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.lead-form__head { margin-bottom: var(--space-6); }
.lead-form__title { font-family: var(--font-heading); font-size: var(--text-2xl); color: var(--text-strong); margin: var(--space-1) 0 var(--space-2); }
.lead-form__intro { color: var(--text-muted); margin: 0; }
.lead-form__body { display: grid; gap: var(--space-4); }
.lead-form__assure { font-size: var(--text-sm); color: var(--text-subtle); margin: 0; text-align: center; }

.field { display: grid; gap: var(--space-1-5); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field__label { font-family: var(--font-label); font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-strong); }
.req { color: var(--accent); }
.field__input {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  color: var(--text-strong);
  background: var(--color-surface);
  border: var(--border-width) solid var(--border-strong);
  border-radius: var(--radius-control);
  padding: var(--pad-control-y) var(--pad-control-x);
  width: 100%;
  transition: var(--transition-control);
}
.field__input:focus-visible { outline: none; border-color: var(--accent); box-shadow: var(--ring-focus); }
.field__input--area { resize: vertical; min-height: 120px; line-height: var(--leading-normal); }
.field__hint { font-size: var(--text-sm); color: var(--text-subtle); margin: calc(var(--space-2) * -1) 0 0; }

.form-errors {
  background: var(--danger-soft);
  border: var(--border-width) solid var(--accent-border);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-5);
  color: var(--red-800);
}
.form-errors__head { font-weight: var(--weight-semibold); margin: 0 0 var(--space-2); }
.form-errors ul { margin: 0; padding-left: var(--space-5); }

/* ---- Contact page --------------------------------------------------------- */
.contact-info { background: var(--color-surface-sunken); border-radius: var(--radius-panel); padding: var(--space-6); }
.contact-dl { margin: 0; display: grid; gap: var(--space-1); }
.contact-dl dt { margin-top: var(--space-3); }
.contact-dl dt:first-child { margin-top: 0; }
.contact-dl dd { margin: 0 0 var(--space-1); font-size: var(--text-md); color: var(--text-body); }
.contact-address { font-style: normal; color: var(--text-strong); }

.map-embed {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: var(--border-width) solid var(--border-default);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.map-embed__frame { display: block; width: 100%; height: 420px; border: 0; }
.map-embed__cap {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--space-3) var(--space-4);
  border-top: var(--border-width) solid var(--border-subtle);
}

/* ---- Handoff + thanks ----------------------------------------------------- */
.handoff__inner, .thanks__inner { max-width: 60ch; margin-inline: auto; text-align: center; }
.handoff h1 { font-size: var(--text-3xl); margin: var(--space-3) 0 var(--space-4); }
.handoff__lede { font-size: var(--text-md); color: var(--text-body); line-height: var(--leading-relaxed); margin-bottom: var(--space-6); }
.handoff__note { font-size: var(--text-sm); color: var(--text-subtle); margin-top: var(--space-4); }

.thanks h1 { font-size: var(--text-3xl); margin: var(--space-3) 0 var(--space-4); }
.thanks__lede { font-size: var(--text-md); color: var(--text-body); line-height: var(--leading-relaxed); }
.thanks__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-block: var(--space-7) var(--space-4); }
.thanks__note { color: var(--text-muted); font-size: var(--text-sm); }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--color-surface-inverse); color: var(--text-on-inverse); margin-top: var(--space-20); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.2fr 1.3fr;
  gap: var(--space-8);
  padding-block: var(--space-12);
}
.site-footer__logo { display: block; height: 56px; width: auto; margin-bottom: var(--space-3); }
.site-footer__blurb { color: var(--ink-300); line-height: var(--leading-normal); margin: var(--space-2) 0 0; }
.site-footer__ale { margin-top: var(--space-4); }
.site-footer__ale a { color: var(--ink-100); font-weight: var(--weight-semibold); }
.site-footer__ale a:hover { color: var(--white); }
.site-footer__eyebrow { color: var(--ink-300) !important; margin-bottom: var(--space-3); }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.site-footer__links a, .site-footer__blurb a, .site-footer__address a { color: var(--ink-100); }
.site-footer__links a:hover, .site-footer__blurb a:hover, .site-footer__address a:hover { color: var(--white); }
.site-footer__address {
  font-style: normal;
  color: var(--ink-200);
  line-height: var(--leading-normal);
  margin: 0 0 var(--space-4);
}
.site-footer__hours { color: var(--ink-300); margin: var(--space-3) 0 0; font-family: var(--font-ui); font-size: var(--text-sm); }
.site-footer__area { color: var(--ink-300); margin-top: var(--space-1); font-family: var(--font-ui); font-size: var(--text-sm); }
.site-footer__map {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--ink-800);
}
.site-footer__bottom { border-top: var(--border-width) solid var(--border-inverse); padding-block: var(--space-5); }
.site-footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); color: var(--ink-400); font-size: var(--text-sm); }

/* ===========================================================================
   Responsive — collapse to single column; nav becomes a toggle.
   =========================================================================== */
@media (max-width: 1000px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__map-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero__inner, .seg-hero__inner, .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .placeholder--hero { min-height: 240px; order: -1; }
  .media--hero { order: -1; }
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  /* The hamburger toggle is only useful with JS, so only show it when JS is on. */
  .js .nav-toggle { display: flex; }
  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-surface);
    border-bottom: var(--border-width) solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    padding: var(--space-3);
  }
  /* Collapse behind the toggle ONLY when JS can re-open it. With no JS the menu
     stays in normal flow (stacked under the header) and every link is reachable. */
  .js .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
  }
  .js .site-nav.is-open { display: flex; }
  .site-nav__link { padding: var(--space-3) var(--space-3); font-size: var(--text-base); border-radius: var(--radius-sm); }
  .site-nav__cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    margin: var(--space-3) 0 0;
  }
  .site-nav__cta-group .btn { width: 100%; font-size: var(--text-base); padding: var(--space-3) var(--space-4); }
  .hero__title { font-size: var(--text-3xl); }
  .section { padding-block: var(--space-12); }
  .hero { padding-block: var(--space-10) var(--space-8); }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-4); }
  .field-row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: var(--text-2xl); }
  .seg-hero__copy h1, .section__title, .handoff h1, .thanks h1, .cta-band h2, .lead-form__title { font-size: var(--text-2xl); }
  .lead-form { padding: var(--space-5); }
  .btn { white-space: normal; }
  .cred-list { gap: var(--space-3) var(--space-4); }
  .cred-list__item { height: 84px; min-width: 140px; padding: var(--space-3) var(--space-4); }
  .cred-list__logo { max-height: 56px; max-width: 150px; }
  .map-embed__frame { height: 300px; }
}

/* ---- Knowledge Base / Resource Center ------------------------------------- */
.kb-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--container-prose);
  display: grid;
  gap: var(--space-8);
}
.kb-list__item {
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--ink-100);
}
.kb-list__item:last-child { border-bottom: 0; padding-bottom: 0; }
.kb-list__title { font-size: var(--text-xl); margin: 0 0 var(--space-2); }
.kb-list__title a { color: inherit; }
.kb-list__title a:hover { color: var(--accent-text); }
.kb-list__desc { color: var(--text-muted); max-width: 64ch; margin: 0 0 var(--space-3); }
.kb-list__more { color: var(--accent-text); font-weight: 600; }

/* Article: one comfortable reading column, styled by the DS (text-only migration). */
.kb-article__wrap { max-width: var(--container-prose); }
.kb-article__crumb { color: inherit; }
.kb-article__title { font-size: var(--text-3xl); margin: var(--space-3) 0 var(--space-8); }
.kb-article__body { color: var(--text-body); font-size: var(--text-md); line-height: 1.7; }
.kb-article__body > h2 { font-size: var(--text-xl); line-height: 1.25; margin: var(--space-10) 0 var(--space-3); }
.kb-article__body > h2:first-child { margin-top: 0; }
.kb-article__body p { margin: 0 0 var(--space-4); }
.kb-article__body ul,
.kb-article__body ol { margin: 0 0 var(--space-5) var(--space-6); }
.kb-article__body li { margin-bottom: var(--space-2); }
.kb-article__body a { color: var(--text-link); text-decoration: underline; }
.kb-article__body em { font-style: italic; }

.kb-cta {
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: var(--color-surface-sunken);
  border-radius: var(--radius-panel);
  text-align: center;
}
.kb-cta__title { font-size: var(--text-xl); margin: 0 0 var(--space-3); }
.kb-cta__text { color: var(--text-muted); max-width: 56ch; margin: 0 auto var(--space-5); }
.kb-cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

@media (max-width: 600px) {
  .kb-article__title { font-size: var(--text-2xl); }
  .kb-cta { padding: var(--space-6); }
}
