@charset "UTF-8";

:root {
  --navy-950: #10283b;
  --navy-900: #173852;
  --navy-800: #23536f;
  --navy-700: #356c87;
  --orange-600: #b74b2a;
  --orange-500: #d76538;
  --orange-100: #fbe7dd;
  --paper: #f6f8f7;
  --paper-strong: #e8eef0;
  --hero-surface-start: #fbfaf7;
  --hero-surface-end: #edf6f7;
  --hero-navy-end: #dcebf0;
  --surface: #ffffff;
  --white: #ffffff;
  --ink: #102231;
  --text: #334554;
  --muted: #647582;
  --line: #d7e0e3;
  --line-dark: rgba(255,255,255,.16);
  --success: #2f6c56;
  --focus: #e98d68;
  --shadow-sm: 0 10px 30px rgba(7, 22, 36, .07);
  --shadow: 0 24px 64px rgba(7, 22, 36, .13);
  --radius-sm: 8px;
  --radius-md: 14px;
  --container: 1440px;
  --section-space: 84px;
  --label-size-compact: 13px;
  --label-size: 14px;
  --label-size-feature: 16px;
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body { margin: 0; background: var(--surface); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.68; -webkit-font-smoothing: antialiased; }
body, button, input { font-family: var(--font); }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { touch-action: manipulation; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--orange-600); }

.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: var(--white); color: var(--navy-950); border: 2px solid var(--navy-950); transition: top .2s ease; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(215,224,227,.94); backdrop-filter: blur(14px); transition: box-shadow .2s ease, background-color .2s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(7,22,36,.08); }
.header-row { min-height: 72px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; letter-spacing: .02em; line-height: 1; }
.brand__mark { width: 46px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; }
.brand__mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.brand__copy { display: inline-flex; flex-direction: column; }
.brand__name { font-size: 21px; font-weight: 900; color: var(--navy-900); }
.brand__suffix { margin-top: 6px; font-size: 11px; font-weight: 700; color: var(--orange-600); letter-spacing: .28em; }
.desktop-nav { display: flex; align-items: stretch; justify-content: center; gap: 0; margin-inline: auto; }
.desktop-nav__item { display: flex; align-items: stretch; }
.desktop-nav__home, .desktop-nav__trigger { position: relative; min-height: 72px; display: flex; align-items: center; gap: 7px; padding: 0 11px; color: #2d4353; background: transparent; border: 0; font-size: 14px; font-weight: 650; white-space: nowrap; }
.desktop-nav__home::after, .desktop-nav__trigger::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: -1px; height: 3px; background: var(--orange-600); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav__home:hover, .desktop-nav__home[aria-current="page"], .desktop-nav__trigger:hover, .desktop-nav__trigger[data-current="true"], .desktop-nav__trigger[aria-expanded="true"] { color: var(--navy-950); }
.desktop-nav__home:hover::after, .desktop-nav__home[aria-current="page"]::after, .desktop-nav__trigger:hover::after, .desktop-nav__trigger[data-current="true"]::after, .desktop-nav__trigger[aria-expanded="true"]::after { transform: scaleX(1); }
.desktop-nav__chevron { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .18s ease; }
.desktop-nav__trigger[aria-expanded="true"] .desktop-nav__chevron { transform: rotate(225deg) translate(-1px, -1px); }
.mega-menu { position: absolute; top: 100%; left: 0; right: 0; z-index: 120; background: rgba(255,255,255,.985); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 24px 54px rgba(16,40,59,.13); }
.mega-menu[hidden] { display: none; }
.mega-menu__grid { display: grid; grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(160px, 1fr)); padding-block: 28px 32px; }
.mega-menu__intro { padding-right: 38px; }
.mega-menu__intro p, .mega-menu__group p { margin: 0 0 13px; color: var(--orange-600); font-size: var(--label-size); font-weight: 850; letter-spacing: .08em; }
.mega-menu__intro strong { display: block; max-width: 330px; font-size: 24px; line-height: 1.35; letter-spacing: -.025em; }
.mega-menu__intro > span { max-width: 390px; display: block; margin-top: 10px; color: var(--text); font-size: 14px; line-height: 1.7; }
.mega-menu__intro > a { min-height: 40px; display: inline-flex; align-items: center; margin-top: 14px; color: var(--navy-800); font-size: 14px; font-weight: 800; }
.mega-menu__group { padding: 0 26px; border-left: 1px solid var(--line); }
.mega-menu__group a { min-height: 34px; display: flex; align-items: center; color: var(--text); font-size: 14px; line-height: 1.35; }
.mega-menu__group a:hover, .mega-menu__intro > a:hover { color: var(--orange-600); text-decoration: underline; text-underline-offset: 4px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-search { min-width: 48px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; }
.header-search:hover { color: var(--orange-600); }
.menu-toggle { display: none; min-height: 44px; padding: 0 14px; color: var(--navy-900); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.mobile-nav { border-top: 1px solid var(--line); background: var(--surface); }
.mobile-nav__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding-block: 16px 20px; }
.mobile-nav a { min-height: 48px; display: flex; align-items: center; padding: 8px 12px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a[aria-current="page"] { color: var(--orange-600); background: var(--paper); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid var(--orange-600); border-radius: var(--radius-sm); color: var(--white); background: var(--orange-600); font-weight: 750; line-height: 1.2; transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button:hover { background: #aa3f1b; border-color: #aa3f1b; box-shadow: 0 8px 20px rgba(201,79,37,.18); }
.button--small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.button--ghost { color: var(--navy-900); background: transparent; border-color: #aeb8bd; }
.button--ghost:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); box-shadow: none; }
.button--light { color: var(--navy-950); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: transparent; border-color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.hero-actions--category .button { min-width: 154px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-800); font-weight: 750; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color .2s ease, text-decoration-color .2s ease; }
.text-link:hover { color: var(--orange-600); text-decoration-color: currentColor; }

.eyebrow { min-height: 34px; display: inline-flex; align-items: center; margin: 0 0 16px; padding: 0 12px; color: var(--orange-600); background: var(--orange-100); border: 1px solid rgba(183,75,42,.18); border-radius: 999px; font-size: 15px; font-weight: 850; letter-spacing: .08em; }
.eyebrow--light { color: var(--orange-600); background: #fff5ef; border-color: rgba(183,75,42,.18); }
.section { padding: var(--section-space) 0; }
.section--muted { background: var(--paper); }
.section--dark { color: var(--ink); background: #eaf3f6; }
.section-heading { max-width: 800px; margin-bottom: 36px; }
.section-heading h2, .final-cta h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.2; letter-spacing: -.04em; }
.section-heading > p:not(.eyebrow) { margin: 16px 0 0; color: var(--text); font-size: 17px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
.split-heading > p { margin: 0 0 4px !important; }
.split-heading--dark > p { color: var(--text) !important; }
.section-action { margin-top: 36px; text-align: center; }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.home-hero { min-height: 620px; position: relative; display: flex; align-items: center; overflow: hidden; color: var(--ink); background: #e8f2f5; }
.home-hero__image { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 56% center; filter: saturate(.66) contrast(.94) brightness(1.08); }
.home-hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(248,252,252,.98) 0%, rgba(244,250,251,.93) 46%, rgba(234,244,247,.64) 75%, rgba(222,238,242,.4) 100%), linear-gradient(180deg, rgba(255,255,255,.16), rgba(224,239,243,.52)); }
.home-hero__layout { min-height: 620px; position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 720px) minmax(340px, 420px); align-items: center; justify-content: space-between; gap: 72px; padding-block: 68px; }
.home-hero__eyebrow { margin: 0 0 18px; color: var(--orange-600); font-size: var(--label-size); font-weight: 850; letter-spacing: .16em; }
.home-hero h1 { margin: 0; color: var(--navy-950); font-size: clamp(44px, 5vw, 68px); line-height: 1.1; letter-spacing: -.05em; text-wrap: balance; }
.home-hero h1 span { display: inline-block; margin-top: 10px; color: var(--orange-600); font-size: .72em; letter-spacing: -.035em; }
.home-hero__summary { max-width: 620px; margin: 24px 0 0; color: var(--text); font-size: 18px; line-height: 1.75; }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button--hero-secondary { color: var(--navy-900); background: rgba(255,255,255,.72); border-color: #98abb5; }
.button--hero-secondary:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.hero-search { width: min(760px, 100%); pointer-events: auto; }
.hero-search label, .search-page label { display: block; margin-bottom: 8px; color: var(--text); font-size: 13px; font-weight: 700; }
.hero-search--stable { padding: 24px; background: rgba(255,255,255,.88); border: 1px solid rgba(174,193,201,.82); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.hero-search--stable label { color: var(--navy-900); }
.hero-search > div:not(.hot-searches) { display: flex; min-height: 56px; overflow: hidden; background: var(--white); border: 1px solid rgba(255,255,255,.72); border-radius: var(--radius-sm); box-shadow: 0 14px 42px rgba(7,22,36,.26); }
.hero-search input { min-width: 0; flex: 1; padding: 0 18px; color: var(--ink); background: transparent; border: 0; outline: 0; }
.hero-search button { min-width: 96px; color: var(--white); background: var(--orange-600); border: 0; border-radius: 0 6px 6px 0; font-weight: 750; transition: background-color .2s ease; }
.hero-search button:hover { background: #aa3f1b; }
.hot-searches { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 10px; color: var(--muted); font-size: 12px; }
.hot-searches a { color: var(--navy-800); text-decoration: underline; text-decoration-color: #aebfc7; text-underline-offset: 3px; }
.hot-searches a:hover { color: #f5a480; }

.taxonomy-dock { padding: 30px 0 32px; background: var(--paper); border-bottom: 1px solid var(--line); }
.taxonomy-dock__head { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: end; gap: 32px; margin-bottom: 18px; }
.taxonomy-dock__head h2 { margin: 0; font-size: clamp(26px, 2.7vw, 36px); line-height: 1.2; letter-spacing: -.035em; }
.taxonomy-dock__head p:not(.eyebrow) { max-width: 690px; margin: 12px 0 0; color: var(--text); font-size: 16px; }
.region-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 8px; background: var(--surface); border: 1px solid var(--line); }
.region-search label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.region-search select { min-width: 0; min-height: 46px; padding: 0 14px; color: var(--ink); background: var(--surface); border: 0; font-size: 14px; }
.region-search .button { min-height: 46px; }
.region-picker { position: relative; min-width: 0; }
.region-picker > summary { min-height: 52px; display: grid; grid-template-columns: 18px 1fr 14px; align-items: center; gap: 12px; padding: 0 16px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); cursor: pointer; font-size: 15px; font-weight: 800; list-style: none; }
.region-picker > summary::-webkit-details-marker { display: none; }
.region-picker > summary:hover, .region-picker > summary:focus-visible { border-color: var(--orange-600); outline: 0; box-shadow: 0 0 0 3px rgba(196, 73, 35, .12); }
.region-picker__chevron { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
.region-picker[open] .region-picker__chevron { transform: rotate(225deg) translate(-2px, -2px); }
.region-picker__panel { position: absolute; z-index: 40; top: calc(100% + 10px); right: 0; width: min(760px, calc(100vw - 32px)); max-height: min(680px, 72vh); overflow: auto; padding: 24px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(7, 22, 36, .2); }
.region-picker__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.region-picker__head strong { font-size: 20px; }
.region-picker__head a { color: var(--orange-600); font-size: 13px; font-weight: 800; }
.region-picker__filter { display: grid; gap: 7px; margin-bottom: 16px; }
.region-picker__filter span { color: var(--muted); font-size: 12px; font-weight: 700; }
.region-picker__filter input { min-height: 46px; width: 100%; padding: 0 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); font: inherit; }
.region-picker__filter input:focus { border-color: var(--orange-600); outline: 2px solid rgba(196, 73, 35, .14); outline-offset: 0; }
.region-picker__hot { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.region-picker__hot > span { color: var(--muted); font-size: 12px; font-weight: 800; }
.region-picker__hot a, .region-picker__provinces section div a { min-height: 34px; display: inline-flex; align-items: center; padding: 0 9px; color: var(--navy-700); font-size: 13px; font-weight: 700; }
.region-picker__hot a { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; }
.region-picker__hot a:hover, .region-picker__provinces section div a:hover { color: var(--orange-600); }
.region-picker__provinces { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
.region-picker__provinces section { display: grid; grid-template-columns: 72px 1fr; gap: 10px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.region-picker__provinces h3 { margin: 0; font-size: 14px; }
.region-picker__provinces h3 a { color: var(--orange-600); }
.region-picker__provinces section div { display: flex; flex-wrap: wrap; gap: 2px 4px; }
.region-picker__empty { margin: 18px 0 0; padding: 18px; color: var(--muted); background: var(--paper); text-align: center; }
.taxonomy-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: start; gap: 8px; }
.taxonomy-group { min-width: 0; background: var(--surface); border: 1px solid var(--line); }
.taxonomy-group[open] { grid-column: span 2; border-color: #b8c0be; box-shadow: var(--shadow-sm); }
.taxonomy-group summary { min-height: 52px; display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 8px 12px; cursor: pointer; list-style: none; }
.taxonomy-group summary::-webkit-details-marker { display: none; }
.taxonomy-group summary:hover, .taxonomy-group summary:focus-visible { background: #f6f2eb; outline: 0; box-shadow: inset 0 0 0 2px rgba(196, 73, 35, .18); }
.taxonomy-group summary > span { color: var(--orange-600); font-size: var(--label-size-compact); font-weight: 850; }
.taxonomy-group summary h3 { overflow: hidden; margin: 0; font-size: 15px; line-height: 1.25; white-space: nowrap; text-overflow: ellipsis; }
.taxonomy-group summary::after { content: "+"; width: 24px; height: 24px; display: grid; place-items: center; color: var(--navy-700); border: 1px solid var(--line); border-radius: 50%; font-size: 14px; font-weight: 800; }
.taxonomy-group[open] summary::after { content: "−"; color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.taxonomy-group__body { max-height: 330px; overflow: auto; padding: 0 14px 12px; border-top: 1px solid var(--line); }
.taxonomy-group__all { min-height: 40px; display: inline-flex; align-items: center; color: var(--orange-600); font-size: 13px; font-weight: 850; }
.taxonomy-branch { display: grid; grid-template-columns: 76px 1fr; gap: 10px; padding: 10px 0; }
.taxonomy-branch + .taxonomy-branch { border-top: 1px dashed var(--line); }
.taxonomy-branch > a { color: var(--navy-800); font-size: 13px; font-weight: 850; }
.taxonomy-terms { display: flex; flex-wrap: wrap; gap: 5px 9px; }
.taxonomy-terms a { color: var(--text); font-size: 12px; line-height: 1.6; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; }
.taxonomy-terms a:hover { color: var(--orange-600); text-decoration-color: currentColor; }
.region-keywords { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 14px; }
.region-keywords > span { margin-right: 4px; color: var(--navy-800); font-size: 14px; font-weight: 850; }
.region-keywords a { min-height: 32px; display: inline-flex; align-items: center; padding: 0 11px; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; }
.region-keywords a:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }

.keyword-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.keyword-tags > span, .keyword-tags > a { min-height: 30px; display: inline-flex; align-items: center; padding: 0 10px; color: var(--navy-700); background: #eef2f1; border: 1px solid #d8dfdc; border-radius: 999px; font-size: 13px; font-weight: 700; line-height: 1.2; }
.keyword-tags > a { cursor: pointer; }
.keyword-tags > a:hover, .keyword-tags > a:focus-visible { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.keyword-tags--compact { gap: 5px; }
.keyword-tags--compact > span, .keyword-tags--compact > a { min-height: 26px; padding: 0 8px; font-size: 12px; }
.hero-board { background: var(--surface); border: 1px solid #ccd1cf; box-shadow: var(--shadow); }
.hero-board__top { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 22px; color: var(--muted); font-size: 12px; border-bottom: 1px solid var(--line); }
.status-dot { color: var(--success); font-weight: 800; }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: var(--success); border-radius: 50%; }
.hero-board__choice { display: grid; grid-template-columns: repeat(2, 1fr); }
.choice-block { min-height: 388px; padding: 28px; position: relative; }
.choice-block + .choice-block { border-left: 1px solid var(--line); }
.choice-index { color: #9aa5aa; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.choice-block > p { margin: 40px 0 6px; color: var(--muted); font-size: 12px; }
.choice-block h2 { margin: 0; font-size: 30px; letter-spacing: -.04em; }
.choice-block ul { min-height: 110px; margin: 24px 0; padding: 0; list-style: none; color: var(--text); font-size: 14px; }
.choice-block li { padding: 7px 0; border-bottom: 1px dashed var(--line); }
.choice-block a { display: inline-flex; min-height: 44px; align-items: center; color: var(--navy-800); font-size: 14px; font-weight: 800; }
.choice-block a:hover { color: var(--orange-600); }
.choice-block--channel { background: #f1f5f4; }
.hero-board__notice { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 16px 22px; color: #d9e4ea; background: var(--navy-900); font-size: 12px; }
.hero-board__notice strong { color: #ffc0a5; }

.capability-strip { color: var(--ink); background: #e9f3f6; border-block: 1px solid #d6e5e9; }
.capability-tags { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-top: 10px; }
.capability-tags a { color: var(--navy-700); font-size: 12px; text-decoration: underline; text-decoration-color: #a9c0ca; text-underline-offset: 3px; }
.capability-tags a:hover { color: var(--orange-600); }
.capability-grid { min-height: 124px; display: grid; grid-template-columns: 150px 150px 170px 1fr; align-items: center; gap: 30px; }
.capability-grid > div { padding-right: 26px; border-right: 1px solid #cbdce2; }
.capability-grid > div:last-child { border-right: 0; }
.capability-grid strong { margin-right: 8px; font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.capability-grid span { color: var(--navy-800); font-size: 14px; font-weight: 750; }
.capability-grid p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.capability-copy span { color: var(--orange-600); font-weight: 800; }
.capability-copy p { max-width: 540px; color: var(--text); font-size: 14px; line-height: 1.65; }

.section--advantages { background: var(--surface); }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.advantage-grid article { min-height: 290px; display: flex; flex-direction: column; padding: 28px; background: var(--paper); border-top: 3px solid var(--navy-900); transition: box-shadow .18s ease, border-color .18s ease; }
.advantage-grid article:hover { border-color: var(--orange-600); box-shadow: var(--shadow-sm); }
.advantage-grid span { color: var(--orange-600); font-size: var(--label-size-feature); font-weight: 850; }
.advantage-grid h3 { margin: 50px 0 12px; font-size: 23px; }
.advantage-grid p { margin: 0; color: var(--text); font-size: 16px; }
.advantage-grid .keyword-tags { margin-top: auto; padding-top: 22px; }

.signal-strip { color: var(--white); background: var(--navy-900); }
.signal-grid { min-height: 126px; display: grid; grid-template-columns: 170px 170px 1fr auto; align-items: center; gap: 34px; }
.signal-grid > div { padding-right: 28px; border-right: 1px solid var(--line-dark); }
.signal-grid strong { font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.signal-grid span { margin-left: 4px; color: #aebfca; font-size: 12px; }
.signal-grid p { margin: 8px 0 0; color: #b9c9d2; font-size: 12px; }
.signal-copy span { margin: 0; color: #f3a786; font-weight: 800; }
.signal-copy p { max-width: 520px; font-size: 14px; line-height: 1.6; }
.signal-grid > a { min-height: 44px; display: flex; align-items: center; font-size: 13px; font-weight: 700; }
.signal-grid > a:hover { color: #f3a786; }

.section--categories { background: var(--surface); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-item { min-height: 200px; position: relative; display: flex; flex-direction: column; padding: 24px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .18s ease, background-color .18s ease, box-shadow .18s ease; }
.category-item:hover { z-index: 1; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-sm); }
.category-item__index { color: #8c9aa2; font-size: 13px; font-weight: 800; }
.category-item h3 { margin: auto 0 8px; font-size: 20px; }
.category-item__main { color: inherit; }
.category-item__main:hover, .category-item__main:focus-visible { color: #f3a786; }
.category-item p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.category-item:hover p, .category-item:hover .category-item__index { color: #bdcad2; }
.category-item__arrow { position: absolute; top: 22px; right: 22px; color: var(--orange-600); font-size: 20px; }
.category-grid--wide .category-item { min-height: 184px; }

.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #cbdde3; border: 1px solid #cbdde3; }
.resource-card { min-height: 290px; display: flex; flex-direction: column; padding: 28px; color: var(--ink); background: var(--white); transition: color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.resource-card:hover { position: relative; z-index: 1; background: #f4fafb; box-shadow: var(--shadow-sm); }
.resource-card > span { color: var(--orange-600); font-size: var(--label-size); font-weight: 800; }
.resource-card h3 { margin: auto 0 10px; font-size: 28px; }
.resource-card p { margin: 0 0 24px; color: var(--text); font-size: 14px; }
.resource-card strong { color: var(--orange-600); font-size: 14px; }

.section-heading--with-tabs { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.text-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.text-tabs a, .topic-chips a { min-height: 42px; display: inline-flex; align-items: center; padding: 0 14px; color: var(--navy-800); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; }
.text-tabs a:hover, .topic-chips a:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.feature-article-grid { display: grid; grid-template-columns: 1.1fr .9fr; border: 1px solid var(--line); }
.feature-article { min-height: 410px; display: flex; flex-direction: column; padding: 42px; background: var(--paper); border-right: 1px solid var(--line); }
.feature-article > div, .article-stack article > div { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.feature-article > div span, .article-stack article > div span { color: var(--orange-600); font-weight: 800; }
.feature-article h3 { max-width: 650px; margin: auto 0 18px; font-size: clamp(28px, 3.1vw, 42px); line-height: 1.25; letter-spacing: -.04em; }
.feature-article h3 a:hover, .article-stack h3 a:hover { color: var(--orange-600); }
.feature-article p { margin: 0 0 22px; color: var(--text); }
.article-stack { display: grid; grid-template-rows: repeat(4, 1fr); }
.article-stack article { display: flex; flex-direction: column; justify-content: center; padding: 22px 28px; }
.article-stack article + article { border-top: 1px solid var(--line); }
.article-stack h3 { margin: 12px 0 0; font-size: 17px; line-height: 1.45; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; padding: 1px; list-style: none; background: var(--line); }
.process-grid li { min-height: 210px; padding: 28px; background: var(--surface); }
.process-grid span { color: var(--orange-600); font-size: var(--label-size); font-weight: 850; }
.process-grid h3 { margin: 42px 0 10px; font-size: 21px; }
.process-grid p { margin: 0; color: var(--text); font-size: 14px; }

.service-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.service-intro { position: sticky; top: 130px; align-self: start; }
.service-list { border-top: 1px solid var(--line); }
.service-list > div { display: grid; grid-template-columns: 110px 1fr; column-gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service-list span { grid-row: 1 / span 2; color: var(--orange-600); font-size: var(--label-size); font-weight: 800; }
.service-list h3 { margin: 0 0 8px; font-size: 22px; }
.service-list p { margin: 0; color: var(--text); font-size: 14px; }

.section--faq { padding-top: 64px; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange-600); font-size: 22px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 24px; color: var(--text); }
.faq-source { margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.faq-source a { color: var(--navy-800); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.faq-source a:hover { color: var(--orange-600); }

.breadcrumbs { padding-top: 18px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; color: var(--muted); font-size: 12px; list-style: none; }
.breadcrumbs li { display: inline-flex; gap: 8px; }
.breadcrumbs a:hover { color: var(--orange-600); text-decoration: underline; }
.breadcrumbs li:last-child { max-width: 65ch; }

.page-hero { position: relative; overflow: hidden; padding: 72px 0; background: linear-gradient(135deg, var(--hero-surface-start), var(--hero-surface-end)); border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 86% 16%, rgba(183,75,42,.075), transparent 27%), linear-gradient(90deg, rgba(255,255,255,.22), transparent 48%); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(42px, 5vw, 66px); line-height: 1.1; letter-spacing: -.06em; }
.page-hero p:not(.eyebrow) { max-width: 780px; margin: 22px 0 0; color: var(--text); font-size: 18px; }
.page-hero .page-hero__meta { margin-top: 14px; color: var(--muted); font-size: 12px; font-weight: 700; }
.page-hero__aside { padding: 26px; color: var(--ink); background: rgba(255,255,255,.9); border: 1px solid #d2e0e4; border-left: 4px solid var(--orange-600); box-shadow: var(--shadow-sm); }
.page-hero__aside > span { color: var(--orange-600); font-size: var(--label-size); font-weight: 800; }
.page-hero__aside ol, .page-hero__aside ul { margin: 20px 0 0; padding-left: 20px; color: var(--text); font-size: 14px; }
.page-hero__aside li { padding: 5px 0; }
.page-hero__aside strong { display: block; margin: 18px 0 8px; font-size: 24px; }
.page-hero__aside--notice p { color: var(--text) !important; font-size: 14px !important; }
.page-hero--resources, .page-hero--services, .page-hero--join, .page-hero--about, .page-hero--supply { background: linear-gradient(135deg, var(--hero-surface-start), var(--hero-surface-end)); }
.page-hero--compact { padding: 64px 0; }
.page-hero--compact h1 { font-size: clamp(38px, 4.6vw, 60px); }
.page-hero--editorial { text-align: center; }
.page-hero--editorial .container { max-width: 900px; }
.page-hero--editorial h1 { margin-inline: auto; }
.page-hero--editorial p:not(.eyebrow) { margin-inline: auto; }
.topic-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }

.editorial-masthead { padding: 76px 0 0; color: var(--ink); background: linear-gradient(135deg, #f8fbfc, #e9f3f6 62%, #dcecf1); border-bottom: 1px solid var(--line); }
.editorial-masthead__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); align-items: end; gap: 90px; }
.editorial-masthead h1 { margin: 0; font-size: clamp(48px, 6vw, 76px); line-height: 1.05; letter-spacing: -.06em; }
.editorial-masthead__lead { max-width: 760px; margin: 24px 0 0; color: var(--text); font-size: 18px; line-height: 1.8; }
.editorial-masthead__facts { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 32px; padding-top: 20px; color: var(--muted); border-top: 1px solid #cbdde3; font-size: 14px; }
.editorial-masthead__facts strong { color: var(--navy-900); font-weight: 800; }
.editorial-standard { padding: 28px 30px; background: rgba(255,255,255,.72); border: 1px solid #cfdee3; border-top: 3px solid var(--orange-500); }
.editorial-standard > span { color: var(--orange-600); font-size: 15px; font-weight: 850; letter-spacing: .1em; }
.editorial-standard h2 { margin: 16px 0; color: var(--ink); font-size: 25px; line-height: 1.35; }
.editorial-standard ul { margin: 0; padding-left: 18px; color: var(--text); font-size: 15px; }
.editorial-standard li { padding: 4px 0; }
.topic-chips--editorial { justify-content: flex-start; gap: 4px; margin-top: 54px; padding-block: 16px; border-top: 1px solid #cbdde3; }
.topic-chips--editorial a, .topic-chips--editorial span { min-height: 38px; display: inline-flex; align-items: center; padding: 0 13px; color: var(--navy-800); background: rgba(255,255,255,.52); border: 1px solid #c3d6dd; border-radius: 999px; font-size: 14px; font-weight: 700; }
.topic-chips--editorial a:hover { color: var(--white); background: var(--navy-800); }
.editorial-feature-section { padding: 56px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.editorial-feature { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); min-height: 430px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.editorial-feature__media { min-height: 430px; position: relative; overflow: hidden; background: var(--paper-strong); }
.editorial-feature__media::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(180deg, transparent, rgba(7,22,36,.58)); }
.editorial-feature__media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.editorial-feature:hover .editorial-feature__media img { filter: brightness(.94); }
.editorial-feature__media > span { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 6px 11px; color: var(--white); background: rgba(7,22,36,.84); border-radius: 999px; font-size: 13px; font-weight: 800; }
.editorial-feature__content { display: flex; flex-direction: column; justify-content: center; padding: 44px 48px; }
.editorial-feature__label { width: fit-content; min-height: 30px; display: inline-flex; align-items: center; margin: 0 0 18px; padding: 0 10px; color: var(--orange-600); background: var(--orange-100); border: 1px solid rgba(183,75,42,.18); border-radius: 999px; font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.editorial-feature h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.24; letter-spacing: -.04em; text-wrap: balance; }
.editorial-feature h2 a:hover { color: var(--orange-600); }
.editorial-feature__content > p:not(.editorial-feature__label) { margin: 20px 0 0; color: var(--text); font-size: 15px; line-height: 1.8; }
.editorial-feature__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 24px; color: var(--muted); font-size: 13px; }
.editorial-feature .text-link { margin-top: 28px; align-self: flex-start; }
.editorial-archive { background: var(--surface); }

.mode-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.mode-grid article { min-height: 280px; display: flex; flex-direction: column; padding: 26px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mode-grid > article > span { color: var(--orange-600); font-size: var(--label-size-feature); font-weight: 800; }
.mode-grid h3 { margin: 48px 0 12px; font-size: 24px; }
.mode-grid p { margin: 0 0 18px; color: var(--text); font-size: 16px; }
.mode-grid > article > a { margin-top: auto; color: var(--navy-700); font-size: 14px; font-weight: 800; }
.mode-grid a:hover { color: var(--orange-600); }
.mode-grid .keyword-tags { margin-bottom: 20px; }

.content-with-aside { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 64px; align-items: start; }
.topic-aside { position: sticky; top: 108px; display: flex; flex-direction: column; border-top: 3px solid var(--navy-900); }
.topic-aside > p { margin: 0; padding: 18px 12px 12px; font-size: 15px; font-weight: 850; letter-spacing: .08em; }
.topic-aside > a { min-height: 46px; display: flex; align-items: center; padding: 7px 12px; color: var(--text); border-bottom: 1px solid var(--line); font-size: 15px; }
.topic-aside > a:hover, .topic-aside > a[aria-current="page"] { color: var(--white); background: var(--navy-900); }
.aside-note { margin-top: 24px; padding: 18px; color: var(--text); background: var(--paper); font-size: 14px; }
.aside-note strong, .aside-note span { display: block; }
.aside-note span { margin-top: 8px; }
.topic-aside__module { margin-top: 24px; padding-top: 18px; border-top: 2px solid var(--navy-900); }
.topic-aside__module > h2 { margin: 0 0 12px; font-size: 17px; }
.topic-aside__article { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
.topic-aside__article h3 { margin: 0 0 8px; font-size: 15px; line-height: 1.5; }
.topic-aside__article:hover h3 { color: var(--orange-600); }
.aside-recommendations, .aside-hot-tags { margin-top: 24px; padding-top: 18px; border-top: 2px solid var(--navy-900); }
.aside-recommendations > h2, .aside-hot-tags > h2 { margin: 0 0 12px; font-size: 17px; }
.aside-recommendations article { padding: 14px 0; border-bottom: 1px solid var(--line); }
.aside-recommendations article h3 { margin: 0 0 8px; font-size: 15px; line-height: 1.5; }
.aside-recommendations article:hover h3 { color: var(--orange-600); }
.list-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.list-heading h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.2; }
.list-heading > span { color: var(--muted); font-size: 13px; }

.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.article-grid--two { grid-template-columns: repeat(2, 1fr); }
.merchant-showcase { background: #fffaf4; }
.merchant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.merchant-card { min-height: 280px; display: flex; flex-direction: column; padding: 26px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.merchant-card__head { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 14px; }
.merchant-card__mark { width: 52px; height: 52px; display: grid; place-items: center; color: var(--white); background: var(--navy-900); border-radius: 50%; font-size: 19px; font-weight: 850; }
.merchant-card__head p { margin: 0 0 3px; color: var(--orange-600); font-size: var(--label-size); font-weight: 800; }
.merchant-card h3 { margin: 0; font-size: 20px; }
.merchant-card > .keyword-tags { margin-top: 22px; }
.merchant-card > p { margin: 18px 0 0; color: var(--text); font-size: 14px; }
.merchant-card > .text-link { margin-top: auto; padding-top: 22px; font-size: 13px; }
.section--editorial { padding: 72px 0; }
.section--editorial .section-heading { margin-bottom: 26px; }
.home-editorial-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr); align-items: stretch; border: 1px solid var(--line); }
.home-editorial-lead { min-width: 0; border-right: 1px solid var(--line); }
.home-editorial-lead > a { height: 100%; display: flex; flex-direction: column; padding: 20px; }
.home-editorial-lead img { width: 100%; aspect-ratio: 1.86 / 1; display: block; object-fit: cover; }
.home-editorial-lead span { margin-top: 16px; color: var(--orange-600); font-size: var(--label-size); font-weight: 800; }
.home-editorial-lead h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; margin: 8px 0 10px; font-size: clamp(24px, 2vw, 32px); line-height: 1.28; }
.home-editorial-lead p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; margin: 0; color: var(--text); }
.home-editorial-lead strong { margin-top: 16px; font-size: 13px; }
.home-editorial-list { min-width: 0; background: var(--surface); }
.home-editorial-list article + article { border-top: 1px solid var(--line); }
.home-editorial-list article > a { min-height: 142px; display: grid; grid-template-columns: 132px minmax(0, 1fr); align-items: center; gap: 16px; padding: 14px 16px; transition: background-color .18s ease; }
.home-editorial-list article > a:hover { background: var(--paper); }
.home-editorial-list img { width: 132px; aspect-ratio: 4 / 3; object-fit: cover; }
.home-editorial-list__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 11px; }
.home-editorial-list__meta span { color: var(--orange-600); font-weight: 800; }
.home-editorial-list h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; margin: 8px 0 7px; font-size: 17px; line-height: 1.45; }
.home-editorial-list strong { color: var(--navy-700); font-size: 12px; }
.news-compact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 16px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.news-compact-grid article { min-height: 92px; display: grid; grid-template-columns: 68px 1fr; align-items: center; gap: 8px 12px; padding: 13px 15px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.news-compact-grid article > span { color: var(--orange-600); font-size: var(--label-size); font-weight: 800; }
.news-compact-grid h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; margin: 0; font-size: 15px; line-height: 1.45; }
.news-compact-grid h3 a:hover { color: var(--orange-600); }
.news-compact-grid time { grid-column: 2; color: var(--muted); font-size: 11px; white-space: nowrap; }
.dense-news { margin-top: 44px; }
.dense-news__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 16px; }
.dense-news__head h2 { margin: 0; font-size: 26px; }
.dense-news__head span { color: var(--muted); font-size: 12px; }
.article-card { min-width: 0; height: 100%; position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .18s ease, box-shadow .18s ease; }
.article-card:hover { border-color: #adb7ba; box-shadow: 0 14px 34px rgba(7,22,36,.09); }
.article-card__media { aspect-ratio: 16 / 9; position: relative; display: block; overflow: hidden; background: var(--paper-strong); }
.article-card__media::after { content: ""; position: absolute; inset: 48% 0 0; background: linear-gradient(180deg, transparent, rgba(7,22,36,.45)); }
.article-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.article-card__media > span { min-height: 30px; position: absolute; z-index: 1; left: 16px; bottom: 14px; display: inline-flex; align-items: center; padding: 0 10px; color: var(--white); background: rgba(7,22,36,.82); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: 11px; font-weight: 800; backdrop-filter: blur(8px); }
.article-card__content { min-height: 300px; display: flex; flex-direction: column; padding: 23px 24px 24px; }
.article-card__meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; }
.article-card__meta span { max-width: 16ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-card h3 { margin: 22px 0 12px; font-size: 21px; line-height: 1.42; letter-spacing: -.025em; text-wrap: balance; }
.article-card h3 a::after { content: ""; position: absolute; inset: 0; }
.article-card h3 a:hover { color: var(--orange-600); }
.article-card__content > p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--text); font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.article-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 24px; }
.article-card .text-link { font-size: 14px; white-space: nowrap; }
.tag-row { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 6px; }
.tag-row span, .tag-row a { min-height: 28px; display: inline-flex; align-items: center; padding: 0 8px; color: var(--muted); background: var(--paper); border: 1px solid transparent; border-radius: 999px; font-size: 12px; }
.tag-row a:hover, .tag-row a:focus-visible { color: var(--navy-900); background: #fff4ed; border-color: #edcdbd; }
.article-card__read { color: var(--navy-800); font-size: 14px; font-weight: 750; white-space: nowrap; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 42px; color: var(--muted); font-size: 13px; }
.pagination a, .pagination > span.pagination__direction { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border: 1px solid var(--line); }
.pagination__pages { display: inline-flex; align-items: center; gap: 6px; }
.pagination__pages a { padding-inline: 10px; }
.pagination__pages a[aria-current="page"] { color: var(--white); background: var(--orange-600); border-color: var(--orange-600); font-weight: 800; }
.pagination__ellipsis { min-width: 28px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.pagination a:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.pagination [aria-disabled="true"] { opacity: .5; }
.empty-state { grid-column: 1 / -1; padding: 32px; background: var(--paper); border: 1px solid var(--line); color: var(--text); }
.empty-state a:not(.button) { color: var(--orange-600); text-decoration: underline; }

.resource-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.resource-list-grid > article { min-height: 210px; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: 1fr auto; column-gap: 22px; padding: 28px; border: 1px solid var(--line); }
.resource-list-grid > article > span { grid-row: 1 / 3; color: var(--orange-600); font-size: var(--label-size); font-weight: 800; }
.resource-list-grid h3 { margin: 0 0 8px; font-size: 27px; }
.resource-list-grid p { margin: 0; color: var(--text); }
.resource-list-grid small { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; }
.resource-list-grid .keyword-tags { margin-top: 14px; }
.resource-list-grid > article > .text-link { align-self: end; font-size: 13px; }
.trust-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.trust-layout h2 { margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.2; letter-spacing: -.04em; }
.trust-points p { display: grid; grid-template-columns: 130px 1fr; gap: 28px; margin: 0; padding: 22px 0; border-bottom: 1px solid #cadce2; }
.trust-points strong { color: var(--orange-600); }
.trust-points span { color: var(--text); }

.directory-hero { padding: 72px 0; background: linear-gradient(135deg, var(--paper) 0%, var(--surface) 58%, #edf2ef 100%); border-bottom: 1px solid var(--line); }
.directory-hero__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); align-items: end; gap: 88px; }
.directory-hero h1 { max-width: 820px; margin: 0; font-size: clamp(42px, 5vw, 64px); line-height: 1.12; letter-spacing: -.05em; text-wrap: balance; }
.directory-hero__grid > div > p:not(.eyebrow) { max-width: 760px; margin: 24px 0 0; color: var(--text); font-size: 18px; line-height: 1.75; }
.directory-standard { padding: 28px 30px; color: var(--white); background: var(--navy-900); border-top: 4px solid var(--orange-600); }
.directory-standard > span { color: #f3a786; font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.directory-standard h2 { margin: 20px 0 14px; color: var(--white); font-size: 25px; line-height: 1.35; }
.directory-standard p { margin: 0; color: #c8d5dc; font-size: 14px; line-height: 1.75; }
.directory-standard ul { margin: 0; padding: 0; color: #c8d5dc; list-style: none; font-size: 14px; }
.directory-standard li { padding: 8px 0; border-bottom: 1px solid var(--line-dark); }
.directory-standard a { min-height: 44px; display: inline-flex; align-items: center; margin-top: 14px; color: #f3a786; font-weight: 800; }
.directory-hero__tags { margin-top: 24px; }
.directory-hero__tags > span { color: var(--white); background: var(--navy-800); border-color: rgba(255,255,255,.2); }
.location-label { min-height: 34px; display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 0 12px; color: var(--orange-600); background: var(--orange-100); border: 1px solid rgba(183,75,42,.2); border-radius: 999px; font-size: 13px; font-weight: 850; }
.location-pin { width: 13px; height: 13px; position: relative; display: inline-block; flex: 0 0 auto; border: 3px solid var(--orange-600); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.location-pin::after { content: ""; width: 3px; height: 3px; position: absolute; top: 2px; left: 2px; background: var(--orange-600); border-radius: 50%; }
.location-bar { position: relative; z-index: 20; background: var(--surface); border-bottom: 1px solid var(--line); }
.location-bar > .container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.location-switcher { position: relative; }
.location-switcher summary { min-height: 46px; display: inline-flex; align-items: center; gap: 10px; padding: 0 14px; cursor: pointer; list-style: none; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.location-switcher summary::-webkit-details-marker { display: none; }
.location-switcher summary strong { font-size: 15px; }
.location-switcher summary > span:last-child { color: var(--orange-600); font-size: 13px; font-weight: 800; }
.location-switcher summary::after { content: "+"; margin-left: 8px; color: var(--navy-700); font-weight: 900; }
.location-switcher[open] summary::after { content: "−"; }
.location-switcher__panel { width: min(760px, calc(100vw - 48px)); max-height: min(520px, 70vh); position: absolute; top: calc(100% + 8px); left: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; overflow: auto; padding: 18px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.location-switcher__panel section { padding: 14px; border-bottom: 1px solid var(--line); }
.location-switcher__panel h2 { margin: 0 0 8px; color: var(--orange-600); font-size: 14px; }
.location-switcher__panel section > div { display: flex; flex-wrap: wrap; gap: 6px; }
.location-switcher__panel a { min-height: 40px; display: inline-flex; align-items: center; padding: 0 11px; color: var(--text); border: 1px solid transparent; font-size: 14px; }
.location-switcher__panel a:hover { color: var(--navy-950); background: var(--paper); border-color: var(--line); }
.location-bar__brands { min-height: 44px; display: inline-flex; align-items: center; color: var(--navy-800); font-size: 14px; font-weight: 800; }
.location-bar__brands:hover { color: var(--orange-600); }
.province-directory { border-top: 1px solid var(--line); }
.province-group { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--line); }
.province-group__head { padding: 28px 24px 28px 0; }
.province-group__head span { color: var(--orange-600); font-size: var(--label-size); font-weight: 850; }
.province-group__head h3 { margin: 18px 0 0; font-size: 27px; }
.city-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); }
.city-link-grid > a { min-height: 150px; display: flex; flex-direction: column; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .18s ease, background-color .18s ease; }
.city-link-grid > a:nth-child(3n) { border-right: 0; }
.city-link-grid > a:hover { color: var(--white); background: var(--navy-900); }
.city-link-grid > a > span { color: var(--orange-600); font-size: var(--label-size); font-weight: 800; }
.city-link-grid > a:hover > span { color: #f3a786; }
.city-link-grid strong { margin-top: 18px; font-size: 18px; }
.city-link-grid small { margin-top: auto; padding-top: 16px; color: var(--muted); font-size: 13px; }
.city-link-grid > a:hover small { color: #c8d5dc; }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.keyword-cloud a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 12px; color: var(--navy-700); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; }
.keyword-cloud a:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.keyword-cloud--city { align-items: center; }
.keyword-city-pair { display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.keyword-cloud--city .keyword-city-pair > a { min-height: 44px; border: 0; border-radius: 0; }
.keyword-cloud--city .keyword-city-pair__province { padding-right: 5px; color: var(--orange-600); background: #fff8f3; font-size: 12px; font-weight: 850; }
.keyword-cloud--city .keyword-city-pair > a:last-child { padding-left: 5px; }
.keyword-cloud--city .keyword-city-pair > a:hover, .keyword-cloud--city .keyword-city-pair > a:focus-visible { color: var(--white); background: var(--navy-900); }
.keyword-cloud--large { gap: 10px; }
.keyword-cloud--large a { min-height: 44px; padding-inline: 16px; font-size: 15px; }
.directory-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.directory-card-grid > a, .directory-card-grid > article { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.directory-card-grid > a > span, .directory-card-grid > article > span { color: var(--orange-600); font-size: var(--label-size); font-weight: 850; }
.directory-card-grid h3 { margin: 42px 0 12px; font-size: 25px; line-height: 1.35; }
.directory-card-grid h3 a { color: inherit; }
.directory-card-grid h3 a:hover, .directory-card-grid h3 a:focus-visible { color: var(--orange-600); }
.directory-card-grid p { margin: 0 0 18px; color: var(--text); font-size: 15px; }
.directory-card-grid > a > strong { margin-top: auto; padding-top: 22px; color: var(--navy-800); font-size: 14px; }
.directory-card-grid__main { margin-top: auto; padding-top: 22px; color: var(--navy-800); font-size: 14px; font-weight: 800; }
.directory-card-grid__main:hover, .directory-card-grid__main:focus-visible { color: var(--orange-600); }
.directory-card-grid > a:hover, .directory-card-grid > article:hover { background: var(--paper); }
.check-list { border-top: 1px solid var(--line); }
.check-list p { display: grid; grid-template-columns: 130px 1fr; gap: 18px; margin: 0; padding: 16px 0; border-bottom: 1px solid var(--line); }
.check-list span { color: var(--text); font-size: 14px; }
.market-check-section { padding-block: clamp(54px, 6vw, 82px); }
.market-check { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.8fr); align-items: start; gap: clamp(38px, 6vw, 88px); }
.market-check__intro { max-width: 390px; }
.market-check__intro h2 { margin: 0; font-size: clamp(30px, 3vw, 42px); line-height: 1.18; letter-spacing: -.04em; }
.market-check__intro > p:last-child { margin: 18px 0 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.market-check__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.market-check__grid article { min-height: 142px; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 16px; padding: 22px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(16, 48, 66, .045); }
.market-check__grid article > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--orange-600); background: var(--orange-100); border-radius: 50%; font-size: 13px; font-weight: 850; }
.market-check__grid h3 { margin: 2px 0 8px; color: var(--navy-950); font-size: 19px; }
.market-check__grid p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.7; }
.brand-directory { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-category-card { min-height: 310px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-category-card__head { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.brand-category-card__head > span { color: var(--orange-600); font-size: var(--label-size); font-weight: 850; }
.brand-category-card h3 { margin: 0; font-size: 23px; }
.brand-category-card h3 a:hover { color: var(--orange-600); }
.brand-category-card__head p { margin: 6px 0 20px; color: var(--text); font-size: 14px; }
.brand-category-card .text-link { margin-top: auto; padding-top: 22px; font-size: 14px; }
.keyword-cloud--brand { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.keyword-cloud--brand a { min-height: 54px; justify-content: flex-start; gap: 8px; border-radius: 0; }
.keyword-cloud--brand a span { color: var(--orange-600); font-size: 12px; font-weight: 800; }
.keyword-cloud--brand a:hover span { color: #f3a786; }
.taxonomy-branches--directory { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.taxonomy-branches--directory .taxonomy-branch { grid-template-columns: 180px 1fr; padding: 22px 0; }
.taxonomy-branches--directory h3 { margin: 0; font-size: 20px; }
.directory-crosslinks { padding-block: 64px; }
.directory-crosslinks__grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.directory-crosslinks__grid > section { min-height: 260px; padding: 26px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.directory-crosslinks__grid h3 { margin: 0 0 22px; font-size: 22px; }
.directory-crosslinks__grid .text-link { margin-top: 24px; font-size: 14px; }
.directory-crosslinks__grid .keyword-cloud a span { margin-right: 5px; color: var(--orange-600); font-size: 12px; font-weight: 800; }

.article-header { padding: 58px 0 46px; background: linear-gradient(135deg, #f4efe6, #fffdf8); border-bottom: 1px solid var(--line); }
.article-header__inner { width: min(920px, calc(100% - 48px)); margin: 0 auto; }
.article-kicker, .article-byline { display: flex; flex-wrap: wrap; gap: 12px 20px; color: var(--muted); font-size: 14px; }
.article-kicker a { color: var(--orange-600); font-weight: 800; }
.article-author-link { color: var(--navy-700); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.article-source-link { color: var(--navy-700); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.article-header h1 { max-width: 20em; margin: 22px 0 18px; font-size: clamp(48px, 4.4vw, 64px); line-height: 1.12; letter-spacing: -.045em; text-wrap: pretty; }
.article-deck { max-width: 820px; margin: 0 0 22px; color: var(--text); font-size: 18px; line-height: 1.72; }
.article-header-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 20px 0 0; }
.article-header-tags strong { margin-right: 3px; color: var(--navy-800); font-size: 14px; }
.article-header-tags a { min-height: 32px; display: inline-flex; align-items: center; padding: 0 11px; color: var(--navy-700); background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; }
.article-header-tags a:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.article-origin { display: grid; grid-template-columns: 150px minmax(0, 1fr) auto; align-items: center; gap: 24px; margin-top: 28px; padding: 18px 20px; background: rgba(255,255,255,.72); border: 1px solid var(--line); }
.article-origin div span, .article-origin div strong { display: block; }
.article-origin div span { color: var(--muted); font-size: 12px; font-weight: 750; letter-spacing: .1em; }
.article-origin div strong { margin-top: 4px; font-size: 14px; }
.article-origin p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.7; }
.article-origin .article-source-link { white-space: nowrap; font-size: 14px; }
.article-cover { width: min(1120px, calc(100% - 48px)); aspect-ratio: 16 / 9; margin: 46px auto 0; overflow: hidden; background: var(--paper-strong); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.article-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 700px) 220px; align-items: start; justify-content: center; gap: 32px; padding-top: 64px; padding-bottom: 96px; }
.article-layout--without-toc { grid-template-columns: minmax(0, 780px) 230px; }
.article-left-rail { position: sticky; top: 104px; display: grid; gap: 24px; }
.article-toc { border-top: 3px solid var(--navy-900); }
.article-toc > p { margin: 0; padding: 14px 0; font-size: 15px; font-weight: 850; }
.article-toc ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-toc li { border-bottom: 1px solid var(--line); }
.article-toc a { display: block; padding: 11px 0; color: var(--text); font-size: 14px; line-height: 1.5; }
.article-toc a:hover { color: var(--orange-600); }
.article-toc .toc-level-3 a { padding-left: 14px; color: var(--muted); }
.article-rail-module { padding-top: 16px; border-top: 2px solid var(--navy-900); }
.article-rail-module > h2 { margin: 0 0 8px; font-size: 17px; }
.article-rail-module > article { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
.article-rail-module > article h3 { margin: 0 0 8px; font-size: 14px; line-height: 1.5; }
.article-rail-module > article:hover h3 { color: var(--orange-600); }
.article-rail-popular ol { margin: 0; padding: 0; list-style: none; }
.article-rail-popular li { display: grid; grid-template-columns: 28px 1fr; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.article-rail-popular li > span { color: var(--orange-600); font-size: 12px; font-weight: 850; }
.article-rail-popular a { color: var(--text); font-size: 13px; line-height: 1.55; }
.article-rail-popular a:hover { color: var(--orange-600); }
.article-main-column { min-width: 0; }
.article-sync-note { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding: 14px 18px; color: var(--text); background: #eef3f1; border-left: 3px solid var(--success); font-size: 14px; }
.article-sync-note strong { color: var(--success); white-space: nowrap; }
.article-body { min-width: 0; color: #243846; font-size: 17px; line-height: 1.9; }
.article-body:not(.article-body--wechat) h2 { scroll-margin-top: 110px; margin: 48px 0 16px; padding-top: 14px; font-size: 30px; line-height: 1.35; letter-spacing: -.03em; color: var(--ink); border-top: 1px solid var(--line); }
.article-body:not(.article-body--wechat) h2:first-child { margin-top: 0; }
.article-body:not(.article-body--wechat) h3 { scroll-margin-top: 110px; margin: 30px 0 10px; font-size: 22px; line-height: 1.42; color: var(--ink); }
.article-body:not(.article-body--wechat) p { margin: 0 0 22px; }
.article-body:not(.article-body--wechat) ul, .article-body:not(.article-body--wechat) ol { padding-left: 24px; }
.article-body:not(.article-body--wechat) a { color: var(--orange-600); text-decoration: underline; text-underline-offset: 4px; }
.article-body:not(.article-body--wechat) blockquote { margin: 28px 0; padding: 18px 24px; color: var(--text); background: var(--paper); border-left: 4px solid var(--orange-600); }
.article-body:not(.article-body--wechat) img { width: 100%; display: block; margin: 32px 0; border-radius: var(--radius-sm); }
.article-body--wechat { overflow: hidden; padding: 40px 46px; color: #303133; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: 16px; line-height: 1.75; }
.article-body--wechat section, .article-body--wechat div, .article-body--wechat p, .article-body--wechat table { max-width: 100%; box-sizing: border-box; }
.article-body--wechat h2 { scroll-margin-top: 110px; margin: 48px 0 16px !important; padding-top: 14px; color: var(--ink) !important; border-top: 1px solid var(--line); font-size: 30px !important; font-weight: 800 !important; line-height: 1.35 !important; letter-spacing: -.03em !important; }
.article-body--wechat h2:first-child { margin-top: 0 !important; }
.article-body--wechat h3 { scroll-margin-top: 110px; margin: 30px 0 10px !important; color: var(--ink) !important; font-size: 22px !important; font-weight: 800 !important; line-height: 1.42 !important; }
.article-body--wechat img { max-width: 100% !important; height: auto !important; }
.article-body--wechat a { color: #576b95; text-decoration: none; }
.article-body--wechat table { width: 100%; border-collapse: collapse; }
.source-box { margin-top: 56px; padding: 22px 24px; background: var(--paper); border: 1px solid var(--line); font-size: 14px; }
.source-box strong { display: block; margin-bottom: 8px; color: var(--ink); }
.source-box p { margin: 0; }
.source-box a { display: inline-flex; margin-top: 12px; color: var(--navy-700) !important; font-weight: 750; text-decoration: underline !important; text-underline-offset: 3px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.article-tags span { width: 100%; color: var(--muted); font-size: 12px; }
.article-tags a { min-height: 36px; display: inline-flex; align-items: center; padding: 0 12px; color: var(--navy-700); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; text-decoration: none; }
.article-side-cta { position: sticky; top: 110px; padding: 22px; color: var(--white); background: var(--navy-900); }
.article-side-cta > span { color: #f3a786; font-size: 11px; font-weight: 800; }
.article-side-cta__title { display: block; margin: 20px 0 10px; font-size: 20px; line-height: 1.4; }
.article-side-cta p { color: #c8d5dc; font-size: 13px; }
.article-side-qr { width: 132px; height: 132px; display: block; margin: 18px 0 14px; object-fit: cover; background: var(--white); border: 6px solid var(--white); border-radius: var(--radius-sm); }

.governance-section { background: var(--surface); }
.governance-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); align-items: end; gap: 90px; margin-bottom: 48px; }
.governance-intro h2 { max-width: 680px; margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.18; letter-spacing: -.045em; }
.governance-intro > p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.governance-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.governance-grid article { min-height: 260px; display: flex; flex-direction: column; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.governance-grid article > span { color: var(--orange-600); font-size: var(--label-size-compact); font-weight: 850; }
.governance-grid h3 { margin: auto 0 10px; font-size: 22px; }
.governance-grid p { margin: 0; color: var(--text); font-size: 13px; }
.governance-intro--dark h2 { color: var(--ink); }
.governance-intro--dark > p { color: var(--text); }
.editorial-rules { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cadce2; border-left: 1px solid #cadce2; }
.editorial-rules article { min-height: 190px; padding: 28px; background: rgba(255,255,255,.48); border-right: 1px solid #cadce2; border-bottom: 1px solid #cadce2; }
.editorial-rules strong { color: var(--orange-600); font-size: 17px; }
.editorial-rules p { margin: 20px 0 0; color: var(--text); font-size: 14px; }
.data-policy { background: var(--paper); }
.governance-list { margin-top: 36px; border-top: 1px solid var(--line); }
.governance-list article { display: grid; grid-template-columns: 190px 1fr; gap: 36px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.governance-list h3, .governance-list p { margin: 0; }
.governance-list h3 { font-size: 18px; }
.governance-list p { color: var(--text); font-size: 14px; }
.correction-note { margin-top: 36px; padding: 26px 28px; color: var(--ink); background: #edf5f7; border-left: 4px solid var(--orange-500); }
.correction-note strong { color: var(--orange-600); }
.correction-note p { margin: 10px 0 0; color: var(--text); font-size: 14px; }

.search-page { min-height: 65vh; padding: 80px 0 100px; }
.search-page__head { max-width: 760px; margin-bottom: 60px; }
.search-page h1 { margin: 0; font-size: clamp(38px, 4.6vw, 60px); letter-spacing: -.05em; }
.search-page form { margin-top: 30px; }
.search-page form > div { display: flex; gap: 10px; }
.search-page input { min-height: 50px; flex: 1; min-width: 0; padding: 0 16px; color: var(--ink); background: var(--white); border: 1px solid #aeb8bd; border-radius: var(--radius-sm); }
.search-page__hint { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.search-group + .search-group { margin-top: 64px; }
.search-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.search-result-card { min-height: 240px; display: flex; flex-direction: column; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--navy-900); transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease; }
.search-result-card > span { color: var(--orange-600); font-size: var(--label-size-compact); font-weight: 850; letter-spacing: .1em; }
.search-result-card h3 { margin: 28px 0 8px; font-size: 24px; line-height: 1.25; }
.search-result-card p { margin: 0; color: var(--text); font-size: 14px; }
.search-result-card small { margin-top: 10px; color: var(--muted); line-height: 1.6; }
.search-result-card strong { margin-top: auto; padding-top: 22px; font-size: 13px; }
.search-result-card:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); box-shadow: var(--shadow-sm); }
.search-result-card:hover p, .search-result-card:hover small { color: #c7d5dc; }
.search-result-card:hover > span { color: #f3a786; }

.service-detail-list { border-top: 1px solid var(--line); }
.service-detail-list article { display: grid; grid-template-columns: 170px 1fr 270px; gap: 44px; padding: 44px 0; border-bottom: 1px solid var(--line); }
.service-detail-list article > span { color: var(--orange-600); font-size: var(--label-size); font-weight: 850; }
.service-detail-list h2 { margin: 0 0 12px; font-size: 28px; }
.service-detail-list p { margin: 0; color: var(--text); }
.service-detail-list ul { margin: 0; padding: 0; color: var(--text); list-style: none; }
.service-detail-list li { padding: 7px 0; border-bottom: 1px dashed var(--line); }

.join-callout { display: grid; grid-template-columns: 124px 1fr; align-items: center; gap: 18px; padding: 26px; color: var(--white); background: var(--navy-900); border-top: 5px solid var(--orange-600); }
.join-callout > span { grid-column: 1 / -1; }
.join-callout > img { width: 124px; height: 124px; display: block; object-fit: cover; background: var(--white); border: 6px solid var(--white); border-radius: var(--radius-sm); }
.join-callout span, .join-callout strong, .join-callout small { display: block; }
.join-callout span { color: #f3a786; font-size: 12px; font-weight: 800; }
.join-callout strong { margin-top: 0; font-size: 15px; }
.join-callout p { margin: 4px 0 12px !important; color: var(--white) !important; font-size: 19px !important; font-weight: 800; line-height: 1.45; }
.join-callout small { color: #c5d2d9; }
.join-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.join-grid article { min-height: 300px; display: flex; flex-direction: column; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.join-grid > article > span { color: var(--orange-600); font-size: var(--label-size-feature); font-weight: 800; }
.join-grid h3 { margin: 44px 0 12px; font-size: 25px; }
.join-grid p { margin: 0; color: var(--text); font-size: 17px; line-height: 1.75; }
.join-grid .keyword-tags { margin-top: 18px; }
.join-grid > article > a { margin-top: 18px; color: var(--orange-600); font-size: 15px; font-weight: 850; }
.join-grid > article > a:hover { color: var(--navy-700); }
.join-grid strong { margin-top: auto; padding-top: 24px; color: var(--navy-700); font-size: 15px; }
.join-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; margin: 0; padding: 0; list-style: none; background: transparent; }
.join-steps li { min-height: 250px; position: relative; padding: 30px 24px 28px; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--navy-800); border-radius: var(--radius-md); box-shadow: 0 12px 30px rgba(16, 40, 59, .06); }
.join-steps li::after { content: "›"; width: 34px; height: 34px; position: absolute; z-index: 3; top: 34px; right: -32px; display: grid; place-items: center; color: var(--white); background: var(--orange-600); border: 4px solid var(--paper); border-radius: 50%; font-size: 23px; font-weight: 850; line-height: 1; }
.join-steps li::before { content: ""; position: absolute; z-index: 2; top: 50px; right: -29px; width: 28px; height: 2px; background: #c8d6dc; }
.join-steps li:last-child::after, .join-steps li:last-child::before { display: none; }
.join-steps span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--orange-600); background: #fff4ee; border: 1px solid #edc7b7; border-radius: 50%; font-size: 14px; font-weight: 900; }
.join-steps h3 { margin: 34px 0 10px; font-size: 21px; }
.join-steps p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.7; }

.not-found { min-height: 65vh; display: flex; align-items: center; padding: 90px 0; text-align: center; }
.not-found span { color: var(--orange-600); font-size: 14px; font-weight: 900; letter-spacing: .2em; }
.not-found h1 { margin: 18px 0; font-size: clamp(38px, 5vw, 64px); }
.not-found p { max-width: 580px; margin: 0 auto; color: var(--text); }
.not-found .hero-actions { justify-content: center; }

.final-cta { padding: 64px 0; color: var(--white); background: var(--orange-600); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta p:not(.eyebrow) { margin: 12px 0 0; color: #ffe8df; }
.final-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.final-cta__qr { display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 14px; }
.final-cta__qr img { width: 86px; height: 86px; display: block; object-fit: cover; background: var(--white); border: 5px solid var(--white); border-radius: var(--radius-sm); }
.final-cta__qr span { color: #fff3ec; font-size: 12px; line-height: 1.6; }
.site-footer { padding-top: 64px; color: #d4e0e5; background: #173852; }
.footer-directory { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); margin-bottom: 56px; }
.footer-directory section { min-height: 210px; padding: 26px 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.footer-directory section > div { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.footer-directory section a { min-height: 44px; display: inline-flex; align-items: center; color: #aebfc9; font-size: 13px; line-height: 1.45; }
.footer-directory section a:hover { color: #f3a786; }
.footer-city-pair { display: inline-flex; align-items: center; gap: 5px; }
.footer-directory section .footer-city-pair__province { color: #f3a786; font-weight: 800; }
.footer-directory section .footer-city-pair__province:hover, .footer-directory section .footer-city-pair__province:focus-visible { color: var(--white); }
.footer-directory .footer-directory__more { color: var(--white); font-weight: 800; }
.footer-directory small { display: block; margin-top: 14px; color: #728894; font-size: 12px; line-height: 1.7; }
.footer-directory__empty { margin: 0 0 10px; color: #8196a2; font-size: 13px; }
.footer-directory__friends { grid-column: 2; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 64px; padding-bottom: 50px; }
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__mark { width: 58px; height: 50px; padding: 5px; background: var(--white); border-radius: 12px; }
.footer-brand > p { max-width: 440px; margin: 24px 0 0; font-size: 14px; }
.footer-brand .footer-note { color: #8297a4; font-size: 12px; }
.footer-heading { margin: 0 0 18px; color: var(--white); font-size: 14px; font-weight: 800; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid > div:not(.footer-brand) a { min-height: 32px; font-size: 13px; }
.footer-grid a:hover { color: #f3a786; }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #93a9b5; border-top: 1px solid var(--line-dark); font-size: 12px; }
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { min-height: 36px; display: inline-flex; align-items: center; color: #b5c7d0; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: #f3a786; }

.city-word-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.city-word-pair { min-height: 58px; display: flex; align-items: stretch; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.city-word-pair > a { min-height: 58px; display: inline-flex; align-items: center; color: var(--navy-800); font-size: 14px; }
.city-word-pair__province { padding: 10px 4px 10px 14px; color: var(--orange-600) !important; font-size: var(--label-size-compact) !important; font-weight: 800; }
.city-word-pair__city { flex: 1; padding: 10px 14px 10px 3px; }
.city-word-pair > a:hover, .city-word-pair > a:focus-visible { color: var(--white) !important; background: var(--navy-900); }
.tag-match-note { margin: -10px 0 28px; padding: 13px 16px; color: var(--text); background: #f3f7f6; border-left: 3px solid var(--orange-600); font-size: 14px; }
.province-group__head small { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.province-group__head h3 a:hover { color: var(--orange-600); }
.region-child-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.region-child-grid > a { min-height: 142px; display: flex; flex-direction: column; padding: 22px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.region-child-grid > a > span { color: var(--orange-600); font-size: var(--label-size-compact); font-weight: 800; }
.region-child-grid > a > strong { margin: auto 0 8px; font-size: 19px; }
.region-child-grid > a > small { color: var(--muted); font-size: 12px; }
.region-child-grid > a:hover { color: var(--white); background: var(--navy-900); }
.region-child-grid > a:hover small { color: #b8cad4; }
.region-empty-state { padding: 40px; background: var(--surface); border: 1px solid var(--line); }
.region-empty-state > strong { font-size: 22px; }
.region-empty-state > p { margin: 10px 0 0; }

.process-grid--four { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .home-hero__layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; }
  .hero-search { width: min(720px, 100%); }
  .capability-grid { grid-template-columns: repeat(3, 1fr); padding-block: 24px; }
  .capability-copy { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid #cbdce2; border-right: 0 !important; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid { grid-template-columns: 150px 150px 1fr; }
  .signal-grid > a { grid-column: 3; padding-bottom: 16px; }
  .article-layout { grid-template-columns: 200px minmax(0, 720px); }
  .article-layout--without-toc { grid-template-columns: minmax(0, 780px); }
  .article-side-cta { display: none; }
  .join-steps, .process-grid--four { grid-template-columns: repeat(2, 1fr); }
  .join-steps li::before, .join-steps li::after { display: none; }
  .service-detail-list article { grid-template-columns: 140px 1fr; }
  .service-detail-list ul { grid-column: 2; }
  .city-link-grid { grid-template-columns: repeat(2, 1fr); }
  .city-word-grid, .region-child-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .merchant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .city-link-grid > a:nth-child(3n) { border-right: 1px solid var(--line); }
  .city-link-grid > a:nth-child(2n) { border-right: 0; }
  .taxonomy-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .news-compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .container, .article-header__inner { width: min(100% - 32px, var(--container)); }
  .section { padding: 64px 0; }
  .header-actions .header-search, .header-actions .button { display: none; }
  .home-hero__layout { min-height: 700px; grid-template-columns: 1fr; align-content: center; gap: 36px; }
  .home-hero__content { max-width: 720px; }
  .hero-search--stable { max-width: 680px; }
  .hero-search { width: 100%; }
  .taxonomy-dock__head { grid-template-columns: 1fr; gap: 24px; }
  .region-picker__panel { left: 0; right: auto; }
  .taxonomy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-board__choice { grid-template-columns: 1fr; }
  .choice-block { min-height: 330px; }
  .choice-block + .choice-block { border-left: 0; border-top: 1px solid var(--line); }
  .choice-block ul { min-height: auto; }
  .capability-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .capability-grid > div { padding-right: 16px; }
  .signal-grid { min-height: 0; grid-template-columns: repeat(2, 1fr); padding-block: 28px; }
  .signal-copy { grid-column: 1 / -1; border: 0 !important; }
  .signal-grid > a { grid-column: 1 / -1; padding: 0; }
  .category-grid, .resource-grid, .mode-grid, .join-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading, .service-layout, .faq-layout, .page-hero__grid, .trust-layout { grid-template-columns: 1fr; gap: 34px; }
  .market-check { grid-template-columns: 1fr; gap: 30px; }
  .market-check__intro { max-width: 620px; }
  .governance-intro { grid-template-columns: 1fr; gap: 28px; }
  .governance-grid { grid-template-columns: repeat(2, 1fr); }
  .service-intro, .topic-aside, .article-left-rail, .article-toc { position: static; }
  .feature-article-grid { grid-template-columns: 1fr; }
  .feature-article { min-height: 360px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .content-with-aside { grid-template-columns: 1fr; gap: 40px; }
  .editorial-masthead { padding-top: 58px; }
  .editorial-masthead__grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-standard { max-width: 620px; }
  .topic-chips--editorial { margin-top: 40px; }
  .editorial-feature { grid-template-columns: 1fr; }
  .editorial-feature__media { min-height: 360px; }
  .editorial-feature__content { padding: 38px 40px; }
  .topic-aside { display: grid; grid-template-columns: repeat(3, 1fr); border-top-width: 1px; }
  .topic-aside > p { grid-column: 1 / -1; }
  .topic-aside > a { border: 1px solid var(--line); }
  .aside-note { grid-column: 1 / -1; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .home-editorial-layout { grid-template-columns: 1fr; }
  .home-editorial-lead { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-editorial-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-editorial-list article { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .home-editorial-list article + article { border-top: 0; }
  .home-editorial-list article:nth-child(2n) { border-right: 0; }
  .home-editorial-list article > a { grid-template-columns: 112px minmax(0, 1fr); }
  .home-editorial-list img { width: 112px; }
  .news-compact-grid article { grid-template-columns: 76px 1fr; }
  .news-compact-grid time { grid-column: 2; }
  .search-result-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; padding-top: 38px; }
  .article-cover { width: min(100% - 32px, 1120px); margin-top: 32px; }
  .article-toc { padding: 20px; background: var(--paper); border-top: 0; }
  .article-toc ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
  .article-left-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 20px; background: var(--paper); }
  .article-toc { grid-column: 1 / -1; padding: 0; background: transparent; }
  .article-header { padding: 54px 0 44px; }
  .resource-list-grid { grid-template-columns: 1fr; }
  .final-cta__inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .directory-hero { padding: 58px 0; }
  .directory-hero__grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
  .directory-standard { max-width: 680px; }
  .province-group { grid-template-columns: 130px 1fr; }
  .directory-card-grid { grid-template-columns: repeat(2, 1fr); }
  .keyword-cloud--brand { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  body { font-size: 16px; }
  .container, .article-header__inner { width: min(100% - 24px, var(--container)); }
  .section { padding: 52px 0; }
  .header-row { min-height: 64px; }
  .brand { gap: 8px; }
  .brand__mark { width: 40px; height: 34px; }
  .brand__name { font-size: 18px; }
  .brand__suffix { font-size: 9px; }
  .home-hero, .home-hero__layout { min-height: 740px; }
  .home-hero__layout { padding-block: 48px; }
  .home-hero__image { object-position: center; filter: saturate(.62) contrast(.92) brightness(1.08); }
  .home-hero__scrim { background: linear-gradient(90deg, rgba(248,252,252,.97), rgba(236,247,249,.82)), linear-gradient(180deg, rgba(255,255,255,.32), rgba(224,239,243,.78)); }
  .home-hero h1 { font-size: 40px; }
  .home-hero__summary { margin-top: 18px; font-size: 16px; }
  .home-hero__actions .button { width: 100%; }
  .hero-actions--category .button { width: 100%; min-width: 0; }
  .hero-search--stable { padding: 18px; }
  .hero-search { width: 100%; }
  .hero-search label { margin-bottom: 6px; font-size: 12px; }
  .hero-search > div:not(.hot-searches) { min-height: 52px; }
  .hero-search input { min-height: 50px; padding-inline: 14px; font-size: 14px; }
  .hero-search button { min-width: 72px; min-height: 50px; }
  .hot-searches { margin-top: 7px; gap: 6px 12px; font-size: 11px; }
  .choice-block { padding: 22px; }
  .taxonomy-dock { padding: 28px 0 30px; }
  .taxonomy-dock__head { gap: 16px; margin-bottom: 14px; }
  .taxonomy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .taxonomy-group[open] { grid-column: 1 / -1; }
  .taxonomy-group summary { min-height: 50px; grid-template-columns: minmax(0, 1fr) auto; padding-inline: 9px; }
  .taxonomy-group summary > span { display: none; }
  .taxonomy-group summary h3 { font-size: 13px; }
  .taxonomy-group__body { max-height: none; }
  .region-keywords { max-height: 78px; overflow: hidden; }
  .region-keywords a { display: none; }
  .region-keywords a:nth-of-type(-n+4), .region-keywords a:nth-last-of-type(2) { display: inline-flex; }
  .region-picker__panel { position: fixed; top: 76px; left: 12px; right: 12px; width: auto; max-height: calc(100dvh - 92px); padding: 18px; }
  .region-picker__head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .region-picker__provinces { grid-template-columns: 1fr; }
  .region-picker__provinces section { grid-template-columns: 64px 1fr; }
  .region-search { grid-template-columns: 1fr; }
  .region-search .button { width: 100%; }
  .taxonomy-branch { grid-template-columns: 72px 1fr; gap: 8px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-copy { grid-column: 1 / -1; }
  .signal-grid { gap: 24px 14px; }
  .signal-grid > div { padding-right: 10px; }
  .signal-grid strong { font-size: 28px; }
  .section-heading h2, .final-cta h2 { font-size: 32px; }
  .category-grid, .resource-grid, .mode-grid, .join-grid, .article-grid, .article-grid--two, .process-grid, .process-grid--four, .join-steps, .advantage-grid { grid-template-columns: 1fr; }
  .merchant-grid, .home-editorial-list, .news-compact-grid, .city-word-grid, .region-child-grid { grid-template-columns: 1fr; }
  .home-editorial-list article { border-right: 0; }
  .home-editorial-list article > a { min-height: 124px; grid-template-columns: 104px minmax(0, 1fr); padding: 12px; }
  .home-editorial-list img { width: 104px; }
  .news-compact-grid article { grid-template-columns: 72px 1fr; }
  .governance-grid, .editorial-rules { grid-template-columns: 1fr; }
  .governance-grid article { min-height: 210px; }
  .governance-list article { grid-template-columns: 1fr; gap: 8px; }
  .search-result-grid { grid-template-columns: 1fr; }
  .category-item { min-height: 170px; }
  .resource-card { min-height: 220px; }
  .section-heading--with-tabs { align-items: flex-start; flex-direction: column; }
  .feature-article { min-height: 380px; padding: 26px; }
  .feature-article h3 { font-size: 30px; }
  .service-list > div { grid-template-columns: 1fr; }
  .service-list span { grid-row: auto; }
  .page-hero { padding: 52px 0; }
  .page-hero h1, .page-hero--compact h1 { font-size: 40px; }
  .page-hero p:not(.eyebrow) { font-size: 16px; }
  .editorial-masthead { padding-top: 42px; }
  .editorial-masthead h1 { font-size: 42px; }
  .editorial-masthead__lead { font-size: 16px; }
  .editorial-masthead__facts { gap: 8px 18px; }
  .editorial-standard { padding: 24px 22px; }
  .topic-chips--editorial { margin-top: 28px; padding-block: 12px; }
  .editorial-feature-section { padding: 30px 0; }
  .editorial-feature__media { min-height: 250px; }
  .editorial-feature__content { padding: 28px 24px; }
  .editorial-feature h2 { font-size: 29px; }
  .topic-aside { grid-template-columns: repeat(2, 1fr); }
  .article-card__content { min-height: 280px; }
  .article-header { padding: 44px 0 38px; }
  .article-header h1 { font-size: 38px; line-height: 1.14; letter-spacing: -.035em; }
  .article-deck { font-size: 17px; }
  .article-origin { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .article-origin .article-source-link { white-space: normal; }
  .article-toc ol { grid-template-columns: 1fr; }
  .article-left-rail { grid-template-columns: 1fr; padding: 18px; }
  .article-toc { grid-column: auto; }
  .article-body { font-size: 16px; }
  .article-body--wechat { padding: 22px 16px; }
  .article-body:not(.article-body--wechat) h2, .article-body--wechat h2 { margin-top: 40px !important; font-size: 26px !important; }
  .article-body:not(.article-body--wechat) h3, .article-body--wechat h3 { margin-top: 26px !important; font-size: 21px !important; }
  .trust-points p { grid-template-columns: 1fr; gap: 8px; }
  .service-detail-list article { grid-template-columns: 1fr; gap: 18px; }
  .service-detail-list ul { grid-column: auto; }
  .search-page form > div { flex-direction: column; }
  .search-page form .button { width: 100%; }
  .join-callout { grid-template-columns: 102px 1fr; padding: 20px; }
  .join-callout > img { width: 102px; height: 102px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-directory { grid-template-columns: 1fr; }
  .footer-directory__friends { grid-column: 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; }
  .pagination { flex-wrap: wrap; }
  .pagination__pages { max-width: 100%; order: -1; flex-basis: 100%; justify-content: center; }
  .directory-hero { padding: 46px 0; }
  .directory-hero h1 { font-size: 40px; }
  .directory-hero__grid > div > p:not(.eyebrow) { font-size: 16px; }
  .location-bar > .container { min-height: 0; align-items: stretch; flex-direction: column; padding-block: 12px; gap: 8px; }
  .location-switcher summary, .location-bar__brands { width: 100%; }
  .location-switcher__panel { width: calc(100vw - 24px); grid-template-columns: 1fr; }
  .province-group { grid-template-columns: 1fr; }
  .province-group__head { padding: 24px 0 16px; }
  .province-group__head h3 { margin-top: 8px; }
  .city-link-grid { grid-template-columns: 1fr; border-left: 0; }
  .city-link-grid > a, .city-link-grid > a:nth-child(2n), .city-link-grid > a:nth-child(3n) { min-height: 132px; border-right: 0; }
  .directory-card-grid, .brand-directory { grid-template-columns: 1fr; }
  .directory-crosslinks__grid { grid-template-columns: 1fr; }
  .directory-card-grid > a, .directory-card-grid > article { min-height: 280px; }
  .taxonomy-branches--directory .taxonomy-branch { grid-template-columns: 1fr; }
  .check-list p { grid-template-columns: 1fr; gap: 4px; }
  .market-check__grid { grid-template-columns: 1fr; }
  .market-check__grid article { min-height: 0; }
}

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