/* ============================================================
   OVERPRINT — demo styles
   Sections: tokens · reset · type · buttons · preloader · cursor
   header · menu · hero · marquee · intro · cats · cases · about
   steps · cta · footer · reveal/effects · reduced-motion · responsive
   ============================================================ */

/* ---------- design tokens ---------- */
:root {
  --ink: #101014;
  --ink-soft: #26262d;
  --paper: #ece6d8;
  --paper-2: #e3dccb;
  --lime: #c6f135;
  --coral: #ff5a3c;
  --blue: #2c2ce6;
  --stone: #b7b0a0;

  --bg: var(--paper);
  --fg: var(--ink);

  --maxw: 1520px;
  --gap: clamp(16px, 2.4vw, 32px);
  --pad: clamp(20px, 5vw, 90px);
  --radius: 4px;

  --ff-sans: "Helvetica Neue", Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ff-display: "Helvetica Neue", Inter, system-ui, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.7s;
  --header-h: 72px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.has-smooth { scroll-behavior: auto; }
body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--lime); color: var(--ink); }

/* smooth-scroll transform wrapper */
.smooth-wrap { will-change: transform; }

/* hide default cursor only when custom cursor is active (desktop, fine pointer) */
body.has-cursor,
body.has-cursor a,
body.has-cursor button { cursor: none; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 800; line-height: 0.96; letter-spacing: -0.02em; }
.kicker, .header__nav a, .section__note, .footer h3 {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}

/* skip link — first focusable element, visible on focus (WCAG 2.4.1) */
.skip {
  position: fixed; top: 8px; left: 8px; z-index: 210;
  transform: translateY(-200%);
  background: var(--ink); color: var(--paper); padding: .7em 1.1em;
  border-radius: 100px; font-weight: 600; font-size: .85rem;
  transition: transform .25s var(--ease);
}
.skip:focus { transform: translateY(0); outline: 2px solid var(--lime); outline-offset: 2px; }

/* ---------- layout ---------- */
.section {
  padding: clamp(70px, 10vw, 160px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--gap); margin-bottom: clamp(32px, 5vw, 72px); flex-wrap: wrap; }
.section__title { font-size: clamp(2.6rem, 8vw, 6.5rem); }
.section__note { max-width: 34ch; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  --bg-btn: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 1.15em 1.9em; border: 1.5px solid var(--ink);
  border-radius: 100px; background: var(--bg-btn);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  position: relative; overflow: hidden;
  transition: color .5s var(--ease), border-color .4s var(--ease), transform .2s var(--ease);
}
.btn > span { position: relative; z-index: 1; }
.btn::after {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: translateY(101%); border-radius: 50% 50% 0 0;
  transition: transform .55s var(--ease), border-radius .55s var(--ease); z-index: 0;
}
.btn:hover { color: var(--paper); }
.btn:hover::after { transform: translateY(0); border-radius: 0; }
.btn--pop { background: var(--lime); border-color: var(--lime); }
.btn--pop::after { background: var(--ink); }
.btn--pop:hover { color: var(--lime); border-color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--dark::after { background: var(--lime); }
.btn--dark:hover { color: var(--ink); }
.btn--sm { padding: 0.85em 1.35em; font-size: 0.82rem; }
.btn--lg { padding: 1.35em 2.6em; font-size: 1.05rem; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200; background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease);
}
.preloader.is-done { transform: translateY(-100%); }
.preloader__inner { text-align: center; width: min(80vw, 520px); }
.preloader__mark { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 7vw, 4rem); letter-spacing: -0.02em; }
.preloader__mark span { color: var(--lime); font-size: 0.5em; vertical-align: super; }
.preloader__bar { height: 2px; background: rgba(236,230,216,.2); margin-top: 1.4rem; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--lime); }
.preloader__count { position: absolute; right: var(--pad); bottom: clamp(20px, 5vw, 48px); font-family: var(--ff-display); font-weight: 800; font-size: clamp(3rem, 12vw, 8rem); line-height: 1; }
.preloader__count i { font-size: 0.35em; font-style: normal; color: var(--lime); }

/* ---------- scroll progress ---------- */
.scrollbar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90; background: transparent; }
.scrollbar span { display: block; height: 100%; width: 0%; background: var(--lime); }

/* ---------- custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 150; pointer-events: none; transform: translate(-50%, -50%); mix-blend-mode: difference; display: none; }
body.has-cursor .cursor { display: block; }
.cursor__dot {
  display: block; width: 12px; height: 12px; border-radius: 50%; background: var(--paper);
  transition: width .3s var(--ease), height .3s var(--ease);
}
.cursor.is-hover .cursor__dot { width: 56px; height: 56px; }
.cursor.is-label .cursor__dot { width: 84px; height: 84px; }
.cursor__label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.5);
  color: var(--ink); font-size: 0.7rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap;
  opacity: 0; transition: opacity .2s, transform .3s var(--ease); mix-blend-mode: normal;
}
.cursor.is-label .cursor__label { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80; height: var(--header-h);
  display: flex; align-items: center; gap: var(--gap);
  padding: 0 var(--pad);
  transition: transform .5s var(--ease), background-color .4s, color .4s, box-shadow .4s;
  color: var(--paper);
  mix-blend-mode: difference; /* legible over any hero art */
}
.header.is-solid {
  mix-blend-mode: normal;
  background: rgba(236, 230, 216, .92); /* fallback for engines without color-mix() */
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: var(--ink); box-shadow: 0 1px 0 rgba(16,16,20,.08);
}
.header.is-hidden { transform: translateY(-100%); }
.header__logo { font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; }
.header__logo b { color: var(--lime); }
.header.is-solid .header__logo b { color: var(--ink); } /* lime ™ is invisible on the light solid header */
.header__nav { display: flex; gap: clamp(16px, 2vw, 34px); margin-left: auto; }
.header__nav a { position: relative; }
.header__nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__cta { margin-left: var(--gap); border-color: currentColor; }
.header.is-solid .header__cta { border-color: var(--ink); }

/* burger (mobile) */
.burger { display: none; width: 46px; height: 46px; margin-left: auto; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 20px; }
.burger span:nth-child(2) { top: 26px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ---------- fullscreen menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 70; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center; padding: var(--pad);
  -webkit-clip-path: inset(0 0 100% 0); clip-path: inset(0 0 100% 0);
  opacity: 0; visibility: hidden; /* fallback hide for engines without clip-path inset() + removes from tab order when closed */
  transition: clip-path .8s var(--ease), opacity .4s var(--ease), visibility 0s linear .8s;
  pointer-events: none;
}
.menu.is-open {
  -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0);
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: clip-path .8s var(--ease), opacity .4s var(--ease), visibility 0s linear 0s;
}
.menu__nav { display: flex; flex-direction: column; }
.menu__link {
  display: flex; align-items: baseline; gap: 1rem; padding: clamp(6px, 1.4vw, 14px) 0;
  font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.4rem, 11vw, 8rem);
  line-height: 1; letter-spacing: -.02em; overflow: hidden;
}
.menu__link i { font-size: 0.9rem; font-style: normal; color: var(--lime); font-family: var(--ff-sans); font-weight: 600; }
.menu__link span { display: inline-block; transform: translateY(110%); transition: transform .7s var(--ease); }
.menu.is-open .menu__link span { transform: translateY(0); }
.menu.is-open .menu__link:nth-child(1) span { transition-delay: .12s; }
.menu.is-open .menu__link:nth-child(2) span { transition-delay: .19s; }
.menu.is-open .menu__link:nth-child(3) span { transition-delay: .26s; }
.menu.is-open .menu__link:nth-child(4) span { transition-delay: .33s; }
.menu__link:hover span { color: var(--lime); }
.menu__foot { margin-top: 3rem; display: flex; gap: 2rem; flex-wrap: wrap; opacity: .7; font-size: .9rem; }

/* ---------- media / blur-up ---------- */
.media { position: relative; overflow: hidden; background: var(--paper-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__lqip {
  position: absolute; inset: 0; transform: scale(1.06); filter: blur(14px);
  transition: opacity .6s ease .1s; z-index: 0;
}
.media__full {
  position: relative; z-index: 1; opacity: 0;
  transform: scale(1.04); transition: opacity .8s var(--ease), transform 1.2s var(--ease);
}
.media.is-loaded .media__full { opacity: 1; transform: scale(1); }
.media.is-loaded .media__lqip { opacity: 0; }
/* skeleton shimmer before load */
.media::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
  opacity: 1; transition: opacity .5s;
}
.media.is-loaded::after { opacity: 0; animation: none; }
@keyframes shimmer { 0% { background-position: 150% 0; } 100% { background-position: -50% 0; } }
.media--cover { width: 100%; height: 100%; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; padding: var(--pad); padding-bottom: clamp(32px, 6vw, 72px); overflow: hidden; }
.hero__media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; }
.hero__media .media { height: 100%; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,16,20,.28), rgba(16,16,20,.05) 30%, rgba(16,16,20,.55)); z-index: 2; }
.hero__content { position: relative; z-index: 3; color: var(--paper); width: 100%; max-width: var(--maxw); margin: 0 auto; }
.hero__kicker { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: clamp(16px, 3vw, 30px); }
.hero__kicker span { display: inline-block; padding: .5em 1em; border: 1px solid rgba(236,230,216,.4); border-radius: 100px; }
.hero__title { font-size: clamp(2.9rem, 10.5vw, 10rem); letter-spacing: -0.03em; }
.hero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--gap); margin-top: clamp(24px, 4vw, 48px); flex-wrap: wrap; }
.hero__lead { max-width: 42ch; font-size: clamp(1rem, 1.5vw, 1.25rem); opacity: .92; }
.hero__scroll { position: absolute; right: var(--pad); bottom: clamp(32px, 6vw, 72px); z-index: 3; color: var(--paper); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll i { width: 1px; height: 46px; background: var(--paper); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--lime); animation: scrolldrop 1.8s var(--ease-in-out) infinite; }
@keyframes scrolldrop { 0% { transform: translateY(-100%); } 50% { transform: translateY(0); } 100% { transform: translateY(100%); } }

/* ---------- marquee ---------- */
.marquee { background: var(--ink); color: var(--paper); padding: clamp(14px, 2vw, 26px) 0; overflow: hidden; border-block: 1px solid var(--ink); white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: 2rem; will-change: transform; }
.marquee__track span { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 3.2rem); letter-spacing: -.01em; text-transform: uppercase; }
.marquee__track b { color: var(--lime); font-size: clamp(1rem, 2vw, 1.6rem); }

/* ---------- intro / stats ---------- */
.intro__lead { max-width: 24ch; }
.intro__lead p { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.8rem, 4.4vw, 3.6rem); line-height: 1.02; letter-spacing: -.02em; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); margin-top: clamp(40px, 7vw, 96px); border-top: 1.5px solid var(--ink); padding-top: clamp(24px, 3vw, 42px); }
.stat { display: flex; flex-direction: column; gap: .4rem; }
.stat__num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -.03em; }
.stat__label { font-size: .82rem; color: var(--ink-soft); max-width: 18ch; }

/* ---------- categories ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.cat { display: block; }
.cat .media { aspect-ratio: 1 / 1; border-radius: var(--radius); }
.cat .media__full { transition: opacity .8s var(--ease), transform 1s var(--ease); }
.cat:hover .media.is-loaded .media__full { transform: scale(1.06); }
.cat__meta { display: flex; align-items: baseline; gap: .8rem; padding-top: 1rem; }
.cat__idx { font-size: .72rem; font-weight: 700; color: var(--ink); } /* ink for AA contrast on paper */
.cat__meta h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
.cat__meta p { margin-left: auto; text-align: right; color: var(--ink-soft); font-size: .82rem; max-width: 22ch; }

/* ---------- cases ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: var(--gap); }
.case { position: relative; display: block; border-radius: var(--radius); overflow: hidden; }
.case .media { aspect-ratio: 3 / 4; height: 100%; }
.case--tall { grid-row: span 2; }
.case--tall .media { aspect-ratio: 3 / 5; }
.case--wide { grid-column: span 2; }
.case--wide .media { aspect-ratio: 16 / 9; }
.case .media__full { transition: opacity .8s var(--ease), transform 1.1s var(--ease); }
.case:hover .media.is-loaded .media__full { transform: scale(1.07); }
.case__info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: clamp(16px, 2vw, 28px); color: var(--paper);
  background: linear-gradient(0deg, rgba(16,16,20,.7), transparent);
  transform: translateY(12%); opacity: 0; transition: transform .5s var(--ease), opacity .5s; }
.case:hover .case__info,
.case:focus-within .case__info { transform: translateY(0); opacity: 1; } /* keyboard/touch parity for hover-revealed label */
.case:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.case__info span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.case__info h3 { font-size: clamp(1.4rem, 2.4vw, 2.2rem); margin-top: .2rem; }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 90px); align-items: center; }
.about__media { border-radius: var(--radius); overflow: hidden; }
.about__media .media { aspect-ratio: 4 / 5; }
.about__title { font-size: clamp(2.4rem, 6vw, 5rem); margin-bottom: clamp(20px, 3vw, 40px); }
.about__text p { font-size: clamp(1.05rem, 1.6vw, 1.35rem); max-width: 48ch; margin-bottom: 1rem; }
.about__list { margin-top: clamp(24px, 3vw, 40px); display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 2rem; border-top: 1.5px solid var(--ink); padding-top: 1.6rem; }
.about__list li { font-weight: 600; }
.about__list span { color: var(--ink); margin-right: .4em; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.step { border-top: 1.5px solid var(--ink); padding-top: 1.4rem; }
.step__idx { font-size: .8rem; font-weight: 700; color: var(--ink); } /* ink for AA contrast on paper */
.step h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); margin: .8rem 0 .6rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- big CTA ---------- */
.cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 3vw, 40px); }
.cta__kicker { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.cta__title { font-size: clamp(3rem, 13vw, 12rem); line-height: 0.92; }
.cta__form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; width: min(100%, 720px); margin-top: 1rem; }
.cta__form input { flex: 1 1 220px; padding: 1.1em 1.3em; border: 1.5px solid var(--ink); border-radius: 100px; background: transparent; font: inherit; }
.cta__form input:focus { outline: none; border-color: var(--coral); }
.cta__form .btn { flex: 0 0 auto; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: clamp(50px, 7vw, 100px) var(--pad) 0; overflow: hidden; }
.footer__top { display: flex; justify-content: space-between; gap: var(--gap); flex-wrap: wrap; max-width: var(--maxw); margin: 0 auto; }
.footer__mark { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.footer__brand p { opacity: .6; margin-top: .6rem; max-width: 28ch; }
.footer__cols { display: flex; gap: clamp(28px, 5vw, 80px); flex-wrap: wrap; }
.footer__cols h3 { color: var(--lime); margin-bottom: 1rem; }
.footer__cols a { display: block; opacity: .75; padding: .3em 0; transition: opacity .3s, transform .3s var(--ease); }
.footer__cols a:hover { opacity: 1; transform: translateX(4px); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--gap); flex-wrap: wrap; max-width: var(--maxw); margin: clamp(40px, 6vw, 80px) auto 0; padding-block: 1.4rem; border-top: 1px solid rgba(236,230,216,.14); font-size: .8rem; opacity: .8; }
.totop { font-weight: 600; }
.footer__giant { font-family: var(--ff-display); font-weight: 800; font-size: clamp(3rem, 24vw, 26rem); line-height: .8; letter-spacing: -.04em; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(236,230,216,.22); text-stroke: 1px rgba(236,230,216,.22); margin-top: .2em; user-select: none; }

/* ============================================================
   REVEAL / KINETIC TEXT EFFECTS
   ============================================================ */
/* no-JS / progressive-enhancement fallback: never hide content if JS is off/failed */
html:not(.js) .reveal,
html:not(.js) .line-inner,
html:not(.js) .word-inner { opacity: 1 !important; transform: none !important; }
/* Images: JS promotes data-src -> src. With JS off, the full <img> has no src, so show the
   real-src LQIP as the (blurred) artwork and stop the shimmer instead of leaving empty boxes. */
html:not(.js) .media__full { display: none; }
html:not(.js) .media__lqip { opacity: 1; filter: none; transform: none; transition: none; }
html:not(.js) .media::after { display: none; animation: none; }
html:not(.js) .preloader { display: none; }

.reveal { opacity: 0; }
.reveal:not(.is-in) { will-change: transform, opacity; } /* transient: dropped once revealed */
.reveal[data-reveal="fade"] { transition: opacity var(--dur) var(--ease); }
.reveal[data-reveal="up"] { transform: translateY(42px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* split line/word masks (JS wraps content) */
.line-mask, .word-mask { display: block; overflow: hidden; }
.word-mask { display: inline-block; vertical-align: top; }
.line-inner, .word-inner { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
.is-in .line-inner, .is-in .word-inner { transform: translateY(0); }
/* per-child stagger via inline --i set by JS */
.line-mask .line-inner { transition-delay: calc(var(--i, 0) * 90ms); }
.word-mask .word-inner { transition-delay: calc(var(--i, 0) * 45ms); }

/* reveal for [data-reveal="lines"] paragraphs — treated same via JS line-split */
[data-reveal="lines"] { opacity: 1; }

/* ============================================================
   REDUCED MOTION — disable transforms/animation, keep content visible
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .line-inner, .word-inner, .menu__link span { opacity: 1 !important; transform: none !important; }
  .media__full { opacity: 1 !important; transform: none !important; }
  .media__lqip { display: none; }
  .media::after { display: none; }
  .hero__scroll i::after { animation: none; }
  .preloader { display: none; }
  .cursor { display: none !important; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cases { grid-template-columns: repeat(2, 1fr); }
  .case--wide { grid-column: span 2; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .about { grid-template-columns: 1fr; }
  .about__media { order: -1; }
}
@media (max-width: 720px) {
  :root { --header-h: 60px; }
  .header__nav, .header__cta { display: none; }
  .burger { display: block; }
  .header { mix-blend-mode: normal; color: var(--paper); }
  .header:not(.is-solid) .burger { color: var(--paper); }
  .cases, .cats { grid-template-columns: 1fr; }
  .case--wide, .case--tall { grid-column: auto; grid-row: auto; }
  .case--wide .media, .case--tall .media, .case .media { aspect-ratio: 4 / 3; }
  .cat__meta p { display: none; }
  .about__list { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .cta__form { flex-direction: column; }
}
