/* Local Web Designer — project-specific visual system */
:root {
  --lwd-bg: #ffffff;
  --lwd-soft: #f7f9fc;
  --lwd-ink: #0f172a;
  --lwd-muted: #475569;
  --lwd-border: #e2e8f0;
  --lwd-blue: #2563eb;
  --lwd-blue-hover: #1d4ed8;
  --lwd-success: #15803d;
  --lwd-warning: #a16207;
  --lwd-error: #b91c1c;
  --lwd-radius: 12px;
  --lwd-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --lwd-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--lwd-ink);
  background: var(--lwd-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wp-site-blocks { padding: 0 !important; }
.wp-site-blocks > * { margin-block-start: 0 !important; }
.lwd-main h1, .lwd-main h2, .lwd-main h3, .lwd-site-header, .lwd-site-footer { font-family: inherit; }
a { color: var(--lwd-blue); }
a:hover { color: var(--lwd-blue-hover); }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .28);
  outline-offset: 3px;
}
.lwd-shell { width: min(calc(100% - 40px), var(--lwd-max)); margin-inline: auto; }
.lwd-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Header */
.lwd-site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.9);
}
.lwd-header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.lwd-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--lwd-ink); text-decoration: none; font-weight: 800; letter-spacing: -.025em; font-size: 20px; }
.lwd-brand:hover { color: var(--lwd-ink); }
.lwd-brand-mark { width: 38px; height: 38px; flex: 0 0 38px; }
.lwd-brand-web { color: var(--lwd-blue); }
.lwd-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.lwd-nav a { color: var(--lwd-muted); text-decoration: none; font-size: 15px; font-weight: 650; }
.lwd-nav a:hover { color: var(--lwd-ink); }
.lwd-nav .lwd-button { color: #fff; }
.lwd-nav .lwd-button:hover { color: #fff; }
.lwd-mobile-menu { display: none; }

/* Buttons and controls */
.lwd-button {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 18px; border: 1px solid transparent; border-radius: 10px;
  background: var(--lwd-blue); color: #fff; text-decoration: none; font: inherit; font-weight: 750;
  cursor: pointer; transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.lwd-button:hover { background: var(--lwd-blue-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37,99,235,.2); }
.lwd-button-secondary { background: #fff; border-color: var(--lwd-border); color: var(--lwd-ink); box-shadow: none; }
.lwd-button-secondary:hover { color: var(--lwd-ink); background: var(--lwd-soft); box-shadow: none; }
.lwd-text-link { font-weight: 700; text-underline-offset: 4px; }

/* Hero */
.lwd-main { overflow: clip; }
.lwd-hero {
  position: relative; isolation: isolate; padding: 92px 0 86px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37,99,235,.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border-bottom: 1px solid var(--lwd-border);
}
.lwd-hero:before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .42;
  background-image: linear-gradient(rgba(15,23,42,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size: 40px 40px; mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}
.lwd-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 72px; align-items: center; }
.lwd-eyebrow { color: var(--lwd-blue); font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lwd-hero h1 { margin: 14px 0 20px; max-width: 760px; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -.055em; }
.lwd-lead { max-width: 700px; margin: 0 0 30px; color: var(--lwd-muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.lwd-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; max-width: 730px; padding: 7px; background: #fff; border: 1px solid var(--lwd-border); border-radius: 14px; box-shadow: var(--lwd-shadow); }
.lwd-search-field { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 0 12px; }
.lwd-search-field svg { width: 20px; height: 20px; color: var(--lwd-muted); flex: 0 0 auto; }
.lwd-search input { width: 100%; min-height: 48px; border: 0; outline: 0; background: transparent; color: var(--lwd-ink); font: inherit; }
.lwd-search input::placeholder { color: #64748b; }
.lwd-hero-secondary { margin-top: 18px; color: var(--lwd-muted); font-size: 15px; }
.lwd-hero-secondary a { font-weight: 750; }

.lwd-proof-card { padding: 26px; border: 1px solid var(--lwd-border); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: var(--lwd-shadow); }
.lwd-proof-card h2 { margin: 0 0 8px; font-size: 23px; letter-spacing: -.03em; }
.lwd-proof-card > p { margin: 0 0 22px; color: var(--lwd-muted); }
.lwd-proof-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.lwd-proof-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding-top: 14px; border-top: 1px solid var(--lwd-border); }
.lwd-proof-list li:first-child { padding-top: 0; border-top: 0; }
.lwd-proof-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #bfdbfe; border-radius: 9px; color: var(--lwd-blue); background: #eff6ff; }
.lwd-proof-list strong { display: block; margin-bottom: 2px; font-size: 15px; }
.lwd-proof-list span { display: block; color: var(--lwd-muted); font-size: 14px; line-height: 1.5; }

/* Sections */
.lwd-section { padding: 82px 0; }
.lwd-section-soft { background: var(--lwd-soft); }
.lwd-section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.lwd-section-head h2 { margin: 0 0 8px; font-size: clamp(30px, 3.6vw, 42px); line-height: 1.12; letter-spacing: -.04em; }
.lwd-section-head p { margin: 0; max-width: 650px; color: var(--lwd-muted); }
.lwd-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lwd-card { padding: 24px; border: 1px solid var(--lwd-border); border-radius: var(--lwd-radius); background: #fff; }
.lwd-step { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 18px; border-radius: 9px; background: #eff6ff; color: var(--lwd-blue); font-weight: 850; font-size: 14px; }
.lwd-card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.025em; }
.lwd-card p { margin: 0; color: var(--lwd-muted); font-size: 15px; }

.lwd-location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lwd-location-card { display: block; padding: 20px; border: 1px solid var(--lwd-border); border-radius: var(--lwd-radius); background: #fff; color: var(--lwd-ink); text-decoration: none; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.lwd-location-card:hover { color: var(--lwd-ink); border-color: #bfdbfe; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(15,23,42,.07); }
.lwd-location-card strong { display: block; margin-bottom: 3px; font-size: 17px; }
.lwd-location-card span { color: var(--lwd-muted); font-size: 14px; }
.lwd-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.lwd-chip { display: inline-flex; align-items: center; min-height: 42px; padding: 8px 14px; border: 1px solid var(--lwd-border); border-radius: 10px; background: #fff; color: var(--lwd-ink); text-decoration: none; font-size: 14px; font-weight: 700; }
.lwd-chip:hover { background: #eff6ff; border-color: #bfdbfe; color: var(--lwd-blue-hover); }

.lwd-guide-band { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; padding: 34px; border: 1px solid var(--lwd-border); border-radius: 18px; background: #fff; }
.lwd-guide-band h2 { margin: 0 0 10px; font-size: 32px; letter-spacing: -.035em; }
.lwd-guide-band p { margin: 0; color: var(--lwd-muted); }
.lwd-guide-actions { display: flex; align-items: center; justify-content: end; gap: 12px; }

.lwd-designer-cta { position: relative; overflow: hidden; padding: 44px; border-radius: 20px; background: var(--lwd-ink); color: #fff; }
.lwd-designer-cta:after { content: ""; position: absolute; width: 320px; height: 320px; right: -140px; top: -150px; border-radius: 50%; background: rgba(37,99,235,.35); }
.lwd-designer-cta > * { position: relative; z-index: 1; }
.lwd-designer-cta h2 { margin: 0 0 10px; max-width: 700px; font-size: 34px; letter-spacing: -.04em; }
.lwd-designer-cta p { max-width: 720px; margin: 0 0 22px; color: #cbd5e1; }
.lwd-designer-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
.lwd-designer-actions .lwd-button { margin: 0; }
.lwd-designer-cta .lwd-button-secondary { border-color: rgba(255,255,255,.28); background: transparent; color: #fff; }
.lwd-designer-cta .lwd-button-secondary:hover { background: rgba(255,255,255,.08); color: #fff; }

.lwd-about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.lwd-about h2 { margin: 0; font-size: 36px; letter-spacing: -.04em; }
.lwd-about p { margin-top: 0; color: var(--lwd-muted); }
.lwd-disclosure { padding: 18px 20px; border-left: 3px solid var(--lwd-border); background: var(--lwd-soft); color: var(--lwd-muted); font-size: 14px; }

/* Directory archive */
.lwd-archive-hero { padding: 64px 0 34px; background: var(--lwd-soft); border-bottom: 1px solid var(--lwd-border); }
.lwd-archive-hero h1 { margin: 0 0 10px; font-size: clamp(34px, 4vw, 46px); letter-spacing: -.045em; }
.lwd-archive-hero p { margin: 0 0 24px; color: var(--lwd-muted); }
.lwd-directory-layout { padding: 46px 0 80px; }
.lwd-directory-toolbar { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.lwd-directory-toolbar p { margin: 0; color: var(--lwd-muted); font-size: 14px; }
.lwd-filter-row { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; margin-top: 16px; }
.lwd-filter-row label { display: grid; gap: 5px; color: var(--lwd-muted); font-size: 13px; font-weight: 700; }
.lwd-filter-row input, .lwd-filter-row select { min-height: 44px; min-width: 190px; padding: 9px 11px; border: 1px solid var(--lwd-border); border-radius: 9px; background: #fff; color: var(--lwd-ink); font: inherit; font-size: 15px; }
.lwd-directory-filters { display: grid; grid-template-columns: minmax(240px, 1.5fr) minmax(190px, 1fr) minmax(170px, .8fr) auto; gap: 12px; align-items: end; margin-top: 22px; }
.lwd-directory-filters label { display: grid; gap: 6px; color: var(--lwd-muted); font-size: 13px; font-weight: 750; }
.lwd-directory-filters input, .lwd-directory-filters select { min-height: 46px; width: 100%; padding: 10px 12px; border: 1px solid var(--lwd-border); border-radius: 9px; background: #fff; color: var(--lwd-ink); font: inherit; font-size: 15px; }
.lwd-directory-filters input:focus, .lwd-directory-filters select:focus { outline: 3px solid rgba(37,99,235,.14); border-color: var(--lwd-blue); }
.lwd-filter-actions { display: flex; gap: 10px; align-items: center; min-height: 46px; }
.lwd-filter-clear { color: var(--lwd-muted); font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.lwd-filter-clear:hover { color: var(--lwd-ink); text-decoration: underline; }
.lwd-result-summary { margin: 0 0 20px; color: var(--lwd-muted); font-size: 14px; }
.wp-block-post-template.lwd-results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; list-style: none; padding: 0; }
.wp-block-post-template.lwd-results-grid > li { margin: 0; }
.lwd-result-card { height: 100%; padding: 22px; border: 1px solid var(--lwd-border); border-radius: var(--lwd-radius); background: #fff; }
.lwd-result-card .wp-block-post-title { margin: 0 0 8px; font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.lwd-result-card .wp-block-post-title a { color: var(--lwd-ink); text-decoration: none; }
.lwd-result-card .wp-block-post-title a:hover { color: var(--lwd-blue); }
.lwd-result-card .wp-block-post-excerpt { color: var(--lwd-muted); font-size: 15px; }
.lwd-result-card .wp-block-post-terms { font-size: 13px; color: var(--lwd-muted); }
.lwd-card-fact { margin: 0; }
.lwd-card-fact:not(:has(.wp-block-post-terms)) { display: none; }
.lwd-card-meta-label { margin-top: 7px; color: var(--lwd-ink); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
.lwd-result-location, .lwd-result-regions { margin: 1px 0 6px; color: var(--lwd-muted); font-size: 13px; line-height: 1.45; }
.lwd-result-location a, .lwd-result-regions a { color: var(--lwd-muted); text-decoration: none; }
.lwd-result-services { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.lwd-result-services a { display: inline-flex; align-items: center; min-height: 30px; padding: 4px 9px; border: 1px solid var(--lwd-border); border-radius: 999px; background: var(--lwd-soft); color: var(--lwd-muted); text-decoration: none; font-size: 12px; line-height: 1.2; }
.lwd-result-services .wp-block-post-terms__separator { display: none; }
.lwd-result-services a:nth-of-type(n+5) { display: none; }
.lwd-no-results { padding: 34px; border: 1px dashed #cbd5e1; border-radius: var(--lwd-radius); background: var(--lwd-soft); }

/* Designer profile */
.lwd-profile { padding: 56px 0 86px; }
.lwd-breadcrumbs { margin-bottom: 26px; color: var(--lwd-muted); font-size: 14px; }
.lwd-breadcrumbs a { color: var(--lwd-muted); }
.lwd-profile .wp-block-post-title { margin: 0 0 12px; font-size: clamp(36px, 4.6vw, 52px); letter-spacing: -.05em; }
.lwd-profile-shell { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 42px; align-items: start; }
.lwd-profile-main { min-width: 0; }
.lwd-profile-tax-section { margin-top: 28px; }
.lwd-profile-tax-section:not(:has(.wp-block-post-terms)) { display: none; }
.lwd-profile-tax-section h2 { margin-bottom: 10px; }
.lwd-profile-terms { display: flex; flex-wrap: wrap; gap: 8px; }
.lwd-profile-terms .wp-block-post-terms__separator { display: none; }
.lwd-profile-terms a { display: inline-flex; padding: 5px 10px; border: 1px solid var(--lwd-border); border-radius: 999px; background: var(--lwd-soft); color: var(--lwd-muted); text-decoration: none; font-size: 13px; }
.lwd-profile-sidebar { position: sticky; top: 104px; padding: 22px; border: 1px solid var(--lwd-border); border-radius: var(--lwd-radius); background: #fff; }
.lwd-meta-list { display: grid; gap: 14px; margin: 0; }
.lwd-meta-row { padding-bottom: 13px; border-bottom: 1px solid var(--lwd-border); }
.lwd-meta-row:last-child { padding-bottom: 0; border-bottom: 0; }
.lwd-meta-label { display: block; margin-bottom: 3px; color: var(--lwd-muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.lwd-meta-value { color: var(--lwd-ink); font-weight: 650; }
.lwd-verified { color: var(--lwd-success); }
.lwd-unverified { color: var(--lwd-warning); }
.lwd-profile-status { display: grid; gap: 10px; margin-top: 4px; }
.lwd-status-row { display: grid; gap: 2px; padding: 10px 0; border-bottom: 1px solid var(--lwd-border); }
.lwd-status-row:last-child { border-bottom: 0; }
.lwd-status-row span { color: var(--lwd-muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.lwd-status-row strong { color: var(--lwd-ink); font-size: 14px; }
.lwd-status-row a { overflow-wrap: anywhere; }
.lwd-claim { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--lwd-border); }

/* Listing claim */
.lwd-claim-page { padding: 64px 0 90px; }
.lwd-claim-page .lwd-shell { max-width: 760px; }
.lwd-claim-page h1 { margin-bottom: 14px; font-size: clamp(36px, 4.5vw, 52px); letter-spacing: -.045em; }
.lwd-claim-page > .lwd-shell > p, .lwd-claim-page .wp-block-group > p { color: var(--lwd-muted); }
.lwd-claim-form-wrap { margin-top: 28px; }
.lwd-claim-target { display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; margin-bottom: 18px; padding: 14px 16px; border: 1px solid var(--lwd-border); border-radius: 10px; background: var(--lwd-soft); }
.lwd-claim-target span { color: var(--lwd-muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.lwd-claim-form { display: grid; gap: 18px; }
.lwd-claim-form label { display: grid; gap: 7px; color: var(--lwd-ink); font-size: 14px; font-weight: 750; }
.lwd-claim-form input, .lwd-claim-form textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--lwd-border); border-radius: 9px; background: #fff; color: var(--lwd-ink); font: inherit; font-weight: 400; }
.lwd-claim-form input:focus, .lwd-claim-form textarea:focus { outline: 3px solid rgba(37,99,235,.14); border-color: var(--lwd-blue); }
.lwd-form-help { margin: -2px 0 0; color: var(--lwd-muted); font-size: 13px; line-height: 1.55; }
.lwd-form-message { margin-bottom: 18px; padding: 14px 16px; border-radius: 10px; font-size: 14px; }
.lwd-form-success { border: 1px solid #bbf7d0; background: #f0fdf4; color: #166534; }
.lwd-form-error { border: 1px solid #fecaca; background: #fef2f2; color: var(--lwd-error); }
.lwd-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.lwd-site-footer { border-top: 1px solid var(--lwd-border); background: #fff; }
.lwd-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding: 56px 0 38px; }
.lwd-footer-brand p { max-width: 330px; color: var(--lwd-muted); font-size: 14px; }
.lwd-footer-col h2 { margin: 0 0 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.lwd-footer-col a { display: block; margin: 8px 0; color: var(--lwd-muted); text-decoration: none; font-size: 14px; }
.lwd-footer-col a:hover { color: var(--lwd-ink); }
.lwd-footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0 30px; border-top: 1px solid var(--lwd-border); color: var(--lwd-muted); font-size: 13px; }

@media (max-width: 980px) {
  .lwd-nav { display: none; }
  .lwd-mobile-menu { display: block; margin-left: auto; position: relative; }
  .lwd-mobile-menu summary { list-style: none; cursor: pointer; min-width: 44px; min-height: 44px; display: grid; place-items: center; border: 1px solid var(--lwd-border); border-radius: 10px; }
  .lwd-mobile-menu summary::-webkit-details-marker { display: none; }
  .lwd-mobile-panel { position: absolute; right: 0; top: 52px; width: min(320px, calc(100vw - 40px)); padding: 14px; border: 1px solid var(--lwd-border); border-radius: 12px; background: #fff; box-shadow: var(--lwd-shadow); }
  .lwd-mobile-panel a { display: block; padding: 11px 12px; color: var(--lwd-ink); text-decoration: none; border-radius: 8px; }
  .lwd-mobile-panel a:hover { background: var(--lwd-soft); }
  .lwd-hero-grid, .lwd-guide-band, .lwd-about, .lwd-profile-shell { grid-template-columns: 1fr; }
  .lwd-hero-grid { gap: 38px; }
  .lwd-guide-actions { justify-content: start; }
  .lwd-location-grid { grid-template-columns: repeat(2, 1fr); }
  .lwd-directory-filters { grid-template-columns: 1fr 1fr; }
  .lwd-filter-actions { align-self: end; }
  .wp-block-post-template.lwd-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lwd-profile-sidebar { position: static; }
  .lwd-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (max-width: 680px) {
  .lwd-shell { width: min(calc(100% - 28px), var(--lwd-max)); }
  .lwd-header-inner { min-height: 68px; }
  .lwd-brand { font-size: 17px; }
  .lwd-brand-mark { width: 34px; height: 34px; flex-basis: 34px; }
  .lwd-hero { padding: 58px 0 54px; }
  .lwd-hero h1 { font-size: clamp(36px, 12vw, 46px); }
  .lwd-search { grid-template-columns: 1fr; gap: 7px; }
  .lwd-search .lwd-button { width: 100%; }
  .lwd-section { padding: 56px 0; }
  #for-designers { padding-bottom: 24px; }
  #about { padding-top: 24px; }
  .lwd-section-head { display: block; margin-bottom: 24px; }
  .lwd-directory-filters { grid-template-columns: 1fr; }
  .lwd-filter-actions { display: grid; grid-template-columns: 1fr; }
  .lwd-filter-actions .lwd-button { width: 100%; }
  .lwd-filter-clear { text-align: center; }
  .lwd-card-grid, .lwd-location-grid, .wp-block-post-template.lwd-results-grid { grid-template-columns: 1fr; }
  .lwd-guide-band, .lwd-designer-cta { padding: 26px; }
  .lwd-designer-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .lwd-designer-actions .lwd-button { width: 100%; min-width: 0; white-space: normal; text-align: center; }
  .lwd-designer-cta h2, .lwd-guide-band h2 { font-size: 28px; }
  .lwd-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lwd-footer-brand { grid-column: 1 / -1; }
  .lwd-footer-bottom { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
