@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap");
@import url("https://fonts.cdnfonts.com/css/thegoodmonolith");

:root {
  /* Colors */
  --color-offwhite: #f8f6f2;
  --color-offblack: #302b27;
  --color-offblack-transparent: rgba(48, 43, 39, 0.2);
  --color-overlay-dark: rgba(0, 0, 0, 0.4);
  --color-accent: #a67c2e; /* Legacy gold */
  --color-muted: rgba(48, 43, 39, 0.55);
  --color-rule: rgba(48, 43, 39, 0.16);

  /* Fonts */
  --font-main: "Inter", sans-serif;
  --font-mono: "TheGoodMonolith", "IBM Plex Mono", monospace;

  /* Transitions */
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--color-offwhite);
  color: var(--color-offblack);
  overflow-x: hidden;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* Dust/Scratches background effect for the entire site */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://img.freepik.com/premium-photo/white-dust-scratches-black-background_279525-2.jpg?w=640");
  background-repeat: repeat;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 999;
}

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

.accent { color: var(--color-accent); }

/* 12-column grid system */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  padding: 0 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.container {
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  padding: 2rem;
  align-items: center;
  justify-items: center;
  perspective: 800px;
}

.header-content {
  grid-column: 3 / span 8;
  text-align: center;
  transform-style: preserve-3d;
}

.header-content > * {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform-origin: center top;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.title {
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 7vw, 5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.subtitle {
  margin-bottom: 2.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--color-muted);
  font-weight: 500;
}

.date {
  margin: 2.5rem 0;
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.credits {
  margin-top: 2.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  grid-column: 4 / span 6;
  color: var(--color-muted);
  line-height: 1.9;
}

.scroll-cue {
  margin-top: 3rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-muted);
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ── Sticky video act ─────────────────────────────────────── */
.scroll-container { position: relative; height: 300vh; }

.video-wrapper {
  position: sticky;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#video-container {
  width: 300px;
  height: 300px;
  overflow: hidden;
  background-color: var(--color-offblack);
  position: relative;
  transition: border-radius 0.3s ease;
  filter: blur(0px);
  clip-path: inset(0 0 0 0);
}

video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-offblack-transparent);
  color: var(--color-offwhite);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  clip-path: inset(100% 0 0 0);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.video-overlay .caption {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  transform: translateY(30px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  top: 2rem; left: 0;
  width: 100%;
  text-align: center;
}

.video-overlay .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  filter: blur(10px);
  transform: scale(1.1);
}

.video-overlay h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 1.5rem;
  transform: translateY(30px);
  text-transform: uppercase;
  line-height: 1.05;
}

.video-overlay p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 34ch;
  margin: 0 auto 1rem;
  transform: translateY(30px);
  font-weight: 500;
}

.video-overlay .accent { color: #e6bd6c; }

.spacer { height: 14vh; }

/* ── Content sections ─────────────────────────────────────── */
.section { padding: 7rem 2rem; row-gap: 3rem; }

.section-head { grid-column: 2 / span 9; }

.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 22ch;
}

.lede {
  margin-top: 1.75rem;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 400;
  line-height: 1.75;
  max-width: 56ch;
  color: var(--color-muted);
}

/* Service cards */
.cards {
  grid-column: 2 / span 10;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-rule);
  border: 1px solid var(--color-rule);
}

.card {
  background: var(--color-offwhite);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.4s var(--transition-smooth);
}

.card:hover { background: #fffdf9; }

.card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.card p {
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 46ch;
}

.card-out {
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
  color: var(--color-offblack) !important;
  border-top: 1px solid var(--color-rule);
}

/* Stats */
.proof-section { background: rgba(48, 43, 39, 0.025); }

.stats {
  grid-column: 2 / span 10;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.stat { display: flex; flex-direction: column; gap: 0.75rem; }

.stat-num {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

/* Word-based facts need to sit at text scale, not headline scale */
.stat-num.is-word {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.stat-label {
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 34ch;
  border-top: 1px solid var(--color-rule);
  padding-top: 0.85rem;
}

.quote-block {
  grid-column: 2 / span 8;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
}

.quote-block strong { font-weight: 700; color: var(--color-offblack); }

/* ── Live work grid ───────────────────────────────────────── */
.work { grid-column: 2 / span 10; margin-top: 2rem; }

.work-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  font-weight: 400;
}

.work-note {
  margin: 0.9rem 0 2.5rem;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.work-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.75rem;
}

.work-card a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
}

.shot {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-rule);
  background: #e9e6e0;
  aspect-ratio: 4 / 3;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.7s var(--transition-smooth),
    filter 0.5s var(--transition-smooth);
}

/* Live preview frame sits on top of the screenshot and fades in. */
.shot iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  transform-origin: top left;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--transition-smooth);
}

.shot.is-live iframe { opacity: 1; }
.shot.is-live img { opacity: 0; transition: opacity 0.6s var(--transition-smooth); }

.work-card a:hover .shot img,
.work-card a:focus-visible .shot img {
  transform: scale(1.035);
  filter: saturate(1);
}

.work-card a:focus-visible .shot { outline: 2px solid var(--color-offblack); outline-offset: 3px; }

.work-meta { display: flex; flex-direction: column; gap: 0.5rem; }

.work-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.work-name::after {
  content: "↗";
  font-size: 0.8rem;
  color: var(--color-muted);
  transition: transform 0.3s var(--transition-elastic);
}

.work-card a:hover .work-name::after { transform: translate(2px, -2px); }

.work-domain {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  font-weight: 400;
}

.work-desc {
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-muted);
}

/* Process */
.process {
  grid-column: 2 / span 9;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-rule);
}

.step:last-child { border-bottom: 1px solid var(--color-rule); }

.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-accent);
  padding-top: 0.35rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.step p {
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 58ch;
}

.ownership {
  grid-column: 2 / span 6;
  margin-top: 1rem;
  padding: 2rem;
  border: 1px solid var(--color-offblack);
}

.ownership p:last-child {
  font-weight: 400;
  line-height: 1.75;
  max-width: 52ch;
}

/* Stack */
.stack {
  grid-column: 2 / span 10;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.stack li {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-rule);
  color: var(--color-muted);
  transition: all 0.3s var(--transition-smooth);
}

.stack li:hover {
  border-color: var(--color-offblack);
  color: var(--color-offblack);
}

/* FAQ */
.faq { grid-column: 2 / span 8; border-top: 1px solid var(--color-rule); }

.faq details { border-bottom: 1px solid var(--color-rule); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 2.5rem 1.6rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary h3 {
  display: inline;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--color-accent);
  transition: transform 0.3s var(--transition-elastic);
}

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq details p {
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 60ch;
  padding: 0 0 1.9rem;
}

/* Closing */
.footer-content {
  padding: 8rem 2rem 10rem;
  text-align: center;
  margin: 0 auto;
}

.quote {
  margin-bottom: 3rem;
  line-height: 1.8;
  grid-column: 4 / span 6;
}

.quote p {
  margin-bottom: 1.5rem;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  font-weight: 500;
}

.divider {
  width: 1px;
  height: 80px;
  background-color: var(--color-offblack);
  margin: 3rem auto;
  grid-column: 6 / span 2;
}

/* Contact footer */
.mountain-footer {
  height: 60vh;
  position: relative;
  clip-path: inset(100% 0 0 0);
  overflow: hidden;
}

.contact-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  color: var(--color-offwhite);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: auto;
  text-align: center;
}

.contact-btn .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-offwhite);
}

.contact-btn .email-container { position: relative; display: inline-block; }

.contact-btn .email {
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  padding: 0 0.6em;
  position: relative;
  display: inline-block;
}

.contact-btn .left-bracket,
.contact-btn .right-bracket {
  transition: opacity 0.3s var(--transition-elastic),
    transform 0.3s var(--transition-elastic);
}

.contact-btn .left-bracket { margin-right: 3px; }
.contact-btn .right-bracket { margin-left: 3px; transition-delay: 0.15s; }

.contact-btn:hover .left-bracket { transform: translateX(-5px); }
.contact-btn:hover .right-bracket { transform: translateX(5px); }

.social {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social a {
  color: rgba(248, 246, 242, 0.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.social a:hover {
  color: var(--color-offwhite);
  border-bottom-color: var(--color-offwhite);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid, .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .header-content,
  .section-head,
  .cards, .stats, .process, .stack, .faq,
  .quote-block, .ownership, .quote, .credits {
    grid-column: 1 / -1;
  }
  .divider { grid-column: 1 / -1; }
  .section { padding: 4.5rem 1.25rem; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; }
  .card { padding: 2rem 1.5rem; }
  .step { grid-template-columns: 3rem 1fr; gap: 0.75rem; }
  .section-title, .lede, .stat-label, .quote p { max-width: none; }
  .mountain-footer { height: 70vh; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .spacer { height: 6vh; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
  * { scroll-behavior: auto; }
}

/* Conversion and portrait additions use the original palette and type. */
:root { --color-muted: rgba(48, 43, 39, 0.72); }
[hidden] { display: none !important; }
a { color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
section[id] { scroll-margin-top: 2rem; }
section[tabindex="-1"]:focus { outline: none; }
.skip-link {
  position: fixed; top: 1rem; left: 1rem; z-index: 1000;
  padding: 0.85rem 1rem; background: var(--color-offblack);
  color: var(--color-offwhite); transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }
.container { height: auto; min-height: 100svh; padding-top: 3rem; padding-bottom: 3rem; }
.subtitle { margin-bottom: 1.4rem; }
.hero-intro {
  max-width: 42ch; margin: 0 auto; font-size: 1rem;
  line-height: 1.7; font-weight: 400; color: var(--color-muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: center; align-items: center; margin-top: 1.75rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
  padding: 1rem 1.35rem; min-height: 48px;
  background: var(--color-offblack); color: var(--color-offwhite);
  border: 1px solid var(--color-offblack); font-size: 0.9rem;
  font-weight: 500; line-height: 1.4; text-decoration: none;
  transition: background 0.3s ease, transform 0.3s var(--transition-smooth);
}
.button:hover { background: #4a4037; transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; min-height: 44px; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; text-underline-offset: 5px; }
.text-link:hover { text-decoration-thickness: 2px; }
.date { margin: 2rem 0 0.75rem; }
.hero-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 1.5rem; }
.hero-nav a { display: inline-flex; align-items: center; min-height: 44px; font-family: var(--font-mono); font-size: 0.85rem; text-transform: uppercase; color: var(--color-muted); text-underline-offset: 4px; text-decoration: none; }
.hero-nav a:hover { color: var(--color-offblack); text-decoration: underline; }
.scroll-cue { margin-top: 1.75rem; }
.section-action { grid-column: 2 / span 10; }
.about-profile { grid-column: 2 / span 10; display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 5fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.portrait { max-width: 320px; }
/* Keep the photo above the page’s grain overlay. */
.about-profile { position: relative; z-index: 1000; }
/* Crop the portrait to a 4:5 card instead of running the full tall frame. */
.portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 26%;
  border: 1px solid var(--color-rule);
}
.about-profile .quote-block { grid-column: auto; max-width: 48ch; }
.about-profile .quote-block strong { display: block; margin-bottom: 1rem; }
.card p { font-size: 1rem; }
.card-out { font-size: 0.85rem !important; }
.stack li { font-size: 0.85rem; }
.quote .section-title { max-width: 18ch; margin: 0 auto 1.5rem; }
.quote .contact-note { margin-top: 1rem; font-size: 0.85rem; color: var(--color-muted); }
.footer-content { padding-bottom: 6rem; }
.mountain-footer { min-height: 380px; background: var(--color-offblack); }
.mountain-footer::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.42); pointer-events: none; }
.contact-btn { width: min(90%, 640px); cursor: auto; }
.contact-btn .email-container { color: inherit; text-decoration: none; }
.contact-btn .email-container:hover .email { text-decoration: underline; text-underline-offset: 5px; }
.copy-email {
  margin-top: 1.25rem; padding: 0.65rem 1rem; min-height: 44px;
  border: 1px solid rgba(248,246,242,0.55); background: transparent;
  color: var(--color-offwhite); font: 0.85rem var(--font-mono); cursor: pointer;
}
.copy-email:hover { background: rgba(248,246,242,0.12); }
.copy-status { min-height: 2.8em; max-width: 40ch; margin-top: 0.75rem; font-size: 0.85rem; line-height: 1.4; font-weight: 400; }
.social { margin-top: 1rem; font-size: 0.85rem; flex-wrap: wrap; justify-content: center; gap: 0.25rem 1.5rem; }
.social a { min-height: 44px; display: inline-flex; align-items: center; color: rgba(248,246,242,0.88); }

/* Content is visible by default; opt into the existing scroll choreography. */
html:not(.motion-ready) .scroll-container { height: auto; }
html:not(.motion-ready) .video-wrapper { position: relative; height: auto; padding: 2rem 0; }
html:not(.motion-ready) #video-container { width: 90vw; height: 85svh; min-height: 480px; }
html:not(.motion-ready) .video-overlay,
html:not(.motion-ready) .mountain-footer { clip-path: none; }
html:not(.motion-ready) .video-overlay .content { filter: none; transform: none; }
html:not(.motion-ready) .video-overlay .caption,
html:not(.motion-ready) .video-overlay h2,
html:not(.motion-ready) .video-overlay p { transform: none; }
html:not(.motion-ready) .contact-btn { opacity: 1; }

@media (max-width: 900px) {
  .section-action, .about-profile, .work { grid-column: 1 / -1; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; }
  .about-profile { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 2rem; }
  .footer-content .quote { max-width: 540px; justify-self: center; }
}
@media (max-width: 560px) {
  .eyebrow { font-size: 0.75rem; letter-spacing: 0.08em; }
  .hero-actions { flex-direction: column; gap: 0.5rem; }
  .hero-actions .button { width: 100%; }
  .hero-nav { gap: 0 1.15rem; }
  .about-profile { grid-template-columns: 1fr; }
  .portrait { width: 100%; max-width: 300px; }
  .contact-btn .email { padding: 0 0.2em; font-size: 1rem; }
  .video-overlay { padding: 1.5rem; }
  .video-overlay .caption { top: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  video { visibility: hidden; }
}
