:root {
  --ink: #20201d;
  --muted: #72716a;
  --paper: #f8f7f2;
  --white: #fff;
  --line: #dedcd2;
  --yellow: #f7d63e;
  --orange: #f29455;
  --peach: #fde7d2;
  --sage: #dce5d6;
  --accent: #ef8d50;
  --gradient: linear-gradient(135deg, var(--yellow), var(--orange));
  --heading: 'Unbounded', sans-serif;
  --body: 'Manrope', sans-serif;
  --container: 1240px;
  --radius: 28px;
  --shadow: 0 22px 60px rgba(40, 38, 30, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--body); line-height: 1.55; }
body, button, input { font-family: var(--body); }
img { display: block; max-width: 100%; }
a { color: inherit; }
svg { display: block; }
main { position: relative; overflow: hidden; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 100px; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 100; height: 82px; border-bottom: 1px solid rgba(32,32,29,.09); background: rgba(248,247,242,.88); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.header-logo { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: var(--heading); font-size: 12px; letter-spacing: .03em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.header-nav { display: flex; align-items: center; gap: clamp(24px, 4vw, 52px); margin-left: auto; }
.header-nav a { position: relative; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.header-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--ink); transition: right .3s ease; }
.header-nav a:hover::after { right: 0; }
.header-cta, .btn { display: inline-flex; align-items: center; justify-content: center; gap: 22px; border: 0; border-radius: 100px; text-decoration: none; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease; }
.header-cta { padding: 12px 18px 12px 22px; color: #fff; background: var(--ink); font-size: 12px; }
.header-cta span, .btn span { font-size: 17px; }
.header-cta:hover, .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(32,32,29,.16); }

.journey-line { position: absolute; z-index: 0; inset: 180px 0 auto; height: 2750px; pointer-events: none; opacity: .8; }
.journey-line > svg { width: 100%; height: 100%; overflow: visible; }
.journey-line path { fill: none; stroke-linecap: round; }
.journey-line__base { stroke: #d8d7ce; stroke-width: 2; stroke-dasharray: 7 12; }
.journey-line__active { stroke: url(#routeGradient); stroke: var(--orange); stroke-width: 3; stroke-dasharray: 1; transition: stroke-dashoffset .1s linear; }
.journey-node { position: absolute; width: 82px; height: 82px; display: grid; place-items: center; border: 1px solid rgba(32,32,29,.1); border-radius: 50%; background: rgba(248,247,242,.9); box-shadow: 0 14px 35px rgba(32,32,29,.08); will-change: transform; }
.journey-node svg { width: 36px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.journey-node--heart { top: 480px; right: 23%; }
.journey-node--box { top: 1210px; left: 24%; background: #fff6d8; }
.journey-node--hands { top: 2020px; right: 25%; background: #fbe9dc; }

.hero { position: relative; z-index: 1; min-height: calc(100vh - 82px); padding: clamp(70px, 9vw, 128px) 0 46px; }
.hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow--one { width: 580px; height: 580px; right: -200px; top: -210px; background: radial-gradient(circle, rgba(247,214,62,.3), transparent 68%); }
.hero-glow--two { width: 440px; height: 440px; left: -250px; bottom: -180px; background: radial-gradient(circle, rgba(242,148,85,.18), transparent 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(40px, 8vw, 120px); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 23px; color: #9c612f; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 25px; height: 1px; background: currentColor; }
.hero-title, .section-title { margin: 0; font-family: var(--heading); font-weight: 600; letter-spacing: -.045em; line-height: 1.08; }
.hero-title { max-width: 760px; font-size: clamp(42px, 5.7vw, 82px); }
.hero-title em { color: var(--accent); font-style: normal; }
.hero-subtitle { max-width: 620px; margin: 30px 0 36px; color: var(--muted); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.btn { padding: 17px 22px 17px 27px; font-size: 14px; }
.btn--primary { color: var(--ink); background: var(--gradient); box-shadow: 0 12px 30px rgba(242,148,85,.25); }
.text-link { font-size: 13px; font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 7px; transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }

.hero-scene { position: relative; aspect-ratio: 1; max-width: 500px; width: 100%; margin-inline: auto; will-change: transform; }
.hero-orbit { position: absolute; border: 1px solid rgba(32,32,29,.13); border-radius: 50%; }
.hero-orbit::after { content: ''; position: absolute; width: 10px; height: 10px; top: 8%; left: 20%; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 8px rgba(242,148,85,.12); }
.hero-orbit--outer { inset: 2%; animation: spin 38s linear infinite; }
.hero-orbit--inner { inset: 15%; border-style: dashed; animation: spin 25s linear infinite reverse; }
.hero-orbit--inner::after { top: auto; left: auto; right: 3%; bottom: 31%; background: var(--yellow); box-shadow: 0 0 0 8px rgba(247,214,62,.16); }
.hero-scene__core { position: absolute; inset: 26%; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: #fff; box-shadow: 0 28px 70px rgba(40,38,30,.14), inset 0 0 0 1px rgba(32,32,29,.06); }
.hero-scene__core::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(247,214,62,.18), rgba(242,148,85,.06)); }
.hero-scene__core img { position: relative; width: 62%; height: 62%; object-fit: contain; }
.hero-tag { position: absolute; min-width: 118px; padding: 14px 17px; display: flex; align-items: baseline; gap: 7px; border: 1px solid rgba(32,32,29,.1); border-radius: 17px; background: rgba(255,255,255,.86); box-shadow: 0 14px 35px rgba(32,32,29,.09); backdrop-filter: blur(10px); }
.hero-tag strong { font-family: var(--heading); font-size: 20px; }
.hero-tag span { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.hero-tag--one { top: 11%; right: 0; }
.hero-tag--two { left: 0; top: 50%; }
.hero-tag--three { right: 6%; bottom: 6%; }
.hero-dot { position: absolute; width: 17px; height: 17px; border: 4px solid var(--paper); border-radius: 50%; background: var(--orange); box-shadow: 0 4px 12px rgba(32,32,29,.16); }
.hero-dot--one { top: 18%; left: 10%; }
.hero-dot--two { top: 42%; right: 11%; background: var(--yellow); }
.hero-dot--three { bottom: 15%; left: 22%; background: #a9bea2; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-counters { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); margin-top: clamp(70px, 9vw, 120px); border-top: 1px solid var(--line); }
.hero-counter { padding: 27px 28px 8px; border-right: 1px solid var(--line); }
.hero-counter:first-child { padding-left: 0; }
.hero-counter:last-child { border-right: 0; }
.hero-counter__num { display: flex; align-items: baseline; font-family: var(--heading); font-size: clamp(28px, 3vw, 42px); font-weight: 600; line-height: 1; }
.hero-counter__suffix { color: var(--accent); font-size: .62em; }
.hero-counter__label { margin-top: 9px; color: var(--muted); font-size: 12px; }

.section { position: relative; z-index: 1; padding: clamp(90px, 11vw, 150px) 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; align-items: end; margin-bottom: 65px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-title { font-size: clamp(35px, 4.3vw, 62px); }
.section-lead { max-width: 500px; margin: 0 0 4px auto; color: var(--muted); font-size: 16px; line-height: 1.8; }
.how-section { background: rgba(255,255,255,.42); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step-card { min-height: 365px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.78); box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; transition: transform .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s ease; }
.step-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.step-card--accent { background: var(--peach); border-color: transparent; }
.step-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.step-card__num { color: #aaa89f; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.step-card__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); }
.step-card__icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { margin: auto 0 12px; font-family: var(--heading); font-size: 20px; font-weight: 600; letter-spacing: -.03em; }
.step-card p { min-height: 68px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.step-card a { margin-top: 20px; font-size: 12px; font-weight: 800; text-decoration: none; }
.step-card a span { float: right; }

.map-section { padding-top: clamp(90px, 11vw, 150px); background: #f1f0ea; }
.map-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; align-items: end; margin-bottom: 58px; }
.map-heading .eyebrow { grid-column: 1/-1; }
.map-stage { width: min(calc(100% - 40px), 1340px); margin: 0 auto; overflow: hidden; border: 1px solid rgba(32,32,29,.1); border-radius: 34px; background: #fff; box-shadow: 0 28px 80px rgba(32,32,29,.11); }
.map-stage__bar { height: 68px; padding: 0 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); font-size: 12px; }
.map-stage__bar > div { display: flex; align-items: center; gap: 10px; }
.map-stage__bar > span { color: var(--muted); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #72a66f; box-shadow: 0 0 0 6px rgba(114,166,111,.12); }
.map-layout { height: 650px; display: grid; grid-template-columns: 350px minmax(0,1fr); }
.shtaby-list-wrap { min-width: 0; padding: 20px 14px 14px 20px; display: flex; flex-direction: column; border-right: 1px solid var(--line); background: #fbfaf7; }
.shtaby-search { position: relative; margin-right: 6px; }
.shtaby-search__icon { position: absolute; z-index: 1; left: 16px; top: 50%; width: 18px; transform: translateY(-50%); fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; }
.shtaby-search__input { width: 100%; height: 49px; padding: 0 16px 0 45px; border: 1px solid var(--line); border-radius: 14px; outline: 0; background: #fff; color: var(--ink); font-size: 13px; transition: border-color .2s, box-shadow .2s; }
.shtaby-search__input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,148,85,.12); }
.list-caption { padding: 23px 8px 12px; display: flex; justify-content: space-between; align-items: baseline; }
.list-caption span { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.list-caption small { color: var(--muted); font-size: 10px; }
.shtaby-list { min-height: 0; flex: 1; margin: 0; padding: 0 6px 0 0; display: flex; flex-direction: column; gap: 7px; overflow-y: auto; list-style: none; scrollbar-width: thin; scrollbar-color: #c6c3b8 transparent; }
.shtab-card { position: relative; padding: 15px 38px 15px 15px; border: 1px solid transparent; border-radius: 14px; background: #fff; cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.shtab-card::after { content: '›'; position: absolute; right: 16px; top: 17px; color: #aaa89f; font-size: 18px; }
.shtab-card:hover { transform: translateX(3px); border-color: var(--line); }
.shtab-card.is-active { border-color: rgba(242,148,85,.45); background: #fff3e9; }
.shtab-card.is-active::after { transform: rotate(90deg); }
.shtab-card.is-hidden, .shtaby-list__empty.is-hidden { display: none; }
.shtab-card__name { margin-bottom: 5px; font-family: var(--heading); font-size: 11px; font-weight: 600; }
.shtab-card__address { color: var(--muted); font-size: 10.5px; line-height: 1.5; }
.shtab-card__panel { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(32,32,29,.1); flex-direction: column; gap: 7px; font-size: 10.5px; }
.shtab-card.is-active .shtab-card__panel { display: flex; }
.shtab-card__team-item { display: flex; flex-direction: column; }
.shtab-card__team-role { color: var(--muted); }
.shtab-card__phone { font-weight: 800; }
.shtab-card__socials { display: flex; gap: 7px; margin-top: 5px; }
.shtaby-list__empty { padding: 20px 12px; color: var(--muted); font-size: 12px; }
.map-wrap { position: relative; min-width: 0; height: 100%; overflow: hidden; background: #e9e9e2; }
.map { width: 100%; height: 100%; }
.map-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; text-align: center; background: radial-gradient(circle at 50% 44%, #fff 0, #f7f4e8 68%, #eeeade 100%); }
.map-fallback[hidden] { display: none; }
.map-fallback__art { width: min(55%, 400px); margin-bottom: 12px; }
.map-fallback__art svg { width: 100%; fill: none; stroke: #b9b7ae; stroke-width: 1.5; stroke-linejoin: round; }
.map-fallback__art circle { fill: var(--orange); stroke: #fff; stroke-width: 4; }
.map-fallback__art .fallback-route { stroke: var(--orange); stroke-width: 3; stroke-dasharray: 6 8; }
.map-fallback strong { font-family: var(--heading); font-size: 18px; }
.map-fallback p { max-width: 430px; margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.map-fallback code { padding: 2px 6px; border-radius: 5px; background: #fff; }
.ymap-pin { width: 27px; height: 27px; border: 3px solid #fff; border-radius: 50% 50% 50% 0; background: var(--orange); box-shadow: 0 5px 15px rgba(32,32,29,.25); cursor: pointer; transform: rotate(-45deg); }
.ymap-cluster { min-width: 42px; height: 42px; padding: 0 10px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 100px; background: var(--gradient); box-shadow: 0 5px 18px rgba(32,32,29,.25); font-family: var(--heading); font-size: 12px; font-weight: 700; cursor: pointer; }
.map-popup { position: absolute; z-index: 10; left: 24px; bottom: 24px; width: min(330px, calc(100% - 48px)); padding: 20px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.map-popup__close { position: absolute; right: 12px; top: 10px; border: 0; background: none; color: var(--muted); font-size: 22px; cursor: pointer; }
.balloon-content { font-size: 11px; }
.balloon-content h3 { padding-right: 22px; margin: 0 0 8px; font-family: var(--heading); font-size: 13px; }
.balloon-content p { margin: 5px 0; }
.badge-round { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--gradient); font-size: 10px; font-weight: 800; text-decoration: none; }

.news-section { background: #fff; }
.news-heading { margin-bottom: 45px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.news-badge { margin: 0 0 7px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); font-size: 11px; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.news-status { color: var(--muted); }
.news-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .35s ease, box-shadow .35s ease; }
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.news-card__media, .news-card__media-placeholder { width: 100%; height: 220px; object-fit: cover; }
.news-card__media-placeholder { display: grid; place-items: center; background: linear-gradient(145deg, #f9dc62, #f6b27c); }
.news-card__media-placeholder svg { width: 45px; opacity: .65; }
.news-card__body { min-height: 240px; padding: 22px; display: flex; flex-direction: column; gap: 13px; }
.news-card__meta { display: flex; justify-content: space-between; align-items: center; }
.source-badge { padding: 5px 9px; border-radius: 100px; color: #fff; font-size: 9px; font-weight: 800; }
.source-badge--vk { background: #4a76a8; }.source-badge--tg { background: #229ed9; }.source-badge--other { background: #888; }
.news-card__date { color: var(--muted); font-size: 10px; }
.news-card__text { flex: 1; margin: 0; font-size: 13px; line-height: 1.7; }
.news-card__link { color: #a55e2c; font-size: 11px; font-weight: 800; text-decoration: none; }

.site-footer { padding: 70px 0 22px; color: #fff; background: var(--ink); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-logo { width: 130px; }
.footer-brand p { margin: 24px 0 0; color: #aaa9a3; font-size: 13px; }
.footer-note { margin: 0 0 14px; color: #85847f; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-contacts p { margin: 7px 0; font-size: 13px; }
.footer-contacts a { text-decoration: none; }
.social-links { display: flex; gap: 8px; }
.social-badge { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font-size: 10px; font-weight: 800; text-decoration: none; }
.footer-bottom { margin-top: 60px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: #777671; font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #aaa9a3; text-decoration: none; }
.back-to-top { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; opacity: 0; visibility: hidden; transform: translateY(10px); color: #fff; background: var(--ink); box-shadow: 0 8px 30px rgba(32,32,29,.2); cursor: pointer; transition: .25s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.75,.2,1), transform .8s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.steps-grid .reveal:nth-child(2), .hero-counters .reveal:nth-child(2) { transition-delay: .08s; }
.steps-grid .reveal:nth-child(3), .hero-counters .reveal:nth-child(3) { transition-delay: .16s; }
.hero-counters .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 980px) {
  .header-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 25px; }
  .hero-title { font-size: clamp(40px, 6.8vw, 62px); }
  .hero-scene { max-width: 390px; }
  .section-heading, .map-heading { column-gap: 40px; }
  .map-layout { grid-template-columns: 300px minmax(0,1fr); }
  .journey-line { opacity: .45; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: 68px; }
  .header-logo { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 10px; }
  .brand-copy small { font-size: 8px; }
  .header-cta { padding: 10px 14px; font-size: 10px; }
  .header-cta span { display: none; }
  .journey-line { display: none; }
  .hero { min-height: auto; padding: 64px 0 36px; }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { text-align: left; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .hero-title { font-size: clamp(39px, 12vw, 54px); line-height: 1.1; }
  .hero-subtitle { margin: 22px 0 28px; font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 19px; }
  .btn { width: 100%; }
  .text-link { text-align: center; }
  .hero-scene { width: 88%; max-width: 390px; margin-top: 32px; }
  .hero-tag { min-width: 90px; padding: 10px 12px; }
  .hero-tag strong { font-size: 14px; }
  .hero-tag span { font-size: 8px; }
  .hero-counters { grid-template-columns: 1fr 1fr; margin-top: 45px; }
  .hero-counter { padding: 20px 16px; border-bottom: 1px solid var(--line); }
  .hero-counter:nth-child(odd) { padding-left: 0; }
  .hero-counter:nth-child(2) { border-right: 0; }
  .hero-counter__label { font-size: 10px; }
  .section { padding: 80px 0; }
  .section-heading, .map-heading { display: block; margin-bottom: 38px; }
  .section-title { font-size: clamp(33px, 10vw, 45px); }
  .section-lead { margin: 22px 0 0; font-size: 13px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 300px; }
  .map-stage { width: calc(100% - 20px); border-radius: 24px; }
  .map-stage__bar { height: 58px; padding: 0 16px; }
  .map-stage__bar > span { display: none; }
  .map-layout { height: auto; display: flex; flex-direction: column; }
  .map-wrap { order: -1; height: 390px; border-bottom: 1px solid var(--line); }
  .shtaby-list-wrap { height: 470px; padding: 16px 10px 12px 14px; border-right: 0; }
  .map-fallback__art { width: 68%; }
  .map-fallback strong { font-size: 14px; }
  .map-fallback p { font-size: 11px; }
  .news-heading { display: block; }
  .news-badge { display: inline-block; margin-top: 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card__media, .news-card__media-placeholder { height: 210px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { gap: 20px; }
}

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