
:root {
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui: 'Manrope', system-ui, sans-serif;
  --radius: 8px;
  --display-xl: 82px;
  --display-lg: 62px;
  --display-md: 46px;
  --title-lg: 36px;
  --body-lg: 20px;
  --body: 17px;
  --shadow-soft: 0 20px 52px rgba(22, 30, 38, .14);
  --shadow-firm: 0 28px 72px rgba(22, 30, 38, .24);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

:root, .theme-green { --bg: #f5f4ec; --surface: #fffff8; --surface-2: #e4e7d8; --ink: #14231f; --muted: #627269; --primary: #003f35; --primary-2: #176a5b; --accent: #bd1835; --line: rgba(0, 63, 53, .17); --seal-line: #e5eadc; --seal-metal: #c99b77; }
.theme-blue { --bg: #f3f5f2; --surface: #fffdf6; --surface-2: #e6edf0; --ink: #132235; --muted: #637281; --primary: #0d3150; --primary-2: #184b71; --accent: #b68a45; --line: rgba(13, 49, 80, .16); --seal-line: #dce5eb; --seal-metal: #d8c795; }
.theme-brown { --bg: #f6f0e7; --surface: #fffaf1; --surface-2: #e6d8c6; --ink: #261c18; --muted: #74645a; --primary: #4a352c; --primary-2: #72513d; --accent: #8e2436; --line: rgba(74, 53, 44, .19); --seal-line: #efe4d1; --seal-metal: #c9a96f; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); font-size: var(--body); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary-2); }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 2000; background: var(--surface); padding: 12px 16px; border: 1px solid var(--line); }
.skip-link:focus { top: 16px; }

.hub-body { background: #f4f2ea; }
.hub { min-height: 100dvh; display: grid; align-items: center; padding: 44px 24px; }
.hub-wrap { width: min(1120px, 100%); margin: 0 auto; }
.hub h1 { max-width: 920px; margin: 14px 0 18px; color: var(--primary); font-family: var(--font-heading); font-size: var(--display-xl); line-height: .98; letter-spacing: 0; }
.hub p { max-width: 720px; color: var(--muted); font-size: var(--body-lg); }
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.hub-card { display: grid; align-content: space-between; min-height: 310px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.hub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.hub-card span { font-family: var(--font-ui); font-weight: 800; font-size: 12px; color: var(--accent); text-transform: uppercase; }
.hub-card h2 { margin: 18px 0; color: var(--primary); font-family: var(--font-heading); font-size: 34px; line-height: 1.02; }
.hub-card p { margin: 0; font-size: 16px; }

.site-header { position: sticky; top: 0; z-index: 500; background: color-mix(in srgb, var(--surface) 93%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.topline { display: flex; justify-content: center; gap: 36px; padding: 8px 24px; background: var(--primary); color: #fff; font-family: var(--font-ui); font-size: 12px; }
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; color: var(--primary); }
.brand strong { display: block; font-family: var(--font-heading); font-size: 22px; line-height: 1; }
.brand small { display: block; color: var(--muted); font-family: var(--font-ui); font-size: 12px; margin-top: 4px; }
.brand-mark { width: 56px; height: 56px; flex: 0 0 auto; color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 18px; font-family: var(--font-ui); font-size: 14px; font-weight: 700; }
.nav-links a { padding: 12px 0; color: var(--ink); }
.nav-cta, .button { border: 0; border-radius: var(--radius); min-height: 46px; padding: 12px 17px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-ui); font-size: 14px; font-weight: 700; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease); }
.nav-cta, .button.primary { background: var(--primary); color: white; box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 22%, transparent); }
.button.secondary { background: var(--surface); color: var(--primary); border: 1px solid var(--line); }
.button.ghost { background: transparent; color: var(--primary); border: 1px solid currentColor; }
.button.full { width: 100%; }
.button:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.button.primary:hover, .nav-cta:hover { color: white; }
.hero-blue .button.primary { background: #f1c66d; color: #09243c; box-shadow: 0 16px 36px rgba(241, 198, 109, .28); }
.hero-blue .button.primary:hover { background: #ffe1a0; color: #09243c; }
.hero-blue .button.secondary { background: rgba(255,255,255,.96); color: #09243c; border-color: rgba(255,255,255,.88); }
.menu-toggle { display: none; min-height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 10px 14px; color: var(--ink); font-family: var(--font-ui); font-weight: 700; }

.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .ledger-photo img, .local-image img, .feature-image img, .contact-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-shell, .section, .hero-brown, .hero-green, .service-detail-hero { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.hero-copy h1, .ledger-title h1, .local-copy h1, .service-detail-copy h1, .section-head h2, .service-view h2, .contact-copy h2, .feature-copy h2 { font-family: var(--font-heading); line-height: .98; margin: 12px 0 18px; letter-spacing: 0; overflow-wrap: anywhere; }
.hero-copy h1, .ledger-title h1, .local-copy h1 { font-size: var(--display-lg); }
.hero-copy p, .ledger-summary p, .local-copy p, .service-detail-copy p { max-width: 690px; font-size: var(--body-lg); color: color-mix(in srgb, currentColor 78%, transparent); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); text-transform: uppercase; font-family: var(--font-ui); font-size: 12px; font-weight: 800; letter-spacing: 0; }
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.hero-blue { min-height: 720px; background: var(--primary); color: #fff; }
.hero-blue .hero-media { opacity: .5; }
.hero-blue .hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9, 24, 40, .96), rgba(9, 24, 40, .68), rgba(9, 24, 40, .18)); }
.hero-blue .hero-shell { position: relative; min-height: 720px; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 42px; align-items: end; padding: 104px 0 70px; }
.hero-blue .hero-copy h1 { max-width: 850px; font-size: var(--display-xl); }
.hero-brief { align-self: end; border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.11); backdrop-filter: blur(14px); border-radius: var(--radius); padding: 22px; font-family: var(--font-ui); box-shadow: var(--shadow-firm); }
.hero-brief strong, .hero-brief span, .hero-brief a { display: block; }
.hero-brief span, .hero-brief a { color: rgba(255,255,255,.78); margin-top: 8px; }

.hero-brown { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr); gap: 28px 44px; padding: 54px 0 80px; }
.ledger-rule { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--font-ui); font-size: 12px; text-transform: uppercase; }
.ledger-title { align-self: center; }
.ledger-title h1 { max-width: 640px; color: var(--primary); }
.ledger-photo { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 590px; background: var(--surface); box-shadow: var(--shadow-firm); }
.ledger-photo figcaption { padding: 16px 18px; color: var(--muted); font-family: var(--font-ui); font-size: 13px; }
.ledger-summary { grid-column: 1 / 2; border-left: 4px solid var(--accent); padding-left: 22px; align-self: start; }

.hero-green { display: grid; grid-template-columns: minmax(0, .94fr) minmax(330px, .72fr); gap: 36px; padding: 58px 0 70px; align-items: center; }
.local-copy { padding: 38px 0; }
.local-copy h1 { display: grid; gap: 2px; max-width: 840px; color: var(--primary); font-size: var(--display-xl); }
.local-copy h1 span { display: block; }
.local-image { height: 620px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-firm); }
.local-metrics { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--surface); }
.local-metrics article { padding: 18px 22px; border-right: 1px solid var(--line); }
.local-metrics article:last-child { border-right: 0; }
.local-metrics strong { display: block; font-family: var(--font-heading); font-size: 30px; line-height: 1; color: var(--primary); }
.local-metrics span { display: block; margin-top: 5px; color: var(--muted); font-family: var(--font-ui); font-size: 13px; }

.section { padding: 84px 0; }
.section-head { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: 36px; align-items: end; margin-bottom: 34px; }
.section-head h2, .service-view h2, .contact-copy h2, .feature-copy h2 { font-size: var(--display-md); color: var(--primary); }
.section-head p, .feature-copy p, .contact-copy p, .lead-paragraph { color: var(--muted); max-width: 660px; }
.trust-strip { width: min(1180px, calc(100% - 48px)); margin: -44px auto 0; position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-soft); }
.trust-strip article { padding: 22px; border-right: 1px solid var(--line); }
.trust-strip article:last-child { border-right: 0; }
.trust-strip h3, .service-card h3, .process-card h3, .testimonial-card strong { margin: 0 0 8px; font-family: var(--font-ui); font-size: 16px; color: var(--primary); line-height: 1.25; }
.trust-strip p, .service-card p, .process-card p { margin: 0; color: var(--muted); font-size: 15px; }

.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card { display: grid; grid-template-rows: 150px 1fr; min-height: 420px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease); }
.service-card:hover, .service-card.is-active { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: color-mix(in srgb, var(--primary) 38%, var(--line)); }
.service-image { display: block; overflow: hidden; background: var(--surface-2); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-body { display: flex; flex-direction: column; padding: 18px; }
.card-meta { display: flex; justify-content: space-between; gap: 14px; color: var(--accent); font-family: var(--font-ui); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.service-card h3 { font-size: 18px; margin-top: 14px; }
.service-card p { flex: 1; }
.text-link { display: inline-flex; align-self: flex-start; margin-top: 16px; padding-bottom: 3px; border-bottom: 1px solid currentColor; color: var(--primary); font-family: var(--font-ui); font-size: 13px; font-weight: 800; }
.services-brown .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.services-brown .service-card { grid-template-columns: 190px 1fr; grid-template-rows: 1fr; min-height: 230px; }

.service-view { display: none; grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr); gap: 28px; align-items: start; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 34px; }
.service-view:first-of-type { display: grid; }
.service-views:has(.service-view:target) .service-view:first-of-type { display: none; }
.service-view:target { display: grid; }
.service-view-panel { border-left: 4px solid var(--accent); padding-left: 24px; }
.service-view-panel h3 { color: var(--primary); font-family: var(--font-ui); margin: 0 0 10px; }
.service-view-panel li { color: var(--muted); margin: 8px 0; }

.service-detail-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, .8fr); gap: 38px; align-items: center; padding: 64px 0 34px; }
.service-detail-copy { border-left: 5px solid var(--accent); padding-left: 28px; }
.service-detail-copy h1 { max-width: 820px; color: var(--primary); font-size: var(--display-lg); }
.back-link { display: inline-flex; margin-bottom: 24px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--primary); font-family: var(--font-ui); font-size: 13px; font-weight: 800; }
.service-detail-image { height: 520px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-firm); }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.detail-panel { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 32px; }
.detail-panel h2 { margin: 12px 0 16px; color: var(--primary); font-family: var(--font-heading); font-size: var(--title-lg); line-height: 1.06; }
.detail-panel li { color: var(--muted); margin: 10px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.related-card { display: grid; min-height: 220px; align-content: start; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 24px; transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: color-mix(in srgb, var(--primary) 38%, var(--line)); }
.related-card span { color: var(--accent); font-family: var(--font-ui); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.related-card h3 { margin: 14px 0 10px; color: var(--primary); font-family: var(--font-ui); font-size: 18px; line-height: 1.2; }
.related-card p { margin: 0; color: var(--muted); font-size: 15px; }

.feature-split, .contact-band { display: grid; grid-template-columns: minmax(0, .95fr) minmax(340px, 1fr); gap: 38px; align-items: center; }
.feature-copy, .contact-copy { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 42px; }
.feature-copy ul { padding-left: 20px; color: var(--muted); }
.feature-image, .contact-image { height: 540px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.left-image .feature-image { order: -1; }
.process-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.process-card, .testimonial-card { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 22px; }
.process-card span { display: block; margin-bottom: 18px; color: var(--accent); font-family: var(--font-heading); font-size: 34px; line-height: 1; }
.testimonial-card span { display: inline-flex; margin-bottom: 14px; color: var(--accent); font-family: var(--font-ui); font-size: 12px; font-weight: 800; }
.testimonial-card p { color: var(--muted); margin: 0 0 18px; }

.site-footer { background: var(--primary); color: white; margin-top: 74px; padding: 64px max(24px, calc((100vw - 1180px) / 2)) 22px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
.footer-brand, .footer-brand:hover { color: white; }
.footer-brand .brand-mark { color: white; }
.site-footer p, .site-footer a, .site-footer small { color: rgba(255,255,255,.82); }
.site-footer h3 { font-family: var(--font-ui); color: white; margin-top: 0; }
.site-footer a { display: block; margin: 7px 0; }
.site-footer a:hover { color: #fff; }
.site-footer .button.ghost { display: inline-flex; width: auto; margin-top: 14px; color: #fff; border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); }
.site-footer .button.ghost:hover { background: #fff; color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); margin-top: 34px; padding-top: 16px; display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; color: rgba(255,255,255,.7); font-size: 13px; font-family: var(--font-ui); }

.floating-contact { position: fixed; right: 18px; bottom: 18px; z-index: 700; border: 0; border-radius: 999px; padding: 14px 18px; min-height: 48px; background: var(--accent); color: #fff; font-family: var(--font-ui); font-weight: 800; box-shadow: var(--shadow-firm); }
.drawer-backdrop { position: fixed; inset: 0; z-index: 850; background: rgba(12, 18, 26, .52); backdrop-filter: blur(4px); }
.contact-drawer { position: fixed; z-index: 900; top: 0; right: 0; width: min(480px, 100vw); height: 100dvh; overflow: auto; background: var(--surface); border-left: 1px solid var(--line); box-shadow: var(--shadow-firm); padding: 28px; transform: translateX(104%); transition: transform .34s var(--ease); }
.contact-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 18px; }
.drawer-head h2 { margin: 6px 0 0; font-family: var(--font-heading); color: var(--primary); font-size: var(--title-lg); line-height: 1; }
.icon-button { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink); font-size: 20px; line-height: 1; }
.lead-form { display: grid; gap: 14px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.lead-form label { display: grid; gap: 6px; color: var(--ink); font-family: var(--font-ui); font-size: 13px; font-weight: 700; }
.lead-form input, .lead-form textarea { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px; background: var(--bg); color: var(--ink); }
.lead-form textarea { resize: vertical; min-height: 112px; }
.form-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12px; }
.form-note { color: var(--muted); font-size: 14px; margin: 0; }
.drawer-contact { display: grid; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.drawer-contact a { color: var(--primary); font-family: var(--font-ui); font-weight: 700; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .58s var(--ease), transform .58s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  :root { --display-xl: 70px; --display-lg: 54px; --display-md: 40px; }
  .services-grid, .services-brown .services-grid, .process-grid, .testimonial-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-brown .service-card { grid-template-columns: 1fr; grid-template-rows: 180px 1fr; }
  .service-card { grid-template-rows: 180px 1fr; min-height: 360px; }
}

@media (max-width: 980px) {
  :root { --display-xl: 58px; --display-lg: 46px; --display-md: 34px; --body-lg: 18px; }
  .topline { display: none; }
  .nav-shell { min-height: 74px; width: min(100% - 32px, 1180px); }
  .brand strong { font-size: 18px; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .nav-links { position: fixed; inset: 74px 16px auto 16px; display: grid; gap: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 14px; transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease); }
  .nav-links.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { padding: 12px; }
  .hero-shell, .section, .hero-brown, .hero-green, .service-detail-hero, .trust-strip { width: min(100% - 32px, 1180px); }
  .hero-blue, .hero-blue .hero-shell { min-height: auto; }
  .hero-blue .hero-shell, .hero-brown, .hero-green, .service-detail-hero, .service-detail-grid, .section-head, .feature-split, .contact-band, .service-view, .footer-grid { grid-template-columns: 1fr; }
  .hero-blue .hero-shell { padding: 72px 0 54px; }
  .ledger-photo, .local-image, .service-detail-image, .feature-image, .contact-image { height: 420px; min-height: 0; }
  .ledger-summary { grid-column: auto; }
  .local-metrics, .trust-strip, .hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --display-xl: 38px; --display-lg: 36px; --display-md: 30px; --title-lg: 29px; --body: 16px; --body-lg: 17px; }
  .brand small { display: none; }
  .brand-mark { width: 48px; height: 48px; }
  .brand strong { font-size: 16px; line-height: 1.05; }
  .hero-actions, .form-row { display: grid; grid-template-columns: 1fr; }
  .button, .nav-cta { width: 100%; }
  .hero-blue .hero-shell, .hero-brown, .hero-green, .service-detail-hero { padding-top: 38px; padding-bottom: 48px; }
  .hero-blue .hero-shell { align-items: start; }
  .hero-copy h1, .ledger-title h1, .local-copy h1, .service-detail-copy h1 { line-height: 1.05; }
  .hero-copy p, .ledger-summary p, .local-copy p, .service-detail-copy p { line-height: 1.5; }
  .ledger-rule { display: none; }
  .ledger-photo, .local-image, .service-detail-image, .feature-image, .contact-image { height: 300px; }
  .local-metrics, .trust-strip, .services-grid, .services-brown .services-grid, .process-grid, .testimonial-grid, .related-grid, .hub-grid { grid-template-columns: 1fr; }
  .service-card, .services-brown .service-card { min-height: auto; grid-template-columns: 1fr; grid-template-rows: 160px 1fr; }
  .section { padding: 56px 0; }
  .feature-copy, .contact-copy, .service-view, .detail-panel { padding: 24px; }
  .service-detail-copy { padding-left: 20px; }
  .floating-contact { display: none; }
  .contact-drawer { width: 100vw; padding: 22px; }
  .site-footer { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 420px) {
  :root { --display-xl: 34px; --display-lg: 33px; --display-md: 28px; }
  .brand strong { max-width: 185px; font-size: 14px; }
  .brand-mark { width: 42px; height: 42px; }
  .nav-shell { gap: 10px; }
  .menu-toggle { min-height: 40px; padding: 9px 12px; }
}

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