/* ==========================================================
   Blue Arrow Restoration — nydamagerestoration.com
   Design system: midnight navy + champagne gold, serif display type
   ========================================================== */

:root {
  --navy-950: #070f1c;
  --navy-900: #0c1829;
  --navy-800: #12233b;
  --navy-700: #1b3150;
  --blue: #1a3d6b;
  --blue-600: #122d52;
  --sky: #d4b06a;
  --sky-200: #e9dcbf;
  --sky-100: #f6f0e4;
  --ice: #f5f2ec;
  --paper: #fcfbf8;
  --ink: #0c1626;
  --text: #36404e;
  --muted: #6d7482;
  --line: #e6dfd2;
  --white: #ffffff;
  --amber: #c9a45c;
  --amber-600: #ad8840;
  --red: #c2413f;

  --primary-color: var(--blue);
  --accent-color: var(--sky);
  --dark-color: var(--navy-950);
  --transition: all .25s ease;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(12, 24, 41, .06), 0 2px 8px rgba(12, 24, 41, .05);
  --shadow: 0 14px 34px -16px rgba(12, 24, 41, .28);
  --shadow-lg: 0 34px 70px -28px rgba(12, 24, 41, .42);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-latin: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-600); }
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.3; margin: 0 0 .6em; font-weight: 700; letter-spacing: .01em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); line-height: 1.18; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.6em; border-radius: 999px; font-weight: 700; font-size: 1rem; line-height: 1.2;
  border: 2px solid transparent; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px -10px rgba(26, 61, 107, .7); }
.btn-primary:hover { background: var(--blue-600); color: var(--white); transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--navy-950); box-shadow: 0 10px 24px -10px rgba(201, 164, 92, .8); }
.btn-amber:hover { background: #d9b877; color: var(--navy-950); transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 255, 255, .08); color: var(--white); border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: rgba(255, 255, 255, .16); color: var(--white); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 1em 2em; font-size: 1.06rem; }
.btn-block { width: 100%; }

.link-more { font-weight: 700; display: inline-flex; align-items: center; gap: .35em; }
.link-more::after { content: "→"; transition: transform .25s ease; }
.link-more:hover::after { transform: translateX(4px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-latin); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.on-dark .eyebrow, .eyebrow.light { color: var(--sky); }

/* ---------- 顶部信息条 ---------- */
.topbar { background: var(--navy-950); color: rgba(255, 255, 255, .72); font-size: .84rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar-note { display: flex; align-items: center; gap: .6em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 0 rgba(61, 220, 132, .6); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, .55); } 70% { box-shadow: 0 0 0 9px rgba(61, 220, 132, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); } }
.topbar-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; white-space: nowrap; }
.topbar-links a { color: rgba(255, 255, 255, .85); }
.topbar-links a:hover { color: var(--sky); }

/* ---------- 页头导航 ---------- */
.site-header { position: sticky; top: 0; z-index: 900; background: rgba(255, 255, 255, .97); border-bottom: 1px solid transparent; transition: box-shadow .3s ease, border-color .3s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(12, 24, 41, .35); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.logo a, .logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; transition: opacity .3s; }
.logo:hover { opacity: .85; color: var(--ink); }
.logo img { width: 46px; height: 46px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 1.28rem; font-weight: 800; letter-spacing: .08em; color: var(--navy-900); }
.logo-tag { font-family: var(--font-latin); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-top: 3px; }

.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; white-space: nowrap; padding: 10px 12px; color: var(--ink); font-weight: 600; font-size: .97rem; border-radius: 8px; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--blue); }
.has-drop > a::after { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); opacity: .6; }

.mega {
  position: absolute; left: 50%; top: 100%; transform: translate(-50%, 12px);
  width: min(880px, 92vw); background: var(--white); border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 26px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-drop:hover .mega, .has-drop:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega h5 { font-size: .74rem; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; margin: 0 0 8px; font-family: var(--font-latin); }
.mega-col a { display: block; padding: 9px 12px; margin: 0 -12px; border-radius: 10px; color: var(--ink); font-weight: 600; line-height: 1.35; }
.mega-col a small { display: block; font-weight: 400; color: var(--muted); font-size: .8rem; margin-top: 2px; }
.mega-col a:hover { background: var(--sky-100); color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 10px; color: var(--ink); line-height: 1.2; }
.nav-phone .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--amber); color: var(--navy-950); display: grid; place-items: center; flex-shrink: 0; }
.nav-phone .ic svg { width: 20px; height: 20px; }
.nav-phone span { display: block; font-size: .74rem; color: var(--muted); }
.nav-phone strong { display: block; font-family: var(--font-latin); font-size: 1.12rem; letter-spacing: .02em; }
.nav-phone:hover strong { color: var(--blue); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 12px; cursor: pointer; padding: 0; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: var(--transition); }
.nav-toggle span:nth-child(1) { top: 14px; } .nav-toggle span:nth-child(2) { top: 21px; } .nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(7, 15, 28, .55); opacity: 0; visibility: hidden; transition: .3s; z-index: 950; }
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- 首页 Hero ---------- */
.hero { position: relative; background: var(--navy-950); color: var(--white); overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(7, 15, 28, .97) 0%, rgba(12, 24, 41, .9) 42%, rgba(12, 24, 41, .45) 75%, rgba(12, 24, 41, .25) 100%); }
.hero::after { content: ""; position: absolute; right: -180px; bottom: -260px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(212, 176, 106, .28), transparent 65%); z-index: -1; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding-top: 96px; padding-bottom: 110px; }
.hero h1 { color: var(--white); margin-bottom: .45em; }
.hero h1 .hl { color: var(--sky); }
.hero h1 .h1-sub { display: block; margin-top: .45em; font-size: .56em; font-weight: 600; letter-spacing: .06em; color: rgba(255, 255, 255, .92); }
.hero-lead { font-size: 1.14rem; color: rgba(255, 255, 255, .82); max-width: 40em; margin-bottom: 1.8em; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px 7px 10px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); font-size: .88rem; color: rgba(255, 255, 255, .9); margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 26px; color: rgba(255, 255, 255, .8); font-size: .95rem; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points svg { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; }

.hero-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.hero-card h2 { color: var(--white); font-size: 1.3rem; margin-bottom: .3em; }
.hero-card p { color: rgba(255, 255, 255, .72); font-size: .94rem; }
.hero-card .big-phone { display: block; font-family: var(--font-latin); font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; color: var(--amber); letter-spacing: .02em; margin: 6px 0 18px; }
.hero-card .big-phone:hover { color: #e2c68c; }
.emergency-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.emergency-list a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 12px; background: rgba(255, 255, 255, .06); color: var(--white); font-size: .92rem; font-weight: 600; border: 1px solid transparent; }
.emergency-list a:hover { border-color: rgba(212, 176, 106, .5); background: rgba(212, 176, 106, .12); color: var(--white); }
.emergency-list .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(212, 176, 106, .18); color: var(--sky); flex-shrink: 0; }
.emergency-list .dot svg { width: 17px; height: 17px; }

/* ---------- 信任条 ---------- */
.trust-bar { position: relative; z-index: 2; margin-top: -54px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden; }
.trust-item { padding: 26px 24px; display: flex; gap: 14px; align-items: flex-start; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--sky-100); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
.trust-item .ic svg { width: 24px; height: 24px; }
.trust-item strong { display: block; font-size: 1.02rem; margin-bottom: 2px; }
.trust-item span { display: block; font-size: .86rem; color: var(--muted); line-height: 1.5; }

/* ---------- 通用区块 ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-ice { background: var(--ice); }
.section-dark { background: var(--navy-900); color: rgba(255, 255, 255, .78); }
.section-dark h2, .section-dark h3, .section-dark strong { color: var(--white); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin: 0; }
.section-dark .section-head p { color: rgba(255, 255, 255, .7); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.wide-left { grid-template-columns: 1.15fr .85fr; }

/* ---------- 服务卡片 ---------- */
.svc-card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: var(--text); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; height: 100%; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--text); }
.svc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-800); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-tag { position: absolute; left: 14px; top: 14px; background: rgba(7, 15, 28, .78); color: var(--white); font-size: .74rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .04em; }
.svc-tag.new { background: var(--amber); color: var(--navy-950); }
.svc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin-bottom: .35em; }
.svc-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.svc-body .link-more { font-size: .94rem; }
.svc-icon { width: 52px; height: 52px; border-radius: 15px; background: var(--sky-100); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.svc-icon svg { width: 26px; height: 26px; }

.feature { padding: 30px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); height: 100%; }
.feature h3 { font-size: 1.12rem; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }
.section-dark .feature { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.section-dark .feature p { color: rgba(255, 255, 255, .66); }
.section-dark .svc-icon { background: rgba(212, 176, 106, .14); color: var(--sky); }

/* ---------- 图片组合 ---------- */
.media-stack { position: relative; padding: 0 0 48px 48px; }
.media-stack .m-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-stack .m-sub { position: absolute; left: 0; bottom: 0; width: 46%; border-radius: var(--radius); border: 6px solid var(--white); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.media-stack .m-badge { position: absolute; right: -14px; top: 28px; background: var(--navy-900); color: var(--white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); line-height: 1.3; }
.media-stack .m-badge strong { display: block; font-family: var(--font-latin); font-size: 1.9rem; color: var(--sky); }
.media-stack .m-badge span { font-size: .84rem; color: rgba(255, 255, 255, .75); }
.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

.check-list { list-style: none; padding: 0; margin: 0 0 1.4em; }
.check-list li { position: relative; padding-left: 32px; margin-bottom: .7em; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .32em; width: 20px; height: 20px; border-radius: 50%; background: var(--sky-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8823f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat; }
.section-dark .check-list li::before { background-color: rgba(212, 176, 106, .16); }

/* ---------- 数据 / 流程 ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat strong { display: block; font-family: var(--font-latin); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--sky); line-height: 1.1; margin-bottom: 8px; }
.stat span { font-size: .95rem; color: rgba(255, 255, 255, .72); }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); display: block; font-family: var(--font-latin); font-weight: 800; font-size: 2rem; color: var(--sky-200); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 1.06rem; margin-bottom: .4em; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }
.section-dark .step { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.section-dark .step::before { color: rgba(212, 176, 106, .5); }
.section-dark .step p { color: rgba(255, 255, 255, .64); }

.timeline { position: relative; list-style: none; padding: 0; margin: 0; }
.timeline li { position: relative; padding: 0 0 30px 64px; }
.timeline li::before { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--line); }
.timeline li:last-child::before { display: none; }
.timeline .num { position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-900); color: var(--white); display: grid; place-items: center; font-family: var(--font-latin); font-weight: 800; }
.timeline h3 { font-size: 1.12rem; margin-bottom: .3em; padding-top: 8px; }
.timeline p { color: var(--muted); margin: 0; }

/* ---------- 画廊 ---------- */
.gallery { columns: 3 280px; column-gap: 18px; }
.gallery figure { margin: 0 0 18px; break-inside: avoid; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy-800); cursor: zoom-in; }
.gallery img { width: 100%; transition: transform .6s ease, opacity .3s; }
.gallery figure:hover img { transform: scale(1.04); opacity: .9; }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 16px 14px; background: linear-gradient(transparent, rgba(7, 15, 28, .85)); color: var(--white); font-size: .88rem; line-height: 1.45; }
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-strip img { border-radius: var(--radius-sm); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.lightbox { position: fixed; inset: 0; background: rgba(7, 15, 28, .94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 84vh; max-width: min(1100px, 100%); border-radius: 12px; }
.lightbox p { position: absolute; left: 0; right: 0; bottom: 18px; text-align: center; color: rgba(255, 255, 255, .85); padding: 0 60px; margin: 0; }
.lightbox button { position: absolute; background: rgba(255, 255, 255, .1); border: 0; color: var(--white); width: 48px; height: 48px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
.lightbox button:hover { background: rgba(255, 255, 255, .22); }
.lb-close { top: 18px; right: 18px; } .lb-prev { left: 18px; top: 50%; } .lb-next { right: 18px; top: 50%; }

/* ---------- 地区 ---------- */
.area-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.area-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; color: var(--white); display: flex; align-items: flex-end; isolation: isolate; }
.area-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.area-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 15, 28, 0) 35%, rgba(7, 15, 28, .9)); }
.area-card:hover img { transform: scale(1.07); }
.area-card div { padding: 20px; }
.area-card strong { display: block; color: var(--white); font-size: 1.15rem; }
.area-card span { font-size: .84rem; color: rgba(255, 255, 255, .78); }
.area-card:hover { color: var(--white); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 1.2em; }
.chips li { padding: 7px 15px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: .9rem; color: var(--text); }
.section-dark .chips li { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .85); }

/* ---------- 紧急横幅 / CTA ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: var(--white); padding: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center; isolation: isolate; }
.cta-band::after { content: ""; position: absolute; right: -120px; top: -160px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(212, 176, 106, .35), transparent 65%); z-index: -1; }
.cta-band h2 { color: var(--white); margin-bottom: .35em; }
.cta-band p { color: rgba(255, 255, 255, .78); margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-phone { font-family: var(--font-latin); font-size: 1.9rem; font-weight: 800; color: var(--amber); text-align: center; }
.cta-phone:hover { color: #e2c68c; }

.alert-band { background: var(--amber); color: var(--navy-950); }
.alert-band .container { display: flex; align-items: center; justify-content: center; gap: 12px 24px; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; text-align: center; font-weight: 600; }
.alert-band a { color: var(--navy-950); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 内页页头 ---------- */
.page-hero { position: relative; background: var(--navy-950); color: var(--white); overflow: hidden; isolation: isolate; }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(7, 15, 28, .96) 0%, rgba(12, 24, 41, .86) 50%, rgba(12, 24, 41, .5) 100%); }
.page-hero .container { padding-top: 64px; padding-bottom: 72px; }
.page-hero h1 { color: var(--white); max-width: 18em; font-size: clamp(1.85rem, 3.8vw, 2.9rem); }
.page-hero .lead { font-size: 1.1rem; color: rgba(255, 255, 255, .8); max-width: 44em; margin-bottom: 1.6em; }
.page-hero .hero-actions { margin-bottom: 0; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 6px; font-size: .86rem; color: rgba(255, 255, 255, .6); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: rgba(255, 255, 255, .35); }
.breadcrumb a { color: rgba(255, 255, 255, .8); }
.breadcrumb a:hover { color: var(--sky); }
.meta-line { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .9rem; color: rgba(255, 255, 255, .66); margin-top: -.4em; margin-bottom: 1.4em; }

/* ---------- 文章 / 正文 ---------- */
.layout-article { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.prose { font-size: 1.04rem; color: var(--text); }
.prose > *:first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 2.1em 0 .7em; padding-top: .2em; scroll-margin-top: 100px; }
.prose h3 { font-size: 1.2rem; margin: 1.7em 0 .5em; }
.prose p, .prose li { line-height: 1.9; }
.prose li { margin-bottom: .45em; }
.prose img, .prose figure img { border-radius: var(--radius); }
.prose figure { margin: 2em 0; }
.prose figcaption { font-size: .88rem; color: var(--muted); margin-top: 10px; text-align: center; }
.prose a { text-decoration: underline; text-decoration-color: var(--sky-200); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--blue); }
.prose a.btn { text-decoration: none; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 0; }
.table-wrap { overflow-x: auto; margin: 1.6em 0; border: 1px solid var(--line); border-radius: var(--radius); }
.prose th, .prose td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--ice); color: var(--ink); font-weight: 700; white-space: nowrap; }
.prose tr:last-child td { border-bottom: 0; }
.callout { border-radius: var(--radius); padding: 22px 24px; margin: 1.8em 0; background: var(--sky-100); border-left: 4px solid var(--blue); }
.callout.warn { background: #fbf4e6; border-left-color: var(--amber); }
.callout.danger { background: #fbecea; border-left-color: var(--red); }
.callout > strong:first-child { display: block; margin-bottom: 4px; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }
.dont-list { list-style: none; padding: 0; }
.dont-list li { position: relative; padding-left: 34px; }
.dont-list li::before { content: "✕"; position: absolute; left: 0; top: .2em; width: 22px; height: 22px; border-radius: 50%; background: #fbecea; color: var(--red); font-size: .72rem; font-weight: 800; display: grid; place-items: center; line-height: 1; }
.toc { background: var(--ice); border-radius: var(--radius); padding: 22px 26px; margin: 0 0 2em; }
.toc strong { display: block; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc li { margin: .25em 0; line-height: 1.6; }
.toc a { text-decoration: none; }

.sidebar { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 22px; }
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.side-card h3 { font-size: 1.05rem; margin-bottom: .8em; }
.side-card ul { list-style: none; padding: 0; margin: 0; }
.side-card li a { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--text); font-size: .95rem; }
.side-card li:last-child a { border-bottom: 0; }
.side-card li a::after { content: "›"; color: var(--muted); font-size: 1.2rem; }
.side-card li a:hover { color: var(--blue); }
.side-emergency { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); border: 0; color: rgba(255, 255, 255, .8); }
.side-emergency h3 { color: var(--white); }
.side-emergency p { font-size: .92rem; }
.side-emergency .big-phone { display: block; font-family: var(--font-latin); font-size: 1.65rem; font-weight: 800; color: var(--amber); margin: 4px 0 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; transition: box-shadow .25s ease, border-color .25s; }
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 60px 20px 24px; font-weight: 700; color: var(--ink); position: relative; font-size: 1.03rem; line-height: 1.5; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%; background: var(--sky-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8823f' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 12px no-repeat; transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 24px 22px; color: var(--text); }
.faq .answer p:last-child { margin-bottom: 0; }
.faq-group { margin-bottom: 44px; }
.faq-group > h2 { font-size: 1.35rem; margin-bottom: 18px; }

/* ---------- 文章列表 ---------- */
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: var(--text); height: 100%; transition: transform .3s ease, box-shadow .3s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: var(--text); }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card .pc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .pc-cat { font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--blue); margin-bottom: 6px; }
.post-card h3 { font-size: 1.12rem; line-height: 1.45; }
.post-card p { font-size: .93rem; color: var(--muted); flex: 1; margin-bottom: 14px; }

/* ---------- 联系 / 表单 ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.info-card { background: var(--navy-900); color: rgba(255, 255, 255, .78); border-radius: var(--radius-lg); padding: 38px; }
.info-card h2 { color: var(--white); font-size: 1.5rem; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.info-row:last-of-type { border-bottom: 0; }
.info-row .ic { width: 44px; height: 44px; border-radius: 13px; background: rgba(212, 176, 106, .15); color: var(--sky); display: grid; place-items: center; flex-shrink: 0; }
.info-row .ic svg { width: 21px; height: 21px; }
.info-row span { display: block; font-size: .82rem; color: rgba(255, 255, 255, .55); }
.info-row strong, .info-row a { color: var(--white); font-size: 1.05rem; }
.info-row a:hover { color: var(--sky); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.contact-form .req { color: var(--red); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--ice);
  font: inherit; font-size: 1rem; color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(26, 61, 107, .12); }
.form-note { font-size: .85rem; color: var(--muted); margin: 14px 0 0; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 7; background: var(--ice); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.nap { font-style: normal; }

/* ---------- 页脚 ---------- */
footer { background: var(--dark-color); color: var(--white); padding: 4.5rem 0 1.5rem; margin-top: 0; }
.footer-content { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 2.4rem; margin-bottom: 2.6rem; }
.footer-section h3 { color: var(--white); margin-bottom: 1.1rem; font-size: 1.05rem; letter-spacing: .04em; }
.footer-section p, .footer-section a { color: rgba(255, 255, 255, .7); line-height: 1.85; font-size: .94rem; }
.footer-section a:hover { color: var(--accent-color); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 44px; height: 44px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: var(--sky); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 2px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .55); font-size: .88rem; }
.footer-bottom p { margin-bottom: .5rem; }
.footer-bottom a { color: rgba(255, 255, 255, .7); }
.footer-disclaimer { max-width: 900px; margin: 0 auto 1.2rem !important; font-size: .8rem; line-height: 1.7; color: rgba(255, 255, 255, .42); }
.footer-partner { margin-top: 1rem; font-size: .9rem; color: rgba(255, 255, 255, .7); }
.footer-partner a { color: var(--accent-color); text-decoration: none; transition: var(--transition); }
.footer-partner a:hover { color: var(--white); }

.mobile-call { display: none; }

/* ---------- 动效 ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-dot { animation: none; }
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 48px; }
.muted { color: var(--muted); }

/* ==========================================================
   响应式
   ========================================================== */
@media (max-width: 1300px) {
  .nav-phone div { display: none; }
}

@media (max-width: 1180px) {
  .nav-menu > li > a { padding: 10px 9px; font-size: .93rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(360px, 88vw);
    background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 88px 18px 110px;
    overflow-y: auto; transform: translateX(100%); transition: transform .35s ease; z-index: 1000; box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { transform: none; }
  .nav-menu > li > a { padding: 14px 12px; font-size: 1.02rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .has-drop > a::after { float: right; margin-top: 8px; }
  .mega { position: static; transform: none; width: auto; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 4px 0 10px 12px; display: none; grid-template-columns: 1fr; gap: 0; }
  .has-drop:hover .mega, .has-drop:focus-within .mega { transform: none; }
  .has-drop.open .mega { display: grid; }
  .mega h5 { margin: 12px 0 4px; }
  .mega-col a { margin: 0; padding: 8px 10px; }
  .mega-col a small { display: none; }
  .nav-cta { position: relative; z-index: 1001; }

  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-top: 72px; padding-bottom: 96px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split.wide-left { grid-template-columns: 1fr; gap: 44px; }
  .layout-article { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; }
  .cta-band { grid-template-columns: 1fr; padding: 42px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; padding-bottom: 66px; }
  .container { padding: 0 18px; }
  .topbar-links li:not(:first-child) { display: none; }
  .topbar-note { font-size: .78rem; }
  .nav { min-height: 66px; }
  .logo img { width: 40px; height: 40px; }
  .logo-name { font-size: 1.1rem; }
  .logo-tag { font-size: .6rem; letter-spacing: .1em; }
  .nav-phone .ic { display: none; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 38px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .emergency-list { grid-template-columns: 1fr; }
  .hero-card { padding: 24px; }
  .trust-bar { margin-top: -40px; }
  .trust-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .media-stack { padding: 0 0 36px 24px; }
  .media-stack .m-badge { right: 8px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card, .info-card { padding: 26px 22px; }
  .footer-content { grid-template-columns: 1fr; gap: 1.8rem; }
  .page-hero .container { padding-top: 44px; padding-bottom: 52px; }
  .gallery { columns: 2 150px; column-gap: 12px; }
  .gallery figure { margin-bottom: 12px; }
  .gallery figcaption { display: none; }
  .map-wrap { aspect-ratio: 4 / 3; }
  .mobile-call { display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 800; box-shadow: 0 -8px 24px -12px rgba(7, 15, 28, .4); }
  .mobile-call a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 10px; font-weight: 800; font-size: 1rem; }
  .mobile-call .call { background: var(--amber); color: var(--navy-950); }
  .mobile-call .msg { background: var(--navy-900); color: var(--white); }
}

/* ---------- 深色区块内的时间线 ---------- */
.section-dark .timeline li::before { background: rgba(255, 255, 255, .14); }
.section-dark .timeline .num { background: var(--blue); }
.section-dark .timeline p { color: rgba(255, 255, 255, .66); }
a.feature { display: block; color: var(--text); transition: transform .3s ease, box-shadow .3s ease; }
a.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--text); }
footer strong { color: var(--white); }

/* ==========================================================
   Premium typography & details
   ========================================================== */
body { line-height: 1.7; letter-spacing: -.003em; }
h1, h2, .h-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
h1 { line-height: 1.12; }
h2 { line-height: 1.2; }
h3, h4, h5 { letter-spacing: -.005em; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: .01em; }
.logo-tag { color: var(--amber-600); letter-spacing: .22em; }
.footer-brand .logo-tag { color: var(--sky); }
.btn { border-radius: var(--radius-sm); font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.btn-lg { font-size: .92rem; }
.btn-amber { color: var(--navy-950); }
.btn-primary { background: var(--navy-900); box-shadow: 0 12px 26px -14px rgba(12, 24, 41, .8); }
.btn-primary:hover { background: var(--navy-700); }
.btn-outline { border-color: var(--navy-900); border-width: 1px; }
.btn-outline:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.eyebrow { color: var(--amber-600); letter-spacing: .24em; font-size: .74rem; font-weight: 600; }
.eyebrow::before { width: 34px; height: 1px; }
.hero h1 .hl { color: var(--sky); font-style: italic; }
.hero h1 .h1-sub { font-family: var(--font); font-size: .4em; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .78); }
.hero-card { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); background: rgba(12, 24, 41, .55); border-color: rgba(212, 176, 106, .28); }
.hero-card .big-phone, .cta-phone, .side-emergency .big-phone { font-family: var(--font-display); font-weight: 600; letter-spacing: 0; }
.stat strong { font-family: var(--font-display); font-weight: 600; }
.step::before { font-family: var(--font-display); font-weight: 600; color: var(--amber); }
.media-stack .m-badge strong { font-family: var(--font-display); font-weight: 600; }
.nav-menu > li > a { font-weight: 500; font-size: .94rem; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--amber-600); }
.mega-col a:hover { color: var(--navy-900); }
.nav-phone strong { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; }
.nav-phone:hover strong { color: var(--amber-600); }
.section-dark { background: var(--navy-900) linear-gradient(180deg, var(--navy-900), var(--navy-950)); }
.gold-rule { width: 64px; height: 1px; background: var(--amber); border: 0; margin: 0 auto 28px; }
.svc-tag.new { background: var(--amber); }
.post-card .pc-cat { color: var(--amber-600); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; }
.prose a { text-decoration-color: var(--amber); }
.callout { border-left-color: var(--amber); }
.faq summary { font-weight: 600; }

/* Office cards (two regional offices) */
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.office-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.office-card img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.office-card .oc-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.office-card .oc-label { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--amber-600); font-weight: 600; }
.office-card h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; margin: 0 0 .2em; }
.office-card address { font-style: normal; color: var(--text); line-height: 1.6; margin-bottom: 10px; }
.office-card .oc-phone { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy-900); font-weight: 600; }
.office-card .oc-phone:hover { color: var(--amber-600); }
.office-card .oc-mail { color: var(--muted); font-size: .95rem; }
.office-card .oc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.section-dark .office-card { background: rgba(255, 255, 255, .04); border-color: rgba(212, 176, 106, .22); }
.section-dark .office-card address, .section-dark .office-card .oc-mail { color: rgba(255, 255, 255, .72); }
.section-dark .office-card .oc-phone { color: var(--sky); }
.topbar-links .sep { color: rgba(255, 255, 255, .3); }
.area-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1180px) { .area-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) { .office-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .office-card .oc-body { padding: 22px; }
  .hero h1 .h1-sub { font-size: .46em; letter-spacing: .08em; }
  .logo-name { font-size: 1.12rem; }
}
.side-label, .cta-label { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-top: 6px; }
.cta-label { text-align: center; }
.side-emergency .big-phone { margin: 0 0 8px; }
.side-emergency .btn { margin-top: 10px; }
.cta-actions { gap: 6px; }
.cta-actions .btn { margin-top: 12px; }
.mobile-call .msg { background: var(--navy-900); }
h1, h2, .stat strong, .big-phone, .cta-phone, .nav-phone strong, .oc-phone, .m-badge strong, .step::before, .logo-name { font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }
