@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --forest: #085e2a;
  --forest-deep: #085e2a;
  --leaf: #11823b;
  --lime: #f6c244;
  --gold-deep: #c99a2b;
  --sage: #57864d;
  --cream: #f7f7f7;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --muted: #57864d;
  --line: rgba(8, 94, 42, .16);
  --white: #fff;
  --shadow: 0 18px 50px rgba(8, 94, 42, .12);
  --radius: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Montserrat", Arial, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--cream); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Montserrat", Arial, sans-serif; letter-spacing: -.035em; line-height: 1.08; }
h1 { max-width: 760px; margin-bottom: 24px; color: #fff; font-size: clamp(3rem, 6.2vw, 5.7rem); font-weight: 800; text-transform: uppercase; }
h2 { margin-bottom: 24px; font-size: clamp(2.15rem, 3.8vw, 3.45rem); font-weight: 700; text-transform: uppercase; }
h1 em, h2 em { color: var(--leaf); font-family: inherit; font-style: normal; font-weight: 800; }
.hero h1 em { color: #f6c244 !important; }
h3 { line-height: 1.25; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--leaf); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { width: 30px; height: 1px; background: currentColor; content: ""; }
.eyebrow-light { color: var(--lime); }

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: 80px; border-bottom: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,.98); box-shadow: 0 4px 24px rgba(8,94,42,.06); transition: .25s ease; }
.site-header.is-scrolled { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 8px 35px rgba(8,94,42,.1); backdrop-filter: blur(15px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; color: inherit; text-decoration: none; }
.brand-logo { display: block; width: 64px; height: 53px; object-fit: contain; object-position: center; }
.brand-footer .brand-logo { width: 136px; height: 112px; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .72rem; font-weight: 600; letter-spacing: .025em; text-transform: uppercase; }
.main-nav > a { position: relative; text-decoration: none; }
.main-nav > a:not(.button)::after { position: absolute; bottom: -9px; left: 0; width: 0; height: 2px; background: var(--lime); content: ""; transition: width .2s ease; }
.main-nav > a:hover::after { width: 100%; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 1px solid currentColor; border-radius: 50%; color: inherit; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: currentColor; }
.language-switcher { display: inline-flex; gap: 6px; align-items: center; font-size: .68rem; }
.language-switcher button, .language-switcher a, .language-switcher > span[aria-current] { padding: 2px; border: 0; color: inherit; background: transparent; font-size: .68rem; font-weight: 700; text-decoration: none; cursor: pointer; opacity: .55; }
.language-switcher button[aria-pressed="true"], .language-switcher > span[aria-current] { color: var(--leaf); opacity: 1; }
.is-scrolled .language-switcher button[aria-pressed="true"], .legal-page .language-switcher button[aria-pressed="true"], .legal-page .language-switcher > span[aria-current] { color: var(--leaf); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 52px; padding: 0 24px; border: 1px solid var(--forest); border-radius: 999px; color: #fff; background: var(--forest); font-size: .75rem; font-weight: 700; letter-spacing: .035em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, color .2s ease, background .2s ease; }
.button:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 19px; font-size: .72rem; }
.button-dark { border-color: var(--forest); color: #fff; background: var(--forest); }
.button-dark:hover { border-color: var(--lime); color: var(--forest); background: var(--lime); }
.button-outline { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
.button-outline:hover { border-color: var(--lime); color: var(--forest); background: var(--lime); }
.text-link { display: inline-flex; gap: 16px; align-items: center; border-bottom: 1px solid currentColor; color: var(--forest); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link-light { color: #fff; }

.hero { position: relative; display: grid; min-height: 720px; align-items: center; overflow: hidden; background: var(--forest); }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 54%; }
.hero-shade { background: linear-gradient(90deg, rgba(8,94,42,.72) 0%, rgba(8,94,42,.56) 48%, rgba(8,94,42,.28) 100%), linear-gradient(0deg, rgba(26,26,26,.2), rgba(26,26,26,.04) 62%); }
.hero-content { position: relative; z-index: 1; padding-top: 134px; padding-bottom: 70px; }
.hero-content > * { max-width: 610px; }
.hero-lead { margin-bottom: 32px; color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.35vw, 1.16rem); }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.hero .button { border-color: var(--leaf); background: var(--leaf); }
.hero .button:hover { border-color: var(--lime); color: var(--ink); background: var(--lime); }
.hero-points { display: flex; gap: 24px; margin: 52px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(246,194,68,.35); color: #fff; font-size: .72rem; font-weight: 600; list-style: none; text-transform: uppercase; }
.hero-points li { display: flex; gap: 8px; align-items: center; }
.hero-points span { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid var(--lime); border-radius: 50%; color: var(--lime); font-size: .65rem; }
.scroll-cue { display: none; }
.scroll-cue i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-style: normal; writing-mode: initial; }

.intro-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: end; }
.intro-copy { padding-bottom: 10px; color: var(--muted); font-size: 1.08rem; }
.intro-copy p { margin-bottom: 28px; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border: 0; border-radius: var(--radius); color: #fff; background: var(--forest); box-shadow: var(--shadow); overflow: hidden; }
.trust-strip div { display: flex; gap: 18px; align-items: center; min-height: 112px; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,.18); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { color: var(--gold-deep); font-family: inherit; font-size: 2rem; font-style: normal; font-weight: 800; }
.trust-strip span { color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .055em; line-height: 1.45; text-transform: uppercase; }

.split-heading { display: block; max-width: 860px; margin: 0 auto 48px; text-align: center; }
.split-heading .eyebrow { justify-content: center; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 650px; margin: 18px auto 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 250px; grid-auto-flow: dense; gap: 18px; }
.product-card, .product-card-large, .product-card-wide { position: relative; min-height: 250px; border: 1px solid rgba(201,154,43,.34); border-radius: var(--radius); overflow: hidden; color: #fff; background: var(--forest); box-shadow: 0 12px 30px rgba(8,94,42,.12); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.product-card-large { grid-column: span 2; grid-row: span 2; }
.product-card-wide { grid-column: span 2; }
.product-card:hover { border-color: var(--gold-deep); box-shadow: 0 20px 42px rgba(8,94,42,.2); transform: translateY(-5px); }
.product-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.product-card:hover img { transform: scale(1.045); }
.product-overlay { position: absolute; inset: 0; display: block; background: linear-gradient(0deg, rgba(8,45,24,.92) 0%, rgba(8,45,24,.5) 44%, rgba(8,45,24,.05) 78%); }
.product-copy { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 28px; text-align: left; }
.product-copy > span { color: var(--lime); font-family: inherit; font-size: .7rem; font-style: normal; font-weight: 700; }
.product-copy h3 { margin: 5px 0 8px; color: #fff; font-family: "Montserrat", sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; }
.product-card-large .product-copy { padding: 38px; }
.product-card-large .product-copy h3 { font-size: clamp(1.45rem, 2.3vw, 2.1rem); }
.product-card-wide .product-copy h3 { font-size: 1.2rem; }
.product-copy p { max-width: 430px; margin-bottom: 13px; color: rgba(255,255,255,.82); font-size: .8rem; line-height: 1.5; }
.product-copy a { color: #fff; font-size: .67rem; font-weight: 700; letter-spacing: .04em; text-underline-offset: 5px; text-transform: uppercase; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.service-visual { position: relative; }
.service-visual > img { width: 100%; min-height: 530px; border-radius: var(--radius); object-fit: cover; }
.service-note { position: absolute; right: 22px; bottom: 22px; display: flex; width: auto; min-width: 170px; height: auto; min-height: 82px; padding: 15px 22px; flex-direction: column; align-items: center; justify-content: center; border-radius: 12px; color: var(--forest); background: var(--lime); box-shadow: var(--shadow); text-align: center; transform: none; }
.service-note strong { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.service-note span { font-family: inherit; font-size: 1.05rem; font-style: normal; font-weight: 700; }
.service-content > p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.service-list { margin: 35px 0; border-top: 1px solid var(--line); }
.service-list > div { display: grid; grid-template-columns: 44px 1fr; padding: 23px 0; border-bottom: 1px solid var(--line); }
.service-list span { grid-row: span 2; color: var(--gold-deep); font-family: inherit; font-style: normal; font-weight: 700; }
.service-list h3 { margin: 0 0 5px; font-size: 1rem; }
.service-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.why { color: var(--ink); background: var(--paper); }
.centered-heading { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; color: var(--leaf); }
.centered-heading h2 em { color: var(--leaf); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; border: 0; }
.benefit-grid article { min-height: 260px; padding: 34px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.benefit-grid article:last-child { border: 1px solid var(--line); }
.benefit-icon { display: grid; width: 54px; height: 54px; margin-bottom: 38px; place-items: center; border: 1px solid var(--gold-deep); border-radius: 50%; color: var(--forest); background: rgba(246,194,68,.18); font-size: 1.25rem; }
.benefit-grid h3 { margin-bottom: 12px; color: var(--forest); font-size: .93rem; text-transform: uppercase; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: .84rem; }

.contact { color: #fff; background: var(--forest); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 84px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 em { color: var(--lime); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.contact-promise { margin-top: 44px; font-style: normal; }
.contact-promise > div { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-promise span { display: grid; flex: 0 0 26px; height: 26px; place-items: center; border: 1px solid rgba(246,194,68,.55); border-radius: 50%; color: var(--lime); font-size: .72rem; }
.contact-promise p { margin: 0; color: rgba(255,255,255,.62); font-size: .86rem; }
.contact-promise strong { color: #fff; }
.contact-promise a { color: inherit; text-underline-offset: 4px; }
.form-card { padding: 42px; border-radius: var(--radius); color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading span { font-family: "Montserrat", sans-serif; font-size: 1.35rem; font-weight: 700; }
.form-heading p { margin: 0; color: var(--muted); font-size: .75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.form-grid > label:not(.consent) { display: grid; gap: 7px; font-size: .76rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 2px; color: var(--ink); background: #fff; }
input, select { height: 48px; padding: 0 13px; }
textarea { min-height: 116px; padding: 12px 13px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--leaf); outline: 2px solid rgba(17,130,59,.16); }
.form-full { grid-column: 1 / -1; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; border: 0; }
.checkbox-group legend { width: 100%; margin-bottom: 7px; font-size: .76rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.checkbox-group label { display: flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; cursor: pointer; }
.checkbox-group input, .consent input { width: 16px; height: 16px; margin: 0; accent-color: var(--forest); }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .78rem; }
.consent input { flex: 0 0 16px; margin-top: 2px; }
.consent a { color: var(--forest); font-weight: 700; }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-submit { width: 100%; margin-top: 26px; border: 0; color: var(--ink); background: var(--lime); }
.form-submit:hover { color: #fff; background: var(--leaf); }
.form-submit:disabled { cursor: wait; opacity: .7; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: .82rem; text-align: center; }
.form-status.success { color: var(--leaf); }
.form-status.error { color: #9b2f2f; }

.site-footer { color: var(--muted); background: var(--cream); }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 60px; padding: 76px 0 60px; }
.brand-footer { color: var(--forest); }
.footer-brand > p { max-width: 330px; margin: 26px 0 14px; }
.footer-email { color: var(--forest); font-weight: 700; text-underline-offset: 5px; }
.footer-phone { display: block; margin-top: 8px; color: var(--ink); font-weight: 600; text-decoration: none; }
.footer-address { margin-top: 9px; color: var(--muted); font-size: .82rem; font-style: normal; line-height: 1.55; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-col h2 { margin: 0 0 11px; color: var(--forest); font-family: "Montserrat", sans-serif; font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-col > a:not(.button) { font-size: .86rem; text-decoration: none; }
.footer-col > a:hover { color: var(--lime); }
.footer-cta p { margin-bottom: 12px; font-size: .86rem; }
.site-footer .button-outline { border-color: var(--forest); color: var(--forest); }
.site-footer .button-outline:hover { border-color: var(--lime); color: var(--ink); background: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 25px 0 30px; border-top: 0; color: #fff; background: var(--forest); box-shadow: 0 0 0 100vmax var(--forest); clip-path: inset(0 -100vmax); font-size: .74rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a { text-decoration: none; }
.back-top { position: fixed; z-index: 100; right: 22px; bottom: 22px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; background: var(--forest); box-shadow: 0 8px 25px rgba(0,0,0,.2); text-decoration: none; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.legal-page { background: var(--paper); }
.legal-page .site-header { position: relative; color: var(--ink); background: var(--paper); border-color: var(--line); }
.legal-hero { padding: 90px 0 65px; color: #fff; background: var(--forest); }
.legal-hero h1 { max-width: 800px; margin-bottom: 18px; font-size: clamp(2.7rem, 6vw, 5.3rem); }
.legal-hero p { max-width: 680px; margin: 0; color: rgba(255,255,255,.7); }
.legal-content { display: grid; grid-template-columns: 270px 1fr; gap: 80px; padding: 80px 0 110px; }
.legal-aside { align-self: start; position: sticky; top: 25px; padding: 24px; border: 1px solid var(--line); background: var(--cream); }
.legal-aside strong { display: block; margin-bottom: 10px; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-aside p { margin: 0; color: var(--muted); font-size: .84rem; }
.legal-body { max-width: 760px; }
.legal-body h2 { margin: 46px 0 14px; font-family: "Montserrat", sans-serif; font-size: 1.55rem; font-weight: 700; letter-spacing: -.025em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: rgba(26,26,26,.76); }
.legal-body ul { padding-left: 20px; }
.legal-body a { color: var(--forest); font-weight: 700; }
.legal-back { display: inline-flex; margin-top: 36px; color: var(--forest); font-weight: 700; text-underline-offset: 5px; }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 80px 0 auto; display: flex; max-height: 0; flex-direction: column; align-items: stretch; gap: 0; overflow: hidden; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); transition: max-height .3s ease; }
  .main-nav.is-open { max-height: calc(100vh - 80px); padding: 16px 24px 28px; }
  .main-nav > a:not(.button) { padding: 16px 5px; border-bottom: 1px solid var(--line); }
  .main-nav .language-switcher { justify-content: center; margin-top: 18px; padding: 10px; border: 1px solid var(--line); border-radius: 999px; }
  .main-nav .button { margin-top: 20px; }
  .menu-toggle { display: block; }
  .intro-grid, .split-heading, .service-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-copy { position: static; }
  .service-visual { max-width: 680px; }
  .service-note { right: 20px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 300px; }
  .product-card-large { grid-column: span 2; grid-row: span 1; }
  .product-card-wide { grid-column: span 2; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand-logo { width: 56px; height: 46px; }
  .brand-footer .brand-logo { width: 124px; height: 102px; }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(1.95rem, 9.5vw, 3rem); }
  .hero { min-height: 760px; }
  .hero-image { opacity: 1; object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,94,42,.72), rgba(8,94,42,.5)), linear-gradient(0deg, rgba(26,26,26,.22), rgba(26,26,26,.04)); }
  .hero-content { padding-top: 120px; }
  .hero-actions, .hero-points { align-items: stretch; flex-direction: column; }
  .hero-actions { gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 12px; margin-top: 42px; }
  .scroll-cue { display: none; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .trust-strip div { min-height: 95px; padding: 18px; }
  .product-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .product-card, .product-card-large, .product-card-wide { grid-column: auto; grid-row: auto; min-height: 350px; }
  .product-card img { height: 100%; }
  .product-copy, .product-card-large .product-copy { padding: 24px; }
  .product-card-large .product-copy h3, .product-card-wide .product-copy h3 { font-size: 1.12rem; }
  .service-visual > img { min-height: 430px; border-radius: var(--radius); }
  .service-note { right: 14px; width: 130px; height: 130px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: auto; border: 1px solid var(--line); }
  .benefit-icon { margin-bottom: 28px; }
  .form-card { padding: 28px 20px; border-radius: var(--radius); }
  .form-heading, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .form-heading { gap: 6px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .checkbox-group { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
  .footer-brand, .footer-cta { grid-column: 1 / -1; }
  .footer-bottom div { flex-direction: column; gap: 6px; }
  .legal-content { grid-template-columns: 1fr; gap: 35px; padding-top: 55px; }
  .legal-aside { position: static; }
}

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