/* Sage KC — selected direction 01, Ink & Brass (round 3) */
:root {
  --ink: #10181D;
  --ink-deep: #0B0E11;
  --ink-raised: #18252C;
  --cream: #F8F5ED;
  --white: #FFFFFF;
  --on-dark: #EDE8DD;
  --on-dark-soft: rgba(237, 232, 221, .78);
  --on-dark-faint: rgba(237, 232, 221, .6);
  --on-light: #17191C;
  --muted: #6B6B66;
  --brass: #B8945A;
  --brass-ink: #6F5328;
  --focus-light: #6F5328;
  --focus-dark: #D6B77F;
  --line: #E3DDD1;
  --line-dark: rgba(237, 232, 221, .14);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: 32px;
  --section: 96px;
  --header-height: 88px;
}

* { box-sizing: border-box; }
/* Clip, not hidden: a body scroll container would prevent the header from sticking. */
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; overflow-x: clip; background: var(--cream); color: var(--on-light); font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
html.menu-open { overflow: hidden; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; }
p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
.wrap { width: min(1200px, calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 11px 15px; background: var(--cream); color: var(--on-light); font-weight: 600; text-decoration: none; transform: translateY(-160%); border: 1px solid var(--brass); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--focus-light); outline-offset: 3px; }
.section-dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible { outline-color: var(--focus-dark); }

.section-dark { background: var(--ink); color: var(--on-dark); }
.section-light { background: var(--white); }

/* Type helpers */
.eyebrow { display: block; margin: 0; color: var(--brass-ink); font: 600 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; }
.section-dark .eyebrow { color: var(--brass); }
.muted { color: var(--muted); }
.section-dark .muted { color: var(--on-dark-soft); }
.numeral { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--brass-ink); font-weight: 500; }
.section-dark .numeral { color: var(--brass); }

/* Buttons and links */
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 15px 26px; border: 1px solid transparent; border-radius: 2px; font: 500 15px/1 var(--sans); letter-spacing: .01em; text-decoration: none; white-space: nowrap; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.button-primary { background: var(--on-dark); border-color: var(--on-dark); color: var(--ink); }
.button-primary:hover { background: var(--white); border-color: var(--white); }
.button-ink { background: var(--ink); border-color: var(--ink); color: var(--on-dark); }
.button-ink:hover { background: #23292F; border-color: #23292F; }
.button-brass { background: transparent; border-color: var(--brass); color: var(--on-dark); }
.button-brass:hover { background: rgba(184, 148, 90, .14); }
.button-small { min-height: 42px; padding: 11px 18px; font-size: 14px; }
.text-link { display: inline-block; padding-bottom: 3px; border-bottom: 1px solid var(--brass); font-weight: 500; text-decoration: none; transition: border-color .2s; }
.text-link:hover { border-bottom-color: currentColor; }
.phone { font-weight: 500; text-decoration: none; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Main header: one clear navigation row, with calling always visible.
   Keep filters/transforms off the header so the mobile menu stays viewport-fixed. */
.site-header { position: sticky; top: 0; z-index: 20; background: var(--ink); color: var(--on-dark); border-bottom: 1px solid var(--line-dark); }
.site-header.is-sticky { background: rgba(16, 24, 29, .97); }
.nav-shell { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; font: 600 28px/1 var(--serif); text-decoration: none; white-space: nowrap; }
.brand svg { width: 26px; height: 26px; flex: none; }
.primary-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.primary-nav a { color: var(--on-dark-soft); font-size: 14px; text-decoration: none; white-space: nowrap; }
.primary-nav a:hover { color: var(--on-dark); }
.primary-nav .nav-detail { display: none; }
.primary-nav .nav-cta { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 12px 16px; border: 1px solid var(--brass); border-radius: 2px; color: var(--on-dark); font-weight: 500; }
.primary-nav .nav-cta:hover { background: rgba(184, 148, 90, .14); }
.primary-nav .nav-report { background: var(--brass); color: var(--ink); }
.primary-nav .nav-report:hover { background: var(--focus-dark); color: var(--ink); }
.header-call { display: flex; flex: none; flex-direction: column; justify-content: center; min-height: 48px; padding-left: 22px; border-left: 1px solid var(--line-dark); color: var(--on-dark); text-decoration: none; white-space: nowrap; }
.header-call span { color: var(--on-dark-soft); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.header-call strong { font-size: 20px; font-weight: 600; line-height: 1.5; font-variant-numeric: tabular-nums; }
.header-call:hover strong { color: var(--focus-dark); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--brass); border-radius: 2px; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 19px; height: 1.5px; margin: 5px auto; background: var(--on-dark); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

/* Hero */
.hero { padding: 64px 0 80px; background: var(--ink); color: var(--on-dark); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero .eyebrow { color: var(--on-dark-soft); font-size: 11px; }
.hero h1 { margin: 26px 0; font-size: clamp(56px, 5.6vw, 80px); line-height: 1.04; letter-spacing: -.035em; }
.hero h1 em { color: var(--brass); font-weight: 400; }
.hero .button-primary { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.hero .button-primary:hover { background: #D6B77F; }
.hero .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.hero-actions .button { min-width: 0; min-height: 54px; padding: 14px 16px; font-size: 14px; line-height: 1.35; white-space: normal; text-align: center; }
.cta-note { margin-top: 14px; color: var(--on-dark-soft); font-size: 13px; line-height: 1.6; }
.hero :focus-visible { outline-color: var(--focus-dark); }
.lead { max-width: 44ch; color: var(--on-dark-soft); font-size: 19px; line-height: 1.6; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 40px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: var(--on-dark-soft); font-size: 14px; }
.hero-points li { display: flex; align-items: center; gap: 10px; }
.hero-points li::before { content: ""; width: 14px; height: 1px; background: var(--brass); }
.hero-figure { position: relative; min-width: 0; padding: 55px 25px 32px; border: 1px solid #465158; border-radius: 2px; background-color: var(--ink-raised); background-image: linear-gradient(#c4c9c610 1px, transparent 1px), linear-gradient(90deg, #c4c9c610 1px, transparent 1px); background-size: 40px 40px; }
.hero-figure svg { width: 100%; max-width: 350px; height: auto; margin: 0 auto; }
.figure-caption, .figure-footnote { position: absolute; font-size: 11px; color: var(--on-dark-soft); }
.figure-caption { top: 20px; left: 22px; }
.figure-footnote { bottom: 16px; right: 20px; }
.figure-label { position: absolute; padding: 8px 12px; background: var(--ink); border: 1px solid #465158; font-size: 11px; color: var(--on-dark); }
.figure-label-counter { left: 16px; top: 38%; }
.figure-label-mobile { right: 12px; top: 66%; }
.figure-label-online { left: 26px; bottom: 42px; }
.terminal-body { fill: var(--ink); stroke: var(--on-dark); stroke-width: 1.5; }
.terminal-line { stroke: var(--on-dark); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.terminal-screen, .terminal-keys { fill: #1D2A31; stroke: var(--on-dark); }
.payment-card { fill: var(--brass); stroke: var(--on-dark); }
.card-line { stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; }
.card-chip { fill: none; stroke: var(--ink); }
.terminal-shadow { fill: var(--on-dark); opacity: .08; }

/* Channel strip */
.channel-strip { border-bottom: 1px solid var(--line); background: var(--cream); }
.channel-list { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; padding: 34px 0; }
.channel-list h2 { margin: 0; font: 600 26px/1.1 var(--serif); white-space: nowrap; }
.channel-list ul { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; font-size: 15px; font-weight: 500; }
.channel-list li + li { padding-left: 20px; border-left: 1px solid var(--line); }

/* Sections */
.section { padding: var(--section) 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 64px; padding-top: 24px; border-top: 1px solid var(--brass); }
.section-heading h2, .section h2 { font-size: clamp(38px, 4.2vw, 58px); line-height: 1.04; letter-spacing: -.01em; text-wrap: balance; }
.section-heading h2 { margin-top: 14px; }
.section-heading > p { max-width: 46ch; color: var(--muted); }
.section-dark .section-heading > p { color: var(--on-dark-soft); }

/* Solutions */
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.cols-3 > article { padding: 0 40px; }
.cols-3 > article:first-child { padding-left: 0; }
.cols-3 > article:last-child { padding-right: 0; }
.cols-3 > article + article { border-left: 1px solid var(--line); }
.solution .card-label { margin-bottom: 18px; }
.solution h3 { margin-bottom: 14px; font-size: 31px; font-weight: 600; line-height: 1.1; }
.solution p { color: var(--muted); }
.solution .text-link { margin-top: 24px; font-size: 15px; }

/* Savings report */
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; background: #E9E5DA; padding: 44px; border: 1px solid var(--line); }
.report-grid .report-copy, .report-grid .doc { min-width: 0; }
.report-grid .doc-head { flex-wrap: wrap; }
.report-copy h2 { margin: 14px 0 20px; }
.report-copy > p { color: #50585A; }
.report-copy > .eyebrow { color: var(--brass-ink); }
.checks { margin: 32px 0 36px; }
.checks li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 16px; }
.checks li:last-child { border-bottom: 1px solid var(--line); }
.checks li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 9px; border: 1px solid var(--brass); border-radius: 50%; }
.doc { padding: 40px 40px 30px; border: 1px solid var(--line); background: var(--white); }
.doc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--brass); }
.doc h3 { margin-top: 10px; font-size: 34px; line-height: 1; }
.doc-head .muted { font-size: 13px; white-space: nowrap; }
.doc table { width: 100%; margin-top: 6px; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.doc th, .doc td { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 400; text-align: left; vertical-align: baseline; }
.doc td { font-weight: 500; text-align: right; }
.doc td small { display: block; color: var(--muted); font-size: 13px; font-weight: 400; }
.doc .big th, .doc .big td { padding: 22px 0 18px; }
.doc .sum { font-family: var(--serif); font-size: 46px; font-weight: 600; line-height: 1; color: var(--brass-ink); }
.doc-foot { display: flex; justify-content: space-between; gap: 16px; margin-top: 18px; color: var(--muted); font-size: 13px; }

/* Process */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.process-steps li { padding-top: 24px; border-top: 1px solid var(--line); }
.process-steps h3 { margin: 20px 0 10px; font-size: 28px; font-weight: 600; }
.process-steps p { color: var(--muted); }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.industry-card { padding: 0 32px; }
.industry-card:first-child { padding-left: 0; }
.industry-card:last-child { padding-right: 0; }
.industry-card + .industry-card { border-left: 1px solid var(--line-dark); }
.industry-card .numeral { font-size: 40px; }
.industry-card h3 { margin: 22px 0 10px; font-size: 28px; font-weight: 600; }
.industry-card p { color: var(--on-dark-soft); font-size: 15px; }
.industry-card .text-link { margin-top: 20px; font-size: 14px; }

/* Why Sage KC */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.local-details { margin-top: 32px; }
.local-details li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; }
.local-details li:last-child { border-bottom: 1px solid var(--line); }
.local-details li > span:first-child { color: var(--muted); }
.local-details strong { font-weight: 500; }
.why-copy .text-link { margin-top: 28px; }
.compare-copy h3 { max-width: 18ch; font-size: 34px; font-weight: 600; line-height: 1.1; }
.compare-list { margin-top: 28px; }
.compare-list li { display: flex; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.compare-list li:last-child { border-bottom: 1px solid var(--line); }
.compare-list li span { min-width: 28px; font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.2; color: var(--brass-ink); }

/* FAQ */
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-of-type { border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; font: 600 29px/1.2 var(--serif); list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; flex: none; font: 500 32px/1 var(--serif); color: var(--brass-ink); transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 64ch; padding: 0 0 26px; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.contact-copy h2 { margin: 14px 0 20px; }
.contact-copy > p { color: var(--on-dark-soft); }
.contact-call { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 15px; }
.contact-call span { margin-right: 8px; color: var(--on-dark-soft); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.contact-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.contact-form button:disabled { cursor: not-allowed; opacity: .6; }
[data-contact-spam-check]:empty { display: none; }
.field-row { display: contents; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--on-dark-soft); font: 500 13px var(--sans); letter-spacing: .04em; }
.field input, .field select, .field textarea { width: 100%; padding: 10px 0; border: 0; border-bottom: 1px solid rgba(237, 232, 221, .32); border-radius: 0; background: transparent; color: var(--on-dark); font: 400 16px var(--sans); color-scheme: dark; }
.field select option { color: var(--on-light); background: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--focus-dark); outline-offset: 4px; }
.field textarea { min-height: 80px; resize: vertical; }
.field textarea::placeholder { color: rgba(237, 232, 221, .45); }
.consent { display: flex; gap: 12px; align-items: flex-start; grid-column: 1 / -1; color: var(--on-dark-soft); font-size: 14px; line-height: 1.5; }
.consent input { flex: none; width: 16px; height: 16px; margin: 4px 0 0; accent-color: var(--brass); }
.form-note { align-self: center; color: var(--on-dark-faint); font-size: 13px; }
.form-status { grid-column: 1 / -1; margin: 0; color: var(--brass); font-size: 14px; }
.form-status:not(:empty) { padding-top: 16px; border-top: 1px solid var(--line-dark); }

/* Footer */
.site-footer { padding: 56px 0 32px; background: var(--ink-deep); color: var(--on-dark); border-top: 1px solid var(--line-dark); font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-top > div:first-child p { max-width: 30ch; margin-top: 14px; color: var(--on-dark-soft); }
.footer-links { display: flex; flex-direction: column; }
.footer-links h2 { margin: 0 0 16px; color: var(--brass); font: 600 12px var(--sans); letter-spacing: .18em; text-transform: uppercase; }
.footer-links a, .footer-links span { padding: 4px 0; color: var(--on-dark-soft); text-decoration: none; }
.footer-links a:hover { color: var(--on-dark); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line-dark); color: var(--on-dark-faint); font-size: 13px; }

/* 404 */
.error-main { min-height: 100vh; display: grid; place-items: center; padding: 64px 0; }
.error-panel { max-width: 720px; text-align: center; }
.error-panel h1 { margin: 20px 0 24px; font-size: clamp(52px, 8vw, 96px); line-height: .98; letter-spacing: -.01em; text-wrap: balance; }
.error-panel p { max-width: 48ch; margin: 0 auto 32px; color: var(--on-dark-soft); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1024px) {
  :root { --section: 88px; }
  .hero-grid { gap: 42px; }
  .industry-grid { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .industry-card:nth-child(2) { padding-right: 0; }
  .industry-card:nth-child(3) { padding-left: 0; border-left: 0; }
  .report-grid, .why-grid, .contact-grid { gap: 48px; }
  .cols-3 > article { padding: 0 24px; }
}

@media (min-width: 1241px) {
  /* Keep browsing links with the brand; reserve the right side for actions. */
  .primary-nav { flex: 1; margin-left: 16px; gap: 24px; }
  .primary-nav > a:not(.nav-cta):not(.nav-detail) { display: inline-flex; align-items: center; min-height: 48px; font-size: 15px; font-weight: 500; line-height: 1.2; }
  .primary-nav .nav-report { margin-left: auto; }
}

@media (max-width: 1240px) {
  :root { --header-height: 80px; }
  .nav-shell { flex-wrap: wrap; padding-block: 12px; }
  .primary-nav { width: 100%; flex-wrap: wrap; justify-content: flex-start; margin-left: 0; }
  .primary-nav .nav-detail { display: block; }
  .header-call { margin-left: auto; }
  .js .nav-shell { flex-wrap: nowrap; padding-block: 0; }
  .js .menu-toggle { display: block; flex: none; }
  .js .primary-nav { position: fixed; z-index: 30; top: var(--header-height); right: 0; bottom: 0; left: 0; display: flex; width: auto; flex-direction: column; flex-wrap: nowrap; align-items: stretch; justify-content: flex-start; gap: 0; padding: 12px 20px 40px; background: var(--ink); border-top: 1px solid var(--line-dark); transform: translateX(100%); visibility: hidden; transition: transform .25s, visibility .25s; overflow-y: auto; }
  .js .primary-nav.is-open { transform: translateX(0); visibility: visible; }
  .js .primary-nav a { padding: 16px 0; border-bottom: 1px solid var(--line-dark); color: var(--on-dark); font-size: 18px; }
  .js .primary-nav .nav-cta { margin-top: 16px; padding: 16px 18px; border-color: var(--brass); text-align: center; white-space: normal; }
  .js .primary-nav .nav-report { color: var(--ink); }
  html:not(.js) .site-header { position: relative; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 80px; }
  :root { --gutter: 20px; }
  .wrap { width: min(100% - 40px, 680px); }
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .channel-list { grid-template-columns: 1fr; gap: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .cols-3, .process-steps, .industry-grid, .report-grid, .why-grid, .contact-grid, .contact-form, .footer-top { grid-template-columns: 1fr; }
  .cols-3 > article { padding: 28px 0; border-left: 0; border-top: 1px solid var(--line); }
  .cols-3 > article:first-child { padding-top: 0; border-top: 0; }
  .industry-card, .industry-card:nth-child(2), .industry-card:nth-child(3) { padding: 28px 0 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .industry-card:first-child { padding-top: 0; border-top: 0; }
  .report-grid { padding: 28px 22px; }
  .doc { padding: 28px 22px 22px; }
  .doc .sum { font-size: 38px; }
  .doc-head { flex-direction: column; gap: 6px; }
  .contact-form { gap: 24px; }
  .footer-top { gap: 32px; }
}

@media (max-width: 540px) {
  :root { --section: 64px; }
  .nav-shell { gap: 12px; }
  .site-header .brand { font-size: 25px; gap: 8px; }
  .header-call { padding-left: 0; border-left: 0; }
  .header-call span { font-size: 9px; }
  .header-call strong { font-size: 17px; }
  .menu-toggle { width: 42px; height: 44px; }
  .hero .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button { font-size: 15px; }
  .cta-note { font-size: 12px; }
  .hero h1 { font-size: clamp(46px, 12.5vw, 64px); }
  .figure-label { font-size: 10px; padding: 7px 9px; }
  .report-grid { padding: 24px 16px; }
  .report-grid .doc { padding: 22px 14px; }
  .report-grid .button { white-space: normal; line-height: 1.35; }
  .lead { font-size: 17px; }
  .actions .button { width: 100%; }
  .hero-figure svg { max-width: 280px; }
  .channel-list h2 { white-space: normal; }
  .channel-list ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .channel-list li { padding: 10px 0; border-top: 1px solid var(--line); }
  .channel-list li + li { padding-left: 0; border-left: 0; }
  summary { font-size: 24px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 360px) {
  .site-header .brand svg { display: none; }
  .site-header .brand { font-size: 24px; }
  .nav-shell { gap: 10px; }
}
