:root {
  --ink: #18211f;
  --ink-soft: #52605c;
  --forest: #123b35;
  --forest-deep: #0b2925;
  --teal: #23776d;
  --signal: #efc84a;
  --coral: #c85d47;
  --paper: #f3f5f2;
  --white: #ffffff;
  --line: #d8ded9;
  --line-dark: rgba(255,255,255,.18);
  --max: 1200px;
  --shadow: 0 22px 58px rgba(16, 36, 32, .14);
}

* { box-sizing: border-box; letter-spacing: 0; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "PingFang SC", "Microsoft YaHei", Inter, system-ui, -apple-system, sans-serif; line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.18; }
p { margin: 0; }

.skip-link { position: fixed; z-index: 999; left: 16px; top: -64px; padding: 10px 16px; color: var(--ink); background: var(--signal); border-radius: 2px; font-weight: 800; }
.skip-link:focus { top: 12px; }
.container { width: min(var(--max), calc(100% - 56px)); margin-inline: auto; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--teal); font-size: 12px; font-weight: 800; }
.eyebrow::before { width: 24px; height: 2px; content: ""; background: currentColor; }
.section { padding: 104px 0; }
.band-light { background: var(--paper); }
.band-ink { color: var(--white); background: var(--forest-deep); }
.band-ink .eyebrow { color: var(--signal); }
.band-ink .section-heading > p:last-child { color: rgba(255,255,255,.68); }

.site-header { position: sticky; z-index: 100; top: 0; height: 74px; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { width: min(1360px, calc(100% - 44px)); height: 100%; display: flex; align-items: center; gap: 30px; margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--forest-deep); background: var(--signal); border-radius: 2px; font-size: 19px; font-weight: 900; box-shadow: inset 0 -4px 0 rgba(0,0,0,.08); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 17px; }
.brand small { color: #69736f; font-size: 10px; font-weight: 600; }
.site-nav { height: 100%; display: flex; align-items: stretch; justify-content: center; gap: 26px; margin-left: auto; }
.site-nav a { position: relative; display: grid; place-items: center; color: #394440; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; content: ""; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-call { padding-left: 24px; border-left: 1px solid var(--line); text-decoration: none; white-space: nowrap; }
.header-call span, .header-call strong { display: block; }
.header-call span { color: #74807c; font-size: 10px; }
.header-call strong { color: var(--forest); font-size: 16px; }
.menu-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 2px; font-size: 21px; }

.home-hero { position: relative; min-height: min(760px, calc(100svh - 74px)); display: flex; align-items: center; isolation: isolate; overflow: hidden; color: var(--white); background-image: var(--hero-image); background-position: center; background-size: cover; }
.hero-shade { position: absolute; z-index: -1; inset: 0; background: rgba(7, 26, 23, .68); }
.hero-content { width: min(var(--max), calc(100% - 56px)); margin-inline: auto; padding: 88px 0 154px; }
.home-hero .eyebrow { color: var(--signal); font-size: 13px; }
.home-hero h1 { max-width: 760px; font-size: 68px; font-weight: 850; }
.hero-lead { max-width: 650px; margin-top: 24px; color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { position: absolute; right: max(28px, calc((100vw - var(--max)) / 2)); bottom: 28px; left: max(28px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.42); }
.hero-proof span { padding: 18px 0 0; color: rgba(255,255,255,.88); font-size: 12px; font-weight: 700; }
.hero-proof span::before { display: inline-block; width: 6px; height: 6px; margin-right: 10px; content: ""; background: var(--signal); }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; border-radius: 2px; font-size: 14px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-accent { color: var(--ink); background: var(--signal); }
.button-accent:hover { background: #f7d86e; }
.button-ghost { color: var(--white); background: rgba(0,0,0,.12); border-color: rgba(255,255,255,.5); }
.button-light { color: var(--forest); background: var(--white); }
.button-dark { color: var(--white); background: var(--forest); }

.service-brief { color: var(--white); background: #16201e; }
.service-brief-inner { width: min(var(--max), calc(100% - 56px)); margin-inline: auto; border-right: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-brief-primary { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(300px, .85fr); border-bottom: 1px solid var(--line-dark); }
.service-brief-region, .service-brief-inspection, .service-brief-commitments article { padding: 30px 28px; }
.service-brief-region { border-right: 1px solid var(--line-dark); }
.service-brief-label { margin-bottom: 9px; color: var(--signal); font-size: 12px; font-weight: 800; }
.service-brief h2, .service-brief h3 { color: var(--white); }
.service-brief h2 { font-size: 27px; }
.service-brief h3 { font-size: 19px; }
.service-brief article > p:not(.service-brief-label):not(.service-brief-price) { margin-top: 8px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.75; }
.service-brief article > p.service-brief-places { color: rgba(255,255,255,.9); }
.service-brief article > p strong { color: var(--white); }
.service-brief-price { display: flex; align-items: baseline; gap: 8px; margin-top: 11px; color: var(--signal); }
.service-brief-price strong { font-size: 31px; line-height: 1; }
.service-brief-price span { font-size: 13px; font-weight: 700; }
.service-brief-commitments { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-brief-commitments article + article { border-left: 1px solid var(--line-dark); }
.entity-note { display: grid; grid-template-columns: minmax(0,1fr) max-content; gap: 44px; align-items: end; padding: 32px max(28px, calc((100vw - var(--max)) / 2)); background: var(--white); border-bottom: 1px solid var(--line); }
.entity-note > div { max-width: 930px; }
.entity-note .eyebrow { margin-bottom: 8px; }
.entity-note p:last-child { color: var(--ink-soft); font-size: 14px; }
.entity-note strong { color: var(--ink); }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2 { font-size: 42px; font-weight: 800; }
.section-heading > p:last-child { margin-top: 17px; color: var(--ink-soft); font-size: 16px; }
.service-grid { border-top: 1px solid var(--ink); }
.service-card { display: grid; grid-template-columns: 62px minmax(150px,.7fr) minmax(210px,1.05fr) minmax(280px,1.35fr) max-content; gap: 24px; align-items: center; min-height: 132px; padding: 25px 8px; background: transparent; border-bottom: 1px solid var(--line); }
.service-card .index { color: var(--coral); font-size: 12px; font-weight: 900; }
.service-card > p:first-of-type { color: var(--teal); font-size: 12px; font-weight: 800; }
.service-card h3 { font-size: 22px; }
.service-card h3 + p { color: var(--ink-soft); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forest); font-size: 13px; font-weight: 800; text-decoration: none; }
.text-link span { color: var(--coral); font-size: 18px; }
.service-card:hover h3, .article-grid article:hover h2 { color: var(--teal); }

.process-section { padding-bottom: 104px; }
.split-heading { display: block; }
.process-list { width: min(var(--max), calc(100% - 56px)); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-inline: auto; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-list article { min-height: 270px; display: flex; flex-direction: column; gap: 44px; padding: 30px 24px; border-right: 1px solid var(--line); }
.process-list article:last-child { border-right: 0; }
.process-list article > span { color: var(--coral); font-size: 38px; font-weight: 300; }
.process-list h3 { font-size: 20px; }
.process-list p { margin-top: 12px; color: var(--ink-soft); font-size: 13px; }

.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.case-card { overflow: hidden; color: var(--ink); background: transparent; border-top: 2px solid var(--ink); }
.case-card > a { height: 330px; display: block; overflow: hidden; background: #dfe4df; }
.case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.case-card:hover img { transform: scale(1.025); }
.case-card > div { padding: 18px 0 4px; }
.case-card h3 { margin-top: 7px; font-size: 20px; }
.case-card h3 + p { margin-top: 10px; color: var(--ink-soft); font-size: 13px; }
.case-meta { color: var(--coral); font-size: 11px; font-weight: 800; }
.case-facts { margin: 18px 0 0; border-top: 1px solid var(--line); }
.case-facts div { display: grid; grid-template-columns: 76px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.case-facts dt { color: var(--ink-soft); font-size: 11px; }
.case-facts dd { margin: 0; font-size: 12px; font-weight: 700; }
.band-ink .case-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.band-ink .case-card { grid-column: span 5; color: var(--white); border-top-color: rgba(255,255,255,.7); }
.band-ink .case-card:first-child { grid-column: span 7; grid-row: span 2; }
.band-ink .case-card > a { height: 210px; }
.band-ink .case-card:first-child > a { height: 570px; }
.band-ink .case-card h3 + p { color: rgba(255,255,255,.62); }
.band-ink .case-meta { color: var(--signal); }
.section-action { margin-top: 38px; text-align: right; }

.two-column { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; }
.scenario-list { border-top: 1px solid var(--ink); }
.scenario-list article { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 30px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.scenario-list h3 { font-size: 17px; }
.scenario-list p { color: var(--ink-soft); font-size: 14px; }

.public-benefit { display: flex; align-items: center; justify-content: space-between; gap: 46px; padding: 70px max(28px, calc((100vw - var(--max)) / 2)); background: var(--signal); border-top: 1px solid rgba(24,33,31,.18); border-bottom: 1px solid rgba(24,33,31,.18); }
.public-benefit > div { max-width: 790px; }
.public-benefit .eyebrow { color: var(--forest); }
.public-benefit h2 { font-size: 34px; }
.public-benefit p:last-child { margin-top: 13px; color: #4d4c37; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid #cbd2cc; }
.faq-list summary { position: relative; padding: 23px 46px 23px 0; font-size: 16px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 4px; content: "+"; color: var(--coral); font-size: 23px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 46px 25px 0; color: var(--ink-soft); }
.faq-more { margin-top: 24px; }
.faq-page-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 100px; align-items: start; }
.faq-page-layout aside { position: sticky; top: 104px; }
.faq-page-layout aside h2 { font-size: 30px; }
.faq-page-layout aside > p:last-of-type { margin: 17px 0 28px; color: var(--ink-soft); }

.consultation { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; padding: 92px max(28px, calc((100vw - var(--max)) / 2)); color: var(--white); background: var(--forest-deep); border-top: 6px solid var(--signal); }
.consultation-copy h2 { font-size: 40px; }
.consultation-copy > p:nth-of-type(2) { max-width: 530px; margin-top: 18px; color: rgba(255,255,255,.68); }
.consultation .eyebrow { color: var(--signal); }
.direct-contact { margin-top: 38px; }
.direct-contact a, .direct-contact span { display: block; }
.direct-contact a { color: var(--white); font-size: 31px; font-weight: 800; text-decoration: none; }
.direct-contact span { color: rgba(255,255,255,.58); font-size: 12px; }
.lead-form { padding: 30px; color: var(--ink); background: var(--white); border-radius: 3px; box-shadow: var(--shadow); }
.lead-form label { display: grid; gap: 7px; margin-bottom: 15px; font-size: 12px; font-weight: 800; }
.lead-form input, .lead-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #f8faf7; border: 1px solid #cdd5ce; border-radius: 2px; outline: none; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(35,119,109,.13); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form .consent { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; font-weight: 500; }
.lead-form .consent input { width: 16px; margin-top: 3px; }
.honeypot { position: absolute; left: -9999px; }
.form-status { min-height: 22px; margin-top: 10px; color: var(--teal); font-size: 13px; }

.page-intro { padding: 92px 0 80px; color: var(--white); background: var(--forest-deep); border-top: 4px solid var(--signal); }
.page-intro .container { display: grid; grid-template-columns: .88fr 1.12fr; column-gap: 82px; align-items: end; }
.page-intro .eyebrow { grid-column: 1 / -1; color: var(--signal); }
.page-intro h1 { max-width: 670px; font-size: 52px; }
.page-intro .container > p:last-child { max-width: 620px; color: rgba(255,255,255,.72); font-size: 17px; }
.policy-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; margin-top: 58px; background: var(--line); border: 1px solid var(--line); }
.policy-grid article { padding: 30px; background: var(--white); border-top: 4px solid var(--signal); }
.policy-grid h2 { font-size: 19px; }
.policy-grid p { margin-top: 13px; color: var(--ink-soft); font-size: 14px; }
.service-detail { display: grid; grid-template-columns: 1.35fr .65fr; gap: 88px; }
.service-detail article h2 { max-width: 720px; font-size: 39px; }
.service-detail aside { padding-left: 32px; border-left: 1px solid var(--line); }
.service-detail aside h2 { margin: 0 0 9px; font-size: 16px; }
.service-detail aside p { margin-bottom: 28px; color: var(--ink-soft); font-size: 14px; }
.check-list { display: grid; gap: 0; padding: 0; margin: 40px 0 0; list-style: none; border-top: 1px solid var(--ink); }
.check-list li { position: relative; padding: 21px 20px 21px 36px; border-bottom: 1px solid var(--line); font-size: 16px; }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--teal); font-weight: 900; }
.notice { margin-top: 54px; padding: 22px 24px; background: #fff9dc; border: 1px solid #dfd095; border-radius: 2px; }
.notice p { margin-top: 7px; color: var(--ink-soft); }
.notice-inline { padding: 16px 18px; color: var(--ink-soft); background: var(--paper); border-left: 4px solid var(--signal); font-size: 13px; }

.area-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 76px; align-items: start; }
.area-layout article h2 { max-width: 760px; font-size: 39px; }
.area-layout article > p:last-child { margin-top: 21px; color: var(--ink-soft); }
.area-list { border-top: 1px solid var(--ink); }
.area-list div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.area-list strong { font-size: 18px; }
.area-list span { color: var(--ink-soft); font-size: 12px; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.article-grid article { min-height: 300px; display: flex; flex-direction: column; padding: 26px 0; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }
.article-grid h2 { margin-top: 20px; font-size: 22px; transition: color .2s ease; }
.article-grid h2 a { text-decoration: none; }
.article-grid h2 + p { margin-top: 16px; color: var(--ink-soft); }
.article-grid .text-link { margin-top: auto; padding-top: 24px; }
.article-date { color: var(--teal); font-size: 11px; font-weight: 800; }
.article-body { width: min(820px, calc(100% - 56px)); margin-inline: auto; padding: 70px 0 98px; }
.article-body section + section { margin-top: 46px; }
.article-body h2 { font-size: 27px; }
.article-body section p { margin-top: 14px; color: #394440; font-size: 16px; line-height: 1.95; }
.article-body.standalone { padding-top: 84px; }
.about-grid, .contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 96px; }
.about-grid h2 { font-size: 33px; }
.about-grid p:not(.eyebrow) { margin-top: 13px; color: var(--ink-soft); }
.about-facts { margin: 30px 0 0; border-top: 1px solid var(--ink); }
.about-facts div { display: grid; grid-template-columns: 122px minmax(0,1fr); gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.about-facts dt { color: var(--ink-soft); font-size: 11px; }
.about-facts dd { margin: 0; font-size: 13px; font-weight: 700; }
.contact-grid > div > h2 a { color: var(--forest); font-size: 39px; text-decoration: none; }
.contact-grid dl { margin: 34px 0; }
.contact-grid dl div { display: grid; grid-template-columns: 112px 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-grid dt { color: var(--ink-soft); font-size: 12px; }
.contact-grid dd { margin: 0; font-weight: 700; }
.contact-grid .consultation.compact { display: block; padding: 0; color: var(--ink); background: transparent; border-top: 0; }
.contact-grid .consultation-copy { display: none; }
.contact-grid .lead-form { border: 1px solid var(--line); }
.empty-state { width: min(680px, calc(100% - 56px)); min-height: 60vh; display: grid; place-content: center; justify-items: start; gap: 18px; margin: auto; }
.empty-state h1 { font-size: 52px; }
.mobile-actions { display: none; }

.site-footer { color: var(--white); background: #091f1c; }
.footer-identity { color: var(--ink); background: var(--signal); border-bottom: 1px solid rgba(24,33,31,.2); }
.footer-identity dl { width: min(var(--max), calc(100% - 56px)); display: grid; grid-template-columns: .9fr 1.4fr .65fr 1.2fr; margin: 0 auto; }
.footer-identity dl div { min-height: 112px; padding: 25px 24px; border-right: 1px solid rgba(24,33,31,.18); }
.footer-identity dl div:first-child { padding-left: 0; }
.footer-identity dl div:last-child { padding-right: 0; border-right: 0; }
.footer-identity dt { color: #625b2e; font-size: 10px; font-weight: 800; }
.footer-identity dd { margin: 8px 0 0; font-size: 13px; font-weight: 800; line-height: 1.55; }
.footer-identity dd small { display: block; margin-top: 5px; color: #625b2e; font-size: 10px; font-weight: 700; }
.footer-identity a { text-decoration: none; }
.footer-grid { width: min(var(--max), calc(100% - 56px)); display: grid; grid-template-columns: 1.25fr .8fr 1.1fr .8fr; gap: 48px; margin-inline: auto; padding: 76px 0 56px; }
.site-footer .brand strong { color: var(--white); }
.site-footer .brand small { color: rgba(255,255,255,.5); }
.footer-grid > div > p { margin-top: 11px; color: rgba(255,255,255,.58); font-size: 12px; }
.footer-grid > div:first-child > p { max-width: 340px; margin-top: 20px; }
.footer-grid h2 { margin-bottom: 18px; color: var(--signal); font-size: 12px; }
.footer-grid a { color: inherit; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 19px max(28px, calc((100vw - var(--max)) / 2)); color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }
.footer-bottom a { color: inherit; text-decoration: none; }

@media (max-width: 1100px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 12px; }
  .header-call { display: none; }
  .home-hero h1 { font-size: 58px; }
  .footer-identity dl { grid-template-columns: 1fr 1fr; }
  .footer-identity dl div:nth-child(2) { border-right: 0; }
  .footer-identity dl div:nth-child(-n+2) { border-bottom: 1px solid rgba(24,33,31,.18); }
  .footer-identity dl div:first-child, .footer-identity dl div:last-child { padding: 25px 24px; }
  .service-card { grid-template-columns: 50px minmax(130px,.7fr) minmax(190px,1fr) minmax(250px,1.25fr); }
  .service-card .text-link { grid-column: 3 / -1; }
  .process-list article { padding-inline: 17px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 36px, var(--max)); }
  .site-header { height: 68px; }
  .header-inner { width: calc(100% - 30px); justify-content: space-between; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: fixed; inset: 68px 0 auto; height: auto; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 8px 18px 20px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(23,33,31,.12); }
  .site-nav.open { display: flex; }
  .site-nav a { display: block; padding: 12px 4px; font-size: 14px; }
  .site-nav a::after { display: none; }
  .home-hero { min-height: 680px; background-position: 56% center; }
  .hero-content { width: calc(100% - 36px); padding: 70px 0 154px; }
  .home-hero h1 { font-size: 48px; }
  .hero-lead { font-size: 17px; }
  .hero-proof { right: 18px; left: 18px; }
  .service-brief-inner { width: calc(100% - 36px); }
  .service-brief-primary { grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr); }
  .service-brief-region, .service-brief-inspection, .service-brief-commitments article { padding: 25px 20px; }
  .entity-note { grid-template-columns: 1fr; gap: 18px; padding-inline: 18px; }
  .section { padding: 78px 0; }
  .section-heading h2 { font-size: 34px; }
  .service-card { grid-template-columns: 48px minmax(0,.8fr) minmax(0,1.2fr); gap: 16px 22px; }
  .service-card .index { grid-row: 1 / 3; }
  .service-card h3 + p { grid-column: 2 / -1; }
  .service-card .text-link { grid-column: 2 / -1; }
  .process-list { width: calc(100% - 36px); grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-list article { min-height: 220px; border-bottom: 1px solid var(--line); }
  .process-list article:nth-child(2n) { border-right: 0; }
  .process-list article:last-child { grid-column: 1 / -1; min-height: 180px; }
  .band-ink .case-grid { grid-template-columns: 1fr 1fr; }
  .band-ink .case-card, .band-ink .case-card:first-child { grid-column: auto; grid-row: auto; }
  .band-ink .case-card > a, .band-ink .case-card:first-child > a { height: 360px; }
  .case-grid, .article-grid, .policy-grid { grid-template-columns: 1fr 1fr; }
  .two-column, .faq-layout, .faq-page-layout, .service-detail, .area-layout, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .faq-page-layout aside { position: static; }
  .consultation { grid-template-columns: 1fr; gap: 46px; padding: 78px 24px; }
  .page-intro .container { grid-template-columns: 1fr; gap: 23px; }
  .page-intro h1 { font-size: 45px; }
  .public-benefit { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  body { padding-bottom: 58px; }
  .brand strong { font-size: 15px; }
  .brand small { display: none; }
  .home-hero { min-height: 660px; }
  .hero-content { padding: 62px 0 178px; }
  .home-hero h1 { font-size: 40px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; bottom: 18px; border-top-color: rgba(255,255,255,.28); }
  .hero-proof span { padding-top: 10px; }
  .service-brief-inner { width: 100%; border-right: 0; border-left: 0; }
  .service-brief-primary, .service-brief-commitments { grid-template-columns: 1fr; }
  .service-brief-region { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .service-brief-commitments article + article { border-top: 1px solid var(--line-dark); border-left: 0; }
  .service-brief-region, .service-brief-inspection, .service-brief-commitments article { padding: 24px 18px; }
  .service-brief h2 { font-size: 25px; }
  .entity-note { padding-block: 26px; }
  .section-heading h2, .consultation-copy h2, .service-detail article h2, .area-layout article h2 { font-size: 30px; }
  .section-heading > p:last-child { font-size: 15px; }
  .service-card { grid-template-columns: 42px minmax(0,1fr); gap: 8px 14px; padding: 24px 0; }
  .service-card .index { grid-row: 1 / 5; }
  .service-card > p:first-of-type, .service-card h3, .service-card h3 + p, .service-card .text-link { grid-column: 2; }
  .service-card h3 { font-size: 20px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list article, .process-list article:last-child { grid-column: auto; min-height: 0; display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 23px 4px; border-right: 0; }
  .process-list article > span { font-size: 30px; }
  .case-grid, .article-grid, .policy-grid, .band-ink .case-grid { grid-template-columns: 1fr; }
  .case-card > a, .band-ink .case-card > a, .band-ink .case-card:first-child > a { height: 360px; }
  .scenario-list article { grid-template-columns: 1fr; gap: 8px; }
  .public-benefit h2 { font-size: 27px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 21px; }
  .page-intro { padding: 66px 0 58px; }
  .page-intro h1 { font-size: 37px; }
  .page-intro .container > p:last-child { font-size: 16px; }
  .service-detail aside { padding: 29px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-identity dl { width: calc(100% - 36px); grid-template-columns: 1fr; }
  .footer-identity dl div, .footer-identity dl div:first-child, .footer-identity dl div:last-child { min-height: 0; padding: 17px 0; border-right: 0; border-bottom: 1px solid rgba(24,33,31,.18); }
  .footer-identity dl div:last-child { border-bottom: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 90; inset: auto 0 0; height: 58px; display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border-top: 1px solid var(--line); }
  .mobile-actions a { display: grid; place-items: center; color: var(--forest); font-size: 14px; font-weight: 800; text-decoration: none; }
  .mobile-actions a:last-child { background: var(--signal); }
  .empty-state h1 { font-size: 40px; }
}

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