/* ============================================================
   HelpForMan — Design System
   ============================================================ */
:root {
  --bg:        #faf8f5;
  --bg-soft:   #f2ede6;
  --surface:   #ffffff;
  --surface-2: #fbf9f6;
  --ink:       #1a1714;
  --ink-soft:  #4b4640;
  --ink-mute:  #857d72;
  --line:      #e7e0d6;
  --line-soft: #efe9e0;
  --accent:    #c2650c;      /* ember */
  --accent-ink:#8f4a06;
  --accent-soft:#fdf1e3;
  --teal:      #0f766e;
  --teal-soft: #e3f2f0;
  --danger:    #b4442e;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 1px 2px rgba(26,23,20,.05), 0 8px 24px -12px rgba(26,23,20,.18);
  --shadow-lg: 0 24px 60px -24px rgba(26,23,20,.30);
  --maxw:      1120px;
  --ff-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --ff-serif:  'Fraunces', Georgia, serif;
  --step:      cubic-bezier(.22,.61,.36,1);
}
[data-theme="dark"] {
  --bg:        #14110f;
  --bg-soft:   #1c1815;
  --surface:   #1e1a17;
  --surface-2: #241f1b;
  --ink:       #f4efe8;
  --ink-soft:  #cabfb2;
  --ink-mute:  #948a7c;
  --line:      #332d27;
  --line-soft: #2a2521;
  --accent:    #f0913a;
  --accent-ink:#f6ad63;
  --accent-soft:#2c2013;
  --teal:      #35b3a6;
  --teal-soft: #16241f;
  --danger:    #e57a63;
  --shadow:    0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.6);
  --shadow-lg: 0 24px 60px -24px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .3s var(--step), color .3s var(--step);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; }

/* Route target: focused on navigation for screen readers — no visible ring,
   and reserve height so the footer doesn't jump on first render (fixes CLS). */
main#main { display: block; min-height: 78vh; }
main#main:focus, main#main:focus-visible { outline: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-serif); font-weight: 600; font-size: 21px; letter-spacing: -.01em; }
.brand.small { font-size: 18px; }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--ink); color: var(--accent); border-radius: 9px;
  font-family: var(--ff-serif); font-weight: 700; font-size: 20px;
}
.brand.small .brand-mark { width: 28px; height: 28px; font-size: 17px; }
.brand-accent { color: var(--accent); }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 8px 14px; border-radius: 9px; font-weight: 500; font-size: 14.5px; color: var(--ink-soft);
  transition: background .18s, color .18s;
}
.main-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.main-nav a.active { color: var(--accent); background: var(--accent-soft); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn, .menu-btn {
  width: 40px; height: 40px; border: 1px solid var(--line); background: var(--surface);
  border-radius: 10px; color: var(--ink-soft); display: grid; place-items: center; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.icon-btn:hover, .menu-btn:hover { color: var(--accent); border-color: var(--accent); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
.menu-btn { display: none; flex-direction: column; gap: 4px; }
.menu-btn span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: .2s; }

/* ---------- Search ---------- */
.search-bar { border-top: 1px solid var(--line); background: var(--surface); }
.search-bar .wrap { padding-top: 14px; padding-bottom: 14px; }
#searchInput {
  width: 100%; padding: 14px 18px; font-size: 16px; font-family: inherit;
  border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--ink);
}
#searchInput:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.search-results { margin-top: 10px; display: grid; gap: 4px; max-height: 50vh; overflow-y: auto; }
.search-results a {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  padding: 11px 14px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line-soft);
}
.search-results a:hover { border-color: var(--accent); background: var(--accent-soft); }
.search-results .sr-kind { font-size: 12px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .05em; }
.search-empty { padding: 14px; color: var(--ink-mute); font-size: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 11px; border: 1px solid transparent;
  transition: transform .12s var(--step), box-shadow .2s, background .2s, border-color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-ink); box-shadow: var(--shadow-lg); }
[data-theme="dark"] .btn-primary { color: #1a1714; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 8%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%),
    radial-gradient(50% 50% at 5% 40%, color-mix(in srgb, var(--teal) 12%, transparent), transparent 55%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
[data-theme="dark"] .hero-eyebrow { color: var(--accent); }
.hero h1 {
  font-family: var(--ff-serif); font-weight: 600; letter-spacing: -.02em; line-height: 1.05;
  font-size: clamp(38px, 6vw, 64px); margin: 0 0 20px; max-width: 15ch;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-lede { font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-soft); max-width: 54ch; margin: 0 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat b { font-family: var(--ff-serif); font-size: 28px; display: block; line-height: 1; }
.hero-stat span { font-size: 13.5px; color: var(--ink-mute); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: 100%; max-width: 460px; height: auto; }

/* Decorative section/article illustrations */
.section-banner { width: 100%; height: auto; border-radius: var(--radius-lg); margin: 4px 0 30px; }
.article-banner { max-width: 760px; margin: 22px auto 4px; }
.article-banner .section-banner { margin: 0; }

/* ---------- Sections layout ---------- */
.section { padding: 56px 0; }
.section-head { margin-bottom: 34px; max-width: 60ch; }
.section-head .kicker { font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); }
.section-head h1, .section-head h2 { font-family: var(--ff-serif); font-weight: 600; letter-spacing: -.02em; font-size: clamp(28px,4vw,40px); margin: 8px 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 17px; margin: 0; }

/* ---------- Cards grid ---------- */
.card-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.pillar-card {
  display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .18s var(--step), box-shadow .25s, border-color .2s;
  position: relative; overflow: hidden;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.pillar-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); margin-bottom: 18px; }
[data-theme="dark"] .pillar-ic { color: var(--accent); }
.pillar-card h3 { font-family: var(--ff-serif); font-weight: 600; font-size: 22px; margin: 0 0 8px; }
.pillar-card p { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; flex: 1; }
.pillar-count { font-size: 13px; color: var(--ink-mute); font-weight: 500; }
.pillar-card .go { color: var(--accent); font-weight: 600; font-size: 14.5px; margin-top: 14px; display: inline-flex; gap: 6px; align-items: center; }
.pillar-card:hover .go span { transform: translateX(4px); }
.pillar-card .go span { transition: transform .2s var(--step); }

/* Article cards */
.article-card {
  display: flex; flex-direction: column; padding: 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); transition: transform .16s var(--step), box-shadow .2s, border-color .2s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.article-card .tag { align-self: flex-start; font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--teal); background: var(--teal-soft); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.article-card h3 { font-family: var(--ff-serif); font-weight: 600; font-size: 19px; line-height: 1.25; margin: 0 0 8px; }
.article-card p { color: var(--ink-soft); font-size: 14px; margin: 0 0 16px; flex: 1; }
.article-card .meta { font-size: 12.5px; color: var(--ink-mute); display: flex; gap: 12px; align-items: center; }
.article-card.soon { opacity: .72; }
.article-card.soon .tag { color: var(--ink-mute); background: var(--bg-soft); }

/* ---------- Article page ---------- */
.article { padding: 44px 0 72px; }
.article-hero { max-width: 760px; margin: 0 auto 8px; }
.crumbs { font-size: 13.5px; color: var(--ink-mute); margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--accent); }
.article-hero h1 { font-family: var(--ff-serif); font-weight: 600; letter-spacing: -.02em; font-size: clamp(30px,4.5vw,46px); line-height: 1.1; margin: 6px 0 16px; }
.article-hero .lede { font-size: 19px; color: var(--ink-soft); }
.article-meta { display: flex; gap: 16px; align-items: center; margin-top: 20px; padding-bottom: 26px; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--ink-mute); }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-family: var(--ff-serif); font-weight: 600; font-size: 26px; letter-spacing: -.01em; margin: 40px 0 14px; }
.article-body h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.article-body p { font-size: 17px; color: var(--ink-soft); margin: 0 0 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 20px; }
.article-body li { margin-bottom: 9px; font-size: 16.5px; color: var(--ink-soft); }
.article-body strong { color: var(--ink); font-weight: 600; }
.callout {
  display: flex; gap: 14px; padding: 20px 22px; border-radius: var(--radius); margin: 26px 0;
  background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.callout.do { background: var(--teal-soft); border-color: color-mix(in srgb, var(--teal) 25%, transparent); }
.callout.dont { background: color-mix(in srgb, var(--danger) 12%, transparent); border-color: color-mix(in srgb, var(--danger) 30%, transparent); }
.callout-ic { flex-shrink: 0; font-size: 20px; line-height: 1.4; }
.callout h4 { margin: 0 0 6px; font-size: 15px; }
.callout p, .callout li { margin: 0; font-size: 15px; }
.script-box {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: 10px; padding: 18px 22px; margin: 22px 0; font-style: italic; color: var(--ink-soft);
}
.checklist { list-style: none; padding: 0 !important; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.checklist input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer; }
.checklist li.done span { text-decoration: line-through; color: var(--ink-mute); }

.affiliate-box {
  margin: 34px 0; padding: 22px; border-radius: var(--radius); background: var(--surface-2); border: 1px dashed var(--line);
}
.affiliate-box h4 { margin: 0 0 4px; font-size: 15px; }
.affiliate-box .note { font-size: 12px; color: var(--ink-mute); margin: 0 0 14px; }
.affiliate-links { display: flex; flex-wrap: wrap; gap: 10px; }
.affiliate-links a { font-size: 14px; padding: 9px 15px; border-radius: 9px; background: var(--surface); border: 1px solid var(--line); font-weight: 500; }
.affiliate-links a:hover { border-color: var(--accent); color: var(--accent); }

.related { margin-top: 56px; }
.related h3 { font-family: var(--ff-serif); font-size: 22px; margin-bottom: 18px; }

/* ---------- Tools ---------- */
.tool-shell { max-width: 780px; margin: 0 auto; }
.tool-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; margin-top: 24px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--ink-mute); font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: 15px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink);
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  font-size: 14px; cursor: pointer; user-select: none; transition: .15s;
}
.chip:hover { border-color: var(--accent); }
.chip.on { background: var(--accent); color: #fff; border-color: var(--accent); }
[data-theme="dark"] .chip.on { color: #1a1714; }
.tool-output {
  margin-top: 22px; padding: 22px; border-radius: var(--radius); background: var(--surface-2);
  border: 1px solid var(--line); white-space: pre-wrap; font-size: 15.5px; line-height: 1.7; min-height: 60px;
}
.tool-output:empty::before { content: "Your result will appear here."; color: var(--ink-mute); font-style: italic; }
.tool-output .placeholder { color: var(--ink-mute); font-style: italic; }
.result-metric { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 6px; }
.result-metric .m b { font-family: var(--ff-serif); font-size: 30px; display: block; line-height: 1.1; }
.result-metric .m span { font-size: 12.5px; color: var(--ink-mute); }
.verdict { padding: 12px 16px; border-radius: 10px; font-weight: 600; font-size: 15px; margin: 4px 0 14px; }
.verdict.good { background: var(--teal-soft); color: var(--teal); }
.verdict.warn { background: var(--accent-soft); color: var(--accent-ink); }
.verdict.bad  { background: color-mix(in srgb, var(--danger) 14%, transparent); color: var(--danger); }
.tool-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.gen-list { list-style: none; padding: 0; margin: 0; }
.gen-list li { padding: 10px 0; border-bottom: 1px solid var(--line-soft); display: flex; gap: 10px; }
.gen-list li:before { content: "→"; color: var(--accent); }
.card-flip { text-align: center; padding: 40px 24px; }
.card-flip .q { font-family: var(--ff-serif); font-size: clamp(20px,3vw,28px); line-height: 1.3; }
.card-flip .cat { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 18px; font-weight: 700; }

.tools-index-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.tool-card { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: transform .16s var(--step), box-shadow .2s, border-color .2s; }
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.tool-card .tool-ic { font-size: 26px; margin-bottom: 12px; }
.tool-card h3 { font-family: var(--ff-serif); font-size: 19px; margin: 0 0 6px; }
.tool-card p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden; }
.newsletter::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 90% 10%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 60%); opacity: .5; }
.newsletter > * { position: relative; }
.newsletter h2 { font-family: var(--ff-serif); font-weight: 600; font-size: clamp(26px,3.5vw,36px); margin: 0 0 10px; color: #fff; }
[data-theme="dark"] .newsletter h2 { color: var(--ink); }
.newsletter p { color: color-mix(in srgb, var(--bg) 78%, transparent); margin: 0 0 22px; max-width: 46ch; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.news-form input { flex: 1; min-width: 220px; padding: 14px 16px; border-radius: 11px; border: 1px solid transparent; font-size: 15px; font-family: inherit; }
.news-perks { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; font-size: 13.5px; color: color-mix(in srgb, var(--bg) 70%, transparent); }
.news-perks span::before { content: "✓ "; color: var(--accent); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface-2); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 56px 24px 40px; }
.footer-brand p { color: var(--ink-soft); font-size: 14.5px; max-width: 40ch; margin: 14px 0 0; }
.footer-disclaimer { font-size: 12.5px !important; color: var(--ink-mute) !important; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-mute); margin: 0 0 14px; }
.footer-col a { display: block; padding: 5px 0; color: var(--ink-soft); font-size: 14.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-tag { font-family: var(--ff-serif); font-size: 16px; color: var(--ink-soft); }
.footer-bottom { padding: 20px 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-mute); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(140%);
  background: var(--ink); color: var(--bg); padding: 14px 22px; border-radius: 12px; font-size: 14.5px; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 300; max-width: 90vw;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .35s var(--step), opacity .25s var(--step), visibility .35s;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }

/* ---------- Misc ---------- */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.value-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .vic { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; font-weight: 700; }
[data-theme="dark"] .value-list .vic { color: var(--accent); }
.value-list b { display: block; font-size: 15.5px; }
.value-list span { font-size: 14px; color: var(--ink-soft); }
.fade-in { animation: fadeIn .4s var(--step); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.empty-state { text-align: center; padding: 80px 20px; color: var(--ink-mute); }
.empty-state h1, .empty-state h2 { font-family: var(--ff-serif); color: var(--ink); font-weight: 600; }

/* AI Badge */
.ai-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-ink); background: var(--accent-soft); padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; }
[data-theme="dark"] .ai-badge { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .main-nav { position: fixed; inset: 66px 0 auto 0; flex-direction: column; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); padding: 8px 16px 16px; transform: translateY(-120%); transition: transform .3s var(--step); box-shadow: var(--shadow-lg); max-height: calc(100vh - 66px); overflow-y: auto; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .menu-btn { display: flex; }
  .split { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 8px; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .newsletter { padding: 34px 24px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 30px; }
  .hero-art { display: none; }
  .tool-panel { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto; }
}
