:root {
  --green-950: #06261c;
  --green-900: #0b3828;
  --green-800: #124b36;
  --green-700: #1d6549;
  --gold: #c9aa5f;
  --gold-light: #e0c77f;
  --cream: #f4f2e9;
  --paper: #fbfaf6;
  --ink: #13231c;
  --muted: #67736d;
  --line: rgba(19, 35, 28, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(6, 38, 28, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.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; top: 12px; left: 12px; z-index: 999; padding: 10px 16px; color: #fff; background: var(--green-900); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; padding: 16px 0; color: white; }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; width: 184px; height: 78px; }
.brand img { width: 100%; height: auto; filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { position: relative; color: #fff; text-decoration: none; font-weight: 650; font-size: .9rem; letter-spacing: .02em; text-shadow: 0 1px 18px rgba(0,0,0,.45); }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.header-phone { display: inline-flex; align-items: center; gap: 10px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; color: #fff; font-weight: 750; text-decoration: none; background: rgba(6,38,28,.24); backdrop-filter: blur(8px); }
.header-phone svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; margin-left: auto; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: #fff; }

.hero { position: relative; min-height: 680px; height: min(82vh, 800px); display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--green-950); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transform: scale(1.01); }
.hero-shade { background: linear-gradient(90deg, rgba(4,27,19,.88) 0%, rgba(4,27,19,.64) 32%, rgba(4,27,19,.12) 68%), linear-gradient(0deg, rgba(4,27,19,.68) 0%, transparent 34%); }
.hero-content { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 112px; }
.hero-location { position: absolute; top: 132px; right: max(24px, calc((100vw - 1180px) / 2)); z-index: 3; display: flex; align-items: center; gap: 12px; padding: 12px 17px 12px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #fff; background: rgba(6,38,28,.78); backdrop-filter: blur(10px); box-shadow: 0 12px 34px rgba(0,0,0,.16); }
.hero-location svg { width: 24px; height: 24px; flex: 0 0 auto; fill: none; stroke: var(--gold-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-location span, .hero-location strong, .hero-location small { display: block; }
.hero-location strong { font-size: .74rem; line-height: 1.15; letter-spacing: .08em; text-transform: uppercase; }
.hero-location small { margin-top: 3px; color: var(--gold-light); font-size: .72rem; font-weight: 750; }
.eyebrow { margin: 0 0 20px; color: var(--gold-light); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.dark { color: var(--green-700); }
.hero h1, .section-heading h2, .parameters h2, .vision h2, .contact h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.hero h1 { max-width: 680px; font-size: clamp(2.8rem, 5vw, 4.8rem); text-wrap: balance; }
.hero-lead { max-width: 610px; margin: 28px 0 36px; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: 2px; text-decoration: none; font-weight: 780; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--green-950); }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.55); color: white; background: rgba(255,255,255,.06); }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.button-dark { width: 100%; background: var(--green-900); color: white; }
.button-dark:hover { background: var(--green-800); }
.hero-meta { position: absolute; inset: auto 0 0; z-index: 2; border-top: 1px solid rgba(255,255,255,.18); background: rgba(6,38,28,.76); backdrop-filter: blur(12px); }
.hero-meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-meta-grid > div { padding: 24px 26px; border-left: 1px solid rgba(255,255,255,.14); }
.hero-meta-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.hero-meta strong, .hero-meta span { display: block; }
.hero-meta strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.hero-meta span { color: rgba(255,255,255,.7); font-size: .8rem; }

.lots-section { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 430px); gap: 60px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .parameters h2, .vision h2, .contact h2 { font-size: clamp(2.5rem, 4.6vw, 4.6rem); }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 1.02rem; }
.lot-explorer { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(310px, .72fr); background: #fff; box-shadow: var(--shadow); }
.lot-map-wrap { min-width: 0; display: flex; align-items: center; overflow: hidden; background: #d9dfd3; }
.lot-map-canvas { position: relative; width: 100%; flex: 0 0 100%; aspect-ratio: 1041 / 702; }
.lot-map { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.lot-hotspots { position: absolute; inset: 0; }
.lot-pin { position: absolute; left: var(--x); top: var(--y); width: 40px; height: 40px; display: grid; place-items: center; padding: 0; transform: translate(-50%,-50%); border: 2px solid #fff; border-radius: 50%; background: rgba(6,38,28,.88); color: #fff; font-weight: 850; box-shadow: 0 5px 18px rgba(0,0,0,.28); cursor: pointer; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.lot-pin:hover, .lot-pin:focus-visible { transform: translate(-50%,-50%) scale(1.14); outline: 3px solid rgba(201,170,95,.45); outline-offset: 3px; }
.lot-pin.is-active { background: var(--gold); color: var(--green-950); box-shadow: 0 0 0 7px rgba(201,170,95,.24), 0 8px 22px rgba(0,0,0,.28); }
.lot-details { position: relative; padding: 48px 42px; background: #fff; overflow: hidden; }
.lot-details::after { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -70px; border: 1px solid rgba(201,170,95,.35); border-radius: 50%; box-shadow: 0 0 0 22px rgba(201,170,95,.06); }
.lot-number { display: flex; align-items: baseline; gap: 10px; color: var(--green-900); }
.lot-number span { font-family: var(--serif); font-size: 4.8rem; line-height: .9; }
.lot-number small { font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lot-location { margin: 26px 0 5px; color: var(--green-700); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lot-details h3 { margin: 0 0 28px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.lot-details dl { margin: 0 0 34px; }
.lot-details dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.lot-details dt { color: var(--muted); font-size: .85rem; }
.lot-details dd { margin: 0; text-align: right; font-weight: 800; }

.parameters { color: #fff; background: var(--green-900); }
.parameters-grid { display: grid; grid-template-columns: .8fr 1.3fr; gap: 90px; align-items: center; }
.parameters-copy > p:not(.eyebrow) { max-width: 470px; color: rgba(255,255,255,.72); }
.parameters-copy strong { color: #fff; }
.zone-code { margin-top: 38px; padding: 22px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.zone-code span { color: rgba(255,255,255,.64); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.zone-code strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.parameter-cards { display: grid; grid-template-columns: repeat(2,1fr); }
.parameter-cards article { min-height: 250px; padding: 36px 32px; border: 1px solid rgba(255,255,255,.14); }
.parameter-cards article:nth-child(2), .parameter-cards article:nth-child(4) { border-left: 0; }
.parameter-cards article:nth-child(3), .parameter-cards article:nth-child(4) { border-top: 0; }
.parameter-icon { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 3.4rem; line-height: 1; }
.parameter-icon sup, .parameter-icon small { font-family: var(--sans); font-size: .9rem; }
.parameter-svg { width: 54px; height: 54px; fill: none; stroke: var(--gold-light); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.parameter-cards h3 { margin: 28px 0 6px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.parameter-cards p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }

.vision { background: var(--cream); }
.vision-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 72px; align-items: center; }
.vision-image { position: relative; overflow: hidden; box-shadow: var(--shadow); }
.vision-image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; }
.vision-copy > p:not(.eyebrow) { color: var(--muted); }
.vision-copy ul { margin: 30px 0 0; padding: 0; list-style: none; }
.vision-copy li { position: relative; padding: 11px 0 11px 30px; border-bottom: 1px solid var(--line); font-weight: 650; }
.vision-copy li::before { content: ""; position: absolute; left: 0; top: 18px; width: 12px; height: 6px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

.gallery-section { background: var(--paper); }
.gallery-heading { margin-bottom: 42px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; min-width: 0; aspect-ratio: 4 / 3; padding: 0; overflow: hidden; border: 0; background: var(--green-950); box-shadow: 0 14px 38px rgba(6,38,28,.1); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .3s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(4,28,20,.68)); opacity: .76; transition: opacity .25s; }
.gallery-item span { position: absolute; right: 16px; bottom: 12px; z-index: 1; color: #fff; font-family: var(--serif); font-size: 1.15rem; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.035); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

body.lightbox-open { overflow: hidden; }
.lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; border: 0; color: #fff; background: rgba(2,16,11,.96); }
.lightbox::backdrop { background: rgba(2,16,11,.96); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox-inner { position: relative; width: 100%; height: 100%; display: grid; grid-template-columns: 74px minmax(0, 1fr) 74px; align-items: center; gap: 16px; padding: 56px 24px 24px; }
.lightbox figure { min-width: 0; margin: 0; display: grid; place-items: center; gap: 14px; }
.lightbox-image { max-width: 100%; max-height: calc(100dvh - 120px); object-fit: contain; box-shadow: 0 28px 90px rgba(0,0,0,.44); }
.lightbox-caption { color: rgba(255,255,255,.68); font-size: .8rem; letter-spacing: .09em; text-align: center; text-transform: uppercase; }
.lightbox-close, .lightbox-nav { display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; color: #fff; background: rgba(255,255,255,.06); cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.lightbox-close:hover, .lightbox-nav:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.14); }
.lightbox-close:focus-visible, .lightbox-nav:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.lightbox-close { position: absolute; top: 18px; right: 22px; z-index: 2; width: 44px; height: 44px; }
.lightbox-nav { width: 54px; height: 54px; justify-self: center; }
.lightbox-nav:hover { transform: scale(1.06); }
.lightbox-close svg, .lightbox-nav svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.contact { color: #fff; background: var(--green-950); }
.contact-inner { display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: end; }
.contact-links { border-top: 1px solid rgba(255,255,255,.18); }
.contact-links a { display: grid; grid-template-columns: 100px 1fr 28px; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.18); text-decoration: none; }
.contact-links span { color: rgba(255,255,255,.55); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-links strong { font-size: 1rem; overflow-wrap: anywhere; }
.contact-links svg { width: 24px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; transition: transform .2s; }
.contact-links a:hover svg { transform: translateX(5px); }
.contact-links .maps-label { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.72); }
.contact-links .maps-logo { width: 25px; height: 25px; flex: 0 0 auto; fill: initial; stroke: none; }
.contact-links .maps-link:hover .maps-logo { transform: translateY(-2px); }
.contact-form-panel { margin-top: 74px; padding-top: 64px; display: grid; grid-template-columns: minmax(240px, .62fr) minmax(0, 1.38fr); gap: 80px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-form-intro h3 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1; }
.contact-form-intro > p:not(.eyebrow) { max-width: 360px; color: rgba(255,255,255,.64); }
.contact-form { min-width: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: rgba(255,255,255,.76); font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 15px; border: 1px solid rgba(255,255,255,.24); border-radius: 0; outline: 0; color: #fff; background: rgba(255,255,255,.055); font: inherit; transition: border-color .2s, background .2s, box-shadow .2s; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-light); background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(224,199,127,.13); }
.form-wide { grid-column: 1 / -1; }
.form-captcha { max-width: 260px; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-submit-row { margin-top: 28px; display: flex; align-items: center; gap: 22px; }
.form-submit-row .button { border: 0; cursor: pointer; }
.form-submit-row .button:disabled { cursor: wait; opacity: .65; }
.form-status { margin: 0; color: rgba(255,255,255,.76); font-size: .92rem; }
.form-status.is-success { color: #aee6b9; }
.form-status.is-error { color: #ffd1c9; }

.site-footer { padding: 34px 0; background: #041c14; color: rgba(255,255,255,.56); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner img { width: 150px; height: 70px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-inner p, .footer-inner a { margin: 0; font-size: .78rem; }
.footer-inner a { color: rgba(255,255,255,.8); text-decoration: none; }

@media (max-width: 980px) {
  .container { width: min(100% - 36px, 820px); }
  .section { padding: 82px 0; }
  .header-inner { min-height: 64px; }
  .brand { width: 154px; height: 64px; }
  .header-phone span { display: none; }
  .header-phone { padding: 11px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 92px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 10px; border: 1px solid rgba(255,255,255,.17); background: rgba(6,38,28,.97); box-shadow: 0 20px 50px rgba(0,0,0,.24); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 12px; }
  .main-nav a::after { display: none; }
  .hero { min-height: 660px; height: 84vh; }
  .hero-location { top: 104px; right: 18px; }
  .hero h1 { font-size: clamp(2.75rem, 7vw, 4.4rem); }
  .hero-meta-grid { grid-template-columns: repeat(2,1fr); }
  .hero-meta-grid > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.14); }
  .hero-meta-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .lot-explorer { grid-template-columns: 1fr; }
  .lot-map-canvas { aspect-ratio: 1041 / 702; }
  .parameters-grid, .vision-grid, .contact-inner, .contact-form-panel { grid-template-columns: 1fr; gap: 50px; }
  .vision-grid { gap: 44px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 520px); }
  .section { padding: 68px 0; }
  .site-header { padding-top: 10px; }
  .header-inner { gap: 10px; }
  .brand { width: 138px; height: 56px; }
  .header-phone { display: none; }
  .hero { min-height: 760px; height: auto; align-items: flex-start; }
  .hero-media img { object-position: 52% 50%; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,27,19,.9), rgba(4,27,19,.34)), linear-gradient(0deg, rgba(4,27,19,.82), transparent 58%); }
  .hero-location { top: 88px; right: 14px; gap: 9px; padding: 9px 12px 9px 10px; }
  .hero-location svg { width: 20px; height: 20px; }
  .hero-location strong { font-size: .64rem; }
  .hero-location small { font-size: .64rem; }
  .hero-content { padding-top: clamp(190px, 29svh, 245px); padding-bottom: 140px; }
  .hero h1 { max-width: 520px; font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .hero h1 br { display: none; }
  .hero-lead { margin: 22px 0 28px; font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 340px; }
  .hero-meta-grid > div { padding: 12px 14px; }
  .hero-meta strong { font-size: 1.2rem; }
  .hero-meta span { font-size: .68rem; line-height: 1.35; }
  .section-heading h2, .parameters h2, .vision h2, .contact h2 { font-size: 2.55rem; }
  .lot-map-wrap { overflow: hidden; }
  .lot-map-canvas { width: 100%; height: auto; flex-basis: 100%; aspect-ratio: 1041 / 702; }
  .lot-map { object-fit: contain; }
  .lot-pin { width: 16px; height: 16px; border-width: 1px; font-size: .5rem; }
  .lot-pin.is-active { box-shadow: 0 0 0 3px rgba(201,170,95,.24), 0 4px 12px rgba(0,0,0,.28); }
  .lot-details { padding: 38px 24px; }
  .lot-number span { font-size: 4rem; }
  .parameter-cards { grid-template-columns: 1fr; }
  .parameter-cards article { min-height: auto; }
  .parameter-cards article:nth-child(n) { border: 1px solid rgba(255,255,255,.14); border-top: 0; }
  .parameter-cards article:first-child { border-top: 1px solid rgba(255,255,255,.14); }
  .vision-image img { aspect-ratio: 4 / 3; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .lightbox-inner { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0, 1fr) 58px; gap: 8px; padding: 62px 14px 14px; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; align-self: stretch; }
  .lightbox-image { max-height: calc(100dvh - 150px); }
  .lightbox-nav { grid-row: 2; width: 48px; height: 48px; }
  .lightbox-prev { grid-column: 1; justify-self: end; margin-right: 8px; }
  .lightbox-next { grid-column: 2; justify-self: start; margin-left: 8px; }
  .contact-links a { grid-template-columns: 72px 1fr 24px; gap: 12px; }
  .contact-links strong { font-size: .88rem; }
  .contact-form-panel { margin-top: 54px; padding-top: 50px; gap: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}

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