:root {
  --navy: #0b3c6f;
  --navy-deep: #062b52;
  --blue: #1f6ea8;
  --sky: #dceaf6;
  --sky-soft: #f2f7fb;
  --gold: #b8954b;
  --ink: #132536;
  --muted: #607080;
  --line: #d8e2ea;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(9, 47, 82, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.65; }
body:has(dialog[open]) { overflow: hidden; }
body:has(dialog[open])::before { content: ""; position: fixed; z-index: 90; inset: 0; background: rgba(3, 25, 46, 0.72); backdrop-filter: blur(4px); }
img { display: block; max-width: 100%; border-radius: 18px; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { touch-action: manipulation; }
button { cursor: pointer; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.07; }
h1 { max-width: 850px; font-size: clamp(3.25rem, 5.8vw, 5.8rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.3rem, 4.5vw, 4.5rem); letter-spacing: -0.045em; }
h3 { font-size: 1.45rem; letter-spacing: -0.02em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
[hidden] { display: none !important; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 1000; padding: 12px 18px; color: var(--white); background: var(--navy); }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(216, 226, 234, 0.9); background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px); }
.header-inner { width: min(1320px, calc(100% - 40px)); min-height: 84px; margin-inline: auto; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; line-height: 1; white-space: nowrap; }
.brand img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-family: "Segoe UI", Arial, sans-serif; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.main-nav a { position: relative; padding: 28px 0; color: #3d5265; font-size: 0.89rem; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--navy); transform: scaleX(0); transition: transform 280ms ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.header-action { display: flex; align-items: center; gap: 18px; }
.phone-link { color: var(--navy); font-size: 0.87rem; font-weight: 800; white-space: nowrap; }
.button { min-height: 48px; padding: 13px 21px; border: 1px solid var(--navy); border-radius: 999px; color: var(--white); background: var(--navy); font-size: 0.88rem; font-weight: 800; letter-spacing: 0.01em; text-align: center; transition: color 360ms var(--ease), background 360ms var(--ease), transform 360ms var(--ease), box-shadow 360ms var(--ease); }
.button:hover { color: var(--white); background: var(--navy-deep); box-shadow: 0 14px 34px rgba(11, 60, 111, 0.24); transform: translateY(-3px) scale(1.015); }
.button:active { transform: translateY(0) scale(0.98); }
.button:disabled { cursor: wait; opacity: 0.58; transform: none; box-shadow: none; }
.button-small { min-height: 44px; padding: 10px 16px; }
.button-quiet { color: var(--navy); background: transparent; }
.button-quiet:hover { color: var(--navy-deep); background: var(--sky-soft); box-shadow: none; }
.button-light { border-color: var(--white); color: var(--navy); background: var(--white); }
.button-light:hover { color: var(--navy-deep); background: var(--sky); }
.menu-button { display: none; width: 46px; height: 46px; padding: 12px; border: 0; background: transparent; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--navy); }
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; top: 0; right: 0; width: 32%; height: 100%; background: var(--sky-soft); }
.hero-grid { min-height: calc(100dvh - 84px); display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr); align-items: center; gap: 80px; }
.hero-copy { position: relative; z-index: 1; padding: 45px 0 60px; }
.hero-lead { max-width: 690px; margin-top: 30px; color: #445a6d; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; }
.button-row { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { max-width: 650px; margin-top: 26px; padding-left: 18px; border-left: 2px solid var(--gold); color: var(--muted); font-size: 0.9rem; }
.hero-visual { position: relative; min-height: 560px; align-self: end; display: flex; justify-content: flex-end; }
.hero-visual img { position: absolute; z-index: 2; right: 24px; bottom: 0; width: min(260px, 75%); max-height: 510px; object-fit: cover; object-position: top; border-radius: 150px 150px 28px 28px; box-shadow: var(--shadow); filter: saturate(0.85); transition: transform 620ms var(--ease), filter 620ms var(--ease), box-shadow 620ms var(--ease); }
.hero-visual:hover img { transform: translateY(-8px) scale(1.02); filter: saturate(1); box-shadow: 0 28px 80px rgba(9, 47, 82, 0.22); }
.hero-ring { position: absolute; z-index: 3; top: 72px; right: -25px; width: 240px; aspect-ratio: 1; border: 1px solid rgba(184, 149, 75, 0.8); border-radius: 50%; }
.document-lines { position: absolute; top: 170px; left: -30px; width: 220px; padding: 25px; border: 1px solid rgba(11, 60, 111, 0.2); background: rgba(255,255,255,0.7); transform: rotate(-5deg); }
.document-lines span { display: block; height: 1px; margin: 18px 0; background: var(--blue); }
.document-lines span:nth-child(2) { width: 75%; }
.document-lines span:nth-child(3) { width: 88%; }
.direction-rail { border-bottom: 1px solid var(--line); background: var(--white); }
.direction-rail .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.direction-rail a { min-height: 88px; padding: 22px 25px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--line); color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; transition: background 380ms var(--ease), color 380ms var(--ease), padding 380ms var(--ease); }
.direction-rail a:first-child { border-left: 1px solid var(--line); }
.direction-rail a:hover { padding-left: 32px; color: var(--white); background: var(--navy); }
.direction-rail span, .section-number { color: var(--gold); font-family: "Segoe UI", Arial, sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.section { padding: 120px 0; }
.section-soft { background: var(--sky-soft); }
.split-heading { margin-bottom: 68px; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-top: 15px; }
.section-intro { max-width: 560px; margin: 0 0 5px; color: var(--muted); font-size: 1.13rem; }
.reason-list { border-top: 1px solid var(--line); }
.reason-list article { min-height: 155px; padding: 30px 0; display: grid; grid-template-columns: 70px 0.65fr 1fr auto; align-items: center; gap: 30px; border-bottom: 1px solid var(--line); transition: padding 400ms var(--ease), background 400ms var(--ease); }
.reason-list article:hover { padding-inline: 18px; background: rgba(255,255,255,0.7); }
.reason-list article > span { color: var(--gold); font-weight: 800; }
.reason-list p { margin: 0; color: var(--muted); }
.reason-list a, .text-link { color: var(--navy); font-size: 0.85rem; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.about-layout { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 90px; align-items: center; }
.about-mark { min-height: 520px; position: relative; display: grid; place-content: center; background: var(--navy); overflow: hidden; }
.about-mark::before { content: ""; position: absolute; width: 380px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; }
.about-mark img { position: relative; width: 170px; border-radius: 50%; mix-blend-mode: screen; }
.about-mark span { position: absolute; right: 35px; bottom: 30px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.05; }
.about-layout h2 { max-width: 780px; margin-top: 15px; }
.large-text { margin: 30px 0 22px; color: #30485c; font-size: 1.25rem; }
.about-layout > div:last-child > p:not(.section-number) { max-width: 800px; }
.principles { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; border-top: 1px solid var(--line); padding-top: 25px; }
.principles > div { transition: transform 400ms var(--ease); }
.principles > div:hover { transform: translateY(-6px); }
.principles strong, .principles span { display: block; }
.principles strong { color: var(--navy); font-size: 0.9rem; }
.principles span { margin-top: 7px; color: var(--muted); font-size: 0.85rem; line-height: 1.45; }
.section-blue { color: var(--white); background: var(--navy); }
.section-blue h2, .section-blue h3 { color: var(--white); }
.process-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 110px; }
.process-layout h2 { margin-top: 15px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.22); }
.process-list li { padding: 25px 0; display: grid; grid-template-columns: 60px 1fr; gap: 25px; border-bottom: 1px solid rgba(255,255,255,0.22); }
.process-list li > span { color: #8ab9da; font-size: 0.78rem; font-weight: 800; }
.process-list p { margin: 7px 0 0; color: #c6d8e6; }
.compact { margin-bottom: 40px; }
.client-rail { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client-rail span { min-height: 105px; display: grid; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; text-align: center; transition: color 380ms var(--ease), background 380ms var(--ease), transform 380ms var(--ease); }
.client-rail span:hover { z-index: 1; color: var(--white); background: var(--navy); transform: translateY(-4px); }
.faq-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 90px; }
.faq-layout h2 { margin-top: 15px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 78px; padding: 23px 45px 23px 0; position: relative; color: var(--navy); font-size: 1rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 18px; right: 5px; font-family: Georgia, serif; font-size: 1.8rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 720px; padding: 0 40px 24px 0; color: var(--muted); }
.contact-section, .contact-strip { color: var(--white); background: var(--navy-deep); }
.contact-section { padding: 105px 0; }
.contact-section h2, .contact-strip h2 { color: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
.contact-layout h2 { max-width: 680px; margin: 15px 0 25px; }
.contact-layout > div > p:not(.section-number) { max-width: 620px; color: #c5d7e5; }
.contact-layout address { border-top: 1px solid rgba(255,255,255,0.2); font-style: normal; }
.contact-layout address div { padding: 18px 0; display: grid; grid-template-columns: 150px 1fr; border-bottom: 1px solid rgba(255,255,255,0.2); }
.contact-layout address span { color: #9cb8cd; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.contact-layout address a, .contact-layout address p { margin: 0; color: var(--white); }
.site-footer { color: #a9c0d2; background: #041f3a; }
.footer-main { padding: 55px 0 45px; display: grid; grid-template-columns: 1fr 0.8fr 1.2fr; gap: 60px; align-items: start; }
.brand-light { color: var(--white); }
.brand-light small { color: #8facbf; }
.footer-main nav { display: grid; gap: 9px; color: var(--white); font-size: 0.86rem; }
.footer-main p { margin: 0; font-size: 0.78rem; }
.footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.72rem; }
.news-flyout { position: fixed; z-index: 70; top: 102px; right: 18px; width: min(340px, calc(100% - 36px)); padding: 20px 42px 19px 20px; border: 1px solid rgba(216,226,234,0.9); border-left: 3px solid var(--gold); border-radius: 18px; background: rgba(255,255,255,0.94); box-shadow: var(--shadow); backdrop-filter: blur(20px); animation: flyout-in 560ms var(--ease) both; }
.news-flyout strong { display: block; margin-bottom: 6px; color: var(--navy); line-height: 1.35; }
.news-flyout p { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
.news-flyout .news-label { margin-bottom: 5px; color: var(--navy); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.news-flyout a { color: var(--navy); font-size: 0.8rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.icon-button { width: 44px; height: 44px; display: grid; place-items: center; border: 0; color: var(--navy); background: transparent; }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.news-flyout .icon-button { position: absolute; top: 2px; right: 2px; }
.lead-dialog { position: fixed; z-index: 100; inset: 50% auto auto 50%; width: min(610px, calc(100% - 28px)); max-height: calc(100dvh - 28px); margin: 0; padding: 44px; border: 0; color: var(--ink); background: var(--white); box-shadow: var(--shadow); overflow: auto; transform: translate(-50%, -50%); }
.lead-dialog:not([open]) { display: none; }
.lead-dialog::backdrop { background: rgba(3, 25, 46, 0.72); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; top: 8px; right: 8px; }
.lead-dialog h2 { margin: 10px 0 15px; font-size: clamp(2.4rem, 6vw, 4rem); }
.lead-dialog > div > p:not(.section-number) { color: var(--muted); }
.lead-dialog form { margin-top: 28px; display: grid; gap: 17px; }
.lead-dialog label:not(.consent) { display: grid; gap: 7px; color: var(--navy); font-size: 0.78rem; font-weight: 800; }
.lead-dialog input:not([type="checkbox"]), .lead-dialog textarea { width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid #b8c8d5; border-radius: 0; color: var(--ink); background: var(--white); resize: vertical; }
.lead-dialog input:focus, .lead-dialog textarea:focus { border-color: var(--navy); outline: 2px solid rgba(11,60,111,0.18); }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: var(--muted); font-size: 0.75rem; line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--navy); }
.success-view { padding: 45px 0 15px; text-align: center; }
.success-icon { width: 58px; height: 58px; margin: 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy); font-size: 1.8rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 1.4em; margin: 0; color: var(--navy); font-size: 0.8rem; }
.form-status.is-error { color: #9d2626; }
.page-hero { padding: 105px 0 85px; border-bottom: 1px solid var(--line); background: var(--sky-soft); }
.page-hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 90px; align-items: end; }
.page-hero h1 { max-width: 900px; margin-top: 16px; font-size: clamp(3.4rem, 7vw, 6rem); }
.page-hero-grid > p, .page-hero-grid > div:last-child > p { color: var(--muted); font-size: 1.15rem; }
.page-hero-prices .button { margin-top: 18px; }
.service-index { min-height: 80px; display: grid; grid-template-columns: repeat(4, 1fr); border-right: 1px solid var(--line); }
.service-index a { display: grid; place-items: center; border-left: 1px solid var(--line); color: var(--navy); font-weight: 800; }
.service-index a:hover { background: var(--sky-soft); }
.service-section { padding: 110px 0; border-top: 1px solid var(--line); }
.service-section-soft { background: var(--sky-soft); }
.service-section-blue { color: var(--white); background: var(--navy); }
.service-section-blue h2, .service-section-blue h3 { color: var(--white); }
.service-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 100px; }
.service-heading { position: sticky; top: 120px; align-self: start; }
.service-heading > span { color: var(--gold); font-weight: 800; }
.service-heading h2 { margin: 15px 0 25px; }
.service-heading p { max-width: 470px; color: var(--muted); }
.service-section-blue .service-heading p { color: #c4d6e5; }
.service-items { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-items article { min-height: 200px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 400ms var(--ease), transform 400ms var(--ease), box-shadow 400ms var(--ease); }
.service-items article:hover { z-index: 1; background: var(--sky-soft); box-shadow: var(--shadow); transform: translateY(-5px); }
.service-items h3 { color: var(--navy); }
.service-items p { margin: 14px 0 0; color: var(--muted); }
.service-items-large { grid-template-columns: 1fr; }
.service-items-large article { min-height: auto; }
.due-panel { padding: 48px; border: 1px solid rgba(255,255,255,0.28); }
.due-panel ul { margin: 28px 0; padding: 0; list-style: none; }
.due-panel li { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
.due-panel li::before { content: "—"; margin-right: 12px; color: var(--gold); }
.due-panel p { color: #c4d6e5; }
.due-panel a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.text-link-light { color: var(--white); }
.contact-strip { padding: 55px 0; }
.contact-strip .shell { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.contact-strip h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
.contact-strip p { margin: 10px 0 0; color: #c5d7e5; }
.price-layout { display: grid; grid-template-columns: 220px 1fr; gap: 70px; align-items: start; }
.price-nav { position: sticky; top: 120px; display: grid; border-top: 1px solid var(--line); }
.price-nav p { margin: 0; padding: 14px 0; color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.price-nav a { padding: 13px 0; border-top: 1px solid var(--line); color: var(--navy); font-size: 0.86rem; font-weight: 800; }
.price-note { margin-bottom: 65px; padding: 24px 28px; border-left: 3px solid var(--gold); background: var(--sky-soft); }
.price-note strong { color: var(--navy); }
.price-note p { margin: 6px 0 0; color: var(--muted); }
.price-group { margin-bottom: 85px; scroll-margin-top: 110px; }
.price-group-heading { margin-bottom: 25px; display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: end; }
.price-group-heading h2 { font-size: clamp(2.3rem, 4vw, 3.6rem); }
.price-group-heading p { margin: 0; color: var(--muted); }
.price-table { border-top: 1px solid var(--navy); }
.price-row { min-height: 70px; padding: 16px 12px; display: grid; grid-template-columns: 1.4fr 0.55fr 0.7fr; gap: 24px; align-items: center; border-bottom: 1px solid var(--line); }
.price-row span { color: var(--muted); }
.price-row-head { min-height: 48px; color: var(--muted); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.load-error { padding: 30px; color: #7c2626; background: #fff0f0; }
.load-error a { text-decoration: underline; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 820ms var(--ease), transform 820ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.news-list { display: grid; gap: 24px; }
.news-card { padding: clamp(26px, 5vw, 58px); border: 1px solid var(--line); border-radius: 28px; background: var(--white); transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color 420ms var(--ease); }
.news-card:hover { border-color: rgba(11,60,111,0.35); box-shadow: var(--shadow); transform: translateY(-6px); }
.news-card.is-pinned { background: var(--sky-soft); }
.news-card h2 { max-width: 900px; margin: 18px 0; font-size: clamp(2.2rem, 4.8vw, 4.6rem); }
.news-card > p { max-width: 850px; color: var(--muted); }
.news-summary { color: var(--ink) !important; font-size: 1.15rem; }
.news-source-link { min-height: 46px; margin-top: 12px; display: inline-flex; align-items: center; color: var(--navy); font-size: 0.86rem; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.news-source-link::after { content: "↗"; margin-left: 8px; text-decoration: none; }
.news-meta { display: flex; gap: 14px; align-items: center; color: var(--muted); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.news-meta span { padding: 5px 10px; border-radius: 999px; color: var(--white); background: var(--navy); }
.empty-state { padding: 60px; border: 1px dashed var(--line); border-radius: 28px; text-align: center; }
.empty-state h2, .empty-state h3 { margin-bottom: 12px; }
@keyframes flyout-in { from { opacity: 0; transform: translateY(-12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 1120px) {
  .phone-link { display: none; }
  .main-nav { gap: 18px; }
  .header-action { margin-left: auto; }
  .hero-grid { gap: 30px; }
  .hero-visual { min-height: 500px; }
  .document-lines { left: 0; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 80px 0; }
  .header-inner { width: calc(100% - 28px); min-height: 72px; }
  .header-action { display: none; }
  .menu-button { margin-left: auto; display: block; }
  .main-nav { position: absolute; top: 72px; right: 0; left: 0; display: none; padding: 12px 20px 22px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 12px 0; }
  .main-nav a::after { bottom: 5px; transform-origin: left; }
  .hero::before { width: 100%; height: 34%; top: auto; bottom: 0; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 0 30px; }
  .hero-visual { min-height: 490px; }
  .hero-visual img { right: 15%; max-height: 450px; }
  .hero-ring { right: 8%; }
  .document-lines { left: 12%; }
  .direction-rail .shell { grid-template-columns: 1fr 1fr; }
  .direction-rail a:nth-child(odd) { border-left: 1px solid var(--line); }
  .split-heading, .about-layout, .process-layout, .faq-layout, .contact-layout, .page-hero-grid, .service-layout { grid-template-columns: 1fr; gap: 50px; }
  .reason-list article { grid-template-columns: 45px 1fr; gap: 14px 20px; }
  .reason-list article p, .reason-list article a { grid-column: 2; }
  .about-mark { min-height: 360px; }
  .principles { grid-template-columns: 1fr; }
  .client-rail { grid-template-columns: 1fr 1fr; }
  .client-rail span:last-child { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main p { grid-column: 1 / -1; }
  .service-heading { position: static; }
  .price-layout { grid-template-columns: 1fr; gap: 40px; }
  .price-nav { position: static; grid-template-columns: 1fr 1fr; }
  .price-nav p { grid-column: 1 / -1; }
  .contact-strip .shell { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.1rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .brand { font-size: 1.03rem; }
  .brand img { width: 40px; height: 40px; }
  .brand small { font-size: 0.49rem; }
  .hero-copy { padding-top: 55px; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .hero-visual { min-height: 400px; }
  .hero-visual img { right: 5%; width: 68%; max-height: 365px; }
  .hero-ring { top: 25px; right: -20px; width: 180px; }
  .document-lines { top: 135px; left: 0; width: 160px; padding: 15px; }
  .direction-rail .shell { width: 100%; }
  .direction-rail a { min-height: 72px; padding: 16px; font-size: 1rem; }
  .split-heading { margin-bottom: 45px; }
  .reason-list article { padding: 24px 0; }
  .client-rail { grid-template-columns: 1fr; }
  .client-rail span:last-child { grid-column: auto; }
  .contact-layout address div { grid-template-columns: 1fr; gap: 5px; }
  .footer-main, .footer-bottom { display: grid; grid-template-columns: 1fr; }
  .news-flyout { top: auto; right: 10px; bottom: 10px; width: calc(100% - 20px); }
  .lead-dialog { padding: 38px 22px 24px; }
  .page-hero { padding: 70px 0 60px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .service-index { width: 100%; grid-template-columns: 1fr 1fr; }
  .service-index a { min-height: 58px; border-bottom: 1px solid var(--line); }
  .service-section { padding: 75px 0; }
  .service-items { grid-template-columns: 1fr; }
  .service-items article { min-height: auto; padding: 24px; }
  .due-panel { padding: 28px 22px; }
  .price-nav { grid-template-columns: 1fr; }
  .price-nav p { grid-column: auto; }
  .price-group-heading { grid-template-columns: 1fr; gap: 12px; }
  .price-row { grid-template-columns: 1fr; gap: 5px; padding: 16px 0; }
  .price-row-head { display: none; }
  .price-row span:last-child { font-size: 0.82rem; }
}

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