:root {
  --red: #143c52;
  --red-deep: #0d2a3a;
  --charcoal: #1f2930;
  --ink: #171b1f;
  --muted: #5d6870;
  --line: #d7dde1;
  --soft: #f1f3f4;
  --soft-red: #e8f0f3;
  --white: #ffffff;
  --serif: 'Noto Serif', Georgia, serif;
  --sans: 'Open Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.7; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1260px, calc(100% - 64px)); margin-inline: auto; }
.container-wide { width: min(1340px, calc(100% - 48px)); margin-inline: auto; }
.screen-reader { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 9px 14px; color: #fff; background: var(--red); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: 50; background: var(--white); }
.primary-header { display: flex; min-height: 104px; align-items: center; gap: 32px; }
.brand { display: inline-flex; min-width: 390px; align-items: center; gap: 14px; }
.brand-mark { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; color: var(--white); background: var(--red); font-family: var(--serif); font-size: 20px; font-weight: 500; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { color: #20262a; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.brand-text small { margin-top: 8px; color: #555; font-size: 9.9px; font-weight: 700; letter-spacing: .025em; text-transform: uppercase; }
.primary-nav { display: flex; margin-left: auto; align-items: center; justify-content: flex-end; gap: 18px; }
.primary-nav a { position: relative; padding: 37px 0 35px; color: #3c464c; font-size: 12px; font-weight: 700; letter-spacing: .015em; text-transform: uppercase; white-space: nowrap; }
.primary-nav a::after { position: absolute; right: 0; bottom: 25px; left: 0; height: 2px; content: ''; background: var(--red); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav a:hover, .primary-nav a[aria-current='page'] { color: var(--red); }
.primary-nav a:hover::after, .primary-nav a[aria-current='page']::after { transform: scaleX(1); }
.secondary-nav { background: #eceff1; border-top: 1px solid #dde2e5; }
.secondary-nav .container-wide { display: flex; min-height: 46px; align-items: center; justify-content: center; gap: 56px; }
.secondary-nav a { color: #37434a; font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.secondary-nav a:hover { color: var(--red); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: #fff; border: 1px solid #bbb; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--red); }

h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 300; line-height: 1.22; }
h1 { font-size: clamp(2.35rem, 3.7vw, 3.25rem); }
h2 { font-size: clamp(1.85rem, 2.6vw, 2.3rem); }
h3 { font-size: 1.35rem; }
p { margin-top: 0; }
.section { padding: 96px 0; }
.section.gray { background: var(--soft); }
.section-label { margin: 0 0 18px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.section-title { position: relative; margin-bottom: 46px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.section-title h2 { margin: 0; }
.section-title::after { position: absolute; bottom: -1px; left: 0; width: 76px; height: 3px; content: ''; background: var(--red); }
.section-intro { max-width: 790px; color: var(--muted); font-size: 17px; }
.outline-button { display: inline-flex; min-width: 154px; min-height: 44px; padding: 9px 22px; align-items: center; justify-content: space-between; gap: 24px; color: var(--red); background: transparent; border: 1px solid var(--red); font-size: 13px; font-weight: 700; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
.outline-button:hover { color: #fff; background: var(--red); }
.outline-button.light { color: #fff; border-color: #fff; }
.outline-button.light:hover { color: var(--red); background: #fff; }

.home-hero { position: relative; min-height: 590px; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.hero-grid { position: relative; z-index: 2; display: grid; min-height: 590px; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.hero-copy { padding: 70px 0; }
.hero-copy h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(2.65rem, 4.35vw, 3.75rem); }
.hero-copy h1 span { color: var(--red); }
.hero-copy > p:not(.section-label) { max-width: 680px; color: var(--muted); font-size: 18px; font-weight: 300; }
.hero-actions { display: flex; margin-top: 34px; gap: 16px; flex-wrap: wrap; }
.hero-composition { position: relative; min-height: 430px; }
.geometry-panel { position: absolute; inset: 14px 0 14px 40px; overflow: hidden; background: #f0f0f0; border-left: 8px solid var(--red); }
.geometry-panel::before { position: absolute; width: 370px; height: 370px; top: -130px; right: -90px; content: ''; border: 55px solid rgba(20,60,82,.13); border-radius: 50%; }
.geometry-panel::after { position: absolute; width: 320px; height: 2px; right: 60px; bottom: 100px; content: ''; background: var(--red); transform: rotate(-34deg); transform-origin: right; }
.geometry-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px); background-size: 48px 48px; }
.geometry-statement { position: absolute; z-index: 3; right: 38px; bottom: 48px; width: 310px; padding: 30px; color: #fff; background: var(--charcoal); border-top: 4px solid var(--red); }
.geometry-statement small { display: block; margin-bottom: 12px; color: #ddd; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.geometry-statement strong { font-family: var(--serif); font-size: 25px; font-weight: 300; line-height: 1.35; }

.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.intro-grid h2 { margin-bottom: 24px; }
.intro-copy { color: var(--muted); }
.intro-copy .lead { color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 300; line-height: 1.55; }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle { min-height: 165px; padding: 28px 24px; border-right: 1px solid var(--line); }
.principle:first-child { border-left: 1px solid var(--line); }
.principle span { color: var(--red); font-size: 11px; font-weight: 700; }
.principle h3 { margin: 34px 0 0; font-size: 20px; }

.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.practice-card { position: relative; display: block; min-height: 290px; padding: 36px; background: #fff; border-top: 4px solid var(--red); box-shadow: 0 4px 20px rgba(0,0,0,.055); }
.practice-card .number { color: var(--red); font-size: 11px; font-weight: 700; }
.practice-card h3 { max-width: 500px; margin: 42px 0 15px; font-size: clamp(1.65rem, 2.3vw, 2.2rem); }
.practice-card p { max-width: 520px; margin: 0; padding-right: 50px; color: var(--muted); }
.practice-card .arrow { position: absolute; right: 34px; bottom: 30px; color: var(--red); font-size: 25px; }
.section-action { margin: 38px 0 0; text-align: center; }

.sector-list { border-top: 1px solid var(--line); }
.sector-row { display: grid; min-height: 84px; padding: 19px 4px; grid-template-columns: 70px .8fr 1.2fr 30px; gap: 28px; align-items: center; border-bottom: 1px solid var(--line); }
.sector-row .number { color: var(--red); font-size: 12px; font-weight: 700; }
.sector-row h3 { margin: 0; font-size: 22px; }
.sector-row p { margin: 0; color: var(--muted); font-size: 14px; }
.sector-row .arrow { color: var(--red); font-size: 22px; }

.statement-section { position: relative; overflow: hidden; color: #fff; background: var(--charcoal); }
.statement-section::before { position: absolute; width: 520px; height: 520px; right: -130px; bottom: -330px; content: ''; border: 70px solid rgba(255,255,255,.065); border-radius: 50%; }
.statement-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.statement-grid h2 { margin: 0; }
.statement-grid p { color: #d0d0d0; font-size: 17px; }

.page-banner { position: relative; min-height: 380px; overflow: hidden; background: #f5f5f5; border-bottom: 1px solid var(--line); }
.page-banner-inner { position: relative; z-index: 2; padding: 84px 0 72px; }
.breadcrumb { display: flex; margin-bottom: 42px; gap: 10px; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumb a:hover { text-decoration: underline; }
.page-banner h1 { max-width: 850px; margin-bottom: 18px; }
.page-banner-inner > p:last-child { max-width: 780px; margin: 0; color: var(--muted); font-size: 17px; }
.abstract-field { position: absolute; inset: 0 0 0 56%; overflow: hidden; }
.abstract-field::before { position: absolute; width: 420px; height: 420px; right: -70px; top: -170px; content: ''; border: 60px solid rgba(20,60,82,.11); border-radius: 50%; }
.abstract-field::after { position: absolute; width: 480px; height: 1px; right: 20px; bottom: 80px; content: ''; background: rgba(20,60,82,.55); transform: rotate(-28deg); }
.abstract-field i { position: absolute; display: block; width: 1px; height: 100%; top: 0; background: rgba(0,0,0,.05); }
.abstract-field i:nth-child(1) { left: 20%; }.abstract-field i:nth-child(2) { left: 48%; }.abstract-field i:nth-child(3) { left: 76%; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .65fr); gap: 90px; }
.prose .lead { color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 300; line-height: 1.55; }
.prose p, .prose li { color: var(--muted); }
.prose h2 { margin: 54px 0 18px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 31px; }
.prose h2:first-of-type { margin-top: 44px; }
.aside-card { align-self: start; padding: 34px; background: var(--soft); border-top: 4px solid var(--red); }
.aside-card h2 { font-size: 25px; }
.aside-card p { color: var(--muted); font-size: 14px; }
.aside-card a:not(.outline-button) { color: var(--red); font-weight: 700; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value { min-height: 240px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value span { color: var(--red); font-size: 11px; font-weight: 700; }
.value h3 { margin: 54px 0 12px; font-size: 22px; }
.value p { margin: 0; color: var(--muted); font-size: 14px; }

.service-detail { display: grid; grid-template-columns: 75px .8fr 1.2fr; gap: 45px; padding: 48px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 20px; }
.service-detail:first-child { border-top: 1px solid var(--line); }
.service-detail .number { color: var(--red); font-size: 12px; font-weight: 700; }
.service-detail h2 { margin: 0 0 12px; font-size: 30px; }
.service-detail p { color: var(--muted); }
.service-detail ul { margin: 0; padding-left: 19px; color: var(--muted); }
.service-detail li { margin-bottom: 11px; }
.service-detail.compact { grid-template-columns: 75px 1fr; }

.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.person { min-height: 230px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.person .initials { display: grid; width: 52px; height: 52px; place-items: center; color: var(--red); background: var(--soft-red); font-family: var(--serif); }
.person h2 { margin: 45px 0 8px; font-size: 23px; }
.person p { margin: 0; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.person small { display: block; margin-top: 6px; color: var(--muted); }
.page-team .page-banner { min-height: 292px; }
.page-team .page-banner-inner { padding: 54px 0 46px; }
.page-team .breadcrumb { margin-bottom: 27px; }
.page-team .page-banner h1 { margin-bottom: 12px; font-size: clamp(2.3rem, 3.3vw, 3rem); }
.people-presence-section { padding-top: 58px; background: #f4f6f7; }
.presence-grid { display: grid; margin-top: 36px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.presence-card { min-height: 0; overflow: hidden; background: #fff; border: 1px solid #d4dce0; border-top: 4px solid var(--red); box-shadow: 0 7px 20px rgba(18, 39, 50, .055); }
.presence-city { display: flex; min-height: 86px; padding: 18px 22px; align-items: center; gap: 15px; color: var(--ink); background: #edf1f3; border-bottom: 1px solid #d4dce0; }
.presence-number { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; color: #fff; background: var(--red-deep); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.presence-city p { margin: 0 0 1px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.presence-city h2 { margin: 0; color: var(--ink); font-size: 25px; }
.presence-professionals { padding: 3px 22px 10px; }
.presence-person { display: grid; min-width: 0; min-height: 66px; padding: 13px 0; grid-template-columns: 38px minmax(0, 1fr); gap: 13px; align-items: center; border-bottom: 1px solid var(--line); }
.presence-person:last-child { border-bottom: 0; }
.presence-person .initials { display: grid; width: 38px; height: 38px; place-items: center; color: var(--red-deep); background: var(--soft-red); border: 1px solid #d2e0e6; font-family: var(--serif); font-size: 13px; }
.presence-person h3 { margin: 0; font-size: 17px; line-height: 1.38; overflow-wrap: anywhere; }
.registered-office-panel { display: grid; margin-top: 40px; padding: 32px 38px; grid-template-columns: .65fr 1.35fr; gap: 42px; align-items: center; color: #fff; background: var(--charcoal); border-left: 7px solid #547b8e; }
.registered-office-panel .section-label { margin-bottom: 8px; color: #abc2cd; }
.registered-office-panel h2 { margin: 0; color: #fff; font-size: 30px; }
.registered-office-panel address { margin: 0; padding-left: 38px; border-left: 1px solid #536067; color: #e1e6e8; font-family: var(--serif); font-size: 19px; font-style: normal; line-height: 1.6; }

.office-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.office { min-height: 270px; padding: 36px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); }
.office .type { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.office h2 { margin: 38px 0 16px; font-size: 34px; }
.office p { margin: 0 0 8px; color: var(--muted); }
.office strong { display: block; margin-top: 22px; font-size: 12px; text-transform: uppercase; }

.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client { display: flex; min-height: 145px; padding: 26px; align-items: flex-end; justify-content: space-between; gap: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.client span { color: var(--red); font-size: 11px; font-weight: 700; }
.client strong { max-width: 82%; font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.35; text-align: right; }
.audience-card { align-items: flex-start; flex-direction: column; justify-content: flex-start; }
.audience-card div { width: 100%; }
.audience-card h3 { margin: 10px 0 8px; font-size: 22px; }
.audience-card p { margin: 0; color: var(--muted); font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.contact-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item small { display: block; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-item p, .contact-item a { display: block; margin: 7px 0 0; font-family: var(--serif); font-size: 18px; line-height: 1.5; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; padding: 38px; background: var(--soft); border-top: 4px solid var(--red); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fff; border: 1px solid #ccc; border-radius: 0; outline: 0; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(20,60,82,.1); }
.field [aria-invalid='true'] { border-color: #4b3f66; }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 12px; }
.form-alert { grid-column: 1 / -1; padding: 13px 15px; font-size: 14px; }
.form-alert.success { color: #185c3a; background: #e6f3eb; }
.form-alert.error { color: #433457; background: #f0edf4; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal { max-width: 870px; }
.legal .lead { font-family: var(--serif); font-size: 23px; line-height: 1.55; }
.legal h2 { margin: 44px 0 14px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 27px; }
.legal p, .legal li { color: var(--muted); }

.contact-band { padding: 74px 0; color: #fff; background: var(--red); }
.contact-band-inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.contact-band .section-label { color: #cfe0e7; }
.contact-band h2 { max-width: 780px; margin: 0; }
.site-footer { color: #d9dfe2; background: #172229; }
.footer-grid { display: grid; padding: 70px 0 55px; grid-template-columns: 1.25fr .7fr 1fr; gap: 90px; }
.footer-mark { width: 52px; height: 52px; margin-bottom: 24px; }
.footer-identity h2 { margin-bottom: 12px; color: #fff; font-size: 25px; }
.footer-identity p { color: #aaa; font-size: 12px; text-transform: uppercase; }
.site-footer h3 { margin-bottom: 18px; color: #fff; font-family: var(--sans); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.site-footer a { display: block; margin: 6px 0; color: #bbb; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer address { margin-bottom: 14px; color: #aaa; font-size: 14px; font-style: normal; }
.footer-bottom { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #464646; color: #929292; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a { display: inline; margin: 0; font-size: 12px; }

@media (max-width: 1180px) {
  .brand { min-width: 0; flex: 1 1 auto; }
  .menu-toggle { display: block; flex: 0 0 44px; }
  .primary-header { min-height: 86px; }
  .primary-nav { position: fixed; inset: 86px 0 auto; display: grid; max-height: 0; padding: 0 28px; overflow: hidden; gap: 0; background: #fff; border-bottom: 1px solid var(--line); opacity: 0; visibility: hidden; transition: max-height .25s ease, opacity .2s ease; }
  .primary-nav.open { max-height: calc(100vh - 86px); padding-block: 14px 24px; overflow: auto; opacity: 1; visibility: visible; }
  .primary-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .secondary-nav .container-wide { gap: 28px; }
}

@media (max-width: 900px) {
  .secondary-nav { display: none; }
  .hero-grid, .intro-grid, .statement-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-hero, .hero-grid { min-height: auto; }
  .hero-copy { padding-bottom: 10px; }
  .hero-composition { min-height: 400px; }
  .principles, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid, .office-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 55px 1fr; gap: 25px; }
  .service-detail.compact { grid-template-columns: 55px 1fr; }
  .service-detail ul { grid-column: 2; }
  .people-grid, .client-grid { grid-template-columns: repeat(2, 1fr); }
  .presence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .registered-office-panel { grid-template-columns: 1fr; gap: 22px; }
  .registered-office-panel address { padding: 22px 0 0; border-top: 1px solid #536067; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-identity { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container, .container-wide { width: calc(100% - 30px); }
  .primary-header { min-height: 78px; gap: 10px; }
  .brand { min-width: 0; gap: 9px; }
  .brand-mark { width: 45px; height: 45px; flex-basis: 45px; font-size: 16px; }
  .brand-text { min-width: 0; }
  .brand-text strong { font-size: 11px; line-height: 1.2; }
  .brand-text small { max-width: 230px; margin-top: 5px; font-size: 8.1px; line-height: 1.25; }
  .primary-nav { top: 78px; }
  .section { padding: 70px 0; }
  .hero-copy { padding-top: 58px; }
  .hero-copy h1 { font-size: clamp(2.25rem, 10.5vw, 2.8rem); }
  .hero-composition { min-height: 340px; }
  .geometry-panel { inset: 10px 0; }
  .geometry-statement { right: 18px; bottom: 30px; width: 270px; padding: 25px; }
  .geometry-statement strong { font-size: 21px; }
  .principles, .value-grid, .people-grid, .client-grid { grid-template-columns: 1fr; }
  .page-team .page-banner { min-height: 250px; }
  .page-team .page-banner-inner { padding: 42px 0 38px; }
  .page-team .breadcrumb { margin-bottom: 22px; }
  .people-presence-section { padding-top: 44px; }
  .presence-grid { grid-template-columns: 1fr; gap: 18px; }
  .presence-card { min-height: 0; }
  .presence-city { min-height: 78px; padding: 15px 18px; }
  .presence-city h2 { font-size: 24px; }
  .presence-professionals { padding-inline: 18px; }
  .presence-person h3 { font-size: 17px; }
  .registered-office-panel { margin-top: 30px; padding: 28px 23px; }
  .registered-office-panel address { font-size: 17px; }
  .practice-card { min-height: 275px; padding: 29px; }
  .sector-row { grid-template-columns: 38px 1fr 20px; gap: 12px; }
  .sector-row p { display: none; }
  .page-banner { min-height: 340px; }
  .page-banner-inner { padding: 68px 0 58px; }
  .page-banner h1 { font-size: clamp(2.2rem, 9.5vw, 2.7rem); }
  .abstract-field { left: 35%; }
  .service-detail { grid-template-columns: 40px 1fr; gap: 15px; padding: 36px 0; }
  .service-detail h2 { font-size: 25px; }
  .contact-form { grid-template-columns: 1fr; padding: 25px; }
  .field.full { grid-column: auto; }
  .contact-band-inner { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-identity { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

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