/* ==========================================================================
   Електросервіс+ — ребрендинг 2026
   ========================================================================== */

:root {
  --bg:            #171B23;
  --bg-deep:       #0E1116;
  --bg-band:       #1B202A;
  --panel:         #1D222C;
  --panel-hover:   #212733;
  --accent:        #B5E550;
  --accent-hi:     #CBEF7C;
  --text:          #E7EAE4;
  --text-strong:   #FFFFFF;
  --text-soft:     #C4CBD3;
  --text-mute:     #8B94A0;
  --text-dim:      #7E8794;
  --line:          rgba(255, 255, 255, .07);
  --line-strong:   rgba(255, 255, 255, .12);
  --line-accent:   rgba(181, 229, 80, .16);

  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  --pad: 56px;
  --maxw: 1440px;
  --header-h: 128px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }

a { color: var(--accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent-hi); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; color: var(--text-strong); }

::selection { background: var(--accent); color: var(--bg); }

.shell { max-width: var(--maxw); margin: 0 auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------- top bar */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--pad);
  height: 44px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--text-mute);
}

.topbar__contacts { display: flex; gap: 28px; align-items: center; }
.topbar a { color: var(--text-mute); }
.topbar a:hover { color: var(--accent-hi); }
.topbar a.is-accent { color: var(--accent); }

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(23, 27, 35, .96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--pad);
  transition: padding .22s ease;
}

.site-header.is-stuck .site-header__inner { padding-top: 14px; padding-bottom: 14px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand:hover { color: inherit; }
.brand__mark { height: 40px; width: auto; transition: height .22s ease; }
.site-header.is-stuck .brand__mark { height: 32px; }
.brand__text { display: flex; flex-direction: column; gap: 4px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: .1em;
  color: var(--text-strong);
  white-space: nowrap;
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__mobile-contacts { display: none; }
.nav__link { font-size: 14px; color: #C6CCD2; white-space: nowrap; }
.nav__link:hover, .nav__link.is-active { color: var(--accent); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 0;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { padding: 11px 20px; background: var(--accent); color: var(--bg); font-size: 13px; }
.btn--primary:hover { background: var(--accent-hi); color: var(--bg); }
.btn--lg { padding: 17px 32px; font-size: 15px; letter-spacing: .02em; }
.btn--ghost {
  padding: 17px 32px; font-size: 15px; font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .28); color: var(--text-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-strong);
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.burger span {
  display: block; position: relative;
  width: 20px; height: 1.5px; background: var(--text-strong);
  transition: background .18s ease;
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0;
  width: 20px; height: 1.5px; background: var(--text-strong);
  transition: transform .22s ease, top .22s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------------ hero */

.hero { position: relative; padding: 96px var(--pad) 72px; overflow: hidden; }
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: right center; opacity: .62;
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, #171B23 18%, rgba(23,27,35,.72) 55%, rgba(23,27,35,.35) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(181,229,80,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181,229,80,.07) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: end;
}
.hero__copy { display: flex; flex-direction: column; gap: 30px; max-width: 780px; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em;
  color: var(--accent); text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; background: var(--accent);
  animation: esPulse 2.4s ease-in-out infinite;
}

.hero h1 {
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--text-strong);
  text-wrap: pretty;
}
.hero h1 em { font-style: normal; font-weight: 600; color: var(--accent); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }

.hero__facts { display: flex; flex-direction: column; border-left: 1px solid rgba(181,229,80,.3); }
.fact { padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,.09); }
.fact:last-child { border-bottom: 0; }
.fact__num { font-family: var(--font-display); font-weight: 300; font-size: 40px; color: var(--accent); line-height: 1; }
.fact__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: #99A2AD; margin-top: 8px; }
.fact__text { font-family: var(--font-display); font-weight: 300; font-size: 22px; color: var(--text-strong); line-height: 1.25; }

/* --------------------------------------------------------------- section */

.section { padding: 88px var(--pad); }
.section--tight { padding-top: 0; }
.section--band { background: var(--bg-band); border-top: 1px solid var(--line); }
.section--ruled { border-top: 1px solid var(--line); }

.section-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 44px; }
.section-head__num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .14em; }
.section-head h2 { font-size: clamp(24px, 2.6vw, 34px); letter-spacing: .02em; }
.section-head__rule {
  flex: 1; height: 1px; background: var(--line-strong); min-width: 24px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s cubic-bezier(.22, .61, .36, 1) .12s;
}
.section-head.is-in .section-head__rule { transform: scaleX(1); }
.section-head__note { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); white-space: nowrap; }

/* ---------------------------------------------------------------- offers */

.offers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.09);
}
.offer {
  background: var(--bg);
  padding: 30px 24px 34px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 260px;
  transition: background .2s ease;
}
.offer:hover { background: var(--panel); }
.offer__n { font-family: var(--font-mono); font-size: 34px; color: var(--accent); line-height: 1; }
.offer p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-soft); text-wrap: pretty; }

/* ----------------------------------------------------------- maintenance */

.maint { display: grid; grid-template-columns: 1fr 1.35fr; gap: 40px; align-items: start; }

.card { background: var(--panel); padding: 36px 34px 40px; }
/* акцентна картка: імпульс, що біжить під лаймовою межею */
.card--accent { border-top: 3px solid var(--accent); position: relative; overflow: hidden; }
.card--accent::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40%; height: 3px;
  background: linear-gradient(90deg, rgba(242,255,201,0), #F2FFC9 50%, rgba(242,255,201,0));
  animation: esSweep 3.6s cubic-bezier(.55, 0, .45, 1) infinite;
  pointer-events: none;
}
.card--plain { border-top: 3px solid rgba(255,255,255,.25); }
.card h3 {
  margin: 0 0 26px;
  font-weight: 500; font-size: 19px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-strong);
}

.checklist { display: flex; flex-direction: column; gap: 18px; margin: 0; padding: 0; list-style: none; }
.checklist li {
  display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.checklist b { font-family: var(--font-mono); font-size: 13px; font-weight: 400; color: var(--accent); }
.checklist span { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); }

.duolist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 34px;
  margin: 0; padding: 0; list-style: none;
}
.duolist li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; }
.duolist b { font-family: var(--font-mono); font-size: 12px; font-weight: 400; color: var(--text-dim); }
.duolist span { font-size: 13.5px; line-height: 1.55; color: #B6BEC7; }

/* ------------------------------------------------------------ wide strip */

.strip { position: relative; height: 280px; overflow: hidden; }
.strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.strip__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,27,35,.9) 0%, rgba(23,27,35,.25) 60%); }
.strip__copy {
  position: absolute; left: var(--pad); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px; padding-right: 24px;
}
.strip__copy::before { content: ''; width: 44px; height: 2px; background: var(--accent); }
.strip__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; color: var(--text-strong); max-width: 520px; }
.strip__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: #9EA7B2; text-transform: uppercase; }

/* ----------------------------------------------------------------- docs */

.docs-layout { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.docs-intro h2 { margin: 14px 0 16px; font-size: clamp(24px, 2.6vw, 34px); }
.docs-intro p { margin: 0; font-size: 14px; line-height: 1.65; color: #98A1AC; }
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.doc {
  background: #FFF; padding: 10px; height: 300px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; cursor: zoom-in; border: 0;
}
.doc img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .3s ease; }
.doc:hover img { transform: scale(1.03); }

/* -------------------------------------------------------------- reps */

.reps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rep { display: grid; grid-template-columns: 190px 1fr; gap: 30px; align-items: center; background: var(--panel); padding: 32px 34px; }
.rep__logo { background: #FFF; height: 96px; display: flex; align-items: center; justify-content: center; padding: 12px; }
.rep__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.rep__name { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--text-strong); margin-bottom: 8px; }
.rep p { margin: 0; font-size: 14px; line-height: 1.6; color: #A8B1BB; }

/* -------------------------------------------------------------- objects */

.objects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.09); margin: 0; padding: 0; list-style: none; }
.objects li {
  background: var(--bg); padding: 28px 26px 32px;
  display: flex; align-items: flex-start; gap: 16px; min-height: 130px;
  font-size: 15px; line-height: 1.6; color: #D2D8DE; text-wrap: pretty;
  transition: background .2s ease;
}
.objects li:hover { background: var(--panel); }
.objects li::before {
  content: ''; width: 10px; height: 10px; margin-top: 7px;
  flex: 0 0 auto; border: 2px solid var(--accent);
}

/* ------------------------------------------------------------ portfolio */

.folio { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.folio__item {
  position: relative; overflow: hidden; background: var(--panel);
  height: 224px; border: 0; padding: 0; cursor: zoom-in; display: block; width: 100%;
}
.folio__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.folio__item:hover img { transform: scale(1.05); }
.folio__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,31,.88), transparent 58%);
}
.folio__caption {
  position: absolute; left: 18px; bottom: 16px; right: 18px; z-index: 2;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em;
  color: #E4E8ED; text-align: left;
}

/* ------------------------------------------------------------- partners */

.partners { padding: 72px 0 76px; background: var(--bg-band); border-top: 1px solid var(--line); overflow: hidden; }
.partners .section-head { padding: 0 var(--pad); margin-bottom: 36px; }
.marquee { display: flex; width: max-content; gap: 16px; animation: esMarquee 46s linear infinite; }
.partners:hover .marquee { animation-play-state: paused; }
.marquee__item {
  width: 168px; height: 96px; background: #FFF;
  display: flex; align-items: center; justify-content: center; padding: 14px; flex: 0 0 auto;
}
.marquee__item img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* -------------------------------------------------------------- contact */

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact h2 { margin: 14px 0 36px; font-size: clamp(24px, 2.6vw, 34px); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 40px; }
.contact__span { grid-column: span 2; }
.contact__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  color: var(--text-dim); text-transform: uppercase; margin-bottom: 14px;
}
.contact__list { display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; list-style: none; }
.contact__list a { color: var(--text); }
.contact__list a:hover { color: var(--accent); }
.contact__list--phone { font-size: 17px; }
.contact__list--mail { font-size: 15px; word-break: break-word; }
.contact__address { font-size: 17px; color: var(--text); }

.map { min-height: 320px; background: repeating-linear-gradient(135deg, #1D222C 0 10px, #212733 10px 20px); }
.map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.35) contrast(1.05); }

/* --------------------------------------------------------------- footer */

.site-footer {
  padding: 44px var(--pad);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__brand img { height: 28px; width: auto; }
.site-footer__brand span { font-family: var(--font-display); font-size: 14px; letter-spacing: .1em; color: #98A1AC; }
.site-footer__nav {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 13px; max-width: 720px; justify-content: flex-end;
}
.site-footer__nav a { color: var(--text-dim); }
.site-footer__nav a:hover { color: var(--accent); }
.site-footer__legal {
  width: 100%; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: #5F6875;
}

/* ------------------------------------------------------------- lightbox */

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 12, 16, .94);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 22px; text-align: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: #C6CCD2;
}
.lightbox__close, .lightbox__nav {
  position: absolute; background: transparent; border: 1px solid var(--line-strong);
  color: #FFF; cursor: pointer; width: 46px; height: 46px;
  font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: border-color .18s ease, color .18s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--accent); color: var(--accent); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------- reveal */

/* контейнер лише проявляється — щоб не блимала сітка розділювачів */
.reveal { opacity: 0; transition: opacity .35s ease; }
.reveal.is-in { opacity: 1; }

/* каскад: кожен наступний елемент запізнюється на 70 мс */
.reveal > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, .61, .36, 1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.is-in > * { opacity: 1; transform: none; }

/* -------------------------------------------------------------- to top */

.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 55;
  width: 46px; height: 46px;
  background: var(--accent); color: var(--bg);
  border: 0; cursor: pointer; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, background .18s ease;
}
.to-top.is-shown { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--accent-hi); }

/* ------------------------------------------------------------ keyframes */

@keyframes esMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes esPulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes esSweep {
  0%        { transform: translateX(-120%); opacity: 0; }
  12%       { opacity: 1; }
  58%       { transform: translateX(320%); opacity: 0; }
  100%      { transform: translateX(320%); opacity: 0; }
}

/* ============================== responsive ============================== */

@media (max-width: 1280px) {
  :root { --pad: 40px; }
  .offers { grid-template-columns: repeat(3, 1fr); }
  .offer { min-height: 220px; }
}

@media (max-width: 1080px) {
  :root { --header-h: 76px; }
  .topbar { display: none; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--line);
    padding: 8px 0 20px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: 14px var(--pad); font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav .btn--primary { margin: 18px var(--pad) 0; text-align: center; padding: 15px 20px; font-size: 14px; }
  .nav__mobile-contacts {
    display: flex; flex-direction: column; gap: 6px;
    padding: 20px var(--pad) 0; font-family: var(--font-mono); font-size: 12px; color: var(--text-mute);
  }
  .burger { display: flex; }

  .hero { padding: 64px var(--pad) 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero__facts { flex-direction: row; border-left: 0; border-top: 1px solid rgba(181,229,80,.3); }
  .fact { flex: 1; border-bottom: 0; border-right: 1px solid rgba(255,255,255,.09); padding-left: 0; }
  .fact:first-child { padding-left: 0; }
  .fact:last-child { border-right: 0; }

  .maint { grid-template-columns: 1fr; }
  .docs-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .folio { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 64px var(--pad); }
}

@media (max-width: 860px) {
  :root { --pad: 24px; }
  .offers { grid-template-columns: repeat(2, 1fr); }
  .objects { grid-template-columns: repeat(2, 1fr); }
  .reps { grid-template-columns: 1fr; }
  .duolist { grid-template-columns: 1fr; }
  .folio { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .doc { height: 200px; }
  .strip { height: 220px; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 24px; }
  .site-footer__nav { justify-content: flex-start; max-width: none; }
}

@media (max-width: 620px) {
  .section { padding: 52px var(--pad); }
  .section-head { flex-wrap: wrap; gap: 10px 14px; margin-bottom: 28px; }
  .section-head__rule { display: none; }
  .offers { grid-template-columns: 1fr; }
  .offer { min-height: 0; padding: 24px 20px 26px; }
  .objects { grid-template-columns: 1fr; }
  .objects li { min-height: 0; padding: 22px 20px; }
  .card { padding: 28px 22px 32px; }
  .hero__facts { flex-direction: column; }
  .fact { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); padding: 14px 0; }
  .fact:last-child { border-bottom: 0; }
  .hero__actions .btn { flex: 1 1 100%; text-align: center; }
  .folio { grid-template-columns: 1fr; }
  .folio__item { height: 200px; }
  .docs-grid { grid-template-columns: 1fr; }
  .doc { height: 260px; }
  .rep { grid-template-columns: 1fr; gap: 20px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__span { grid-column: span 1; }
  .strip__copy { left: var(--pad); right: var(--pad); }
  .lightbox { padding: 20px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { animation: none; }
  .eyebrow::before { animation: none; opacity: 1; }
  .reveal, .reveal > * { opacity: 1; transform: none; transition: none; }
  .section-head__rule { transform: none; }
  .card--accent::before { animation: none; opacity: 0; }
  * { transition-duration: .01ms !important; }
}

@media print {
  .site-header, .topbar, .to-top, .lightbox, .partners { display: none; }
  body { background: #fff; color: #000; }
}
