:root {
  --navy: #17324d;
  --navy-2: #244e6b;
  --blue: #1267bd;
  --wood: #1267bd;
  --wood-soft: #edf4fc;
  --warm: #f5f8fc;
  --paper: #ffffff;
  --mist: #f6f8fb;
  --ink: #1d2630;
  --muted: #617180;
  --line: #e4eaf0;
  --shadow: 0 14px 38px rgba(23, 50, 77, 0.08);
  --container: 1240px;
  --header: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
img, canvas { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  height: var(--header); position: fixed; inset: 0 0 auto; z-index: 80;
  background: rgba(247,246,242,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 25px rgba(23,50,77,.06); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 216px; height: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: block; padding: 10px 12px; color: var(--navy); text-decoration: none; font-size: 14px; border-radius: 10px; }
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(23,50,77,.07); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--navy); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 19px; border: 1px solid transparent; border-radius: 8px;
  font-weight: 650; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid rgba(47,111,148,.28); outline-offset: 2px; }
.btn-primary { color: #fff; background: var(--navy); box-shadow: 0 10px 24px rgba(23,50,77,.18); }
.btn-primary:hover { background: #0f2a42; }
.btn-light { color: var(--navy); background: rgba(255,255,255,.76); border-color: rgba(23,50,77,.2); }
.btn-ghost { color: var(--navy); background: transparent; border-color: rgba(23,50,77,.2); }

/* Sticky scroll story */
.hero-scroll { position: relative; height: 190vh; min-height: 1180px; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; min-height: 690px; overflow: hidden;
  display: grid; align-items: center; padding-top: var(--header);
  background: var(--warm);
}
.hero-media { position: absolute; inset: 0 0 0 auto; width: min(64vw, 1120px); overflow: hidden; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(247,246,242,.98) 0%, rgba(247,246,242,.72) 13%, rgba(247,246,242,.18) 29%, rgba(247,246,242,0) 43%);
  pointer-events: none;
}
#heroCanvas { width: 100%; height: 100%; }
.hero-mobile-image { display: none; width: 100%; border-radius: 22px; box-shadow: var(--shadow); }
.hero-content { position: relative; z-index: 3; width: min(560px, 49%); padding-block: 44px; }
.eyebrow { margin: 0 0 14px; color: var(--wood); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-title { margin: 0; color: var(--navy); font-size: clamp(40px, 4vw, 52px); line-height: 1.18; letter-spacing: -.025em; }
.hero-desc { max-width: 530px; margin: 19px 0 24px; color: #5a6672; font-size: 16px; line-height: 1.8; }
.hero-search {
  max-width: 520px; display: grid; grid-template-columns: 1fr; gap: 11px;
  padding: 0; background: transparent; border: 0;
  border-radius: 0; box-shadow: none;
}
.hero-search input { min-width: 0; height: 48px; padding: 0 16px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.hero-search .btn { width: 100%; min-height: 50px; }
.hero-note { margin: 13px 0 0; color: var(--muted); font-size: 13px; }
.hero-actions { display: flex; gap: 10px; margin-top: 18px; }
.story-progress { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--navy); }
.story-progress span { font-size: 13px; font-weight: 700; opacity: .42; transition: .25s ease; }
.story-progress span.active { opacity: 1; }
.story-line { position: relative; width: 112px; height: 3px; background: rgba(23,50,77,.13); border-radius: 10px; overflow: hidden; }
.story-line i { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--wood); border-radius: inherit; }
.scroll-cue { position: absolute; z-index: 4; right: 30px; bottom: 26px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; }
.scroll-cue::before { content: ""; width: 1px; height: 28px; background: var(--wood); animation: cue 1.5s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.55); opacity:.45; } 50% { transform: scaleY(1); opacity:1; } }

.search-result { position: fixed; z-index: 110; left: 50%; bottom: 26px; width: min(820px, calc(100% - 32px)); transform: translateX(-50%); }
.result-card { padding: 22px; color: #fff; background: rgba(23,50,77,.96); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 25px 70px rgba(12,30,45,.35); backdrop-filter: blur(18px); }
.result-top { display: flex; justify-content: space-between; gap: 16px; }
.result-card h2 { margin: 0 0 6px; font-size: 22px; }
.result-card p { margin: 0; color: rgba(255,255,255,.76); line-height: 1.65; }
.result-close { align-self: flex-start; color: #fff; background: transparent; border: 0; font-size: 25px; cursor: pointer; }
.result-contact { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 16px; }
.result-contact strong { color: #fff; }
.result-contact a { color: #fff; }
.result-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.result-buttons .btn { min-height: 38px; padding-inline: 13px; font-size: 13px; }
.result-message { margin-top: 14px !important; padding: 10px 12px; background: rgba(255,255,255,.08); border-radius: 10px; font-size: 13px; }
.result-notice { margin-top: 10px !important; color: #ffe0ab !important; }

.section { padding: 88px 0; }
.section-white { background: var(--paper); }
.section-mist { background: var(--mist); }
.section-navy { color: #fff; background: var(--navy); }
.section-head { display: block; max-width: 680px; margin-bottom: 42px; }
.section-head h2 { margin: 0; color: var(--navy); font-size: clamp(30px, 3vw, 38px); line-height: 1.28; letter-spacing: -.02em; }
.section-navy .section-head h2 { color: #fff; }
.section-head p { margin: 12px 0 0; color: var(--muted); line-height: 1.8; font-size: 15.5px; }
.section-navy .section-head p { color: rgba(255,255,255,.66); }
.section-kicker { display: block; margin-bottom: 9px; color: #b8935f; font-size: 13px; font-weight: 700; letter-spacing: .14em; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 220px; padding: 28px 26px; background: var(--warm); border: 1px solid var(--line); border-radius: 10px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(39,100,138,.25); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin-bottom: 18px; color: var(--blue); background: var(--wood-soft); border-radius: 12px; }
.service-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 17.5px; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14.5px; }
.service-note { margin: 18px 0 0; color: var(--muted); font-size: 13px; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; border: 0; background: transparent; }
.process-card { min-height: 190px; padding: 24px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.process-card b { display: block; margin-bottom: 12px; color: var(--wood); font-size: 26px; letter-spacing: .04em; }
.process-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 16px; }
.process-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.process-fineprint { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 28px; }
.process-fineprint p { position: relative; margin: 0; padding: 0 0 0 16px; color: var(--muted); background: transparent; font-size: 13.5px; line-height: 1.65; }
.process-fineprint p::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--wood); }

.city-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.city-card { display: block; min-height: 108px; padding: 19px; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: 10px; transition: .2s ease; }
.city-card:hover { transform: translateY(-3px); border-color: rgba(47,111,148,.4); box-shadow: 0 14px 35px rgba(23,50,77,.08); }
.city-card strong { display: block; color: var(--navy); font-size: 18px; }
.city-card span { display: block; margin-top: 9px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.coverage-note { margin: 22px 0 0; color: var(--muted); }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.media-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.media-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #eef3f5; }
.review-shot { width: 100%; aspect-ratio: 3.2/1; padding: 14px; object-fit: contain; background: #fff; border-bottom: 1px solid var(--line); }
.review-summary { object-fit: contain; }
.media-placeholder { aspect-ratio: 16/10; display: grid; place-items: center; color: #789; background: repeating-linear-gradient(135deg,#eef3f5,#eef3f5 12px,#e8eef1 12px,#e8eef1 24px); font-size: 13px; }
.media-body { padding: 20px; }
.media-body h3 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
.media-body p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 13px; }
.real-case-card { display: flex; flex-direction: column; }
.case-photos { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2px; background: var(--line); }
.case-photos figure { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #e9edef; }
.case-photos img { display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.case-photos figcaption { position: absolute; left: 9px; bottom: 9px; padding: 5px 9px; color: #fff; background: rgba(20,38,53,.78); border-radius: 999px; font-size: 11px; line-height: 1; backdrop-filter: blur(6px); }
.real-case-card .media-body { flex: 1; }
.real-case-card .media-body h3 { margin-top: 8px; }
.real-case-card .media-body p strong { color: var(--navy); }
.case-location { display: inline-flex; align-items: center; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.more-row { margin-top: 24px; text-align: center; }

.business-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.business-grid div { padding: 21px 14px; text-align: center; color: #fff; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.035); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.about-grid h2 { margin: 0; color: var(--navy); font-size: clamp(34px,4vw,52px); }
.about-copy { color: var(--muted); line-height: 1.9; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.about-stats div { padding: 18px; border: 1px solid var(--line); border-radius: 14px; }
.about-stats strong { display: block; color: var(--navy); font-size: 19px; }
.about-stats span { color: var(--muted); font-size: 12px; }

.contact-panel { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 38px; background: var(--navy); border-radius: 24px; box-shadow: var(--shadow); }
.contact-panel h2 { margin: 0 0 11px; color: #fff; font-size: 34px; }
.contact-panel p { margin: 5px 0; color: rgba(255,255,255,.72); }
.contact-panel strong, .contact-panel a { color: #fff; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.qr-box { width: 190px; padding: 12px; text-align: center; background: #fff; border-radius: 16px; }
.qr-box img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.qr-box span { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; }
.qr-box span { font-size: 0; }
.qr-box span::after { content: "扫码添加客服微信"; font-size: 11px; }

.site-footer { padding: 54px 0 26px; color: rgba(255,255,255,.68); background: #10283d; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; }
.footer-brand img { width: 225px; padding: 9px 12px; background: #fff; border-radius: 12px; filter: none; opacity: 1; }
.footer-grid h2 { margin: 0 0 14px; color: #fff; font-size: 15px; }
.footer-grid p, .footer-grid li { font-size: 13px; line-height: 1.75; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid a { color: inherit; text-decoration: none; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.legal { opacity: .72; }
.icp-link { color: rgba(255,255,255,.76); text-decoration: none; white-space: nowrap; }
.icp-link:hover, .icp-link:focus-visible { color: #fff; text-decoration: underline; }
.police-filing-link { display: inline-flex; align-items: center; gap: 6px; vertical-align: middle; }
.police-filing-icon { width: 20px; height: 20px; object-fit: contain; flex: 0 0 20px; }
.phone-visible { min-width: 142px; letter-spacing: .03em; }

.mobile-contact { display: none; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 90px; transform: translateX(-50%); padding: 10px 16px; color:#fff; background:rgba(16,40,61,.95); border-radius: 10px; font-size: 13px; }
.qr-modal { position: fixed; z-index: 180; inset: 0; display: grid; place-items: center; padding: 20px; }
.qr-modal[hidden], .toast[hidden], .search-result[hidden] { display: none; }
.qr-mask { position:absolute; inset:0; background:rgba(7,19,29,.62); }
.qr-dialog { position:relative; width:min(360px,100%); padding:26px; text-align:center; background:#fff; border-radius:20px; box-shadow:var(--shadow); }
.qr-dialog img { width: 220px; margin: 0 auto 12px; }
.qr-dialog h2 { color:var(--navy); }

/* City pages */
.city-hero { padding: calc(var(--header) + 92px) 0 86px; background: linear-gradient(135deg,var(--warm),#edf3f5); }
.breadcrumbs { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.city-hero h1 { max-width: 800px; margin: 0; color: var(--navy); font-size: clamp(40px,6vw,70px); line-height:1.08; letter-spacing:-.04em; }
.city-hero .lead { max-width: 760px; margin: 24px 0; color:var(--muted); font-size:17px; line-height:1.85; }
.city-service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.city-service-card { padding:26px; background:#fff; border:1px solid var(--line); border-radius:17px; }
.city-service-card h2 { margin:0 0 10px; color:var(--navy); font-size:20px; }
.city-service-card p { margin:0; color:var(--muted); line-height:1.75; font-size:14px; }

@media (max-width: 1050px) {
  .site-nav { display: none; position: fixed; top: var(--header); left: 20px; right: 20px; margin: 0; padding: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .nav-toggle { display: block; }
  .header-cta { display:none; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .city-grid { grid-template-columns: repeat(4,1fr); }
  .business-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 720px) {
  :root { --header: 64px; }
  body { padding-bottom: 66px; }
  .container { width: min(100% - 30px, var(--container)); }
  .brand img { width: 196px; }
  .hero-scroll { height: auto; min-height: 0; padding: calc(var(--header) + 34px) 0 54px; }
  .hero-sticky { position: relative; top: auto; height: auto; min-height: 0; display: block; padding-top: 0; overflow: visible; }
  .hero-media { position: relative; margin: 30px auto 0; width: calc(100% - 30px); }
  .hero-media::after, #heroCanvas, .scroll-cue { display: none; }
  .hero-mobile-image { display: block; }
  .hero-content { width: auto; padding: 0; }
  .hero-title { font-size: clamp(38px,12vw,52px); }
  .hero-desc { font-size: 15px; }
  .hero-search { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
  .story-progress { display: none; }
  .search-result { bottom: 76px; }
  .result-contact { display:block; }
  .result-buttons { margin:14px 0 0; }
  .section { padding: 70px 0; }
  .section-head { grid-template-columns: 1fr; gap:14px; }
  .section-head h2 { font-size: 34px; }
  .service-grid, .cards-3, .city-service-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 0; }
  .process-card b { margin-bottom: 16px; }
  .process-fineprint { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2,1fr); }
  .city-card { min-height: 98px; }
  .media-card.mobile-extra { display:none; }
  .media-card.mobile-extra.show { display:block; }
  .business-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns:1fr; gap:24px; }
  .about-stats { grid-template-columns:1fr; }
  .contact-panel { grid-template-columns:1fr; padding:26px; }
  .qr-box { width: 170px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .mobile-contact { position:fixed; z-index:90; display:flex; gap:8px; left:0; right:0; bottom:0; padding:8px 12px calc(8px + env(safe-area-inset-bottom)); background:rgba(247,246,242,.97); border-top:1px solid var(--line); }
  .mobile-contact .btn { flex:1; min-height:44px; }
}

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


/* v0.7 official identity and information pages */
.info-main { min-height: 70vh; }
.info-link-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.info-link-card { display:flex; flex-direction:column; gap:8px; min-height:135px; padding:25px; color:inherit; text-decoration:none; border:1px solid var(--line); border-radius:17px; background:#fff; transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.info-link-card:hover { transform:translateY(-2px); border-color:#9bb3c5; box-shadow:0 12px 28px rgba(23,50,77,.08); }
.info-link-card strong { color:var(--navy); font-size:19px; }
.info-link-card span { color:var(--muted); line-height:1.7; font-size:13px; }
.info-layout { display:grid; grid-template-columns:1.25fr .75fr; gap:24px; align-items:start; }
.official-contact-card,.verify-card,.platform-card,.local-note { padding:30px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:0 10px 30px rgba(23,50,77,.05); }
.official-contact-card h2 { margin:10px 0; color:var(--navy); font-size:clamp(28px,4vw,44px); }
.official-contact-card p,.verify-card p,.platform-card p,.local-note p { color:var(--muted); line-height:1.8; }
.verify-card h2,.platform-card h2,.local-note strong { color:var(--navy); }
.verify-card ul { margin:0; padding-left:20px; color:var(--muted); line-height:2; }
.updated { font-size:12px; }
.text-link { color:var(--blue); font-weight:700; text-decoration:none; }
.faq-list { display:grid; gap:14px; }
.faq-item { display:grid; grid-template-columns:54px 1fr; gap:18px; padding:26px; border:1px solid var(--line); border-radius:18px; background:#fff; }
.faq-item>span { color:var(--blue); font-weight:800; }
.faq-item h2 { margin:0 0 10px; color:var(--navy); font-size:20px; }
.faq-item p { margin:0; color:var(--muted); line-height:1.8; }
.platform-list { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.platform-card.primary { border-color:#9bb3c5; background:#f7fafb; }
.platform-card a,.big-phone a { color:var(--blue); font-weight:750; }
.status-badge { display:inline-flex; padding:6px 10px; color:var(--blue); background:#edf4f7; border-radius:999px; font-size:12px; font-weight:700; }
.big-phone { font-size:26px; }
.city-local { padding-top:20px; }
.local-note { box-shadow:none; }
.local-note p { margin-bottom:0; }
@media (max-width:720px) { .info-link-grid,.info-layout,.platform-list { grid-template-columns:1fr; } .faq-item { grid-template-columns:1fr; gap:8px; } .official-contact-card,.verify-card,.platform-card,.local-note { padding:22px; } }

/* v0.8.0: calm blue-white editorial system; photography-first service cards. */
body {
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

.site-header {
  background: rgba(255, 255, 255, .84);
  border-bottom-color: rgba(23, 50, 77, .07);
  -webkit-backdrop-filter: saturate(170%) blur(20px);
  backdrop-filter: saturate(170%) blur(20px);
}
.site-header.scrolled { border-color: rgba(23, 50, 77, .09); box-shadow: 0 4px 18px rgba(23, 50, 77, .04); }
.header-inner { gap: 28px; }
.brand img { width: 208px; }
.site-nav a { padding: 10px 13px; color: #415468; font-size: 13px; font-weight: 500; border-radius: 999px; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue); background: #eef5fc; }
.nav-toggle { border-radius: 999px; background: #fff; }

.btn {
  min-height: 46px;
  padding-inline: 21px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--blue); box-shadow: none; }
.btn-primary:hover { background: #0d57a2; }
.btn-light { color: var(--navy); background: #fff; border-color: rgba(23, 50, 77, .12); }
.btn-ghost { color: var(--blue); background: rgba(255, 255, 255, .7); border-color: rgba(18, 103, 189, .2); }
.header-cta { min-height: 42px; padding-inline: 19px; }

.hero-scroll { height: 175vh; min-height: 1080px; background: var(--warm); }
.hero-sticky { min-height: 700px; background: var(--warm); }
.hero-media { width: min(62vw, 1110px); }
.hero-media::after {
  background: linear-gradient(90deg, rgba(245, 248, 252, 1) 0%, rgba(245, 248, 252, .95) 11%, rgba(245, 248, 252, .62) 23%, rgba(245, 248, 252, .06) 42%, rgba(245, 248, 252, 0) 55%);
}
.hero-content { width: min(640px, 55%); padding-block: 46px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--blue); font-size: 12px; font-weight: 650; letter-spacing: .045em; }
.hero-status-dot { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(18, 103, 189, .09); }
.hero-title { max-width: 610px; color: var(--navy); font-size: clamp(46px, 5vw, 66px); font-weight: 650; line-height: 1.13; letter-spacing: -.055em; }
.hero-desc { max-width: 575px; margin: 21px 0 28px; color: #59697a; font-size: 16px; line-height: 1.8; }
.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.03fr) auto;
  align-items: center;
  gap: 0;
  max-width: 626px;
  min-height: 76px;
  padding: 7px;
  background: #fff;
  border: 1px solid rgba(23, 50, 77, .1);
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(23, 50, 77, .04), 0 12px 28px rgba(23, 50, 77, .06);
}
.search-segment { display: grid; gap: 3px; min-width: 0; padding: 7px 15px; cursor: text; }
.search-segment + .search-segment { border-left: 1px solid var(--line); }
.search-segment > span { color: var(--navy); font-size: 12px; font-weight: 650; line-height: 1.15; }
.hero-search input { width: 100%; height: 22px; padding: 0; background: transparent; border: 0; border-radius: 0; font-size: 12px; }
.hero-search input::placeholder { color: #7b8996; }
.hero-search input:focus-visible { outline: none; }
.hero-search .search-submit { width: auto; min-width: 113px; min-height: 57px; gap: 7px; padding-inline: 15px; }
.search-submit svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.search-submit span { white-space: nowrap; }
.hero-note { max-width: 600px; margin-top: 15px; color: #677789; font-size: 12px; line-height: 1.7; }
.hero-actions { gap: 11px; margin-top: 22px; }
.hero-actions .btn { min-height: 45px; }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 9px 19px; margin-top: 21px; color: #647486; font-size: 11px; }
.hero-assurance span { position: relative; display: inline-flex; align-items: center; gap: 7px; }
.hero-assurance span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #75a5d4; }
.story-progress { gap: 12px; margin-top: 27px; }
.story-progress span { font-size: 11px; font-weight: 550; }
.story-line { width: 88px; height: 2px; }
.story-line i { background: var(--blue); }
.scroll-cue { right: 34px; bottom: 30px; color: #657587; }
.scroll-cue::before { background: var(--blue); }

.section { padding: 108px 0; }
.section-white { background: #fff; }
.section-mist { background: #f6f8fb; }
.section-head { max-width: 710px; margin-bottom: 46px; }
.section-kicker { margin-bottom: 11px; color: var(--blue); font-size: 12px; font-weight: 650; letter-spacing: .08em; }
.section-head h2 { font-size: clamp(34px, 4vw, 48px); font-weight: 620; line-height: 1.16; letter-spacing: -.045em; }
.section-head p { margin-top: 14px; font-size: 15px; line-height: 1.8; }

.service-grid { gap: 17px; }
.service-card {
  min-height: 245px;
  padding: 29px 27px 25px;
  background: #fff;
  border-color: #e8edf2;
  border-radius: 20px;
  box-shadow: none;
}
.service-card::after { content: "↗"; position: absolute; top: 30px; right: 25px; color: #a4b1bd; font-size: 17px; }
.service-card:hover { transform: translateY(-3px); border-color: #cbddef; box-shadow: 0 2px 6px rgba(23, 50, 77, .04), 0 10px 20px rgba(23, 50, 77, .07); }
.service-icon { width: 50px; height: 50px; margin-bottom: 21px; color: var(--blue); background: #edf4fc; border-radius: 15px; }
.service-card h3 { margin-bottom: 11px; font-size: 18px; font-weight: 650; letter-spacing: -.02em; }
.service-card p { max-width: 320px; font-size: 14px; line-height: 1.78; }
.service-note { margin-top: 23px; color: #738293; }

.process-grid { gap: 14px; }
.process-card { min-height: 214px; padding: 23px 20px; background: #fff; border-color: #e8edf2; border-radius: 20px; }
.process-card b { display: grid; width: 43px; height: 43px; place-items: center; margin-bottom: 19px; color: var(--blue); background: #edf4fc; border-radius: 50%; font-size: 13px; font-weight: 650; letter-spacing: .03em; }
.process-card h3 { font-size: 16px; font-weight: 650; }
.process-card p { font-size: 13px; line-height: 1.8; }
.process-fineprint { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 27px; }
.process-fineprint p { font-size: 12px; }
.process-fineprint p::before { background: #7aa8d4; }

.city-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.city-card { position: relative; min-height: 113px; padding: 21px 18px; border-color: #e8edf2; border-radius: 17px; }
.city-card::after { content: "→"; position: absolute; top: 23px; right: 17px; color: #9aabba; font-size: 15px; }
.city-card:hover { transform: translateY(-2px); border-color: #cbddef; box-shadow: 0 2px 6px rgba(23, 50, 77, .04), 0 8px 16px rgba(23, 50, 77, .06); }
.city-card strong { font-size: 17px; font-weight: 650; }
.city-card span { margin-top: 10px; font-size: 12px; }
.coverage-note { font-size: 13px; line-height: 1.8; }

.cards-3 { gap: 19px; }
.media-card { background: #fff; border-color: #e8edf2; border-radius: 20px; transition: transform .22s ease, box-shadow .22s ease; }
.media-card:hover { transform: translateY(-2px); box-shadow: 0 2px 6px rgba(23, 50, 77, .04), 0 10px 20px rgba(23, 50, 77, .07); }
.media-image { aspect-ratio: 4 / 3; }
.media-body { padding: 23px 22px 24px; }
.media-body h3 { margin-bottom: 9px; font-size: 17px; font-weight: 650; letter-spacing: -.01em; }
.media-body p { font-size: 13px; line-height: 1.8; }
.case-photos { gap: 2px; background: #fff; }
.case-photos figcaption { left: 11px; bottom: 11px; padding: 6px 10px; background: rgba(18, 36, 53, .72); }
.case-location { color: var(--blue); font-size: 11px; font-weight: 600; }
.real-case-card .media-body h3 { margin-top: 10px; }
.review-shot { aspect-ratio: 3.2 / 1; padding: 16px; border-bottom-color: #edf0f3; }
.more-row { margin-top: 30px; }

.section-navy { background: #17324d; }
.section-navy .section-kicker { color: #9bc1e8; }
.business-grid { gap: 12px; }
.business-grid div { padding: 21px 12px; border-color: rgba(255, 255, 255, .13); border-radius: 16px; background: rgba(255, 255, 255, .04); font-size: 14px; }

.about-grid { gap: 76px; }
.about-grid h2 { font-size: clamp(38px, 5vw, 56px); font-weight: 620; letter-spacing: -.05em; }
.about-copy { font-size: 15px; line-height: 1.9; }
.about-stats { gap: 14px; margin-top: 28px; }
.about-stats div { padding: 20px 17px; border-color: #e8edf2; border-radius: 16px; }
.about-stats strong { font-size: 17px; font-weight: 650; }

.info-link-grid { gap: 16px; }
.info-link-card { min-height: 155px; padding: 27px 25px; border-color: #e8edf2; border-radius: 19px; }
.info-link-card:hover { border-color: #cbddef; box-shadow: 0 2px 6px rgba(23, 50, 77, .04), 0 10px 20px rgba(23, 50, 77, .07); }
.info-link-card strong { font-size: 18px; font-weight: 650; }
.info-link-card span { font-size: 13px; }
.contact-panel { gap: 42px; padding: 47px; background: #17324d; border-radius: 26px; box-shadow: none; }
.contact-panel h2 { font-size: clamp(28px, 3.3vw, 40px); font-weight: 620; letter-spacing: -.035em; }
.contact-panel p { line-height: 1.8; }
.qr-box { width: 180px; border-radius: 18px; }

.site-footer { padding: 67px 0 30px; background: #11283d; }
.footer-grid { gap: 56px; }
.footer-brand img { width: 224px; padding: 9px 12px; border-radius: 13px; }
.footer-grid h2 { margin-bottom: 16px; font-size: 14px; font-weight: 600; }
.footer-grid p, .footer-grid li { font-size: 13px; line-height: 1.95; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; column-gap: 10px; row-gap: 9px; margin-top: 41px; padding-top: 22px; line-height: 1.75; }
.police-filing-link { gap: 7px; }

.city-hero { padding: calc(var(--header) + 98px) 0 94px; background: #f5f8fc; }
.city-hero h1 { font-size: clamp(42px, 6vw, 70px); font-weight: 640; }
.city-hero .lead { font-size: 16px; line-height: 1.85; }
.breadcrumbs { font-size: 12px; }
.city-service-grid { gap: 17px; }
.city-service-card { padding: 28px; border-color: #e8edf2; border-radius: 20px; }
.city-service-card h2 { font-size: 19px; font-weight: 650; }
.official-contact-card, .verify-card, .platform-card, .local-note { padding: 31px; border-color: #e8edf2; border-radius: 20px; box-shadow: none; }
.official-contact-card h2 { font-weight: 640; letter-spacing: -.035em; }
.faq-item { border-color: #e8edf2; border-radius: 19px; }
.status-badge { color: var(--blue); background: #edf4fc; }

.result-card { padding: 24px; background: rgba(20, 44, 68, .97); border-radius: 22px; }
.result-buttons .btn { min-height: 39px; }
.qr-dialog { padding: 30px; border-radius: 23px; }

@media (max-width: 1120px) {
  .hero-content { width: min(590px, 60%); }
  .hero-title { font-size: clamp(46px, 5.7vw, 59px); }
  .hero-search { max-width: 555px; }
  .search-segment { padding-inline: 11px; }
  .hero-search .search-submit { min-width: 101px; padding-inline: 11px; }
  .service-grid { gap: 14px; }
  .process-fineprint { grid-template-columns: 1fr; }
}

@media (max-width: 1050px) {
  .site-nav { top: calc(var(--header) + 8px); left: 20px; right: 20px; padding: 10px; background: rgba(255, 255, 255, .98); border-radius: 20px; }
  .site-nav a { min-height: 47px; display: flex; align-items: center; padding-inline: 15px; }
  .city-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --header: 66px; }
  body { padding-bottom: 77px; }
  .container { width: min(100% - 36px, var(--container)); }
  .brand img { width: 185px; }
  .site-header { background: rgba(255, 255, 255, .91); }
  .hero-scroll { height: auto; min-height: 0; padding: calc(var(--header) + 48px) 0 46px; }
  .hero-sticky { min-height: 0; display: flex; flex-direction: column; overflow: visible; background: transparent; }
  .hero-sticky > .container { order: 1; }
  .hero-media { order: 2; width: calc(100% - 36px); margin: 33px auto 0; }
  .hero-mobile-image { display: block; border-radius: 21px; box-shadow: none; }
  .hero-content { width: 100%; padding: 0; }
  .eyebrow { margin-bottom: 17px; font-size: 11px; }
  .hero-title { max-width: 390px; font-size: clamp(41px, 10.8vw, 54px); line-height: 1.16; }
  .hero-desc { margin: 16px 0 23px; font-size: 14px; line-height: 1.8; }
  .hero-search { grid-template-columns: 1fr; max-width: none; gap: 0; padding: 5px; border-radius: 23px; }
  .search-segment { min-height: 59px; gap: 3px; padding: 9px 14px; }
  .search-segment + .search-segment { border-top: 1px solid var(--line); border-left: 0; }
  .search-segment > span { font-size: 12px; }
  .hero-search input { height: 22px; font-size: 13px; }
  .hero-search .search-submit { width: 100%; min-height: 48px; border-radius: 18px; }
  .hero-note { margin-top: 12px; font-size: 11px; }
  .hero-actions { margin-top: 17px; }
  .hero-actions .btn { min-height: 44px; }
  .hero-assurance { gap: 8px 14px; margin-top: 17px; font-size: 10px; }
  .section { padding: 77px 0; }
  .section-head { margin-bottom: 33px; }
  .section-head h2 { font-size: clamp(34px, 8.9vw, 41px); }
  .section-head p { font-size: 14px; }
  .service-grid { gap: 12px; }
  .service-card { min-height: 212px; padding: 25px 22px 23px; border-radius: 18px; }
  .service-card::after { top: 27px; right: 21px; }
  .service-icon { width: 46px; height: 46px; margin-bottom: 17px; }
  .process-grid { gap: 10px; }
  .process-card { min-height: 0; padding: 20px; }
  .process-card b { margin-bottom: 13px; }
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .city-card { min-height: 104px; padding: 18px 14px; }
  .city-card::after { top: 20px; right: 13px; }
  .city-card strong { font-size: 16px; }
  .cards-3 { gap: 14px; }
  .media-card { border-radius: 18px; }
  .media-body { padding: 20px 19px 21px; }
  .about-grid { gap: 23px; }
  .about-grid h2 { font-size: 43px; }
  .about-stats { grid-template-columns: 1fr; }
  .business-grid { gap: 9px; }
  .business-grid div { padding: 17px 9px; font-size: 13px; }
  .contact-panel { gap: 24px; padding: 28px 23px; border-radius: 22px; }
  .contact-panel h2 { font-size: 29px; line-height: 1.28; }
  .qr-box { width: 164px; }
  .footer-grid { gap: 29px; }
  .site-footer { padding: 54px 0 26px; }
  .footer-bottom { align-items: flex-start; column-gap: 4px; row-gap: 7px; margin-top: 32px; font-size: 11px; }
  .police-filing-icon { width: 17px; height: 17px; flex-basis: 17px; }
  .mobile-contact { gap: 9px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .94); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-top-color: rgba(23, 50, 77, .1); }
  .mobile-contact .btn { min-height: 47px; }
  .search-result { bottom: 87px; }
  .city-hero { padding: calc(var(--header) + 73px) 0 70px; }
  .city-hero h1 { font-size: clamp(39px, 10vw, 53px); }
  .city-hero .lead { font-size: 15px; }
  .city-service-card { padding: 23px; border-radius: 18px; }
  .official-contact-card, .verify-card, .platform-card, .local-note { padding: 23px; }
}

@media (max-width: 400px) {
  .container { width: calc(100% - 30px); }
  .brand img { width: 170px; }
  .hero-title { font-size: 40px; }
  .hero-assurance { gap: 8px 10px; }
  .hero-assurance span { gap: 5px; }
  .city-card { padding-inline: 12px; }
  .city-card::after { right: 11px; }
}
