/* =====================================================================
   ESSCON CONCRETE — "Bold Industrial"
   Hi-vis lime on steel-black. Anton display + Space Mono specs + Inter.
   Vanilla CSS, mobile-first, fast on 4G.
   ===================================================================== */

:root {
  --lime:        #A4C520;
  --lime-bright: #BCE02C;
  --lime-deep:   #6E8C0E;
  --ink:         #131416;   /* steel black */
  --ink-2:       #1B1D20;
  --ink-3:       #2A2D31;
  --steel:       #34383D;
  --text:        #14161A;
  --muted:       #5C6066;
  --muted-d:     rgba(255,255,255,.62);
  --concrete:    #ECECE6;   /* page bg */
  --concrete-2:  #E0E0D8;
  --concrete-3:  #CFCFC6;
  --white:       #ffffff;
  --line:        #14161A;
  --line-soft:   rgba(20,22,26,.16);
  --line-dark:   rgba(255,255,255,.14);

  --font-display: "Anton", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;
  --font-body:    "Inter", system-ui, sans-serif;

  --container: 1240px;
  --header-h:  74px;
  --shadow:    0 16px 40px -20px rgba(0,0,0,.5);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--concrete);
  line-height: 1.6; font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

/* ---------- Type ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .005em;
  color: var(--ink);
}
h1 { font-size: clamp(2.9rem, 9vw, 6rem); }
h2 { font-size: clamp(2.1rem, 5.5vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
p  { color: var(--muted); }
.lead { font-size: clamp(1.06rem, 1.9vw, 1.28rem); color: var(--text); max-width: 60ch; font-weight: 400; }
strong { color: var(--text); font-weight: 700; }

.kicker {
  font-family: var(--font-mono);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: "//"; color: var(--lime); }
.on-dark .kicker { color: var(--lime); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.on-dark p { color: var(--muted-d); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.ink { background: var(--ink); color: #fff; }
.ink-2 { background: var(--ink-2); color: #fff; }
.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; max-width: 58ch; }
.center { text-align: center; }
.section-head.center { margin-inline: auto; }

/* concrete texture on dark */
.tex { position: relative; }
.tex::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.tex > * { position: relative; }

/* hazard stripe */
.hazard { height: 8px; background: repeating-linear-gradient(45deg, var(--ink) 0 13px, var(--lime) 13px 26px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 28px; min-height: 52px;
  font-family: var(--font-mono); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 2px;
  transition: transform .15s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: var(--lime-bright); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--lime); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost--light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost--light:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.topline { height: 4px; background: var(--lime); position: fixed; inset: 0 0 auto 0; z-index: 60; }
.site-header {
  position: fixed; inset: 4px 0 auto 0; z-index: 55; height: var(--header-h);
  background: var(--ink); display: flex; align-items: center;
  border-bottom: 1px solid var(--ink-3);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; z-index: 70; }
.brand img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--font-mono); font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.74); position: relative; padding: 8px 0;
  transition: color .2s;
}
.nav a:hover { color: #fff; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--lime); transition: width .25s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--lime); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 700; font-size: .82rem; color: #fff; letter-spacing: .04em; }
.header-phone svg { width: 16px; height: 16px; color: var(--lime); }

.burger { display: none; width: 48px; height: 48px; border: none; background: transparent; position: relative; z-index: 70; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2.5px; background: var(--lime); transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 24px; }
.burger span:nth-child(3) { top: 31px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 56; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; padding: 100px 26px 40px;
  transform: translateY(-100%); transition: transform .4s var(--ease); visibility: hidden;
}
body.nav-open .mobile-nav { transform: none; visibility: visible; }
.mobile-nav a.m-link {
  font-family: var(--font-display); text-transform: uppercase; font-size: 2.4rem; color: #fff;
  padding: 14px 0; border-bottom: 1px solid var(--ink-3); display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a.m-link span.idx { font-family: var(--font-mono); font-size: .8rem; color: var(--lime); }
.mobile-nav a.m-link[aria-current="page"] { color: var(--lime); }
.mobile-foot { margin-top: 30px; display: grid; gap: 14px; }
.mobile-foot .m-contact { font-family: var(--font-mono); font-size: .78rem; color: var(--muted-d); letter-spacing: .04em; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; overflow: hidden; padding-top: var(--header-h); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,16,18,.5) 0%, rgba(15,16,18,.2) 40%, rgba(15,16,18,.96) 100%); }
.hero__inner { padding: clamp(30px,6vh,60px) 0 30px; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 .lime { color: var(--lime); }
.hero__sub { margin-top: 24px; max-width: 50ch; color: rgba(255,255,255,.84); font-size: clamp(1.05rem,1.9vw,1.25rem); }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
/* spec strip */
.spec-strip { border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: 1fr 1fr; }
.spec { padding: 18px 22px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.spec__v { font-family: var(--font-display); font-size: 1.7rem; color: var(--lime); line-height: 1; }
.spec__k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ---------- Marquee ---------- */
.marquee { background: var(--lime); border-block: 3px solid var(--ink); overflow: hidden; }
.marquee__track { display: inline-flex; gap: 0; white-space: nowrap; animation: marq 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); text-transform: uppercase; font-size: 1.35rem; color: var(--ink); padding: 12px 26px; display: inline-flex; align-items: center; gap: 26px; }
.marquee__track span::after { content: "◆"; font-size: .6rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Page hero ---------- */
.page-hero { position: relative; background: var(--ink); color: #fff; padding: calc(var(--header-h) + 60px) 0 56px; overflow: hidden; }
.page-hero .breadcrumb { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.page-hero .breadcrumb a:hover { color: var(--lime); }
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero h1 .lime { color: var(--lime); }
.page-hero p { color: var(--muted-d); margin-top: 18px; max-width: 56ch; }
.page-hero__num { position: absolute; right: -2%; top: 10%; font-family: var(--font-display); font-size: 28vw; line-height: .8; color: rgba(255,255,255,.04); pointer-events: none; user-select: none; }

/* ---------- Split / feature ---------- */
.split { display: grid; gap: clamp(30px,5vw,64px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media .frame { position: absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--lime); z-index: -1; }
.split__badge { position: absolute; left: 0; bottom: 0; background: var(--lime); color: var(--ink); padding: 16px 20px; }
.split__badge b { font-family: var(--font-display); font-size: 1.8rem; display: block; line-height: 1; }
.split__badge span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.bignum { font-family: var(--font-display); font-size: clamp(3rem,7vw,5rem); color: var(--lime); line-height: .8; }
.checklist { margin-top: 28px; display: grid; gap: 0; }
.checklist li { display: flex; gap: 14px; align-items: center; padding: 15px 0; border-top: 1px solid var(--line-soft); font-weight: 500; color: var(--text); }
.checklist li:last-child { border-bottom: 1px solid var(--line-soft); }
.checklist svg { flex: none; width: 20px; height: 20px; color: var(--lime-deep); }
.on-dark .checklist li { border-color: var(--line-dark); color: #fff; }
.on-dark .checklist svg { color: var(--lime); }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 2px solid var(--line); }
.card { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; padding: 26px 4px; border-bottom: 2px solid var(--line); transition: background .25s, padding .25s; }
.card:hover { background: var(--ink); padding-inline: 22px; }
.card__idx { font-family: var(--font-mono); font-weight: 700; font-size: .9rem; color: var(--lime-deep); }
.card:hover .card__idx { color: var(--lime); }
.card__main h3 { transition: color .25s; }
.card:hover .card__main h3 { color: #fff; }
.card__main p { margin-top: 6px; font-size: .98rem; max-width: 60ch; }
.card:hover .card__main p { color: var(--muted-d); }
.card__icon { width: 52px; height: 52px; color: var(--ink); transition: color .25s; }
.card:hover .card__icon { color: var(--lime); }
.card__icon svg { width: 100%; height: 100%; }
.card__arrow { color: var(--line); transition: color .25s, transform .25s; }
.card:hover .card__arrow { color: var(--lime); transform: translateX(6px); }
.card__arrow svg { width: 26px; height: 26px; }

/* services grid variant (on services page) */
.grid-cards { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--line); border: 2px solid var(--line); }
.gcard { background: var(--concrete); padding: 32px 26px; transition: background .25s; }
.gcard:hover { background: var(--white); }
.gcard__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.gcard__idx { font-family: var(--font-mono); font-weight: 700; color: var(--lime-deep); font-size: .85rem; letter-spacing: .08em; }
.gcard__icon { width: 40px; height: 40px; color: var(--ink); }
.gcard__icon svg { width: 100%; height: 100%; }
.gcard h3 { margin-bottom: 10px; }
.gcard p { font-size: .97rem; }

/* ---------- Stats (dark) ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid var(--line-dark); border-top: 1px solid var(--line-dark); }
.stat { padding: 30px 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem,6vw,3.6rem); color: var(--lime); line-height: .9; }
.stat__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-d); margin-top: 10px; }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: 1fr; gap: 0; }
.why__item { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line-dark); }
.why__num { font-family: var(--font-display); font-size: 2.2rem; color: var(--lime); line-height: .8; }
.why__item h3 { color: #fff; margin-bottom: 8px; }
.why__item p { color: var(--muted-d); font-size: .97rem; max-width: 52ch; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.step { background: var(--ink); padding: 30px 26px; }
.step__n { font-family: var(--font-display); font-size: 2.4rem; color: var(--lime); line-height: .8; margin-bottom: 16px; }
.step h3 { color: #fff; margin-bottom: 10px; font-size: 1.3rem; }
.step p { color: var(--muted-d); font-size: .95rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: 1fr; gap: 16px; }
.shot { position: relative; overflow: hidden; cursor: pointer; background: var(--ink); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; aspect-ratio: 16/10; }
.shot:hover img { transform: scale(1.05); }
.shot.feature img { aspect-ratio: 4/3; }
.shot__tag { position: absolute; left: 0; bottom: 0; background: var(--lime); color: var(--ink); font-family: var(--font-mono); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 9px 14px; }
.shot__zoom { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; background: var(--ink); color: var(--lime); display: grid; place-items: center; opacity: 0; transform: translateY(-6px); transition: .25s var(--ease); }
.shot:hover .shot__zoom { opacity: 1; transform: none; }
.shot__zoom svg { width: 18px; height: 18px; }
.gallery-note { margin-top: 22px; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.gallery-note::before { content: ""; width: 30px; height: 2px; background: var(--lime); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(10,11,12,.95); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; }
.lightbox__close, .lightbox__nav { position: absolute; background: var(--ink); border: 2px solid var(--ink-3); color: #fff; width: 52px; height: 52px; display: grid; place-items: center; transition: .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav.prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 22px; height: 22px; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; }
.cta .inner { display: grid; gap: 28px; align-items: center; }
.cta h2 { color: #fff; max-width: 16ch; }
.cta .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 16px; }
.info-block { border: 2px solid var(--line); }
.info-row { display: flex; gap: 18px; padding: 22px; border-bottom: 2px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row__icon { flex: none; width: 46px; height: 46px; background: var(--ink); color: var(--lime); display: grid; place-items: center; }
.info-row__icon svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.info-row a, .info-row p { color: var(--text); font-weight: 600; }
.info-row a:hover { color: var(--lime-deep); }
.info-row .sub { font-weight: 400; color: var(--muted); }
.map-embed { border: 2px solid var(--line); }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

/* form */
.form-card { border: 2px solid var(--line); background: var(--white); padding: 30px 26px; }
.form { display: grid; gap: 18px; }
.form .row { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-mono); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
.field label .req { color: var(--lime-deep); }
.field input, .field select, .field textarea {
  font: inherit; padding: 14px 15px; border: 2px solid var(--line-soft); background: var(--concrete);
  color: var(--text); width: 100%; min-height: 50px; border-radius: 0; transition: border-color .2s, background .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
.form__note { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .03em; color: var(--muted); }
.form-status { display: none; padding: 14px 16px; font-weight: 600; font-size: .95rem; border: 2px solid; }
.form-status.ok { display: block; background: rgba(164,197,32,.16); color: var(--lime-deep); border-color: var(--lime); }
.form-status.err { display: block; background: rgba(200,50,50,.08); color: #b3261e; border-color: #b3261e; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-d); padding: 72px 0 30px; position: relative; overflow: hidden; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 44px; position: relative; z-index: 1; }
.footer-brand img { height: 34px; margin-bottom: 20px; }
.footer-brand p { max-width: 34ch; font-size: .94rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col p { color: var(--muted-d); font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--ink-3); padding-top: 22px; display: grid; gap: 10px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.4); position: relative; z-index: 1; }
.footer-watermark { position: absolute; left: 0; right: 0; bottom: -3vw; font-family: var(--font-display); font-size: 22vw; line-height: .7; color: rgba(255,255,255,.03); text-align: center; pointer-events: none; user-select: none; text-transform: uppercase; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .spec-strip { grid-template-columns: repeat(4,1fr); }
  .stats { grid-template-columns: repeat(4,1fr); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form .row.two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 800px) {
  .grid-cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(4,1fr); }
  .why { grid-template-columns: 1fr 1fr; column-gap: 50px; }
  .why__item:nth-child(2) { border-top: 1px solid var(--line-dark); }
}
@media (min-width: 920px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split__media { order: 2; }
  .contact-grid { grid-template-columns: 1fr 1.05fr; align-items: start; }
  .cta .inner { grid-template-columns: 1.5fr auto; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.3fr; }
  .gallery { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 1fr; }
  .shot.feature { grid-column: span 7; }
  .shot.side { grid-column: span 5; }
  .grid-cards { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 919px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
}
@media (min-width: 920px) { .burger, .mobile-nav { display: none; } }

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