/* Longboard Hub Pro — Theme stylesheet
   Premium skate-lifestyle design system. CSS variables come from functions.php.
   No build step, no jQuery.
*/

* { box-sizing: border-box; }

/* Ensure the [hidden] attribute always wins, even when an element carries
   .lbh-btn (inline-flex) or another display-setting class. Without this, the
   class selector outranks the user-agent [hidden] rule and the element stays
   visible. This is the same reason the quiz Submit button rendered on every step. */
[hidden] { display: none !important; }
:root {
	--lbh-font-sans: 'Inter', 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--lbh-font-display: 'Space Grotesk', 'Sora', var(--lbh-font-sans);
	--lbh-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
	--lbh-shadow-1: 0 1px 2px rgba(0,0,0,.06), 0 1px 1px rgba(0,0,0,.04);
	--lbh-shadow-2: 0 6px 24px -8px rgba(0,0,0,.12), 0 2px 6px -2px rgba(0,0,0,.08);
	--lbh-shadow-3: 0 24px 60px -16px rgba(0,0,0,.22), 0 8px 20px -8px rgba(0,0,0,.12);
}

html, body { background: var(--lbh-bg); color: var(--lbh-ink); }
body { margin: 0; font-family: var(--lbh-font-sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: var(--lbh-brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--lbh-font-display); font-weight: 700; line-height: 1.18; color: var(--lbh-ink); margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 3.6vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; color: var(--lbh-muted); }

code, .lbh-spec { font-family: var(--lbh-font-mono); font-size: .85em; }

.lbh-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.lbh-skip { position: absolute; left: -9999px; top: 0; background: var(--lbh-dark); color: #fff; padding: 8px 12px; z-index: 9999; }
.lbh-skip:focus { left: 8px; top: 8px; }

/* ---------- Layout ---------- */
.lbh-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.lbh-container--narrow { max-width: 820px; }

.lbh-section { padding: 72px 0; }
.lbh-section--card { background: var(--lbh-card); }
.lbh-section--quiet { background: var(--lbh-card); padding: 36px 0; }
.lbh-section--strip { padding: 0; }
.lbh-section--accent { background: linear-gradient(135deg, color-mix(in srgb, var(--lbh-brand) 8%, transparent), color-mix(in srgb, var(--lbh-accent) 6%, transparent)); }

.lbh-section__head { margin-bottom: 28px; max-width: 720px; }
.lbh-section__head--center { margin-inline: auto; text-align: center; }
.lbh-section__head h2 { margin-bottom: .25em; }
.lbh-section__head p { font-size: 1.05rem; }

.lbh-grid { display: grid; gap: 20px; }
.lbh-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lbh-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lbh-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
	.lbh-section { padding: 56px 0; }
	.lbh-grid--3, .lbh-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
	.lbh-grid--2, .lbh-grid--3, .lbh-grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.lbh-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease; text-decoration: none; }
.lbh-btn:hover { transform: translateY(-1px); text-decoration: none; }
.lbh-btn .lbh-icon { transition: transform .15s ease; }
.lbh-btn:hover .lbh-icon { transform: translateX(2px); }
.lbh-btn--sm { padding: 8px 14px; font-size: .85rem; }
.lbh-btn--block { display: flex; justify-content: center; width: 100%; }
.lbh-btn--primary { background: var(--lbh-brand); color: #00181a; box-shadow: var(--lbh-shadow-1); }
.lbh-btn--primary:hover { background: color-mix(in srgb, var(--lbh-brand) 90%, #fff); color: #00181a; }
.lbh-btn--secondary { background: var(--lbh-dark); color: #fff; }
.lbh-btn--accent { background: var(--lbh-accent); color: #1a0700; }
.lbh-btn--ghost { background: #fff; color: var(--lbh-ink); border-color: var(--lbh-line); }
.lbh-btn--ghost:hover { border-color: var(--lbh-ink); }
.lbh-btn--link { background: transparent; color: var(--lbh-brand); padding-inline: 0; border-radius: 0; }
.lbh-btn--link:hover { text-decoration: underline; }
.lbh-amz::after { content: ''; }

/* ---------- Header & nav ---------- */
.lbh-site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--lbh-line); }
.lbh-site-header__inner { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 18px; padding: 14px 20px; }
.lbh-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--lbh-font-display); font-weight: 800; color: var(--lbh-ink); }
.lbh-logo__mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; background: var(--lbh-dark); color: var(--lbh-brand); }
.lbh-menu { display: flex; list-style: none; padding: 0; margin: 0; gap: 4px; }
.lbh-menu li a { color: var(--lbh-ink); padding: 8px 12px; border-radius: 8px; font-weight: 500; }
.lbh-menu li a:hover { background: var(--lbh-card); text-decoration: none; }
.lbh-site-header__actions { display: flex; align-items: center; gap: 10px; }
.lbh-search input { padding: 9px 14px; border-radius: 999px; border: 1px solid var(--lbh-line); background: #fff; min-width: 200px; }
.lbh-search input:focus { outline: 2px solid var(--lbh-brand); outline-offset: 1px; }
.lbh-burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.lbh-burger span { display: block; width: 22px; height: 2px; background: var(--lbh-ink); margin: 4px 0; border-radius: 2px; }

@media (max-width: 900px) {
	.lbh-site-header__inner { grid-template-columns: auto 1fr auto; }
	.lbh-site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--lbh-line); padding: 12px 20px; }
	.lbh-site-nav.is-open { display: block; }
	.lbh-site-nav .lbh-menu { flex-direction: column; }
	.lbh-site-header__actions .lbh-search { display: none; }
	.lbh-burger { display: inline-block; }
}

/* ---------- Hero ---------- */
.lbh-hero { padding-top: 56px; padding-bottom: 56px; background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--lbh-brand) 6%, #fff)); position: relative; overflow: hidden; }
.lbh-hero::before { content: ''; position: absolute; inset: auto -10% -40% -10%; height: 60%; background: radial-gradient(ellipse at center, color-mix(in srgb, var(--lbh-brand) 28%, transparent), transparent 60%); filter: blur(40px); pointer-events: none; }
.lbh-hero__pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.lbh-hero__headline { max-width: 14ch; }
.lbh-hero__subhead { max-width: 64ch; color: var(--lbh-muted); font-size: 1.1rem; margin-bottom: 24px; }
.lbh-hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.lbh-hero__collage { display: grid; gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lbh-hero__card { background: #fff; border: 1px solid var(--lbh-line); border-radius: var(--lbh-radius-lg); padding: 16px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--lbh-shadow-2); }
.lbh-hero__card strong { font-family: var(--lbh-font-display); font-size: 1.1rem; }
.lbh-hero__card--deck { background: linear-gradient(160deg, var(--lbh-deck), color-mix(in srgb, var(--lbh-deck) 60%, #fff)); color: #fff; border-color: transparent; }
.lbh-hero__card--deck .lbh-chip { background: rgba(0,0,0,.25); color: #fff; }
.lbh-hero__card--deck .lbh-chip--brand { background: var(--lbh-brand); color: #001a1a; }
@media (max-width: 900px) { .lbh-hero__collage { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Pills & chips ---------- */
.lbh-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: var(--lbh-card); color: var(--lbh-muted); font-size: .8rem; font-weight: 600; border: 1px solid var(--lbh-line); }
.lbh-pill--brand { background: color-mix(in srgb, var(--lbh-brand) 16%, #fff); color: color-mix(in srgb, var(--lbh-brand) 60%, var(--lbh-dark)); border-color: color-mix(in srgb, var(--lbh-brand) 30%, var(--lbh-line)); }
.lbh-pill--affiliate { background: color-mix(in srgb, var(--lbh-accent) 14%, #fff); color: color-mix(in srgb, var(--lbh-accent) 70%, var(--lbh-dark)); border-color: color-mix(in srgb, var(--lbh-accent) 30%, var(--lbh-line)); }
.lbh-chip { display: inline-flex; padding: 4px 10px; border-radius: 999px; background: var(--lbh-card); color: var(--lbh-ink); font-size: .8rem; font-weight: 600; }
.lbh-chip--brand { background: var(--lbh-brand); color: #001a1a; }

/* ---------- Safety strip ---------- */
.lbh-safety-strip { display: flex; align-items: center; gap: 12px; background: color-mix(in srgb, var(--lbh-warn) 22%, #fff); border: 1px solid color-mix(in srgb, var(--lbh-warn) 40%, var(--lbh-line)); color: #5a4500; padding: 12px 16px; border-radius: var(--lbh-radius); margin: 20px 0; }
.lbh-safety-strip__icon { color: #5a4500; }

/* ---------- Quick start cards ---------- */
.lbh-quickstart-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .lbh-quickstart-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .lbh-quickstart-grid { grid-template-columns: repeat(2, 1fr); } }
.lbh-qs-card { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; background: #fff; border: 1px solid var(--lbh-line); border-radius: var(--lbh-radius); padding: 16px; text-align: left; font-weight: 600; font-size: .95rem; color: var(--lbh-ink); cursor: pointer; transition: transform .15s, box-shadow .15s, border-color .15s; }
.lbh-qs-card:hover, .lbh-qs-card.is-active { border-color: var(--lbh-brand); transform: translateY(-2px); box-shadow: var(--lbh-shadow-2); }
.lbh-qs-card .lbh-icon { color: var(--lbh-brand); }

/* ---------- Tool generic ---------- */
.lbh-tool { background: #fff; border: 1px solid var(--lbh-line); border-radius: var(--lbh-radius-lg); padding: 24px; box-shadow: var(--lbh-shadow-1); }
.lbh-tool__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.lbh-tool__wide { grid-column: 1 / -1; }
.lbh-tool__grid label { display: flex; flex-direction: column; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--lbh-ink); }
.lbh-tool__grid select, .lbh-tool__grid input, .lbh-tool__grid textarea { padding: 10px 12px; border-radius: 10px; border: 1px solid var(--lbh-line); background: #fff; font-size: .95rem; font-family: inherit; }
.lbh-tool__grid select:focus, .lbh-tool__grid input:focus, .lbh-tool__grid textarea:focus { outline: 2px solid var(--lbh-brand); outline-offset: 1px; }
.lbh-tool__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.lbh-tool__result { margin-top: 22px; padding: 18px; background: var(--lbh-card); border-radius: var(--lbh-radius); border: 1px dashed var(--lbh-line); }
.lbh-tool__result h3 { margin-top: 0; }
.lbh-tool__hint { display: block; margin-top: 10px; color: var(--lbh-muted); }
@media (max-width: 620px) { .lbh-tool__grid { grid-template-columns: 1fr; } }

/* ---------- Quiz ---------- */
.lbh-quiz__progress-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.lbh-quiz__progress { flex: 1; height: 6px; background: var(--lbh-card); border-radius: 999px; overflow: hidden; }
.lbh-quiz__progress-bar { height: 100%; width: 0%; background: var(--lbh-brand); transition: width .25s ease; }
.lbh-quiz__step { font-family: var(--lbh-font-mono); font-size: .8rem; color: var(--lbh-muted); white-space: nowrap; }
.lbh-quiz__error { margin: 10px 0 0; padding: 10px 14px; border-radius: 10px; background: color-mix(in srgb, var(--lbh-accent) 14%, #fff); border: 1px solid color-mix(in srgb, var(--lbh-accent) 40%, var(--lbh-line)); color: color-mix(in srgb, var(--lbh-accent) 70%, var(--lbh-dark)); font-size: .9rem; }
.lbh-quiz__stage.is-error .lbh-quiz__opts label { border-color: color-mix(in srgb, var(--lbh-accent) 40%, var(--lbh-line)); }
.lbh-quiz__stage { min-height: 200px; }
.lbh-quiz__question h3 { font-size: 1.25rem; }
.lbh-quiz__opts { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); margin-top: 14px; }
.lbh-quiz__opts label { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--lbh-line); border-radius: 12px; cursor: pointer; transition: background .12s, border-color .12s; }
.lbh-quiz__opts label:hover { border-color: var(--lbh-brand); }
.lbh-quiz__opts input { accent-color: var(--lbh-brand); }
.lbh-quiz__nav { display: flex; gap: 10px; margin-top: 18px; }
.lbh-quiz__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; color: var(--lbh-muted); font-size: .85rem; }
.lbh-quiz__result h3 { font-size: 1.4rem; }
.lbh-quiz__result .lbh-result-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); margin-bottom: 14px; }
.lbh-quiz__result .lbh-result-grid > div { background: #fff; border: 1px solid var(--lbh-line); border-radius: 10px; padding: 10px 12px; }
.lbh-quiz__result .lbh-result-cta { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 620px) { .lbh-quiz__opts { grid-template-columns: 1fr; } }

/* ---------- Cards / product boxes ---------- */
.lbh-card { background: #fff; border: 1px solid var(--lbh-line); border-radius: var(--lbh-radius-lg); padding: 18px; box-shadow: var(--lbh-shadow-1); }
.lbh-card--empty { text-align: center; padding: 32px; background: var(--lbh-card); }
.lbh-link-card { display: flex; align-items: center; gap: 10px; padding: 16px; color: var(--lbh-ink); border-color: var(--lbh-line); }
.lbh-link-card:hover { border-color: var(--lbh-brand); }
.lbh-product-box { display: flex; flex-direction: column; gap: 8px; }
.lbh-product-box--hero { padding: 26px; border-width: 2px; border-color: color-mix(in srgb, var(--lbh-brand) 60%, var(--lbh-line)); }
.lbh-product-box__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 4px; }
.lbh-product-box__head img { max-height: 100px; width: auto; border-radius: 8px; }
.lbh-product-box__title { font-size: 1.15rem; margin: 0; }
.lbh-product-box__sub { color: var(--lbh-muted); margin: 0; font-size: .92rem; }
.lbh-product-box__disclosure { font-size: .75rem; color: var(--lbh-muted); margin-top: 6px; }
.lbh-spec-list { list-style: none; padding: 0; margin: 6px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.lbh-spec-list code { background: var(--lbh-card); padding: 4px 8px; border-radius: 6px; }
.lbh-card__save { background: transparent; border: 1px solid var(--lbh-line); padding: 6px 10px; border-radius: 999px; font-size: .8rem; cursor: pointer; color: var(--lbh-ink); }
.lbh-card__save.is-saved { background: var(--lbh-brand); color: #001a1a; border-color: transparent; }

/* ---------- Comparison ---------- */
.lbh-compare-userwrap__title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 14px; }
.lbh-compare-userwrap__title .lbh-btn--link { padding: 0; font-size: .85rem; }
.lbh-compare-static__hint { color: var(--lbh-muted); font-size: .85rem; margin: 0 0 10px; }
.lbh-compare-wrap { overflow-x: auto; border: 1px solid var(--lbh-line); border-radius: var(--lbh-radius-lg); }
.lbh-compare-table { width: 100%; border-collapse: collapse; background: #fff; }
.lbh-compare-table th, .lbh-compare-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--lbh-line); font-size: .95rem; }
.lbh-compare-table th { background: var(--lbh-card); font-weight: 700; color: var(--lbh-ink); }
.lbh-compare-table tr:last-child td { border-bottom: 0; }
.lbh-compare-drawer { position: fixed; right: 16px; bottom: 16px; width: min(360px, calc(100% - 32px)); background: #fff; border: 1px solid var(--lbh-line); border-radius: var(--lbh-radius-lg); box-shadow: var(--lbh-shadow-3); z-index: 60; padding: 14px; }
.lbh-compare-drawer header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.lbh-compare-drawer ul { list-style: none; margin: 0; padding: 0; max-height: 240px; overflow: auto; }
.lbh-compare-drawer li { padding: 8px 0; border-bottom: 1px solid var(--lbh-line); display: flex; justify-content: space-between; gap: 8px; }
.lbh-compare-drawer li:last-child { border-bottom: 0; }
.lbh-compare-drawer button[data-lbh-compare-close] { background: transparent; border: 0; font-size: 1.4rem; cursor: pointer; line-height: 1; }

/* ---------- Deck visualizer ---------- */
.lbh-deck-viz__shapes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .lbh-deck-viz__shapes { grid-template-columns: repeat(2, 1fr); } }
.lbh-deck-viz__shape { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px; background: #fff; border: 1px solid var(--lbh-line); border-radius: var(--lbh-radius); cursor: pointer; transition: border-color .15s, transform .15s; }
.lbh-deck-viz__shape:hover, .lbh-deck-viz__shape.is-active { border-color: var(--lbh-brand); transform: translateY(-2px); }
.lbh-deck-viz__svg { display: block; width: 100%; max-width: 160px; height: auto; }
.lbh-deck-viz__svg svg { width: 100%; height: auto; display: block; }

.lbh-deck-viz__detail { margin-top: 18px; padding: 16px 18px; background: var(--lbh-card); border-radius: var(--lbh-radius); }
.lbh-deck-viz__detail h3 { margin-top: 0; }
.lbh-deck-viz__attrs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px; margin: 10px 0; }

/* ---------- Checklist ---------- */
.lbh-checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 620px) { .lbh-checklist { grid-template-columns: 1fr; } }
.lbh-checklist label { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: #fff; border: 1px solid var(--lbh-line); border-radius: 12px; cursor: pointer; font-weight: 500; color: var(--lbh-ink); }
.lbh-checklist input { accent-color: var(--lbh-brand); margin-top: 2px; }
.lbh-checklist label:has(input:checked) { background: color-mix(in srgb, var(--lbh-brand) 10%, #fff); border-color: var(--lbh-brand); }

/* ---------- Warnings / disclaimers ---------- */
.lbh-warning { padding: 14px 16px; border-radius: var(--lbh-radius); background: color-mix(in srgb, var(--lbh-warn) 16%, #fff); border: 1px solid color-mix(in srgb, var(--lbh-warn) 35%, var(--lbh-line)); color: #4a3700; }
.lbh-warning--soft { background: var(--lbh-card); border-style: dashed; color: var(--lbh-muted); }
.lbh-warning--downhill { background: color-mix(in srgb, var(--lbh-accent) 10%, #fff); border-color: color-mix(in srgb, var(--lbh-accent) 30%, var(--lbh-line)); color: color-mix(in srgb, var(--lbh-accent) 60%, var(--lbh-dark)); }
.lbh-disclaimer { font-size: .9rem; background: var(--lbh-card); border-left: 3px solid var(--lbh-warn); padding: 12px 14px; border-radius: 6px; color: var(--lbh-muted); }
.lbh-quickanswer { background: color-mix(in srgb, var(--lbh-brand) 10%, #fff); border-left: 3px solid var(--lbh-brand); padding: 12px 14px; border-radius: 6px; margin: 12px 0; }

/* ---------- Pros / Cons ---------- */
.lbh-proscons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 620px) { .lbh-proscons { grid-template-columns: 1fr; } }
.lbh-proscons__col { background: var(--lbh-card); border-radius: var(--lbh-radius); padding: 14px 18px; }
.lbh-proscons__col h4 { margin-top: 0; }
.lbh-proscons__col--pros h4 { color: #0a7d2c; }
.lbh-proscons__col--cons h4 { color: #b91c1c; }
.lbh-proscons ul { padding-left: 18px; margin: 0; }

/* ---------- FAQ ---------- */
.lbh-faq__item { background: #fff; border: 1px solid var(--lbh-line); border-radius: 12px; padding: 4px 14px; margin-bottom: 10px; }
.lbh-faq__item summary { cursor: pointer; font-weight: 600; padding: 12px 0; list-style: none; }
.lbh-faq__item summary::-webkit-details-marker { display: none; }
.lbh-faq__item summary::after { content: '+'; float: right; color: var(--lbh-muted); }
.lbh-faq__item[open] summary::after { content: '−'; }
.lbh-faq__answer { padding: 0 0 14px; color: var(--lbh-muted); }

/* ---------- Newsletter ---------- */
.lbh-newsletter { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.lbh-newsletter input { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--lbh-line); }
@media (max-width: 620px) { .lbh-newsletter { flex-direction: column; } .lbh-newsletter .lbh-btn { width: 100%; justify-content: center; } }

/* ---------- Trust ---------- */
.lbh-trust-card { display: flex; flex-direction: column; gap: 8px; }
.lbh-trust-card__icon { color: var(--lbh-brand); }

/* ---------- Footer ---------- */
.lbh-site-footer { background: var(--lbh-dark); color: #c8d0db; padding: 56px 0 24px; margin-top: 72px; }
.lbh-site-footer h2, .lbh-site-footer strong { color: #fff; }
.lbh-site-footer__grid { display: grid; gap: 28px; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; }
.lbh-site-footer__menu strong { display: block; margin-bottom: 10px; font-family: var(--lbh-font-display); }
.lbh-site-footer__menu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.lbh-site-footer__menu a { color: #c8d0db; }
.lbh-site-footer__disclosure p { color: #93a0b1; font-size: .85rem; }
.lbh-site-footer__bottom { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #93a0b1; }
.lbh-site-footer .lbh-logo__text { color: #fff; }
.lbh-site-footer__tagline { color: #93a0b1; margin: 12px 0 0; }
@media (max-width: 900px) { .lbh-site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .lbh-site-footer__grid { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky CTA ---------- */
.lbh-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; padding: 10px 14px env(safe-area-inset-bottom); background: rgba(14,17,22,.94); display: none; backdrop-filter: blur(10px); }
.lbh-mobile-cta .lbh-btn { width: 100%; justify-content: center; }
@media (max-width: 900px) { .lbh-mobile-cta { display: block; } body { padding-bottom: 84px; } }

/* ---------- Article / single ---------- */
.lbh-article__head h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.lbh-article__meta { color: var(--lbh-muted); font-size: .9rem; }
.lbh-article__hero { margin: 16px 0 28px; border-radius: var(--lbh-radius-lg); overflow: hidden; }
.lbh-prose { font-size: 1.05rem; line-height: 1.7; }
.lbh-prose p { color: var(--lbh-ink); }
.lbh-prose h2, .lbh-prose h3 { margin-top: 1.4em; }

/* ---------- Pagination ---------- */
.lbh-pagination { margin-top: 28px; }
.lbh-pagination .page-numbers { display: inline-flex; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--lbh-line); margin-right: 6px; color: var(--lbh-ink); }
.lbh-pagination .current { background: var(--lbh-brand); color: #001a1a; border-color: transparent; }

/* ---------- Section card (light) ---------- */
.lbh-section--card .lbh-tool, .lbh-section--card .lbh-card { box-shadow: var(--lbh-shadow-2); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
}
