/* =========================================
   BULK TRASH HUB — Main Stylesheet
   Stack: Plain HTML/CSS/Vanilla JS
   LCP target: <2.25s (no webfonts blocking)
   ========================================= */

/* --- Custom Properties --- */
:root {
  --ink: #1a1a18;
  --ink-light: #3d3d38;
  --ink-muted: #6b6b64;
  --surface: #fafaf8;
  --surface-alt: #f3f3ef;
  --surface-card: #ffffff;
  --accent: #e35c1e;
  --accent-hover: #c74d14;
  --accent-light: #fef3ec;
  --accent-2: #2563a8;
  --accent-2-light: #eef4fc;
  --border: #e4e4df;
  --border-strong: #c8c8c0;
  --success: #217a4b;
  --success-light: #edf7f2;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(26,26,24,.07), 0 1px 2px rgba(26,26,24,.04);
  --shadow: 0 4px 12px rgba(26,26,24,.08), 0 1px 4px rgba(26,26,24,.05);
  --shadow-lg: 0 8px 32px rgba(26,26,24,.12), 0 2px 8px rgba(26,26,24,.06);
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --max-w: 1100px;
  --max-w-prose: 740px;
  --nav-h: 62px;
  --transition: 0.18s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 .5em;
}
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.5em; }
li { margin-bottom: .35em; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: .6em .9em; text-align: left; border-bottom: 1px solid var(--border); font-size: .94rem; }
th { background: var(--surface-alt); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-muted); }
tr:last-child td { border-bottom: none; }
code { font-family: var(--font-mono); font-size: .88em; background: var(--surface-alt); padding: .15em .4em; border-radius: var(--radius-sm); }
hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* --- Layout Utilities --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-prose { max-width: var(--max-w-prose); margin: 0 auto; padding: 0 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: .75rem; }
.gap-md { gap: 1.25rem; }
.gap-lg { gap: 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Navigation --- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.site-nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); text-decoration: none; white-space: nowrap; letter-spacing: -.01em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { padding: .4em .75em; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; color: var(--ink-light); transition: background var(--transition), color var(--transition); text-decoration: none; }
.nav-links a:hover, .nav-links a.active { background: var(--surface-alt); color: var(--ink); }
.nav-cta { background: var(--accent); color: #fff !important; border-radius: var(--radius-sm); padding: .4em .9em !important; transition: background var(--transition) !important; }
.nav-cta:hover { background: var(--accent-hover) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; color: var(--ink); }
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--surface-card); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; padding: 1rem; gap: .25rem; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65em 1em; }
  .nav-toggle { display: flex; }
}

/* --- Hero --- */
.hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-alt) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(ellipse at center, rgba(227,92,30,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: var(--accent-light); padding: .3em .8em; border-radius: 100px; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 660px; line-height: 1.15; margin-bottom: .6rem; }
.hero-sub { font-size: 1.1rem; color: var(--ink-light); max-width: 560px; margin-bottom: 1.75rem; line-height: 1.55; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-meta { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { }
.hero-stat strong { display: block; font-size: 1.5rem; font-family: var(--font-display); color: var(--ink); }
.hero-stat span { font-size: .82rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .04em; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: .45em; padding: .6em 1.4em; border-radius: var(--radius-sm); font-size: .95rem; font-weight: 600; cursor: pointer; text-decoration: none !important; border: 2px solid transparent; transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-alt); border-color: var(--ink-muted); }
.btn-accent2 { background: var(--accent-2); color: #fff; border-color: var(--accent-2); }
.btn-accent2:hover { background: #1a4f8a; border-color: #1a4f8a; }
.btn-sm { padding: .4em 1em; font-size: .85rem; }
.btn-lg { padding: .75em 1.8em; font-size: 1.05rem; }
.btn svg { width: 1em; height: 1em; flex-shrink: 0; }

/* --- Cards --- */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow); }
.card-link { display: block; text-decoration: none; color: inherit; }
.card-link:hover .card { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--border-strong); }
.card-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; }
.card-icon-orange { background: var(--accent-light); }
.card-icon-blue { background: var(--accent-2-light); }
.card-icon-green { background: var(--success-light); }
.card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.card p { font-size: .9rem; color: var(--ink-muted); margin: 0; }
.card-tag { display: inline-block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: .2em .7em; border-radius: 100px; margin-bottom: .75rem; }
.tag-velocity { background: #fef3c7; color: #92400e; }
.tag-guide { background: var(--accent-2-light); color: var(--accent-2); }
.tag-tool { background: var(--success-light); color: var(--success); }
.tag-city { background: #f3f0ff; color: #5b21b6; }

/* --- Sections --- */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-border { border-top: 1px solid var(--border); }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .4rem; }
.section-sub { color: var(--ink-muted); font-size: 1rem; margin-bottom: 2rem; max-width: 540px; }
.section-header { margin-bottom: 2rem; }
.section-header .eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; display: block; }

/* --- Article Layout --- */
.article-header { padding: 3rem 0 2rem; border-bottom: 1px solid var(--border); }
.article-header .eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; display: block; }
.article-header h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); max-width: 700px; }
.article-header .article-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; font-size: .85rem; color: var(--ink-muted); }
.article-header .article-meta span { display: flex; align-items: center; gap: .35em; }
.article-body { padding: 2.5rem 0 3rem; }
.article-body h2 { font-size: 1.45rem; margin-top: 2rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.article-body h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: .5rem; color: var(--ink-light); }
.article-body > * + * { }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.toc-box { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.toc-box h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-muted); margin-bottom: .75rem; }
.toc-box ol { padding-left: 1.25em; margin: 0; }
.toc-box li { font-size: .88rem; margin-bottom: .35rem; }
.toc-box a { color: var(--ink-light); text-decoration: none; }
.toc-box a:hover { color: var(--accent); }

/* --- Info Boxes --- */
.infobox { border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; border-left: 4px solid; }
.infobox-tip { background: var(--accent-2-light); border-color: var(--accent-2); }
.infobox-warn { background: #fffbeb; border-color: #d97706; }
.infobox-fact { background: var(--success-light); border-color: var(--success); }
.infobox-alert { background: #fff5f5; border-color: #ef4444; }
.infobox strong { display: block; margin-bottom: .3rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; opacity: .75; }
.infobox p { margin: 0; font-size: .94rem; }

/* --- FAQ --- */
.faq-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--ink); background: none; border: none; width: 100%; text-align: left; }
.faq-q:hover { color: var(--accent); }
.faq-q .faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: transform var(--transition), background var(--transition); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--accent-light); }
.faq-a { padding: 0 0 1.1rem; font-size: .95rem; color: var(--ink-light); display: none; }
.faq-a.open { display: block; }
.faq-a p { margin-bottom: .5em; }
.faq-a p:last-child { margin: 0; }

/* --- Tool Styles --- */
.tool-wrap { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.tool-header { background: var(--ink); color: #fff; padding: 1.25rem 1.5rem; }
.tool-header h2 { font-size: 1.15rem; margin: 0; color: #fff; }
.tool-header p { margin: .25rem 0 0; font-size: .88rem; opacity: .75; }
.tool-body { padding: 1.75rem; }
.tool-label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4rem; }
.tool-input, .tool-select {
  width: 100%; padding: .65em 1em; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); font-size: 1rem; font-family: var(--font-body);
  background: var(--surface-card); color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.tool-input:focus, .tool-select:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(37,99,168,.12); }
.tool-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b64' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.5em; }
.tool-field { margin-bottom: 1.25rem; }
.tool-result { background: var(--surface-alt); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-top: 1.5rem; display: none; }
.tool-result.show { display: block; }
.tool-result h3 { font-size: 1rem; margin-bottom: .75rem; color: var(--ink); }
.result-item { display: flex; justify-content: space-between; align-items: flex-start; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .92rem; gap: 1rem; }
.result-item:last-child { border: none; }
.result-label { color: var(--ink-muted); flex-shrink: 0; }
.result-value { font-weight: 600; text-align: right; }
.result-highlight { background: var(--accent); color: #fff; padding: 1rem 1.5rem; border-radius: var(--radius-sm); margin-top: 1rem; font-weight: 600; text-align: center; font-size: 1.05rem; }
.tool-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .tool-row-2 { grid-template-columns: 1fr; } }

/* --- Breadcrumb --- */
.breadcrumb { padding: .75rem 0; font-size: .85rem; color: var(--ink-muted); display: flex; gap: .4em; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .5; }

/* --- City Page --- */
.city-hero { padding: 2.5rem 0 2rem; border-bottom: 1px solid var(--border); background: linear-gradient(150deg, var(--surface) 60%, var(--accent-light) 100%); }
.city-hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.schedule-table-wrap { overflow-x: auto; }
.schedule-badge { display: inline-block; padding: .2em .7em; border-radius: 100px; font-size: .78rem; font-weight: 600; }
.badge-green { background: var(--success-light); color: var(--success); }
.badge-orange { background: var(--accent-light); color: var(--accent); }
.badge-blue { background: var(--accent-2-light); color: var(--accent-2); }
.badge-gray { background: var(--surface-alt); color: var(--ink-muted); }

/* --- Footer --- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 3rem 0 2rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .nav-logo { color: #fff; font-size: 1.1rem; margin-bottom: .6rem; display: block; }
.footer-brand p { font-size: .85rem; line-height: 1.6; opacity: .7; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); margin-bottom: .85rem; font-family: var(--font-body); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .88rem; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Stat Bar --- */
.stat-bar { display: flex; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.stat-bar-item { flex: 1; padding: 1.1rem 1rem; background: var(--surface-card); text-align: center; border-right: 1px solid var(--border); }
.stat-bar-item:last-child { border-right: none; }
.stat-bar-item strong { display: block; font-size: 1.4rem; font-family: var(--font-display); color: var(--ink); }
.stat-bar-item span { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-muted); }
@media (max-width: 640px) { .stat-bar { flex-direction: column; } .stat-bar-item { border-right: none; border-bottom: 1px solid var(--border); } .stat-bar-item:last-child { border-bottom: none; } }

/* --- Related Articles --- */
.related-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.related-card { display: block; text-decoration: none; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.25rem; background: var(--surface-card); transition: box-shadow var(--transition), border-color var(--transition); color: inherit; }
.related-card:hover { box-shadow: var(--shadow); border-color: var(--border-strong); text-decoration: none; }
.related-card .tag { font-size: .72rem; }
.related-card h4 { font-size: .95rem; margin: .35rem 0 .25rem; line-height: 1.3; }
.related-card p { font-size: .82rem; color: var(--ink-muted); margin: 0; }

/* --- Checklist --- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; padding: .55rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.checklist li:last-child { border: none; }
.checklist-icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; }
.checklist-check { color: var(--success); }
.checklist-x { color: #ef4444; }
.checklist-warn { color: #d97706; }

/* --- Print / PDF hint --- */
.pdf-promo { background: linear-gradient(135deg, #1a1a18 0%, #2d3a3a 100%); color: #fff; border-radius: var(--radius-lg); padding: 2rem 2.5rem; display: flex; align-items: center; gap: 2rem; margin: 2.5rem 0; }
.pdf-promo-icon { font-size: 3rem; flex-shrink: 0; }
.pdf-promo h3 { color: #fff; margin-bottom: .35rem; }
.pdf-promo p { opacity: .8; margin-bottom: 1rem; font-size: .93rem; }
@media (max-width: 640px) { .pdf-promo { flex-direction: column; text-align: center; padding: 1.5rem; } }

/* --- Search Bar --- */
.search-bar { position: relative; max-width: 480px; }
.search-bar input { width: 100%; padding: .7em 1em .7em 2.75em; border: 1px solid var(--border-strong); border-radius: 100px; font-size: .95rem; background: var(--surface-card); color: var(--ink); outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.search-bar input:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(37,99,168,.1); }
.search-bar .search-icon { position: absolute; left: .9em; top: 50%; transform: translateY(-50%); color: var(--ink-muted); pointer-events: none; }

/* --- Accordion (collapsible sections) --- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; padding: 1rem 1.25rem; font-size: .97rem; font-weight: 600; cursor: pointer; color: var(--ink); text-align: left; gap: 1rem; }
.accordion-btn:hover { background: var(--surface-alt); }
.accordion-btn .acc-icon { flex-shrink: 0; transition: transform var(--transition); }
.accordion-btn[aria-expanded="true"] .acc-icon { transform: rotate(180deg); }
.accordion-body { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s ease; }
.accordion-body.open { max-height: 1000px; padding: 0 1.25rem 1.25rem; }
.accordion-body p { font-size: .93rem; color: var(--ink-light); margin: 0 0 .65em; }
.accordion-body p:last-child { margin: 0; }

/* --- Skip link --- */
.skip-link { position: absolute; left: -9999px; top: 1rem; background: var(--ink); color: #fff; padding: .5em 1em; border-radius: var(--radius-sm); z-index: 9999; font-size: .9rem; }
.skip-link:focus { left: 1rem; }

/* --- Utility --- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fs-sm { font-size: .88rem; }
.fs-xs { font-size: .78rem; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }

/* --- Disclaimer Box --- */
.disclaimer { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-size: .82rem; color: var(--ink-muted); margin-top: 2.5rem; }
.disclaimer strong { color: var(--ink-light); }

/* --- Progress / Step indicators --- */
.steps { counter-reset: steps; list-style: none; padding: 0; margin: 0; }
.steps li { counter-increment: steps; display: flex; gap: 1rem; align-items: flex-start; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.steps li:last-child { border: none; }
.step-num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; }
.steps li strong { display: block; margin-bottom: .2rem; }
.steps li p { margin: 0; font-size: .93rem; color: var(--ink-light); }

/* --- Map Embed Placeholder --- */
.map-placeholder { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius); aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; color: var(--ink-muted); font-size: .9rem; text-align: center; padding: 1.5rem; }

/* --- Highlight quote --- */
.pullquote { border-left: 4px solid var(--accent); margin: 2rem 0; padding: 1rem 1.5rem; background: var(--accent-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.pullquote p { font-size: 1.1rem; font-family: var(--font-display); font-style: italic; color: var(--ink); margin: 0; line-height: 1.5; }

/* --- Print styles --- */
@media print {
  .site-nav, .site-footer, .tool-wrap, .related-list, .faq-list { display: none; }
  body { font-size: 12pt; background: #fff; color: #000; }
  h1, h2, h3 { page-break-after: avoid; }
  .article-layout { display: block; }
}
