@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap');

:root {
  --brand-green: #217A4C;
  --brand-green-dark: #175e39;
  --deep-green: #123D2B;
  --mint: #5DC69D;
  --pale-mint: #E8F5EF;
  --warm-white: #FAFBF9;
  --white: #FFFFFF;
  --charcoal: #18211D;
  --stone: #64736B;
  --border: #DDE5E0;
  --amber: #D89B3C;
  --danger: #B84A4A;
  --info: #3D718F;
  --radius: .625rem;
  --content: 76rem;
  --space-2xs: .25rem;
  --space-xs: .5rem;
  --space-sm: .75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: clamp(4rem, 7vw, 7.5rem);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--warm-white);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-kerning: normal;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .68; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }

.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; padding: .75rem 1rem; color: var(--white); background: var(--deep-green); }
.skip-link:focus { top: 1rem; }
.page-shell { overflow: clip; }
.container { width: min(calc(100% - 3rem), var(--content)); margin-inline: auto; }
.section { padding-block: var(--space-3xl); }
.section-line { border-top: 1px solid var(--border); }
.section-label { margin: 0 0 var(--space-sm); color: var(--brand-green); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--deep-green); font-family: "Source Serif 4", Georgia, serif; font-weight: 600; line-height: 1.07; text-wrap: balance; }
h1 { max-width: 24ch; font-size: clamp(2.75rem, 4.1vw, 4.75rem); letter-spacing: -.02em; }
h2 { max-width: 18ch; font-size: clamp(2.2rem, 3.8vw, 4rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); letter-spacing: -.018em; }
p { margin: 0; }
.lead { max-width: 61ch; color: var(--stone); font-size: 1.125rem; line-height: 1.65; text-wrap: pretty; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; min-height: 2.75rem; color: var(--brand-green); font-size: .94rem; font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; transition: transform 180ms var(--ease-out); }
@media (hover: hover) { .text-link:hover::after { transform: translateX(.25rem); } }

.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--warm-white) 94%, transparent); backdrop-filter: blur(12px); }
.header-inner { display: flex; min-height: 5rem; align-items: center; gap: 1.25rem; }
.brand { flex: 0 0 auto; width: 8.5rem; }
.brand img { width: 100%; height: auto; }
.nav { display: flex; align-items: center; gap: clamp(.7rem, 1.7vw, 1.6rem); margin-left: auto; }
.nav a { padding-block: .65rem; color: var(--charcoal); font-size: .82rem; font-weight: 700; text-decoration: none; }
.nav a[aria-current="page"], .nav a:hover { color: var(--brand-green); }
.nav-highlight { display: inline-flex; align-items: center; gap: .35rem; padding: .38rem .8rem; border: 1px solid var(--brand-green); border-radius: 999px; color: var(--brand-green) !important; background: var(--white); white-space: nowrap; }
.nav-highlight:hover { background: var(--pale-mint); }
.nav-highlight[aria-current="page"] { color: var(--white) !important; background: var(--brand-green); }
.nav-highlight[aria-current="page"] .nav-badge { color: var(--brand-green); background: var(--white); }
.nav-badge { display: inline-flex; align-items: center; padding: .12rem .45rem; border-radius: 999px; color: var(--white); background: var(--brand-green); font-size: .62rem; font-weight: 800; letter-spacing: .06em; line-height: 1.3; }
.nav-highlight:hover .nav-badge { color: var(--white); background: var(--brand-green); }
.nav-toggle { display: none; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: .4rem; color: var(--deep-green); background: var(--white); }

.button { display: inline-flex; min-height: 2.9rem; align-items: center; justify-content: center; gap: .6rem; border: 1px solid transparent; border-radius: .45rem; padding: .7rem 1.1rem; font-size: .9rem; font-weight: 800; text-align: center; text-decoration: none; transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out); }
.button::after { content: "→"; font-size: 1.2em; line-height: 1; }
.button-primary { color: var(--white); background: var(--brand-green); }
.button-primary:hover { background: var(--brand-green-dark); }
.button-secondary { border-color: var(--brand-green); color: var(--brand-green); background: var(--white); }
.button-secondary:hover { background: var(--pale-mint); }
.button-light { color: var(--deep-green); background: var(--white); }
.button-light:hover { background: var(--pale-mint); }
@media (hover: hover) { .button:hover { transform: translateY(-1px); } }
.button:active { transform: translateY(1px); }

.hero { padding-block: clamp(2.8rem, 6vw, 6.5rem) var(--space-2xl); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(28rem, 1.02fr); gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.hero-copy { display: grid; gap: var(--space-lg); }
.hero-copy .lead { margin-top: .25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .2rem; }
.hero-note { color: var(--stone); font-size: .78rem; }
.hero-map { position: relative; min-height: 29rem; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--pale-mint); }
.hero-map > img { width: 100%; height: 100%; min-height: 29rem; object-fit: cover; }
.hero-map::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(90deg, color-mix(in srgb, var(--warm-white) 20%, transparent), transparent 26%); }
.map-caption { position: absolute; right: 1rem; bottom: 1rem; z-index: 1; max-width: 19rem; padding: .85rem 1rem; border: 1px solid color-mix(in srgb, var(--border) 70%, white); border-radius: .45rem; color: var(--charcoal); background: color-mix(in srgb, var(--white) 94%, transparent); font-size: .76rem; line-height: 1.45; }
.map-caption strong { display: block; margin-bottom: .18rem; color: var(--deep-green); }
.audit-evidence { position: absolute; top: 1rem; right: 1rem; z-index: 2; display: grid; gap: .55rem; width: min(17rem, 47%); }
.audit-evidence span { display: flex; gap: .55rem; align-items: flex-start; padding: .75rem; border: 1px solid color-mix(in srgb, var(--border) 68%, white); border-radius: .45rem; color: var(--charcoal); background: color-mix(in srgb, var(--white) 94%, transparent); font-size: .75rem; font-weight: 800; line-height: 1.35; }
.audit-evidence span::before { content: ""; flex: 0 0 .55rem; width: .55rem; height: .55rem; margin-top: .25rem; border-radius: 50%; background: var(--brand-green); }

.audit-band { color: var(--white); background: var(--deep-green); }
.audit-band .section { display: grid; grid-template-columns: minmax(16rem, .72fr) 1.28fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: start; padding-block: clamp(3rem, 6vw, 5.5rem); }
.audit-band h2 { color: var(--white); }
.audit-band .section-label { color: var(--mint); }
.deliverable-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.deliverable-list li { min-height: 8.5rem; padding: 1.1rem 1.25rem 1.25rem; border-top: 1px solid color-mix(in srgb, var(--mint) 33%, transparent); color: #e5f0e9; }
.deliverable-list li:nth-child(odd) { border-right: 1px solid color-mix(in srgb, var(--mint) 33%, transparent); }
.deliverable-list strong { display: block; margin-bottom: .45rem; color: var(--white); font-size: .98rem; }
.deliverable-list p { color: #c6dbcf; font-size: .83rem; line-height: 1.55; }

.check-section { display: grid; grid-template-columns: minmax(15rem, .67fr) 1.33fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; }
.check-section .lead { margin-top: 1rem; font-size: 1rem; }
.parcel-search { display: grid; gap: .55rem; padding: clamp(1rem, 3vw, 1.8rem); border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.field-label { color: var(--charcoal); font-size: .82rem; font-weight: 800; }
.search-row { display: grid; grid-template-columns: 1fr auto; gap: .7rem; }
input, textarea { width: 100%; border: 1px solid #b8c7be; border-radius: .42rem; padding: .78rem .9rem; color: var(--charcoal); background: var(--white); font-size: 1rem; line-height: 1.4; }
input { min-height: 2.95rem; }
textarea { min-height: 7rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: #5d6c64; opacity: 1; }
input:focus, textarea:focus { border-color: var(--brand-green); outline: 2px solid color-mix(in srgb, var(--mint) 50%, transparent); outline-offset: 1px; }
.field-help, .form-status { min-height: 1.35rem; margin: 0; color: var(--stone); font-size: .78rem; line-height: 1.45; }
.form-status[data-kind="error"] { color: var(--danger); }
.form-status[data-kind="success"] { color: var(--brand-green-dark); font-weight: 700; }
.check-points { display: flex; flex-wrap: wrap; gap: .75rem 1.2rem; margin: .5rem 0 0; padding: 0; color: var(--stone); font-size: .76rem; list-style: none; }
.check-points li::before { content: "✓"; margin-right: .4rem; color: var(--brand-green); font-weight: 800; }

.audit-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 7rem); }
.audit-intro .lead { margin-top: 1rem; }
.scope-list { display: grid; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.scope-list li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.scope-list b { color: var(--brand-green); font-family: "Source Serif 4", Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.scope-list strong { display: block; margin-bottom: .18rem; }
.scope-list span { color: var(--stone); font-size: .9rem; }
.service-link { margin-top: 1.5rem; }

.conclusions-map { display: grid; grid-template-columns: minmax(17rem, .62fr) minmax(0, 1.38fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.conclusions-map .lead { margin-top: 1rem; }
.conclusions-map-figure { position: relative; min-height: clamp(24rem, 39vw, 33rem); margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--pale-mint); }
.conclusions-map-figure img { width: 100%; height: 100%; min-height: clamp(24rem, 39vw, 33rem); object-fit: cover; object-position: center; }

.process { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 7rem); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.process-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.process-list b { color: var(--brand-green); font-family: "Source Serif 4", Georgia, serif; font-size: 1.4rem; }
.process-list strong { display: block; }
.process-list p { margin-top: .22rem; color: var(--stone); font-size: .9rem; }
.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 6vw, 7rem); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); padding: 1.05rem 0; }
.faq-list summary { cursor: pointer; color: var(--charcoal); font-weight: 800; }
.faq-list p { max-width: 64ch; margin: .75rem 0 .15rem; color: var(--stone); font-size: .9rem; }

.contact { color: var(--white); background: var(--deep-green); }
.contact .section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.contact h2 { color: var(--white); }
.contact .section-label { color: var(--mint); }
.contact .lead { margin-top: 1rem; color: #c6dbcf; font-size: 1rem; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
.lead-form label { display: grid; gap: .4rem; color: #eff8f2; font-size: .8rem; font-weight: 800; }
.lead-form label.full, .lead-form .full { grid-column: 1 / -1; }
.lead-form input, .lead-form textarea { border-color: #5b806c; color: var(--charcoal); }
.consent { display: flex !important; grid-template-columns: 1.2rem 1fr; align-items: start; color: #c6dbcf !important; font-weight: 500 !important; line-height: 1.45; }
.consent input { width: 1rem; min-height: 1rem; margin-top: .22rem; accent-color: var(--mint); }
.contact .form-status { color: #c6dbcf; }

.site-footer { padding-block: 1.5rem max(1.5rem, env(safe-area-inset-bottom)); border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; color: var(--stone); font-size: .75rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--brand-green); }

.subhero { padding-block: clamp(2.8rem, 6vw, 5rem) var(--space-xl); border-bottom: 1px solid var(--border); }
.subhero-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.subhero .lead { margin-top: 1.1rem; }
.subhero-aside { padding: 1.2rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--pale-mint); color: var(--deep-green); font-size: .9rem; }
.subhero-aside strong { display: block; margin-bottom: .3rem; }
.subhero-figure { margin: 0 0 1rem; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--pale-mint); }
.subhero-figure > img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }

.check-page { max-width: 47rem; padding-block: clamp(3rem, 8vw, 7rem); }
.check-page > * + * { margin-top: 1.25rem; }
.check-page .parcel-search { margin-top: 2rem; }
.progress-list { display: grid; gap: .75rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.progress-list li { display: flex; align-items: center; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--border); color: var(--stone); font-size: .9rem; }
.progress-list li::before { content: ""; width: .7rem; height: .7rem; border: 2px solid var(--brand-green); border-radius: 50%; }
.progress-list li.is-active { color: var(--deep-green); font-weight: 800; }
.progress-list li.is-active::before { border-color: var(--mint); border-top-color: var(--brand-green); animation: spin 900ms linear infinite; }
@keyframes spin { to { transform: rotate(1turn); } }

.result-page { padding-block: clamp(2.5rem, 6vw, 5.5rem); }
.result-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; align-items: end; margin-bottom: 1.5rem; }
.result-top h1 { max-width: none; font-size: clamp(2.25rem, 4vw, 4.5rem); }
.result-meta { color: var(--stone); font-size: .82rem; }
.notice { display: flex; gap: .8rem; margin-bottom: 1.5rem; padding: 1rem 1.1rem; border: 1px solid #e3c77f; border-radius: .45rem; color: #6b4b13; background: #fff8e4; font-size: .86rem; line-height: 1.5; }
.notice::before { content: "!"; display: grid; flex: 0 0 1.25rem; width: 1.25rem; height: 1.25rem; place-items: center; border-radius: 50%; color: var(--white); background: var(--amber); font-weight: 800; }
.result-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); gap: 1.5rem; align-items: start; }
.result-map { min-height: 25rem; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--pale-mint); }
.result-map .map-empty { display: grid; min-height: 25rem; place-items: center; padding: 2rem; color: var(--stone); text-align: center; }
.result-map .parcel-map-canvas, .result-map .leaflet-container { width: 100%; height: 25rem; font-family: Manrope, sans-serif; }
.result-details { border-top: 1px solid var(--border); }
.detail-row { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.detail-row span { color: var(--stone); }
.detail-row b { max-width: 19ch; color: var(--deep-green); text-align: right; }
.result-section { margin-top: clamp(2.8rem, 6vw, 5rem); }
.result-section > h2 { margin-bottom: 1.4rem; font-size: clamp(1.9rem, 3.5vw, 3.1rem); }
.data-list { border-top: 1px solid var(--border); }
.data-row { display: grid; grid-template-columns: minmax(12rem, .34fr) 1fr auto; gap: 1.2rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.data-row p { color: var(--stone); font-size: .88rem; }
.status { display: inline-flex; align-items: center; gap: .4rem; color: var(--stone); font-size: .78rem; font-weight: 800; white-space: nowrap; }
.status::before { content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: var(--stone); }
.status.ready { color: var(--brand-green-dark); }.status.ready::before { background: var(--brand-green); }
.status.unavailable { color: #805d17; }.status.unavailable::before { background: var(--amber); }
.status.no_records { color: var(--stone); }.status.no_records::before { background: var(--stone); }
.status.partial { color: #805d17; }.status.partial::before { background: var(--amber); }
.zone-list { margin: .6rem 0; padding-left: 1.1rem; color: var(--deep-green); font-size: .88rem; }
.zone-list li + li { margin-top: .25rem; }
.doc-item + .doc-item { margin-top: .4rem; }
.doc-item small { color: var(--stone); }
.result-cta { display: grid; grid-template-columns: .75fr 1.25fr; gap: 2rem; margin-top: clamp(3rem, 7vw, 6rem); padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius); color: var(--white); background: var(--deep-green); }
.result-cta h2 { color: var(--white); font-size: clamp(1.9rem, 3vw, 3rem); }
.result-cta p { color: #c6dbcf; }
.result-cta .button { margin-top: 1.25rem; }
.report-form { display: grid; gap: .8rem; }
.report-form label { display: grid; gap: .35rem; color: #e7f2ea; font-size: .8rem; font-weight: 800; }

.page-grid { display: grid; grid-template-columns: .77fr 1.23fr; gap: clamp(2rem, 6vw, 7rem); }
.page-grid .lead { margin-top: 1rem; }
.content-stack { display: grid; gap: 1.6rem; }
.content-stack p { color: var(--stone); }
.service-hero-image { position: relative; overflow: hidden; min-height: 25rem; border-radius: var(--radius); background: var(--pale-mint); }
.service-hero-image img { width: 100%; height: 100%; min-height: 25rem; object-fit: cover; }
.service-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 2rem; border-top: 1px solid var(--border); }
.service-steps article { min-height: 11rem; padding: 1.2rem; border-bottom: 1px solid var(--border); }
.service-steps article + article { border-left: 1px solid var(--border); }
.service-steps b { display: block; margin-bottom: .75rem; color: var(--brand-green); font-family: "Source Serif 4", Georgia, serif; font-size: 1.45rem; }
.service-steps h3 { margin-bottom: .35rem; font-family: Manrope, sans-serif; font-size: .94rem; font-weight: 800; letter-spacing: 0; }
.service-steps p { color: var(--stone); font-size: .82rem; line-height: 1.5; }
.legal-page { max-width: 53rem; padding-block: clamp(3rem, 7vw, 6rem); }
.legal-page h1 { max-width: 15ch; }
.legal-page h2 { margin-top: 2.8rem; font-size: clamp(1.65rem, 3vw, 2.5rem); }
.legal-page p, .legal-page li { max-width: 72ch; margin-top: 1rem; color: var(--stone); }
.legal-page ul { padding-left: 1.2rem; }

@media (max-width: 58rem) {
  .container { width: min(calc(100% - 2rem), var(--content)); }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1rem 1rem; border-bottom: 1px solid var(--border); background: var(--warm-white); }
  .nav.is-open { display: flex; }
  .nav a { padding: .9rem .4rem; border-bottom: 1px solid var(--border); }
  .nav-highlight { justify-content: center; margin: .6rem .4rem; padding: .8rem 1rem; border-bottom: 1px solid var(--brand-green) !important; }
  .header-cta { display: none; }
  .hero-grid, .audit-band .section, .check-section, .audit-intro, .conclusions-map, .process, .faq, .contact .section, .subhero-grid, .page-grid, .result-layout, .result-cta { grid-template-columns: 1fr; }
  .hero-map { min-height: 22rem; }
  .hero-map > img { min-height: 22rem; }
  .audit-evidence { width: min(18rem, 58%); }
  .check-section { gap: 2.5rem; }
  .contact .section { gap: 2.5rem; }
  .result-cta { gap: 1.25rem; }
  .service-steps { grid-template-columns: repeat(2, 1fr); }
  .service-steps article:nth-child(3) { border-left: 0; }
  .legal-page h1, .legal-page h2, .legal-page p, .legal-page li { overflow-wrap: anywhere; }
}

@media (max-width: 40rem) {
  .hero { padding-top: 2.6rem; }
  h1 { max-width: 15ch; font-size: clamp(2.45rem, 11.2vw, 4.1rem); }
  .lead { font-size: 1rem; }
  .hero-actions, .search-row { grid-template-columns: 1fr; flex-direction: column; align-items: stretch; }
  .hero-actions .button, .search-row .button { width: 100%; }
  .hero-map, .hero-map > img { min-height: 20rem; }
  .hero-map > img { object-position: 55% center; }
  .conclusions-map-figure, .conclusions-map-figure img { min-height: 20rem; }
  .hero-map::after { background: none; }
  .audit-evidence { top: .75rem; right: .75rem; width: min(16rem, 64%); }
  .audit-evidence span:nth-child(n+3) { display: none; }
  .map-caption { right: .75rem; bottom: .75rem; left: .75rem; max-width: none; }
  .deliverable-list { grid-template-columns: 1fr; }
  .deliverable-list li:nth-child(odd) { border-right: 0; }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form label.full, .lead-form .full { grid-column: auto; }
  .data-row { grid-template-columns: 1fr; gap: .4rem; }
  .status { justify-self: start; }
  .service-steps { grid-template-columns: 1fr; }
  .service-steps article + article { border-left: 0; }
  .service-steps article { min-height: auto; }
  .legal-page { width: auto; max-width: none; margin-inline: 1rem; min-width: 0; }
  .legal-page h1, .legal-page h2 { max-width: none; overflow-wrap: anywhere; }
  .legal-page h1 { font-size: clamp(2.25rem, 10.5vw, 3.4rem); }
  .legal-page h2 { font-size: clamp(1.55rem, 8vw, 2rem); }
  .legal-page p, .legal-page li { max-width: none; overflow-wrap: anywhere; }
}

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