:root {
  --ink: #17212b;
  --muted: #52616f;
  --navy: #17334a;
  --teal: #0b6b62;
  --blue: #246c8b;
  --clay: #b45138;
  --gold: #d5ad51;
  --paper: #f4f7f8;
  --soft: #e6edf0;
  --white: #ffffff;
  --line: rgba(23, 33, 43, 0.15);
  --shadow: 0 18px 44px rgba(23, 51, 74, 0.13);
  --shell: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; font-family: "Noto Sans KR", system-ui, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, dl, dd { margin: 0; }
h1 { font-size: 68px; line-height: 1.08; letter-spacing: 0; }
h2 { font-size: 44px; line-height: 1.18; letter-spacing: 0; }
img { display: block; max-width: 100%; }
button, input, select, textarea { border-radius: 4px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.shell { width: min(var(--shell), calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 880px; }
.skip-link { position: absolute; left: -999px; top: 10px; }
.skip-link:focus { left: 10px; z-index: 999; background: var(--white); padding: 10px 14px; border: 1px solid var(--line); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(244, 247, 248, 0.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; background: var(--navy); color: var(--white); font-weight: 900; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy small { color: var(--muted); font-size: 13px; }
.site-nav { display: flex; align-items: center; gap: 20px; font-weight: 800; font-size: 15px; }
.nav-call { color: var(--teal); }
.nav-cta { display: inline-flex; min-height: 40px; align-items: center; padding: 0 15px; color: var(--white); background: var(--teal); border-radius: 4px; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--white); }
.nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hero { padding: 74px 0 64px; background: var(--paper); }
.hero-home { color: var(--white); background-color: var(--navy); background-image: url("./assets/hero-background.png"); background-position: center; background-size: cover; }
.hero-home .eyebrow { color: #b8dbe2; }
.hero-home .hero-sub { color: #e3edf0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) 390px; gap: 52px; align-items: center; min-height: 430px; }
.eyebrow { color: var(--teal); text-transform: uppercase; letter-spacing: 0; font-weight: 900; margin-bottom: 14px; }
.hero-sub, .sub-hero p { font-size: 21px; color: var(--muted); margin-top: 22px; max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-text-link { display: inline-block; margin-top: 18px; color: #dbe9ee; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 20px; font: inherit; font-weight: 900; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-accent { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-secondary { background: var(--white); color: var(--ink); }
.btn[disabled] { cursor: wait; opacity: 0.68; }
.hero-panel { color: var(--ink); background: rgba(255, 255, 255, 0.97); border: 1px solid rgba(255,255,255,0.6); padding: 28px; box-shadow: var(--shadow); border-radius: 6px; }
.hero-panel p { color: var(--muted); font-weight: 800; }
.hero-panel > strong { display: block; font-size: 70px; line-height: 1; margin-top: 12px; color: var(--clay); }
.hero-panel > span { color: var(--muted); }
.hero-panel dl { display: grid; gap: 10px; margin: 24px 0 0; }
.hero-panel div { display: flex; justify-content: space-between; gap: 20px; padding-top: 10px; border-top: 1px solid var(--line); }
.hero-panel dt, .hero-panel dd { font-weight: 800; }
.section { padding: 78px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .eyebrow, .section-dark p { color: #cbdbe2; }
.section-head { margin-bottom: 34px; max-width: 850px; }
.section-head-row { max-width: none; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 48px; align-items: end; }
.section-head-row > p { color: var(--muted); }
.service-grid, .content-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.content-grid article { border: 1px solid var(--line); background: var(--paper); padding: 24px; border-radius: 4px; }
.content-grid p { color: var(--muted); }
.section-cases { background: #edf3f2; }
.case-list-head, .case-list li { display: grid; grid-template-columns: 180px minmax(260px, 1fr) 190px 150px; gap: 22px; align-items: center; }
.case-list-head { padding: 0 8px 10px; color: var(--muted); font-size: 12px; font-weight: 800; }
.case-list-head span:last-child { text-align: right; }
.case-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.case-list li { min-height: 88px; padding: 16px 8px; border-bottom: 1px solid var(--line); }
.case-asset { min-width: 0; display: grid; gap: 2px; }
.case-asset strong { overflow-wrap: anywhere; font-size: 18px; }
.case-asset small { color: var(--muted); }
.case-location { font-size: 16px; }
.case-purpose { width: max-content; max-width: 100%; padding: 5px 9px; background: var(--white); border: 1px solid var(--line); font-size: 14px; font-weight: 800; }
.case-amount { color: var(--clay); font-size: 18px; text-align: right; white-space: nowrap; }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-link { display: grid; align-content: start; gap: 10px; min-height: 150px; padding: 22px; border: 1px solid var(--line); background: var(--white); border-radius: 4px; }
.service-link:hover { border-color: var(--teal); box-shadow: 0 10px 26px rgba(23,51,74,.08); }
.service-link span { font-weight: 900; font-size: 19px; }
.service-link small { color: var(--muted); line-height: 1.55; }
.service-grid-compact .service-link { min-height: 132px; }
.section-subhead { display: grid; gap: 6px; margin: 48px 0 20px; max-width: 760px; }
.section-subhead h3 { font-size: 25px; }
.section-subhead p, .section-lead { color: var(--muted); margin-top: 14px; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: start; }
.copy-stack { display: grid; gap: 18px; font-size: 19px; }
.section-special { background: #e7eef1; }
.special-links { display: grid; gap: 12px; }
.special-links a { display: grid; gap: 4px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.special-links span { color: var(--muted); }
.section-expert { background: #f1f4f5; }
.expert-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 48px; align-items: start; }
.credential-list { display: grid; border-top: 1px solid var(--line); }
.credential-list p { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.credential-list strong { color: var(--teal); }
.credential-list span { color: var(--muted); }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.process-list li { background: var(--white); border: 1px solid var(--line); padding: 22px; display: grid; gap: 12px; }
.process-list span { color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
details { background: var(--white); border: 1px solid var(--line); padding: 18px 20px; }
summary { cursor: pointer; font-weight: 900; }
details p { color: var(--muted); margin-top: 12px; }
.section-contact { background: #e5efec; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); gap: 48px; align-items: start; }
.contact-points { margin-top: 28px; border-top: 1px solid var(--line); }
.contact-points div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact-points dt { color: var(--muted); font-weight: 800; }
.contact-points dd { font-weight: 800; }
.consult-form { display: grid; gap: 15px; background: var(--white); border: 1px solid var(--line); padding: 26px; box-shadow: 0 14px 32px rgba(23,51,74,.08); }
.form-row { display: grid; gap: 14px; }
.form-row-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: grid; gap: 6px; font-weight: 800; }
.field-label { display: flex; align-items: baseline; }
.required-mark { color: var(--clay); margin-left: 3px; }
input, select, textarea { width: 100%; border: 1px solid #b7c2c9; padding: 12px; font: inherit; color: var(--ink); background: var(--white); }
textarea { resize: vertical; min-height: 126px; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { min-width: 0; max-width: 100%; min-height: 65px; overflow: hidden; }
.cf-turnstile iframe { max-width: 100% !important; }
.consent { grid-template-columns: 20px 1fr; align-items: start; font-weight: 500; }
.consent input { width: 18px; height: 18px; margin-top: 4px; }
.consent a { color: var(--teal); text-decoration: underline; }
.consent small { display: block; color: var(--muted); margin-top: 2px; }
.form-status { display: none; padding: 11px 13px; border: 1px solid var(--line); background: var(--paper); }
.form-status:not(:empty) { display: block; }
.form-status.is-success { color: #0b5f3f; background: #e4f4eb; border-color: #9ac7ad; }
.form-status.is-error { color: #8c2e20; background: #f9e9e5; border-color: #dfaea4; }
.form-submit { width: 100%; background: var(--teal); border-color: var(--teal); }
.sub-hero { padding: 58px 0 64px; background: #e8eef1; }
.sub-hero h1 { font-size: 56px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: 14px; }
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.keyword-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.keyword-list li { border: 1px solid var(--line); background: var(--white); padding: 8px 12px; font-weight: 800; }
.consult-basis { display: grid; border-top: 1px solid var(--line); }
.consult-basis p { display: grid; grid-template-columns: 120px 1fr; gap: 18px; margin: 0; padding: 16px 0; border-bottom: 1px solid var(--line); }
.consult-basis strong { color: var(--teal); }
.consult-basis span { color: var(--muted); }
.content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-grid article h2 { font-size: 23px; margin-bottom: 12px; }
.source-note { margin-top: 24px; padding: 18px 20px; border-left: 4px solid var(--teal); background: var(--white); color: var(--muted); }
.source-note a { color: var(--teal); font-weight: 800; text-decoration: underline; }
.section-date-calculator { background: #eef3f1; }
.date-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); gap: 54px; align-items: start; }
.date-intro h2 { font-size: 38px; }
.date-definition { margin-top: 28px; border-top: 1px solid var(--line); }
.date-definition div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.date-definition dt { color: var(--muted); font-weight: 800; }
.date-definition dd { font-weight: 800; }
.date-tool { background: var(--white); border: 1px solid var(--line); padding: 28px; box-shadow: 0 14px 32px rgba(23,51,74,.08); border-radius: 4px; }
.date-tool > input { min-height: 58px; margin-top: 8px; font-size: 19px; font-weight: 900; }
.date-window-results { margin-top: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.date-window-results div { display: grid; grid-template-columns: 145px 1fr; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.date-window-results div:last-child { border-bottom: 0; }
.date-window-results span { color: var(--muted); font-size: 14px; }
.date-window-results strong { font-size: 20px; text-align: right; }
.date-note { margin: 16px 0; color: var(--muted); font-size: 14px; }
.date-tool .btn { width: 100%; }
.date-source { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.date-source a { color: var(--teal); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a { background: var(--white); border: 1px solid var(--line); padding: 10px 14px; font-weight: 800; border-radius: 4px; }
.site-footer { padding: 36px 0; background: #111a21; color: var(--white); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer p, .site-footer a { color: #cbd8e1; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.mobile-actions { display: none; }
@media (max-width: 860px) {
  body { padding-bottom: 64px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; inset: 76px 16px auto 16px; display: none; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); padding: 16px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .nav-cta { justify-content: center; }
  .hero-grid, .split, .contact-grid, .expert-layout, .section-head-row, .date-layout, .date-source { grid-template-columns: 1fr; }
  .service-grid, .process-list, .content-grid { grid-template-columns: 1fr; }
  h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .sub-hero h1 { font-size: 40px; }
  .section { padding: 58px 0; }
  .case-list-head { display: none; }
  .case-list li { grid-template-columns: minmax(0, 1fr) auto; gap: 8px 18px; }
  .case-location { grid-column: 1; grid-row: 1; }
  .case-amount { grid-column: 2; grid-row: 1; }
  .case-asset { grid-column: 1; grid-row: 2; }
  .case-purpose { grid-column: 2; grid-row: 2; align-self: center; }
  .contact-grid { gap: 30px; }
  .date-layout, .date-source { gap: 26px; }
  .mobile-actions { position: fixed; z-index: 70; inset: auto 0 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 58px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 22px rgba(23,33,43,.12); }
  .mobile-actions a { display: grid; place-items: center; font-weight: 900; }
  .mobile-actions-primary { color: var(--white); background: var(--teal); }
}
@media (max-width: 520px) {
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 11px; }
  .hero-panel { display: none; }
  .hero-grid { min-height: 0; }
  .form-row-two { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 46px; }
  h1 { font-size: 40px; }
  h2 { font-size: 31px; }
  .hero-sub, .sub-hero p { font-size: 18px; }
  .hero-actions .btn { width: 100%; }
  .credential-list p { grid-template-columns: 1fr; gap: 4px; }
  .case-list li { padding: 15px 2px; }
  .case-amount { font-size: 16px; }
  .case-purpose { font-size: 12px; }
  .consult-basis p { grid-template-columns: 1fr; gap: 4px; }
  .consult-form { padding: 20px; }
  .contact-points div { grid-template-columns: 84px 1fr; }
  .date-window-results div { grid-template-columns: 1fr; gap: 4px; }
  .date-window-results strong { text-align: left; }
}
@media (max-width: 359px) {
  .cf-turnstile { min-height: 120px; }
}

/* One-page brand experience */
:root {
  --ink: #111820;
  --muted: #526067;
  --navy: #102a35;
  --teal: #007d6e;
  --signal: #c8f34a;
  --cobalt: #315ddc;
  --clay: #a84f35;
  --paper: #f6f7f3;
  --soft: #e8ece8;
}
body { background: var(--paper); }
.site-header { background: rgba(246, 247, 243, .96); backdrop-filter: blur(12px); }
.self-appraisal-bar { color: var(--white); background: var(--teal); }
.self-appraisal-bar-inner { min-height: 46px; display: grid; grid-template-columns: auto auto minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.self-appraisal-free { padding: 3px 7px; color: var(--ink); background: var(--signal); font-size: 11px; font-weight: 900; }
.self-appraisal-bar strong { font-size: 15px; }
.self-appraisal-bar-copy { color: #dcefeb; font-size: 13px; }
.self-appraisal-bar-action { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 900; }
.self-appraisal-bar-action svg { width: 16px; height: 16px; }
.brand-mark { grid-template-columns: 1fr 1fr; gap: 1px; padding: 4px; background: var(--ink); font-size: 13px; }
.brand-mark b { display: grid; place-items: center; height: 100%; background: var(--signal); color: var(--ink); }
.brand-copy strong { font-size: 15px; }
.brand-copy small { font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0; }
.site-nav > a:not(.nav-cta) { border-bottom: 1px solid transparent; }
.site-nav > a:not(.nav-cta):hover { border-color: var(--ink); }
.nav-call { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); }
.nav-call svg { width: 16px; height: 16px; }
.nav-cta { background: var(--ink); border-radius: 0; }
.btn { gap: 10px; border-radius: 0; }
.btn svg { width: 18px; height: 18px; }
.btn-accent { background: var(--ink); border-color: var(--ink); }
.btn-accent:hover { background: var(--teal); border-color: var(--teal); }
.hero-home { position: relative; isolation: isolate; overflow: hidden; min-height: 660px; padding: 0; color: var(--ink); background: #eef1ec; }
.hero-home::after { content: ""; position: absolute; z-index: -1; right: 0; bottom: 0; width: 28%; height: 8px; background: var(--signal); }
.hero-brand-watermark { position: absolute; z-index: -2; top: 165px; right: 28px; left: 47%; height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: visible; color: var(--ink); opacity: .065; white-space: nowrap; pointer-events: none; }
.hero-watermark-kicker { width: min(100%, 650px); padding: 10px 0; border-top: 18px solid var(--ink); font-family: Arial, sans-serif; font-size: 18px; font-weight: 900; text-align: center; }
.hero-brand-watermark strong { width: min(100%, 650px); padding-bottom: 12px; border-bottom: 18px solid var(--ink); font-size: 128px; line-height: 1.02; text-align: center; }
.hero-watermark-sub { margin-top: 14px; font-size: 30px; font-weight: 900; }
.hero-onepage { position: relative; display: flex; align-items: center; min-height: 660px; padding-top: 54px; padding-bottom: 64px; }
.hero-copy { max-width: 780px; }
.hero-kicker, .section-label { font-family: Arial, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0; }
.hero-kicker { display: inline-block; padding-bottom: 8px; border-bottom: 2px solid var(--ink); }
.hero-home h1 { margin-top: 24px; font-size: 72px; line-height: 1.02; white-space: nowrap; }
.hero-statement { margin-top: 24px; font-size: 32px; line-height: 1.32; }
.hero-statement strong { font-weight: 900; }
.hero-home .hero-sub { max-width: 690px; margin-top: 24px; color: #35444a; font-size: 18px; line-height: 1.8; }
.hero-actions { margin-top: 30px; }
.hero-appraisal-cta { min-width: 440px; min-height: 92px; justify-content: flex-start; gap: 16px; padding: 14px 22px; color: var(--ink); background: var(--signal); border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.hero-appraisal-cta:hover { color: var(--ink); background: #d8ff65; transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--ink); }
.hero-cta-icon { flex: 0 0 50px; width: 50px; height: 50px; display: grid; place-items: center; color: var(--signal); background: var(--ink); }
.hero-appraisal-cta .hero-cta-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.hero-cta-copy { display: grid; gap: 2px; text-align: left; }
.hero-cta-copy small { font-size: 14px; font-weight: 900; }
.hero-cta-copy strong { font-size: 24px; line-height: 1.25; }
.hero-appraisal-cta .hero-cta-arrow { width: 26px; height: 26px; margin-left: auto; stroke-width: 2.5; }
.hero-offer-note { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: #3f4c52; font-size: 15px; font-weight: 900; }
.hero-offer-note svg { width: 17px; height: 17px; color: var(--teal); stroke-width: 3; }
.hero-offer-note span { width: 1px; height: 12px; margin: 0 3px; background: #aeb9b6; }
.hero-coordinate { position: absolute; right: 0; bottom: 38px; display: grid; gap: 2px; padding-left: 16px; border-left: 3px solid var(--cobalt); text-align: right; }
.hero-coordinate span { font-family: Arial, sans-serif; color: var(--cobalt); font-size: 10px; font-weight: 900; }
.hero-coordinate strong { font-size: 13px; }
.scope-rail { color: var(--white); background: var(--ink); }
.scope-rail .shell { min-height: 68px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.scope-rail span { padding: 0 20px; border-left: 1px solid rgba(255,255,255,.18); font-size: 14px; font-weight: 800; text-align: center; }
.scope-rail span:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.section-label { margin-bottom: 14px; color: var(--teal); }
.editorial-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr); gap: 70px; align-items: end; margin-bottom: 44px; }
.editorial-head > p { color: var(--muted); font-size: 17px; }
.editorial-head h2 { font-size: 48px; }
.editorial-head-compact { grid-template-columns: 1fr; margin-bottom: 30px; }
.home-services { background: var(--paper); }
.practice-list { border-top: 2px solid var(--ink); }
.practice-item { display: grid; grid-template-columns: 72px minmax(220px, .7fr) minmax(300px, 1.25fr) minmax(220px, .75fr); gap: 22px; align-items: center; min-height: 128px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.practice-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--ink); background: var(--signal); }
.practice-icon svg { width: 25px; height: 25px; stroke-width: 1.7; }
.practice-item > div:nth-child(2) p { margin-bottom: 3px; color: var(--muted); font-family: Arial, sans-serif; font-size: 11px; font-weight: 800; }
.practice-item h3 { font-size: 24px; }
.practice-item h3 a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 5px; transition: color .18s ease, text-decoration-color .18s ease; }
.practice-item h3 a:hover { color: var(--teal); text-decoration-color: currentColor; }
.practice-item > p { color: #34444b; }
.practice-item > p a { color: var(--teal); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.practice-item > span { color: var(--teal); font-size: 13px; font-weight: 800; text-align: right; }
.section-cases { background: #e8efec; }
.case-list-head, .case-list li { grid-template-columns: 190px minmax(280px, 1fr) 210px 150px; }
.case-list { border-top: 2px solid var(--ink); }
.case-list li { min-height: 94px; }
.case-purpose { border-radius: 0; background: transparent; }
.case-amount { color: var(--clay); }
.home-method { background: var(--ink); }
.home-method .section-label { color: var(--signal); }
.method-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr); gap: 82px; align-items: start; }
.method-intro { position: sticky; top: 120px; }
.method-intro h2 { font-size: 48px; }
.method-intro > p:last-child { margin-top: 24px; color: #c7d0d2; font-size: 17px; }
.method-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.32); }
.method-list li { display: grid; grid-template-columns: 34px 38px 1fr; gap: 18px; min-height: 116px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.22); }
.method-list svg { width: 28px; height: 28px; color: var(--signal); stroke-width: 1.5; }
.method-list > li > span { color: #7f9196; font-family: Arial, sans-serif; font-size: 12px; }
.method-list strong { display: block; margin-bottom: 5px; font-size: 20px; }
.method-list p { color: #b8c4c7; }
.special-records { background: var(--white); }
.special-topic-links { margin-top: 30px; }
.section-expert { background: #edf0ea; }
.expert-layout { grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr); gap: 80px; align-items: center; }
.official-mark { margin: 0; }
.official-mark-crop { position: relative; height: 230px; overflow: hidden; background: var(--white); border-bottom: 6px solid var(--signal); }
.official-mark-crop img { width: 100%; max-width: none; transform: translateY(-38%); }
.expert-copy h2 { font-size: 54px; }
.expert-copy h2 span { color: var(--muted); font-size: 25px; font-weight: 700; }
.expert-quote { margin: 24px 0 28px; padding-left: 18px; border-left: 3px solid var(--cobalt); font-size: 18px; font-weight: 700; }
.credential-list p { grid-template-columns: 118px 1fr; }
.credential-list strong { color: var(--ink); }
.home-faq { background: var(--paper); }
.home-faq details { padding: 21px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); }
.home-faq .faq-list { border-top: 2px solid var(--ink); gap: 0; }
.section-contact { color: var(--white); background: var(--navy); }
.section-contact .section-label { color: var(--signal); }
.section-contact h2 { font-size: 48px; }
.section-contact .contact-grid > div > p:not(.section-label) { margin-top: 22px; color: #c8d3d6; font-size: 17px; }
.section-contact .contact-points { border-color: rgba(255,255,255,.2); }
.section-contact .contact-points div { border-color: rgba(255,255,255,.2); }
.section-contact .contact-points dt { color: #9db0b5; }
.section-contact .consult-form { color: var(--ink); border: 0; box-shadow: none; }
.self-appraisal-form-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 18px; border-bottom: 2px solid var(--ink); }
.self-appraisal-form-head > div { display: grid; gap: 3px; }
.self-appraisal-form-head span { color: var(--teal); font-family: Arial, sans-serif; font-size: 10px; font-weight: 900; }
.self-appraisal-form-head strong { font-size: 22px; }
.self-appraisal-form-head p { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 800; white-space: nowrap; }
.self-appraisal-form-head svg { width: 17px; height: 17px; color: var(--teal); }
.self-appraisal-form-note { color: var(--muted); font-size: 12px; line-height: 1.65; }
.self-appraisal-form .form-submit { background: var(--teal); border-color: var(--teal); }
.mobile-actions { grid-template-columns: 1fr; }
.mobile-actions a { gap: 6px; }
.mobile-actions svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
  .hero-home h1 { font-size: 64px; }
  .hero-brand-watermark { left: 35%; }
  .hero-brand-watermark strong { font-size: 104px; }
  .hero-watermark-sub { font-size: 25px; }
  .practice-item { grid-template-columns: 60px minmax(200px, .8fr) 1.2fr; }
  .practice-item > span { grid-column: 2 / -1; text-align: left; }
  .method-layout { grid-template-columns: 1fr; gap: 40px; }
  .method-intro { position: static; }
  .expert-layout { grid-template-columns: minmax(320px, .8fr) 1.2fr; gap: 44px; }
}

@media (max-width: 860px) {
  .self-appraisal-bar-inner { min-height: 52px; grid-template-columns: auto 1fr auto; gap: 8px; }
  .self-appraisal-bar-copy { display: none; }
  .hero-home, .hero-onepage { min-height: 650px; }
  .hero-onepage { align-items: flex-start; padding-top: 76px; }
  .hero-copy { max-width: 620px; }
  .hero-home h1 { white-space: normal; }
  .hero-brand-watermark { display: none; }
  .hero-coordinate { left: 0; right: auto; text-align: left; }
  .scope-rail .shell { grid-template-columns: 1fr 1fr; padding: 10px 0; }
  .scope-rail span { min-height: 40px; display: grid; place-items: center; border: 0; }
  .scope-rail span:last-child { border: 0; }
  .editorial-head { grid-template-columns: 1fr; gap: 22px; }
  .practice-item { grid-template-columns: 54px 1fr; gap: 12px 18px; }
  .practice-item > p, .practice-item > span { grid-column: 2; text-align: left; }
  .practice-item > p { margin-top: 4px; }
  .case-list-head { display: none; }
  .case-list li { grid-template-columns: minmax(0, 1fr) auto; gap: 8px 18px; }
  .case-location { grid-column: 1; grid-row: 1; }
  .case-amount { grid-column: 2; grid-row: 1; width: auto; justify-self: end; }
  .case-asset { grid-column: 1; grid-row: 2; }
  .case-purpose { grid-column: 2; grid-row: 2; align-self: center; justify-self: end; }
  .expert-layout { grid-template-columns: 1fr; }
  .official-mark { max-width: 560px; }
  .section-contact h2, .editorial-head h2, .method-intro h2 { font-size: 39px; }
}

@media (min-width: 861px) and (max-height: 600px) {
  .hero-home, .hero-onepage { min-height: calc(100vh - 123px); }
  .hero-onepage { align-items: center; padding-top: 8px; padding-bottom: 8px; }
  .hero-kicker { padding-bottom: 4px; font-size: 10px; }
  .hero-home h1 { margin-top: 8px; font-size: 48px; }
  .hero-statement { margin-top: 8px; font-size: 19px; line-height: 1.2; }
  .hero-home .hero-sub, .hero-coordinate, .hero-brand-watermark, .hero-offer-note { display: none; }
  .hero-actions { margin-top: 10px; }
  .hero-appraisal-cta { min-width: 360px; min-height: 58px; padding: 5px 13px; gap: 11px; box-shadow: 4px 4px 0 var(--ink); }
  .hero-appraisal-cta:hover { box-shadow: 6px 6px 0 var(--ink); }
  .hero-cta-icon { width: 36px; height: 36px; flex-basis: 36px; }
  .hero-appraisal-cta .hero-cta-icon svg { width: 21px; height: 21px; }
  .hero-cta-copy small { font-size: 10px; }
  .hero-cta-copy strong { font-size: 18px; }
  .hero-appraisal-cta .hero-cta-arrow { width: 20px; height: 20px; }
}

@media (max-width: 520px) {
  .self-appraisal-bar-inner { min-height: 48px; }
  .self-appraisal-bar strong { font-size: 14px; }
  .self-appraisal-bar-action { font-size: 12px; }
  .header-row { min-height: 68px; }
  .site-nav { top: 68px; }
  .hero-home, .hero-onepage { min-height: 650px; }
  .hero-onepage { flex-direction: column; align-items: stretch; padding-top: 58px; padding-bottom: 36px; }
  .hero-brand-watermark { top: 190px; right: 16px; bottom: auto; left: 16px; height: 280px; opacity: .04; }
  .hero-watermark-kicker { width: 100%; border-top-width: 11px; font-size: 12px; }
  .hero-brand-watermark strong { width: 100%; border-bottom-width: 11px; font-size: 72px; }
  .hero-watermark-sub { margin-top: 9px; font-size: 20px; }
  .hero-home h1 { font-size: 49px; }
  .hero-statement { font-size: 25px; }
  .hero-home .hero-sub { font-size: 16px; line-height: 1.75; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-appraisal-cta { width: 100%; min-width: 0; min-height: 88px; padding: 12px 15px; box-shadow: 5px 5px 0 var(--ink); }
  .hero-appraisal-cta:hover { box-shadow: 7px 7px 0 var(--ink); }
  .hero-cta-icon { width: 46px; height: 46px; flex-basis: 46px; }
  .hero-cta-copy small { font-size: 13px; }
  .hero-cta-copy strong { font-size: 21px; }
  .hero-offer-note { flex-wrap: wrap; font-size: 14px; }
  .hero-coordinate { position: static; left: auto; right: auto; bottom: auto; align-self: stretch; margin-top: 28px; text-align: left; }
  .scope-rail span { font-size: 12px; }
  .editorial-head h2, .method-intro h2, .section-contact h2 { font-size: 34px; }
  .practice-item { min-height: 0; padding: 23px 0; }
  .practice-icon { width: 44px; height: 44px; }
  .practice-item h3 { font-size: 21px; }
  .practice-item > p { font-size: 15px; }
  .method-list li { grid-template-columns: 28px 28px 1fr; gap: 12px; }
  .method-list strong { font-size: 18px; }
  .method-list p { font-size: 14px; }
  .official-mark-crop { height: 170px; }
  .expert-copy h2 { font-size: 42px; }
  .expert-quote { font-size: 16px; }
  .section-contact .contact-grid > div > p:not(.section-label) { font-size: 16px; }
  .self-appraisal-form-head { align-items: flex-start; }
  .self-appraisal-form-head strong { font-size: 19px; }
  .self-appraisal-form-head p { font-size: 11px; }
}
@media (max-width: 359px) {
  .hero-appraisal-cta { gap: 10px; padding-right: 10px; padding-left: 10px; }
  .hero-cta-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .hero-cta-copy small { font-size: 12px; }
  .hero-cta-copy strong { font-size: 18px; }
  .hero-appraisal-cta .hero-cta-arrow { width: 22px; height: 22px; }
  .self-appraisal-form-head { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .self-appraisal-form-head > div { width: 100%; }
  .self-appraisal-form-head p { justify-self: start; }
}
