:root {
  --ink: #092334;
  --ink-soft: #17384a;
  --paper: #f4f0e8;
  --white: #ffffff;
  --green: #527861;
  --gold: #c2833c;
  --line: rgba(9, 35, 52, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid #e2ad6f; outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; color: var(--white); background: var(--ink); transform: translateY(-160%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 240, 232, 0.93);
  border-bottom: 1px solid rgba(9, 35, 52, 0.1);
  backdrop-filter: blur(14px);
}
.brand img { display: block; width: 104px; height: 54px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--gold); }
.nav-cta { padding: 12px 20px; color: var(--white) !important; background: var(--ink); }
.mobile-section-nav { display: none; }

.quick-start { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 72px 0 40px; scroll-margin-top: 76px; }
.quick-start-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr); gap: 24px 80px; align-items: end; }
.quick-start-heading .section-kicker { grid-column: 1 / -1; margin-bottom: 0; }
.quick-start-heading h2 { font-size: clamp(36px, 4.5vw, 58px); }
.quick-start-heading > p:last-child { margin: 0 0 5px; color: #526a76; font-size: 16px; line-height: 1.8; }
.quick-start-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.quick-start-grid a { min-height: 256px; padding: 26px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.48); transition: color .2s ease, background .2s ease, transform .2s ease; }
.quick-start-grid a:hover { position: relative; color: #fff; background: var(--ink); transform: translateY(-4px); }
.quick-start-grid span { color: var(--gold); font-family: Georgia, serif; font-size: 24px; }
.quick-start-grid small { margin-top: 32px; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.quick-start-grid strong { margin-top: 10px; font-size: 19px; line-height: 1.55; }
.quick-start-grid em { margin-top: auto; padding-top: 24px; color: #8b5a24; font-size: 13px; font-style: normal; font-weight: 800; line-height: 1.55; }
.quick-start-grid a:hover small, .quick-start-grid a:hover em { color: #e2ad6f; }
.quick-start-note { margin: 16px 0 0; padding: 18px 22px; color: #526a76; background: rgba(255,255,255,.42); border-left: 3px solid var(--gold); font-size: 14px; line-height: 1.75; }
.quick-start-note strong { color: var(--ink); }
.quick-start-note a { color: #8b5a24; font-weight: 800; border-bottom: 1px solid rgba(194,131,60,.45); }

.hero {
  position: relative;
  min-height: 680px;
  height: min(88vh, 860px);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(3, 20, 31, 0.94) 0%, rgba(3, 20, 31, 0.68) 45%, rgba(3, 20, 31, 0.16) 78%); }
.hero-content { position: relative; z-index: 2; width: min(760px, 100%); margin-left: max(24px, calc((100vw - var(--max)) / 2)); padding: 120px 24px 80px 0; }
.eyebrow { margin: 0 0 26px; color: #e2ad6f; font-size: 13px; font-weight: 700; letter-spacing: 0.18em; }
.hero h1 { margin: 0; font-family: "Noto Serif SC", "Songti SC", serif; font-size: clamp(64px, 8vw, 116px); line-height: 0.98; font-weight: 700; letter-spacing: -0.04em; }
.hero h1.hero-title-direct { max-width: 900px; font-size: clamp(50px, 5.8vw, 84px); line-height: 1.12; letter-spacing: -.035em; }
.hero-lead { max-width: 640px; margin: 32px 0 0; font-size: clamp(18px, 2vw, 24px); line-height: 1.75; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 24px; font-size: 15px; font-weight: 700; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #081b27; }
.button-secondary { border: 1px solid rgba(255,255,255,.45); background: rgba(9,35,52,.38); color: var(--white); }
.hero-note { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 48px; padding-left: 22px; border-left: 3px solid var(--gold); display: grid; gap: 6px; text-align: left; }
.hero-note span { color: #e2ad6f; font-size: 13px; }
.hero-note strong { font-size: 16px; }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 112px 0; scroll-margin-top: 76px; }
.section-kicker { margin: 0 0 20px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .2em; }
.section-kicker-light { color: #e2ad6f; }
h2 { margin: 0; font-family: "Noto Serif SC", "Songti SC", serif; font-size: clamp(38px, 5vw, 66px); line-height: 1.22; letter-spacing: -.035em; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.intro-copy { padding-top: 10px; color: #49606d; font-size: 16px; line-height: 1.9; }
.intro-copy .lead { margin-top: 0; color: var(--ink); font-size: 22px; line-height: 1.65; }
.company-facts { margin: 54px 0 0; display: grid; grid-template-columns: 1.45fr .6fr 1fr 1.15fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(255,255,255,.38); }
.company-facts div { min-height: 112px; padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.company-facts dt { margin-bottom: 9px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.company-facts dd { margin: 0; color: var(--ink); font-size: 16px; font-weight: 700; line-height: 1.55; }
.bridge { margin-top: 72px; padding: 0; display: grid; grid-template-columns: 1fr auto 1.15fr auto 1fr; align-items: stretch; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.bridge > div:not(.bridge-arrow) { min-height: 176px; padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.bridge .bridge-core { color: var(--white); background: var(--green); }
.bridge small { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.bridge strong { margin: 10px 0 12px; font-size: 22px; }
.bridge span { color: #61727b; font-size: 14px; line-height: 1.6; }
.bridge-core span { color: rgba(255,255,255,.8); }
.bridge-arrow { display: flex; align-items: center; color: var(--gold); font-size: 26px; }

.market { display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: var(--ink); }
.market-media { min-height: 720px; overflow: hidden; }
.market-media picture, .trust-photo picture { display: block; width: 100%; height: 100%; }
.market-media img { width: 100%; height: 100%; object-fit: cover; }
.market-copy { padding: 100px max(32px, calc((100vw - var(--max)) / 2)); padding-left: clamp(48px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.market-copy h2 { font-size: clamp(38px, 4vw, 58px); }
.market-copy > p:not(.section-kicker) { max-width: 600px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.85; }
.metrics { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.metrics div { padding-top: 18px; border-top: 2px solid var(--gold); display: grid; gap: 9px; }
.metrics strong { color: #e2ad6f; font-family: Georgia, serif; font-size: clamp(28px, 3vw, 42px); }
.metrics span { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; }
.source { margin-top: 34px; color: rgba(255,255,255,.42); line-height: 1.6; }
.market-link { width: fit-content; margin-top: 26px; padding-bottom: 4px; border-bottom: 1px solid #e2ad6f; color: #e2ad6f; font-size: 14px; font-weight: 800; }
.market-link:hover { color: #fff; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 80px; margin-bottom: 58px; }
.section-heading > p { max-width: 500px; margin: 0 0 8px; color: #5d707a; font-size: 17px; line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 390px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.42); transition: transform .2s ease, background .2s ease; }
.service-card:hover { transform: translateY(-4px); background: var(--white); }
.service-card span { color: var(--gold); font-family: Georgia, serif; font-size: 30px; }
.service-card h3 { margin: 32px 0 12px; font-size: 22px; }
.service-card p { margin: 0; color: #667780; line-height: 1.7; }
.service-card .service-summary { min-height: 54px; color: #425b67; }
.service-card ul { margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; margin: 9px 0; padding-left: 18px; color: #667780; font-size: 14px; line-height: 1.55; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .67em; width: 6px; height: 6px; background: var(--gold); }
.service-detail { width: fit-content; display: inline-block; margin-top: auto; padding-top: 24px; padding-bottom: 3px; border-bottom: 1px solid var(--gold); color: #8b5a24; font-size: 14px; font-weight: 800; }
.service-detail:hover { color: var(--ink); }
.service-green { border-top: 4px solid var(--green); }
.service-gold { border-top: 4px solid var(--gold); }
.service-note { margin: 28px 0 0; padding: 22px 24px; color: var(--paper); background: var(--ink); font-size: 14px; line-height: 1.7; }
.service-note strong { margin-right: 8px; color: #e2ad6f; }
.service-note a { margin-left: 8px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); font-weight: 800; }

.service-outcomes { padding: 108px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(56px, 9vw, 128px); color: var(--white); background: var(--ink); }
.service-outcomes-heading { align-self: start; }
.service-outcomes-heading h2 { max-width: 560px; font-size: clamp(38px, 4.2vw, 58px); }
.service-outcomes-heading > p:not(.section-kicker) { max-width: 520px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.85; }
.service-outcomes-heading > a { width: fit-content; display: inline-block; margin-top: 30px; padding-bottom: 4px; color: #e2ad6f; border-bottom: 1px solid #e2ad6f; font-size: 14px; font-weight: 800; }
.service-outcomes-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.service-outcomes-list li { min-height: 142px; padding: 28px 0; display: grid; grid-template-columns: 58px 1fr; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.2); }
.service-outcomes-list span { color: #e2ad6f; font-family: Georgia, serif; font-size: 25px; }
.service-outcomes-list h3 { margin: 0 0 9px; font-size: 20px; }
.service-outcomes-list p { margin: 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.75; }

.process-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(64px, 9vw, 130px); }
.process-title { position: sticky; top: 120px; align-self: start; }
.process-title > p:last-child { max-width: 520px; margin-top: 30px; color: #60727b; font-size: 17px; line-height: 1.85; }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: item; }
.process-list li { padding: 26px 0; display: grid; grid-template-columns: 62px 1fr; gap: 24px; border-bottom: 1px solid var(--line); }
.process-list li:first-child { border-top: 1px solid var(--line); }
.process-list li > span { color: var(--gold); font-family: Georgia, serif; font-size: 28px; }
.process-list h3 { margin: 0 0 8px; font-size: 20px; }
.process-list p { margin: 0; color: #667780; line-height: 1.7; }

.readiness { padding: 110px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: .9fr 1.5fr; gap: clamp(54px, 8vw, 112px); color: var(--white); background: var(--green); scroll-margin-top: 76px; }
.readiness-heading h2 { font-size: clamp(38px, 4.2vw, 58px); }
.readiness-heading > p:last-child { max-width: 520px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.85; }
.readiness-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.readiness-grid article { min-height: 230px; padding: 30px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.readiness-grid span { color: #f0bf82; font-family: Georgia, serif; font-size: 26px; }
.readiness-grid h3 { margin: 28px 0 12px; font-size: 21px; }
.readiness-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.8; }

.stage-band { padding: 100px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2px; color: var(--white); background: var(--ink); }
.stage-intro { padding-right: 48px; }
.stage-intro h2 { font-size: clamp(34px, 3.5vw, 52px); }
.stage-card { padding: 34px 28px; border-top: 3px solid var(--gold); background: var(--ink-soft); }
.stage-card:nth-child(3) { border-color: var(--green); }
.stage-card span { color: #e2ad6f; font-family: Georgia, serif; font-size: 24px; }
.stage-card h3 { margin: 34px 0 14px; font-size: 20px; }
.stage-card p { margin: 0; color: rgba(255,255,255,.64); line-height: 1.8; }

.trust { display: grid; grid-template-columns: 1fr 1fr; background: #102b3b; color: var(--white); }
.trust-photo { min-height: 760px; overflow: hidden; }
.trust-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.trust-copy { padding: 100px clamp(40px, 6vw, 94px); }
.trust-copy h2 { font-size: clamp(38px, 4vw, 56px); }
.trust-copy > p:not(.section-kicker) { color: rgba(255,255,255,.68); line-height: 1.8; }
.trust-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px 28px; }
.trust-grid div { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.22); display: grid; gap: 10px; }
.trust-grid strong { color: #e2ad6f; font-size: 19px; }
.trust-grid span { color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.7; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq details { padding: 26px 28px; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.faq summary { cursor: pointer; font-size: 18px; font-weight: 700; }
.faq summary::marker { color: var(--gold); }
.faq details[open] { background: var(--white); }
.faq details p { margin: 18px 0 0; color: #62757f; line-height: 1.8; }

.contact { position: relative; padding: 108px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; overflow: hidden; color: var(--white); background: linear-gradient(110deg, #061b28 0%, #0c2a3b 62%, #143a4e 100%); scroll-margin-top: 76px; }
.contact:after { content: "LUFEI"; position: absolute; right: -32px; bottom: -65px; color: rgba(255,255,255,.035); font-family: Georgia, serif; font-size: 250px; font-weight: 800; line-height: 1; }
.contact-content { position: relative; z-index: 1; }
.contact-content > p:not(.section-kicker) { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.8; }
.contact-tags { margin: 30px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.contact-tags span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.78); font-size: 13px; }
.contact-content > p.contact-ready { max-width: 650px; margin: 0 0 30px; padding: 16px 18px; border-left: 3px solid var(--gold); color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); font-size: 14px; }
.contact-ready strong { display: block; margin-bottom: 5px; color: #e2ad6f; font-size: 13px; letter-spacing: .08em; }
.download-link { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--gold); color: #e2ad6f; font-weight: 700; }
.share-tools { max-width: 650px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); display: grid; gap: 15px; }
.share-tools > div:first-child { display: grid; gap: 6px; }
.share-tools strong { color: #fff; font-size: 16px; }
.share-tools span { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }
.share-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.share-actions button, .share-actions a { min-height: 42px; padding: 0 15px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.07); cursor: pointer; font: inherit; font-size: 13px; font-weight: 800; }
.share-actions button:hover, .share-actions a:hover { color: var(--ink); background: #e2ad6f; border-color: #e2ad6f; }
.share-status { min-height: 20px; color: #e2ad6f !important; }
.inquiry-card { position: relative; z-index: 1; width: min(440px, 100%); padding: 28px; color: var(--ink); background: var(--paper); box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.inquiry-card-head span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.inquiry-card-head h3 { margin: 8px 0 8px; font-size: 24px; }
.inquiry-card-head p { margin: 0 0 22px; color: #60727b; font-size: 14px; line-height: 1.65; }
#project-brief-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#project-brief-form label { display: grid; gap: 7px; color: #405865; font-size: 13px; font-weight: 700; }
#project-brief-form label:first-child, #project-brief-form label:nth-child(5), #project-brief-form .brief-button, #project-brief-form .form-privacy { grid-column: 1 / -1; }
#project-brief-form input, #project-brief-form select, #project-brief-form textarea, #brief-output { width: 100%; border: 1px solid rgba(9,35,52,.2); border-radius: 0; color: var(--ink); background: #fff; font: inherit; }
#project-brief-form input, #project-brief-form select { min-height: 44px; padding: 0 12px; }
#project-brief-form textarea, #brief-output { padding: 11px 12px; line-height: 1.6; resize: vertical; }
.brief-button, .copy-button { min-height: 46px; border: 0; cursor: pointer; font: inherit; font-weight: 800; }
.brief-button { color: #fff; background: var(--ink); }
.brief-button:hover, .copy-button:hover { background: var(--gold); color: var(--ink); }
.form-privacy { margin: -3px 0 0; color: #71828a; font-size: 11px; font-weight: 400; line-height: 1.55; }
.brief-result { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.brief-result > label { display: block; margin-bottom: 8px; color: #405865; font-size: 13px; font-weight: 800; }
.copy-button { width: 100%; margin-top: 10px; color: var(--ink); background: #e2ad6f; }
#copy-status { display: block; min-height: 20px; margin-top: 7px; color: var(--green); font-size: 12px; text-align: center; }
.qr-inline { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; }
.qr-inline img { flex: 0 0 auto; width: 92px; height: 92px; object-fit: cover; }
.qr-inline div { display: grid; gap: 5px; }
.qr-inline strong { font-size: 15px; }
.qr-inline span { color: #667780; font-size: 12px; }

.subpage { background: #f7f4ed; }
.subpage .site-header { position: static; }
.article-hero { padding: 110px max(24px, calc((100vw - var(--max)) / 2)); color: #fff; background: linear-gradient(115deg, #061b28, #12384b); }
.article-hero .eyebrow { margin-bottom: 18px; }
.article-hero h1 { max-width: 920px; margin: 0; font-family: "Noto Serif SC", "Songti SC", serif; font-size: clamp(48px, 7vw, 86px); line-height: 1.12; letter-spacing: -.04em; }
.article-hero > p:not(.eyebrow) { max-width: 760px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.8; }
.article-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.service-facts { max-width: 1000px; margin: 42px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; border-top: 1px solid rgba(255,255,255,.25); padding-top: 24px; }
.service-facts dt { color: #e2ad6f; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.service-facts dd { margin: 0; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.86); }
.contact-direct { margin-top: 24px; }
.need-guidance { color: #536a75; font-size: 14px; font-weight: 400; line-height: 1.7; }
#project-brief-form input, #project-brief-form select, #project-brief-form textarea, #brief-output { font-size: 16px; }
.form-privacy { font-size: 13px; }
.qr-inline { scroll-margin-top: 130px; }
.qr-inline > a { flex: 0 0 auto; }
.qr-inline img { width: 112px; height: auto; display: block; }
.qr-inline span { font-size: 14px; line-height: 1.65; }
.qr-download { width: fit-content; padding: 10px 0; font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.article-section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 92px 0; }
.article-section + .article-section { border-top: 1px solid var(--line); }
.article-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.article-intro > p { margin: 0; color: #526a76; font-size: 18px; line-height: 1.9; }
.article-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.article-grid article { min-height: 180px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.48); }
.article-grid span { color: var(--gold); font-family: Georgia, serif; font-size: 24px; }
.article-grid h3 { margin: 22px 0 10px; font-size: 20px; }
.article-grid p { margin: 0; color: #62757f; line-height: 1.75; }
.article-list { margin: 44px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-list li { padding: 24px 0; display: grid; grid-template-columns: 64px 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.article-list span { color: var(--gold); font-family: Georgia, serif; font-size: 26px; }
.article-list h3 { margin: 0 0 7px; }
.article-list p { margin: 0; color: #62757f; line-height: 1.75; }
.article-notice { margin-top: 34px; padding: 20px 24px; border-left: 3px solid var(--gold); color: #536a75; background: #fff; line-height: 1.75; }
.path-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.path-grid article { min-height: 230px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.48); }
.path-grid small { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.path-grid h3 { margin: 26px 0 12px; font-size: 21px; }
.path-grid p { margin: 0; color: #62757f; line-height: 1.75; }
.service-route { margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); }
.service-route-six { grid-template-columns: repeat(3, 1fr); }
.service-route div, .service-route > a { min-height: 154px; padding: 24px; background: #fff; }
.service-route > a { transition: background .2s ease, transform .2s ease; }
.service-route > a:hover { position: relative; background: #f4f0e8; transform: translateY(-3px); }
.service-route span { color: var(--gold); font-family: Georgia, serif; font-size: 22px; }
.service-route strong { margin: 22px 0 7px; display: block; font-size: 17px; }
.service-route p { margin: 0; color: #667780; font-size: 14px; line-height: 1.65; }
.service-route small { margin-top: 16px; display: inline-block; color: #8b5a24; font-size: 12px; font-weight: 800; }
.article-cta { padding: 84px max(24px, calc((100vw - var(--max)) / 2)); color: #fff; background: var(--green); }
.article-cta h2 { max-width: 850px; }
.article-cta p { max-width: 680px; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.8; }

.site-footer { padding: 42px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: minmax(240px, .85fr) minmax(360px, 1.5fr) auto; align-items: start; gap: 40px; color: #667780; background: #f7f4ed; border-top: 1px solid var(--line); font-size: 12px; line-height: 1.65; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { flex: 0 0 auto; width: 90px; height: 54px; object-fit: contain; }
.footer-brand div { display: grid; gap: 5px; }
.footer-brand strong { color: var(--ink); font-size: 13px; }
.footer-brand span { color: #819098; font-size: 10px; letter-spacing: .05em; }
.footer-legal { display: grid; gap: 8px; }
.footer-legal p { margin: 0; }
.footer-legal strong { color: #405865; }
.footer-meta { display: grid; justify-items: end; gap: 8px; white-space: nowrap; }
.footer-links { max-width: 360px; white-space: normal; text-align: right; }
.footer-links a { border-bottom: 1px solid rgba(9,35,52,.28); }
.footer-links a:hover { color: var(--gold); }
.icp-link { padding: 4px 8px; color: #405865; background: #ece8df; border: 1px solid rgba(9,35,52,.1); }
.icp-link:hover { color: var(--gold); border-color: rgba(193,122,42,.42); }
.mobile-contact { display: none; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 32px; color: var(--white); background: var(--ink); }
.error-shell { width: min(760px, 100%); }
.error-brand { display: inline-block; width: 118px; margin-bottom: 64px; padding: 7px; background: var(--paper); }
.error-brand img { display: block; width: 100%; height: auto; }
.error-shell h1 { margin: 0; font-family: "Noto Serif SC", "Songti SC", serif; font-size: clamp(46px, 8vw, 88px); line-height: 1.12; letter-spacing: -.04em; }
.error-shell > p:not(.eyebrow) { max-width: 640px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.85; }
.error-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.error-secondary { color: var(--white); border: 1px solid rgba(255,255,255,.36); }
.error-shell small { display: block; margin-top: 72px; color: rgba(255,255,255,.48); letter-spacing: .08em; }

.policy-main { width: min(900px, calc(100% - 48px)); margin: 0 auto; padding: 156px 0 100px; }
.policy-hero { padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.policy-hero h1 { margin: 0; font-family: "Noto Serif SC", "Songti SC", serif; font-size: clamp(50px, 7vw, 78px); letter-spacing: -.04em; }
.policy-hero > p:not(.section-kicker) { max-width: 680px; margin: 24px 0 16px; color: #526a76; font-size: 18px; line-height: 1.8; }
.policy-hero small { color: #788991; }
.policy-content { display: grid; gap: 0; }
.policy-content section { padding: 42px 0; border-bottom: 1px solid var(--line); }
.policy-content h2 { font-family: inherit; font-size: 24px; letter-spacing: 0; }
.policy-content p { margin: 16px 0 0; color: #526a76; font-size: 16px; line-height: 1.95; }
.policy-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.policy-secondary { border: 1px solid var(--line); }

.service-switcher { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px; padding: 12px max(18px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid var(--line); background: #fff; scroll-margin-top: 16px; }
.service-switcher a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; font-size: 14px; font-weight: 700; }
.service-switcher a:hover { background: var(--paper); }
.service-switcher a[aria-current="page"] { color: #fff; background: var(--ink); }
.service-switcher .service-home { color: #536a75; border-right: 1px solid var(--line); margin-right: 8px; }
.article-hero { padding-block: 76px; }
.article-hero h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.25; overflow-wrap: break-word; }
.service-contact { display: grid; grid-template-columns: minmax(0, 1fr) 256px; gap: 56px; align-items: center; scroll-margin-top: 20px; }
.service-contact h2 { font-size: clamp(32px, 4vw, 48px); }
.service-contact .article-actions { margin-top: 24px; }
.service-contact .contact-choice { font-size: 14px; margin: 20px 0 0; }
.service-contact-qr { margin: 0; padding: 24px; color: var(--ink); background: #fff; text-align: center; }
.service-contact-qr > a { display: block; width: 176px; margin-inline: auto; }
.service-contact-qr img { display: block; width: 100%; height: auto; }
.service-contact-qr figcaption { display: grid; gap: 10px; margin-top: 18px; }
.service-contact-qr strong { font-size: 16px; }
.service-contact-qr span { color: #526a76; font-size: 14px; line-height: 1.7; }
.service-contact-qr figcaption a { display: flex; min-height: 44px; justify-content: center; align-items: center; border: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.service-contact-qr figcaption a:hover { background: var(--paper); }
.mobile-service-actions { display: none; }
.site-footer { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.footer-meta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: start; justify-content: space-between; gap: 16px; white-space: normal; }
.footer-links { max-width: none; flex: 1 1 300px; text-align: left; }
.share-manual { margin-top: 8px; }
.share-manual label { display: block; margin-bottom: 8px; font-size: 14px; }
.share-manual textarea { width: 100%; padding: 12px; border: 1px solid rgba(255,255,255,.3); color: var(--ink); background: #fff; font: inherit; font-size: 16px; line-height: 1.7; resize: vertical; }

@media (max-width: 980px) and (min-width: 761px) {
  .nav { gap: 17px; }
  .nav-cta { padding-inline: 16px; }
  .section { width: min(100% - 64px, var(--max)); padding: 88px 0; }
  .company-facts { grid-template-columns: 1fr 1fr; }
  .quick-start { width: min(100% - 64px, var(--max)); }
  .quick-start-heading { grid-template-columns: 1fr; gap: 20px; }
  .quick-start-grid { grid-template-columns: 1fr 1fr; }
  .quick-start-grid a { min-height: 220px; }
  .bridge > div:not(.bridge-arrow) { padding: 22px; }
  .market-copy { padding: 76px 32px; }
  .market-copy h2 { font-size: 40px; }
  .metrics { grid-template-columns: 1fr; gap: 14px; }
  .metrics div { grid-template-columns: 120px 1fr; align-items: baseline; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-outcomes { padding: 88px 32px; grid-template-columns: 1fr; gap: 48px; }
  .process-section { gap: 52px; }
  .readiness { padding: 88px 32px; grid-template-columns: 1fr; gap: 48px; }
  .stage-band { padding: 84px 32px; grid-template-columns: 1fr 1fr; gap: 12px; }
  .stage-intro { grid-column: 1 / -1; padding: 0 0 32px; }
  .trust { grid-template-columns: 1fr; }
  .trust-copy { order: -1; padding: 84px 40px; }
  .trust-photo { min-height: 520px; }
  .contact { padding: 88px 32px; gap: 38px; }
  .inquiry-card { width: 380px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 28px 36px; }
  .footer-meta { grid-column: 1 / -1; grid-auto-flow: column; justify-content: start; justify-items: start; gap: 18px; }
}

@media (max-width: 760px) {
  .site-header { height: 66px; padding: 8px 18px; }
  .brand img { width: 88px; height: 46px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 15px; }
  .mobile-section-nav { position: sticky; z-index: 16; top: 66px; padding: 0 18px; display: flex; gap: 24px; overflow-x: auto; color: var(--ink); background: rgba(247,244,237,.96); border-bottom: 1px solid var(--line); scrollbar-width: none; }
  .mobile-section-nav::-webkit-scrollbar { display: none; }
  .mobile-section-nav a { flex: 0 0 auto; padding: 14px 0 12px; font-size: 14px; font-weight: 700; }
  .section, .readiness, .contact, .quick-start { scroll-margin-top: 112px; }
  .hero { min-height: 620px; height: min(86vh, 680px); }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(3,20,31,.52), rgba(3,20,31,.92) 68%); }
  .hero-content { margin: 0; align-self: flex-end; padding: 118px 22px 126px; }
  .hero h1 { font-size: clamp(58px, 20vw, 86px); }
  .hero h1.hero-title-direct { font-size: clamp(36px, 10.8vw, 50px); line-height: 1.16; }
  .hero-lead { margin-top: 24px; font-size: 17px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .hero-actions .button { width: 100%; }
  .hero-note { left: 22px; right: auto; bottom: 24px; }
  .section { width: min(100% - 36px, var(--max)); padding: 80px 0; }
  .quick-start { width: min(100% - 36px, var(--max)); padding: 58px 0 10px; }
  .quick-start-heading { grid-template-columns: 1fr; gap: 18px; }
  .quick-start-heading h2 { font-size: 38px; }
  .quick-start-heading > p:last-child { font-size: 15px; }
  .quick-start-grid { margin-top: 28px; grid-template-columns: 1fr; }
  .quick-start-grid a { min-height: 0; padding: 22px; display: grid; grid-template-columns: 42px 1fr; gap: 6px 12px; }
  .quick-start-grid span { grid-row: 1 / 4; }
  .quick-start-grid small, .quick-start-grid strong, .quick-start-grid em { margin: 0; }
  .quick-start-grid em { padding-top: 8px; }
  .intro-grid, .market, .process-section, .readiness, .trust, .contact { grid-template-columns: 1fr; }
  .intro-grid { gap: 36px; }
  .intro-copy .lead { font-size: 19px; }
  .company-facts { margin-top: 38px; grid-template-columns: 1fr; }
  .company-facts div { min-height: auto; padding: 20px; }
  .bridge { grid-template-columns: 1fr; }
  .bridge-arrow { min-height: auto; padding: 0 28px !important; transform: rotate(90deg); justify-content: center; }
  .bridge > div:not(.bridge-arrow) { min-height: 140px; }
  .market-media, .trust-photo { min-height: 360px; }
  .market-copy, .trust-copy { padding: 70px 22px; }
  .metrics { grid-template-columns: 1fr; }
  .section-heading { display: block; margin-bottom: 40px; }
  .section-heading > p { margin-top: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card .service-summary { min-height: 0; }
  .service-outcomes { padding: 76px 18px; grid-template-columns: 1fr; gap: 42px; }
  .service-outcomes-list li { min-height: 0; grid-template-columns: 48px 1fr; }
  .process-section { gap: 48px; }
  .process-title { position: static; }
  .readiness { padding: 76px 18px; gap: 42px; }
  .readiness-grid { grid-template-columns: 1fr; }
  .readiness-grid article { min-height: auto; }
  .stage-band { padding: 76px 18px; grid-template-columns: 1fr; gap: 12px; }
  .stage-intro { padding: 0 0 36px; }
  .trust-copy { order: -1; }
  .trust-grid, .faq-grid { grid-template-columns: 1fr; }
  .contact { gap: 52px; }
  .contact:after { font-size: 130px; bottom: -20px; }
  .inquiry-card { width: 100%; justify-self: center; padding: 22px; }
  #project-brief-form { grid-template-columns: 1fr; }
  #project-brief-form label:first-child, #project-brief-form label:nth-child(5), #project-brief-form .brief-button, #project-brief-form .form-privacy { grid-column: auto; }
  .article-hero { padding: 82px 18px; }
  .article-hero h1 { font-size: clamp(44px, 14vw, 64px); }
  .article-section { width: min(100% - 36px, var(--max)); padding: 72px 0; }
  .article-intro, .article-grid, .path-grid, .service-route { grid-template-columns: 1fr; }
  .service-facts { grid-template-columns: 1fr; gap: 20px; }
  .article-hero h1 { font-size: clamp(34px, 9vw, 52px); line-height: 1.3; }
  .qr-inline { align-items: flex-start; }
  .article-intro { gap: 28px; }
  .service-switcher { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 10px 18px; gap: 4px; }
  .service-switcher a { padding: 10px 4px; }
  .service-switcher .service-home { grid-column: 1 / -1; justify-content: flex-start; border: 0; margin: 0; }
  .article-hero { padding-block: 48px; }
  .article-actions .button { flex: 1 1 160px; padding: 12px 16px; text-align: center; }
  .service-contact { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .service-contact-qr { width: min(100%, 320px); justify-self: center; }
  .mobile-service-actions { position: fixed; z-index: 30; inset: auto 0 0; display: grid; grid-template-columns: 1fr 1fr; padding: 10px 18px calc(10px + env(safe-area-inset-bottom, 0px)); gap: 10px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(9,35,52,.08); }
  .mobile-service-actions a { min-height: 46px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; border: 1px solid var(--line); }
  .mobile-service-actions a:last-child { background: var(--ink); color: #fff; border-color: var(--ink); }
  .article-cta { padding: 72px 18px; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; padding: 34px 18px 100px; }
  .footer-legal { padding-top: 20px; border-top: 1px solid var(--line); }
  .footer-meta { justify-items: start; }
  .footer-links { text-align: left; }
  .mobile-contact { position: fixed; z-index: 30; right: 18px; bottom: 18px; min-width: 112px; min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); background: #e2ad6f; box-shadow: 0 10px 30px rgba(3,20,31,.28); font-size: 15px; font-weight: 800; }
  .error-page { padding: 24px; }
  .error-brand { margin-bottom: 44px; }
  .error-actions { display: grid; grid-template-columns: 1fr; }
  .policy-main { width: min(100% - 36px, 900px); padding: 116px 0 76px; }
  .policy-content section { padding: 34px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .service-card { transition: none; }
  .skip-link { transition: none; }
}

@media print {
  .site-header, .mobile-section-nav, .hero-actions, .mobile-contact, .mobile-service-actions { display: none !important; }
  body { background: #fff; }
  .hero { min-height: 0; height: auto; padding: 64px 32px; color: var(--ink); background: #fff; }
  .hero picture, .hero-shade, .hero-note { display: none; }
  .hero-content { width: 100%; margin: 0; padding: 0; }
  .hero h1 { font-size: 64px; }
  .hero-lead { color: #405865; }
  .section { width: 100%; padding: 52px 32px; }
  .market, .readiness, .stage-band, .trust, .contact { break-inside: avoid; }
  .site-footer { padding: 32px; }
}
