:root {
  --navy: #102e53;
  --navy-deep: #081d36;
  --navy-soft: #1b456e;
  --cyan: #108fbc;
  --cyan-soft: #dff4fb;
  --mint: #159775;
  --mint-soft: #e5f5ef;
  --yellow: #ffd45a;
  --yellow-soft: #fff5ce;
  --coral: #ed715d;
  --coral-soft: #fff0eb;
  --cream: #fffaf1;
  --mist: #f2f7fa;
  --paper: #ffffff;
  --ink: #12243a;
  --muted: #5f7184;
  --line: #d9e4eb;
  --line-strong: #bdceda;
  --shadow-sm: 0 8px 24px rgba(16, 46, 83, .08);
  --shadow-md: 0 18px 48px rgba(16, 46, 83, .13);
  --max: 1220px;
  --header: 78px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; left: 18px; top: -80px; z-index: 999; padding: 11px 16px;
  border-radius: 10px; background: var(--navy); color: #fff; text-decoration: none;
  font-weight: 750; box-shadow: var(--shadow-md);
}
.skip:focus { top: 14px; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* Shared navigation */
.site-header {
  position: sticky; top: 0; z-index: 80; min-height: var(--header);
  color: var(--navy); background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav { min-height: var(--header); display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; text-decoration: none; }
.brand > img { width: 50px; height: 50px; object-fit: contain; }
.brand-copy { display: grid; gap: 0; line-height: 1; }
.brand-copy strong { font-size: 17px; letter-spacing: .025em; }
.brand-copy span { margin-top: 6px; color: var(--cyan); font-size: 10.5px; font-weight: 850; letter-spacing: .22em; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
  min-height: 44px; display: inline-flex; align-items: center; padding: 0 11px;
  border-radius: 10px; color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 720;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--mist); color: var(--navy); }
.nav-cta, .button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 19px; border: 1px solid transparent; border-radius: 13px; text-decoration: none;
  font-weight: 800; cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s ease;
}
.nav-cta { min-height: 44px; padding-inline: 15px; color: #fff; background: var(--navy); font-size: 14px; }
.nav-cta:hover, .button.primary:hover { background: var(--navy-deep); transform: translateY(-1px); }
.nav-toggle {
  display: none; min-width: 48px; min-height: 44px; margin-left: auto; padding: 0 12px;
  border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; font-size: 14px; font-weight: 800;
}
.nav-overlay { display: none; }

/* Primitives */
.button.primary { background: var(--navy); color: #fff; }
.button.secondary { background: var(--cyan-soft); color: var(--navy); }
.button.light { background: #fff; color: var(--navy); }
.button.ghost { border-color: currentColor; background: transparent; }
.button.glass { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); color: #fff; backdrop-filter: blur(8px); }
.button:hover { box-shadow: var(--shadow-sm); }
.text-link { color: var(--cyan); text-decoration: none; font-weight: 800; text-underline-offset: 4px; }
.text-link:hover { text-decoration: underline; }
.text-link.light { color: #8fddf5; }
.eyebrow {
  margin: 0 0 10px; color: var(--cyan); font-size: 12px; font-weight: 900;
  letter-spacing: .16em; text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { color: var(--navy); letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(2.55rem, 5vw, 4.7rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.35rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1em; }
.section { padding: 88px 0; }
.section.white { background: #fff; }
.section.navy { color: #fff; background: var(--navy); }
.section.navy h2, .section.navy h3 { color: #fff; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.section-head h2 { max-width: 15ch; margin: 0; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }
.section.navy .section-head p { color: #c4d5e3; }

/* Internal page heroes — compact, useful, not theatrical */
.breadcrumbs { padding: 18px 0; color: var(--muted); font-size: 14px; }
.breadcrumbs a { text-decoration: none; }
.page-hero, .hero {
  position: relative; isolation: isolate; overflow: hidden; padding: 68px 0;
  color: #fff; background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.page-hero::after, .hero::after {
  content: ""; position: absolute; z-index: -1; width: 540px; height: 540px; right: -120px; bottom: -330px;
  border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(28,170,206,.3), rgba(28,170,206,0) 68%);
}
.page-hero .eyebrow, .hero .eyebrow { color: #8fddf5; }
.page-hero h1, .hero h1 { max-width: 14ch; margin: 12px 0 18px; color: #fff; }
.page-hero p, .hero p { max-width: 680px; margin: 0; color: #cddbe7; font-size: 1.08rem; }
.page-hero.compact { padding: 56px 0; }
.page-hero.compact h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(310px, .75fr); gap: 50px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.hero-card {
  color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.hero-card h2 { margin: 0 0 12px; font-size: 1.35rem; }

/* Identity/logo treatment */
.logo-shell {
  min-height: 120px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 18px;
}
.logo-shell img { width: auto; height: auto; max-width: 84%; max-height: 86px; object-fit: contain; object-position: center; }
.logo-shell[data-logo-fit="fill"] { padding: 0; }
.logo-shell[data-logo-fit="fill"] img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; }
.nameplate {
  width: 100%; min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 24px 18px; text-align: center; color: #fff;
  background: linear-gradient(145deg, var(--navy-soft), var(--navy-deep));
}
.nameplate-name { max-width: 18ch; font-size: 1.08rem; font-weight: 850; line-height: 1.18; letter-spacing: -.025em; }
.nameplate-cat { color: #91ddf3; font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.verified { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 8px; color: var(--mint); background: var(--mint-soft); font-size: .78rem; font-weight: 800; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 18px; }
.fact { padding: 13px 14px; border-radius: 13px; background: var(--mist); }
.fact small { display: block; color: var(--muted); font-weight: 700; }
.fact strong { display: block; margin-top: 2px; }

/* Content layouts */
.quick-nav { position: sticky; top: var(--header); z-index: 20; overflow-x: auto; background: rgba(242,247,250,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.quick-nav .wrap { display: flex; gap: 8px; padding-block: 11px; }
.quick-nav a { min-height: 40px; display: inline-flex; align-items: center; flex: none; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; text-decoration: none; font-size: 14px; font-weight: 750; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 54px; }
.prose { font-size: 1.05rem; }
.prose > * { max-width: 740px; }
.prose h2 { margin: 54px 0 14px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 30px 0 10px; }
.prose p, .prose li { color: #3e5265; }
.prose .lede { color: var(--ink); font-size: 1.24rem; line-height: 1.52; }
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.side-card, .card, .stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: none;
}
.side-card { padding: 22px; }
.side-card h2, .side-card h3 { margin: 0 0 12px; font-size: 1.2rem; }
.side-card p:last-child { margin-bottom: 0; }
.route-card { color: #fff; border: 0; background: linear-gradient(145deg, var(--navy-soft), var(--navy-deep)); }
.route-card h2, .route-card h3 { color: #fff; }
.route-card p { color: #ccdae6; }
.route-mini { height: 210px; overflow: hidden; margin: 16px 0; border-radius: 14px; background: #cbdad2; }
.route-mini svg { width: 100%; height: 100%; }
.callout { margin: 28px 0; padding: 21px 23px; border-left: 5px solid var(--yellow); border-radius: 0 16px 16px 0; background: #fff; box-shadow: var(--shadow-sm); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { overflow: hidden; text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: #dfe9ee; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card h2, .card h3 { margin: 0 0 8px; font-size: 1.22rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.card .logo-shell { min-height: 128px; border: 0; border-radius: 0; border-bottom: 1px solid var(--line); }
.tag { display: inline-flex; margin-bottom: 10px; padding: 5px 8px; border-radius: 7px; color: var(--navy); background: var(--cyan-soft); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { padding: 22px; }
.stat strong { display: block; color: var(--navy); font-size: 1.85rem; letter-spacing: -.04em; }
.stat span { color: var(--muted); }
.icon-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0; list-style: none; }
.icon-list li { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.media-duo { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.media-duo img { width: 100%; height: 100%; min-height: 320px; border-radius: 22px; object-fit: cover; }
.media-caption { margin-top: 7px; color: var(--muted); font-size: .78rem; }

/* Directory and autocomplete */
.directory-tools {
  position: sticky; top: calc(var(--header) + 12px); z-index: 15; display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(190px, .5fr); gap: 12px; align-items: end;
  margin-bottom: 22px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm);
}
.directory-tools input, .directory-tools select, .form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; min-height: 50px; padding: 0 14px; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line-strong); border-radius: 12px;
}
.directory-count { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .88rem; font-weight: 700; }
.ns-combobox, .cmd { position: relative; min-width: 0; }
.ns-search-label { display: block; margin-bottom: 6px; color: var(--muted); font-size: .75rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.ns-listbox {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 40; max-height: min(380px, 62vh);
  overflow: auto; margin: 0; padding: 6px; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
}
.ns-listbox[hidden] { display: none !important; }
.ns-listbox [role="option"] { min-height: 48px; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 9px 11px; border-radius: 9px; cursor: pointer; }
.ns-listbox [role="option"]:hover, .ns-listbox [role="option"].is-active { background: var(--mist); }
.ns-opt-name { color: var(--ink); font-weight: 800; line-height: 1.22; }
.ns-opt-meta { color: var(--muted); font-size: .78rem; }
.ns-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.directory-item {
  min-height: 132px; display: grid; grid-template-columns: 112px minmax(0, 1fr); overflow: hidden;
  border: 1px solid var(--line); border-radius: 18px; background: #fff; text-decoration: none;
  transition: transform .18s var(--ease), border-color .18s ease, box-shadow .18s ease;
}
.directory-item:hover { transform: translateY(-2px); border-color: #83c7dc; box-shadow: var(--shadow-sm); }
.directory-item .logo-shell { width: 112px; height: 100%; min-height: 132px; padding: 14px; border: 0; border-right: 1px solid var(--line); border-radius: 0; }
.directory-item .nameplate-name { font-size: .9rem; }
.directory-info { display: flex; flex-direction: column; justify-content: center; padding: 17px; }
.directory-info h2 { margin: 0 0 6px; font-size: 1rem; line-height: 1.25; }
.directory-info p { margin: 0; color: var(--muted); font-size: .82rem; }
.directory-info p:last-child { margin-top: 7px; color: var(--cyan); font-weight: 800; }
.directory-more { min-height: 50px; display: flex; align-items: center; justify-content: center; margin: 26px auto 0; padding: 0 20px; border: 0; border-radius: 12px; background: var(--navy); color: #fff; font-weight: 800; }
.hide, .directory-more[hidden], .empty[hidden] { display: none !important; }
.empty { grid-column: 1 / -1; padding: 34px; border: 1px solid var(--line); border-radius: 18px; background: #fff; text-align: center; }

/* Business pages: calm identity, useful route, no fake social proof */
.page-business { background: var(--mist); }
.business-hero { padding-top: 58px; }
.business-hero h1 { max-width: 12ch; font-size: clamp(2.7rem, 5.3vw, 4.9rem); }
.business-identity .logo-shell { min-height: 160px; }
.business-snapshot { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.business-snapshot > div { padding: 13px 14px; border-radius: 13px; background: var(--mist); }
.business-snapshot span, .direct-detail span { display: block; color: var(--muted); font-size: 12px; font-weight: 750; }
.business-snapshot strong { display: block; margin-top: 3px; color: var(--navy); font-size: 15px; line-height: 1.3; }
.verification-note { display: flex; align-items: flex-start; gap: 8px; margin: 15px 0 0 !important; color: var(--muted) !important; font-size: 13px !important; line-height: 1.45; }
.verification-note span { flex: none; color: var(--mint); font-weight: 900; }
.business-layout { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr); gap: 62px; align-items: start; }
.business-main > h2, .truth-block h2 { max-width: 12ch; margin: 0 0 18px; }
.business-lede { max-width: 680px; color: #354b60; font-size: 1.22rem; line-height: 1.55; }
.trip-guidance { margin-top: 34px; border-top: 1px solid var(--line); }
.trip-guidance > div { display: grid; grid-template-columns: 44px 180px minmax(0,1fr); gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.trip-guidance span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.trip-guidance strong { color: var(--navy); }
.trip-guidance p { margin: 0; color: var(--muted); font-size: 15px; }
.truth-block { margin-top: 72px; padding: 32px; border-radius: 24px; background: var(--cream); }
.truth-block ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.truth-block li { position: relative; padding-left: 28px; color: #40556a; }
.truth-block li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 900; }
.business-route { position: sticky; top: 130px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.route-visual { position: relative; min-height: 220px; overflow: hidden; background: #dce7df; }
.route-visual img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.route-visual span { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; border-radius: 9px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 800; }
.route-content { padding: 23px; }
.route-content h2 { margin: 0 0 8px; font-size: 1.55rem; }
.route-content > p:not(.eyebrow) { color: var(--muted); }
.route-actions { display: grid; gap: 9px; margin: 22px 0; }
.direct-detail { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); text-decoration: none; }
.direct-detail strong { color: var(--navy); font-size: 14px; text-align: right; }
.copy-address { min-height: 44px; margin-top: 12px; padding: 0; border: 0; background: transparent; color: var(--cyan); font-weight: 800; cursor: pointer; }
.nearby-list { border-top: 1px solid var(--line); }
.nearby-list a { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 14px 2px; border-bottom: 1px solid var(--line); text-decoration: none; }
.nearby-list strong, .nearby-list small { display: block; }
.nearby-list strong { color: var(--navy); }
.nearby-list small { margin-top: 3px; color: var(--muted); }
.nearby-list b { color: var(--cyan); font-size: 20px; transition: transform .18s var(--ease); }
.nearby-list a:hover b { transform: translateX(4px); }
.faq-split { display: grid; grid-template-columns: .65fr 1.35fr; gap: 68px; }
.faq-split h2 { max-width: 8ch; margin: 0; }

/* Articles, FAQ and forms */
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; justify-content: space-between; gap: 58px; }
.article-hero { aspect-ratio: 16 / 8; overflow: hidden; margin-top: 28px; border-radius: 24px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: .88rem; }
.toc { position: sticky; top: 130px; }
.toc a { display: block; padding: 6px 0; color: var(--muted); text-decoration: none; font-size: .9rem; }
.faq details { margin-bottom: 10px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.faq details p { margin-bottom: 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-weight: 750; }
.form-grid textarea { min-height: 130px; padding-block: 12px; resize: vertical; }
.form-grid .full { grid-column: 1 / -1; }
.notice { padding: 15px 18px; border: 1px solid #e5c459; border-radius: 13px; color: #604b00; background: var(--yellow-soft); }
.timeline { position: relative; margin: 35px 0; }
.timeline::before { content: ""; position: absolute; left: 18px; inset-block: 0; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 32px 58px; }
.timeline-item::before { content: ""; position: absolute; left: 9px; top: 4px; width: 20px; height: 20px; border: 5px solid var(--navy); border-radius: 50%; background: var(--yellow); }
.timeline-item h3 { margin: 0; }
.compare-table { width: 100%; overflow: hidden; border-collapse: collapse; border-radius: 16px; background: #fff; }
.compare-table th, .compare-table td { padding: 13px; border-bottom: 1px solid var(--line); text-align: left; }
.compare-table th { background: var(--mist); }
.print-only { display: none; }

/* Footer */
.site-footer { padding: 64px 0 26px; color: #c6d5e2; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { max-width: 330px; margin-top: 18px; color: #a7bac9; }
.site-footer h2, .site-footer h3 { margin: 0 0 14px; color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a { display: block; width: fit-content; margin: 7px 0; color: #c6d5e2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.site-footer p { color: #a7bac9; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #859cad; font-size: .82rem; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none; position: fixed; top: var(--header); left: 16px; right: 16px; z-index: 85;
    align-items: stretch; flex-direction: column; gap: 2px; margin: 0; padding: 12px;
    border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-md);
  }
  body.nav-open .nav-links, .nav-links.open { display: flex; }
  .nav-links a { width: 100%; min-height: 48px; padding-inline: 14px; }
  .nav .nav-cta { margin-left: 0; }
  .nav-overlay { position: fixed; inset: var(--header) 0 0; z-index: 70; background: rgba(8,29,54,.34); }
  body.nav-open .nav-overlay { display: block; }
  .hero-grid, .content-grid, .article-layout { grid-template-columns: 1fr; }
  .business-layout, .faq-split { grid-template-columns: 1fr; }
  .business-route { position: relative; top: auto; }
  .hero-card { max-width: 620px; }
  .sidebar { order: -1; }
  .toc { position: static; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  :root { --header: 70px; }
  body { font-size: 16.5px; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .site-header, .nav { min-height: var(--header); }
  .brand > img { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy span { margin-top: 5px; font-size: 8.6px; }
  .nav .nav-cta { display: none; }
  .section { padding: 62px 0; }
  .page-hero, .hero { padding: 48px 0; }
  .page-hero h1, .hero h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .section-head { align-items: start; flex-direction: column; gap: 14px; }
  .hero-grid { gap: 28px; }
  .hero-card { padding: 18px; border-radius: 22px; }
  .facts, .form-grid, .icon-list, .media-duo { grid-template-columns: 1fr; }
  .cards, .directory-grid { grid-template-columns: 1fr; }
  .directory-tools { position: relative; top: auto; grid-template-columns: 1fr; }
  .directory-item { min-height: 112px; grid-template-columns: 92px minmax(0, 1fr); }
  .directory-item .logo-shell { width: 92px; min-height: 112px; padding: 10px; }
  .directory-info { padding: 13px; }
  .business-snapshot { grid-template-columns: 1fr; }
  .trip-guidance > div { grid-template-columns: 38px minmax(0,1fr); gap: 10px; }
  .trip-guidance p { grid-column: 2; }
  .truth-block { margin-top: 48px; padding: 23px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .stats { grid-template-columns: 1fr 1fr; }
}

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

@media print {
  .site-header, .quick-nav, .site-footer, .button { display: none !important; }
  .print-only { display: block; }
  body { background: #fff; }
  .section { padding: 24px 0; }
}
